/**
* Template Name: Valera
* Updated: Jul 27 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/valera-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #555555;
  font-size: 15px;
  line-height: 25px; 
   
  
}

a {
  color: rgba(225, 42, 33, 1.5);
  text-decoration: none;
   animation-duration: 0.5s;
    animation-iteration-count: 
}

a:hover {
  color: rgba(225, 42, 33, 0.7);
  text-decoration: none;
  animation-name: bouncexx;
    animation-timing-function: ease;
}
@keyframes bouncexx {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
.on-desktop {
		display:none;
	}
@media (min-width: 1024px) {
	.on-desktop {
		display:block;
	}
	
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "NIMA CC";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #E12A21;
  border-top-color: white;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  animation: animate-preloader 8s linear infinite;
  color:#E12A21;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff7f5d;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

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

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /*background: rgba(21, 5, 23, 0.25);*/
  background: rgba(255,255,255, 1);
  transition: all 0.5s;
  z-index: 997;
  position: relative;
  height: 75px;
  border-bottom:1px solid rgba(12, 92, 194, 0.9);
  
}

@media (max-width: 992px) {
  #header {
    height: 60px;
  }
}

#header.fixed-top,
#header.header-inner-pages {
  background: rgba(255,255,255, 1);
 /* background: rgba(12, 92, 194, 0.9);*/
}

#header.fixed-top {
  position: fixed;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color:#FFFFFF;
}

#header .logo a {
  color: #fff;
}
#header .logo-div {
	position: relative;
	background-color:#FFFFFF;
	width:230px;
	height:60px;
	box-shadow:0px 0 7px -10px rgba(0,0,0,.5);
	padding:0 10px;
	 border-right:1px solid rgba(12, 92, 194, 0.9);
  -webkit-transform: skew(-25deg);
  -moz-transform: skew(-25deg);
  -o-transform: skew(-25deg);
}

#header .logo-div  img {
	width:200px;
	height:100%;
	-ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  transform: skewX(25deg);
  
	
}
.scrolled-offset {
  margin-top: 80px;
}

@media (max-width: 991px) {
  .scrolled-offset {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  padding-left: 20px;
}

.header-social-links a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .header-social-links {
    padding: 0 15px 0 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  background: #ffffff;
  position: relative;
  color: rgba(12, 92, 194, 0.9);
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -7px;
  left: 0;
  background-color: #ffffff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
 /* color: #fff;*/
  color: rgba(12, 92, 194, 0.5);
}
.navbar .dropdown a {
	color: rgba(12, 92, 194, 0.9);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 1px 1px 10px rgba(12, 92, 194, 0.4);
  transition: 0.3s;
  color: rgba(12, 92, 194, 0.9);
}

.navbar .dropdown ul li {
  min-width: 200px;
  color: rgba(12, 92, 194, 0.9);
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: rgba(12, 92, 194, 0.9);
}

.navbar .dropdown ul a i {
  font-size: 12px;
  color: rgba(12, 92, 194, 0.9);
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
 color: rgba(12, 92, 194, 1);
 font-weight:700;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
  color: rgba(12, 92, 194, 0.9);
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: rgba(12, 92, 194, 0.9);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: 0.3s;
  z-index: 999;
  
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  
}
.mobile-nav-toggle::after {
content: 'Menu';
font-style: normal;
text-transform: uppercase;
font-size: 18px;
padding-left: 1px;
position: relative;
top: -5px;

}
.navbar-mobile  .bi-x {
	 color:#FFFFFF;
	 font-weight:700;
 }
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: rgba(12, 92, 194, 0.9);
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: rgba(12, 92, 194, 0.9);
  font-weight:700;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
   box-shadow: 0px 0px 10px rgba(12, 92, 194, 0.4);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: rgba(12, 92, 194, 0.9);
  font-weight:700;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg-blue-new-1.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -70px;
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: -60px;
	background: url("../img/hero-bg-blue-mobile-new-1.jpg") top center;
	 width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
	
  }
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.1) linear-gradient(rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 5%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.4) 76%, rgba(0, 0, 0, 0.3) 94%, rgba(0, 0, 0, 0.2) 100%) repeat scroll 0% 0%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin: 15px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #DA241B;
  border: 2px solid #DA241B;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
	
  }
}

@media (max-width: 768px) {
  #hero {
	background: url("../img/hero-bg-mobile.jpg") top center;
	width: 100%;
	height: 100vh;
	background-size: cover;
	position: relative; 
	
	}
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 20px 0;
  overflow: hidden;
}




.section-bg {
  background-color: #fafafa;
 
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ff7f5d;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  color: #919191;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ff7f5d;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ff7f5d;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ff7f5d;
}

.about .content .btn-learn-more:hover {
  background: #ff7f5d;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #E12A21;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight:900;
  color: #009746;
}

/*--------------------------------------------------------------
# Our Values
--------------------------------------------------------------*/
.our-values .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.our-values .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.our-values .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.our-values .card-title a {
  color: #150517;
}

.our-values .card-text {
  color: #5e5e5e;
}

.our-values .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.our-values .read-more a:hover {
  text-decoration: underline;
}

.our-values .card:hover .card-body {
  background: #ff7f5d;
}

.our-values .card:hover .read-more a,
.our-values .card:hover .card-title,
.our-values .card:hover .card-title a,
.our-values .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.services .icon-box:hover {
  transform: translateY(-5px);
}

.services .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .icon-box:hover .title a {
  color: #ff7f5d;
}

.services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.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-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffbbaa;
  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 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff7f5d;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff7f5d;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #280a2c;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ff7f5d;
  border: 2px solid #ff7f5d;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 15px 10px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ff7f5d;
}

.portfolio #portfolio-flters li.filter-active::before,
.portfolio #portfolio-flters li.filter-active::after {
  color: #ff7f5d;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.5s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: white;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ff7f5d;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.2);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff7f5d;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff7f5d;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 5, 23, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #150517;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 127, 93, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  background: #ff7f5d;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #150517;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: left;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  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: #ff7f5d;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: left;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #ff7f5d;
  font-size: 18px;
  padding-right: 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: #ff7f5d;
  display: inline-block;
  padding: 8px 35px 9px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #ff9377;
}

.pricing .featured h3 {
  color: #fff;
  background: rgba(12, 92, 194, 0.9);
}
.pricing .featured-red h3 {
  color: #fff;
  background: rgba(218, 36, 27, 0.9);
}
.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ff7f5d;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ffa790;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #ff7f5d;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ff7f5d;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff8f6;
  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: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #150517;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #62176b;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #ff7f5d;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  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;
  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: #ff7f5d;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #ff7f5d;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ff9377;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(255, 248, 81, 0.5);
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 20px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #3b0e41;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
 /* background: linear-gradient(rgba(255,255,255,.6), rgba(255,255,255,.6)), url("../img/footer-bg.jpg") center center no-repeat;*/
  background-color:#0C5CC2;
  color: #fff;
  font-size: 14px;
  position: relative;
 
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(2, 0, 2, 0.6);
  z-index: 1;
  
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 0;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ff7f5d;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ff9377;
}

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

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: left;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-list{
	list-style:none;
	text-align:left;
}
#footer .footer-cover-box{
	background:rgba(12, 92, 194,0.4);
	padding:10px;
	box-shadow: 0 1.4px 1.7px rgba(0, 0, 0, 0.17), 0 2.3px 3px rgba(0, 0, 0, 0.24), 0 3.3px 3.5px rgba(0, 0, 0, 0.3), 0 4.2px 4.4px rgba(0, 0, 0, 0.36), 0 5.9px 5.1px rgba(0, 0, 0, 0.43), 0 6px 7px rgba(0, 0, 0, 0.6);
	line-height:2.0em;
	min-height:270px;
}
#footer .footer-cover-box .redspan{
	background-color:rgba(12, 92, 194,0.9);
	color:rgba(255, 248, 81, 0.8);
	padding:3px 5px 3px 10px;
	font-weight:700;
	border:3px groove rgba(12, 92, 194,0.9);
}
#footer .bluespan{
	padding:3px 5px 3px 10px;
}
#footer .footer-cover-box-1{
	background:rgba(12, 92, 194,0.2);
	color:#ffffff;
	text-align:center;
	padding:10px;
	box-shadow: 0 1.4px 1.7px rgba(0, 0, 0, 0.17), 0 2.3px 3px rgba(0, 0, 0, 0.24), 0 3.3px 3.5px rgba(0, 0, 0, 0.3), 0 4.2px 4.4px rgba(0, 0, 0, 0.36), 0 5.9px 5.1px rgba(0, 0, 0, 0.43), 0 6px 7px rgba(0, 0, 0, 0.6);
}

#footer .footer-top .social-links a:hover {
  background: #ff7f5d;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #3b0e41;
  z-index: 2;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
  }

  #footer .credits {
    padding-top: 5px;
  }
}
.footer-copyright {
  list-style: none;
  font-size: 16px;
  line-height: 50px;
  vertical-align: top;
  text-decoration: none;
  background:rgba(12, 92, 194,0.7);
  margin-top:10px;
}

.footer-copyright li {
  position: relative;
}

.footer-copyright li {
  display: inline-block;
  padding-right: 10px;
  padding-left: 10px;
  z-index: 1;
}
.footer-copyright li a{
	color:rgba(255, 248, 81,0.9);
	text-decoration:none;
	font-size: 16px;
}
.footer-copyright li a:hover{
	color:rgba(255, 255, 255,0.9);
	text-decoration:none;
}
.footer-copyright li:before {
  content: "";
  height: 20px;
  width: 1px;
  background-color: rgb(0 0 0 / 20%);
  display: block;
  position: absolute;
  right: 0;
  top: 16px;
}

.footer-copyright li:last-child:before {
  content: unset;
}

#button-bktotop {
  display: inline-block;
  background-color: #009746;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 10px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  font-size: 1.2em;
  line-height: 40px;
  color: #fff;
}
#button-bktotop:hover {
  cursor: pointer;
  background-color: #E12A21;
}
#button-bktotop:active {
  background-color: #23116D;
}
#button-bktotop.show {
  opacity: 1;
  visibility: visible;
}


.type-wrap span{
 font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.type-wrap span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ff7f5d;
  bottom: 0;
  left: calc(50% - 25px);
}


.typed-cursor{
	font-size:18px !important;
    opacity: 1;
    -webkit-animation: blink-typed-cursor 0.9s infinite;
    -moz-animation: blink-typed-cursor 0.9s infinite;
    animation: blink-typed-cursor 0.9s infinite;
}

@keyframes blink-typed-cursor{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

.home-nima-info {
	background-color:#f2f2f2; 
	padding:10px 15px;
	text-align: justify;
	border-top-left-radius:25px;
	border-top-right-radius:1px;
	border-bottom-left-radius:1px;
	border-bottom-right-radius:25px;
	border:1px dotted #333;
	min-height:350px;
}
@media (max-width: 768px) {
	.home-nima-info {
		min-height:150px;
	}
	
}

.home-nima-stats {
	background-color:rgba(225, 42, 33, 0.4);
	padding:10px 15px;
	text-align: justify;
	border-top-left-radius:25px;
	border-top-right-radius:1px;
	border-bottom-left-radius:1px;
	border-bottom-right-radius:25px;
	border:1px dotted #333;
	
}

.home-nima-stats-1 {
	background: linear-gradient(-45deg, rgba(225, 42, 33, 0.4), rgba(225, 42, 33, 0.4), rgba(255, 248, 81,0.4), rgba(225, 42, 33, 0.4) );
	background-size: 400% 400%;
	animation: gradient-home-nima-stats-1 15s ease infinite;
	border-radius:10px;
}
.home-nima-stats-2 {
	background: linear-gradient(-45deg, rgba(255, 248, 81,0.2), rgba(225, 42, 33, 0.2), rgba(225, 42, 33, 0.2), rgba(225, 42, 33, 0.2) );
	background-size: 400% 400%;
	animation: gradient-home-nima-stats-1 15s ease infinite;
	border-radius:10px;
	min-height:350px;
	padding:20px 15px;
	text-align: justify;
	border-top-left-radius:25px;
	border-top-right-radius:1px;
	border-bottom-left-radius:1px;
	border-bottom-right-radius:25px;
}
@media (max-width: 768px) {
	.home-nima-stats-2 {
		min-height:150px;
	}
	
}

@keyframes gradient-home-nima-stats-1 {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.underlined-heading {
	color:#E12A21;
}
.underlined-heading:after{
  background-color: #E12A21;
  bottom: -10px;
  height: 3px;
  width: 80px;
  position: relative;
  content: "";
  display: block;
}

/*Team display css https://codepen.io/_niikhil/pen/jOMWePL*/
.container-team{
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
	margin: 40px 0 20px 0;
} 
@media (max-width: 768px) {
	.container-team{
		justify-content: center;
	}
	
}
.container-team-center{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
	margin: 40px 0 20px 0;
} 
@media (max-width: 768px) {
	.container-team-center{
		justify-content: center;
	}
	
}
.box-team{
    position: relative;
    min-width: 250px;
	min-height: 250px;
    background-color: #fff;
    box-shadow: 2px 3px 10px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 20px 10px;
    border-radius: 10px;
}


.top-bar-team{
    width: 50%;
    height: 4px;
    background: #23116D;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0px 0px 10px 10px;
}

.top-team{
    display: flex;
    justify-content: space-between;
    align-items:center ;
    width: 100%;
}

.fa-check-circle{
    color: #17b667;
}

/* creating heart */
 .heart-team{
    color: rgba(155,155,155);
}
.heart-team::before{
    content: '\f004';
    font-family: fontawesome;
    line-height: 30px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s;
}
.box-team .heart-btn-team:checked ~ .heart-team::before{
    color:#e41934
}
.heart-btn-team{
    position: absolute;
    top: 25px;
    right: 20px;
    padding: 1rem;
    display: none;
}


.content-team img{
    width: 150px;
    height: 190px;
    border-radius:10px;
    overflow: hidden;
    object-fit: cover;
    object-position: top;
}
.content-team{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content-team strong{
    font-weight: 700;
    color: #00913E;
    margin-top: 10px;
	text-align:center;
	font-size:18px;
}
.content-team p{
    font-size: 0.9rem;
    color: rgba(12, 92, 194,0.7);
    margin: 4px 0px 10px 0px;
    cursor: pointer;
	text-align:center;
	font-weight: 600;
	font-size:15px;
}
.span-post {
	color:#E12A21;
	font-weight:700;
	font-size:14px;
}
.content-team p:hover{
    text-decoration: none;
	cursor:default;
}

.btn-team{
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.btn-team a i{
    margin-right: 9px;
}
.btn-team a{
    border-radius: 20px;
    color: #8b8b8b;
    padding: 8px 20px;
    font-size: 0.9rem;
}
.btn-team a:hover{
    color: #fff;
    box-shadow: 2px 5px 15px rgba(80,123,252,0.05);
    background-color: #507bfc;
    transition: all ease 0.5s;
}



hr.style1{
	border-top: 1px solid #8c8b8b;
}


hr.style2 {
	border-top: 3px double #8c8b8b;
}

hr.style3 {
	border-top: 1px dashed #8c8b8b;
}

hr.style4 {
	border-top: 1px dotted #8c8b8b;
}

hr.style5 {
	background-color: #fff;
	border-top: 2px dashed #8c8b8b;
}


hr.style6 {
	background-color: #fff;
	border-top: 2px dotted #8c8b8b;
}

hr.style7 {
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}


hr.style8 {
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}
hr.style8:after {
	content: '';
	display: block;
	margin-top: 2px;
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}

hr.style9 {
	border-top: 1px dashed #8c8b8b;
	border-bottom: 1px dashed #fff;
}

hr.style10 {
	border-top: 1px dotted #8c8b8b;
	border-bottom: 1px dotted #fff;
}


hr.style11 {
	height: 6px;
	background: url(img/hr-11.png) repeat-x 0 0;
    border: 0;
}


hr.style12 {
	height: 6px;
	background: url(img/hr-12.png) repeat-x 0 0;
    border: 0;
}

hr.style13 {
	height: 10px;
	border: 0;
	box-shadow: 0 10px 10px -10px #8c8b8b inset;
}


hr.style14 { 
  border: 0; 
  height: 1px; 
  background-image: -webkit-linear-gradient(left, #EA3335, #16923B, #EA3335);
  background-image: -moz-linear-gradient(left, #EA3335, #16923B, #EA3335);
  background-image: -ms-linear-gradient(left, #EA3335, #16923B, #EA3335);
  background-image: -o-linear-gradient(left, #EA3335, #16923B, #EA3335);
}


hr.style15 {
	border-top: 4px double #8c8b8b;
	text-align: center;
}
hr.style15:after {
	content: '\002665';
	display: inline-block;
	position: relative;
	top: -15px;
	padding: 0 10px;
	background: #f0f0f0;
	color: #8c8b8b;
	font-size: 18px;
}

hr.style16 { 
  border-top: 1px dashed #8c8b8b; 
} 
hr.style16:after { 
  content: '\002702'; 
  display: inline-block; 
  position: relative; 
  top: -12px; 
  left: 40px; 
  padding: 0 3px; 
  background: #f0f0f0; 
  color: #8c8b8b; 
  font-size: 18px; 
}


hr.style17 {
	border-top: 1px solid #8c8b8b;
	text-align: center;
}
hr.style17:after {
	content: '??';
	display: inline-block;
	position: relative;
	top: -14px;
	padding: 0 10px;
	background: #f0f0f0;
	color: #8c8b8b;
	font-size: 18px;
	-webkit-transform: rotate(60deg);
	-moz-transform: rotate(60deg);
	transform: rotate(60deg);
}


hr.style18 { 
  height: 30px; 
  border-style: solid; 
  border-color: #8c8b8b; 
  border-width: 1px 0 0 0; 
  border-radius: 20px; 
} 
hr.style18:before { 
  display: block; 
  content: ""; 
  height: 30px; 
  margin-top: -31px; 
  border-style: solid; 
  border-color: #8c8b8b; 
  border-width: 0 0 1px 0; 
  border-radius: 20px; 
}

.hr-fancy {
	border-bottom: 14px solid transparent;
	border-image: linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #D0281B 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -webkit-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #D0281B 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -moz-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #D0281B 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -ms-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #D0281B 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -o-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #D0281B 50%, #FFF15C 75%, #D0281B 100%);
	border-image-slice: 1;
}

.hr-fancy-1 {
	border-bottom: 14px solid transparent;
	border-image: linear-gradient(to right, #23116D 0%,#E12A21 25%, #23116D 50%, #E12A21 75%, #23116D 100%);
	border-image: -webkit-linear-gradient(to right, #23116D 0%,#E12A21 25%, #23116D 50%, #E12A21 75%, #23116D 100%);
	border-image: -moz-linear-gradient(to right, #23116D 0%,#E12A21 25%, #23116D 50%, #E12A21 75%, #23116D 100%);
	border-image: -ms-linear-gradient(to right, #23116D 0%,#E12A21 25%, #23116D 50%, #E12A21 75%, #23116D 100%);
	border-image: -o-linear-gradient(to right, #23116D 0%,#E12A21 25%, #23116D 50%, #E12A21 75%, #23116D 100%);
	border-image-slice: 1;
	
}

.mybox {
	padding:15px 20px 40px 20px;
	margin: auto;
	
	background: transparent;
	margin-bottom:5px;
	border: 1px outset #ccc;
	border-radius:2px;
	box-shadow:1px 2px 3px rgba(0,0,0,0.5);
}
.mybox-old {
	padding:15px;
	margin: auto;
	background: transparent;
	margin-bottom:15px;
	border: 2px solid transparent;
	border-image: linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #00913E 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -webkit-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #00913E 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -moz-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #00913E 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -ms-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #00913E 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -o-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #00913E 50%, #FFF15C 75%, #D0281B 100%);
	border-image-slice: 1;
}

.mybox-bw {
	padding:15px;
	margin: auto;
	background: #eee;
	margin-bottom:15px;
	border: 1px solid transparent;
	border-image: linear-gradient(to right, #000000 0%,#555555 25%, #999999 50%, #555555 75%, #000000 100%);
	border-image: -webkit-linear-gradient(to right, #000000 0%,#555555 25%, #999999 50%, #555555 75%, #000000 100%);
	border-image: -moz-linear-gradient(to right, #000000 0%,#555555 25%, #999999 50%, #555555 75%, #000000 100%);
	border-image: -ms-linear-gradient(to right, #000000 0%,#555555 25%, #999999 50%, #555555 75%, #000000 100%);
	border-image: -o-linear-gradient(to right, #000000 0%,#555555 25%, #999999 50%, #555555 75%, #000000 100%);
	border-image-slice: 1;
}

.mybox-img {
	padding:10px;
	margin: auto;
	background: transparent;
	margin-bottom:15px;
	border: 1px solid transparent;
	border-image: linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #00913E 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -webkit-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #00913E 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -moz-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #00913E 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -ms-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #00913E 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -o-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #00913E 50%, #FFF15C 75%, #D0281B 100%);
	border-image-slice: 1;
	box-shadow:3px 5px 5px #333;
}


.font50 {
	font-size:50px;
}
.font30 {
	font-size:30px;
}
.font28 {
	font-size:28px;
}
.font25{
	font-size:25px;
}
.font22 {
	font-size:22px;
}
.font20 {
	font-size:20px;
}
.font19 {
	font-size:19px;
}
.font18 {
	font-size:18px;
}
.font17 {
	font-size:17px;
}
.font16 {
	font-size:16px;
}
.font15 {
	font-size:15px;
}
.font14 {
	font-size:14px;
}
.font13 {
	font-size:13px;
}
.font12 {
	font-size:12px;
}
.font11 {
	font-size:11px;
}
.font10 {
	font-size:10px;
}
.font9 {
	font-size:9px;
}
.font8 {
	font-size:8px;
}

.font30 a{
	font-size:30px;
}

.font25 a{
	font-size:25px;
}

.btn .font25 a{
	font-size:25px;
}
.font22 a{
	font-size:22px;
}
.font20 a{
	font-size:20px;
}
.font18 a{
	font-size:18px;
}
.font16  a{
	font-size:16px;
}
.font14 a{
	font-size:14px;
}
.bold400 {
	font-weight:400;
}
.bold500 {
	font-weight:500;
}
.bold600 {
	font-weight:600;
}
.bold700 {
	font-weight:700;
}
.bold800 {
	font-weight:800;
}
.bold900 {
	font-weight:900;
}
.font400 {
	font-weight:400;
}
.font500 {
	font-weight:500;
}
.font600 {
	font-weight:600;
}
.font700 {
	font-weight:700;
}
.font800 {
	font-weight:800;
}
.font900 {
	font-weight:900;
}
.min-height200{
	min-height: 200px! important;
}
.min-height300{
	min-height: 300px! important;
}
.min-height350{
	min-height: 350px! important;
}
.min-height400{
	min-height: 400px! important;
}
.italic {
    font-style: italic;
	font-weight:600;
}

.oblique {
    font-style: oblique;
	font-weight:600;
}

.lineheight10{
	line-height: 1.0em;
}
.lineheight12{
	line-height: 1.2em;
}
.lineheight15{
	line-height: 1.5em;
}
.lineheight18{
	line-height: 1.8em;
}
.lineheight20{
	line-height: 2.0em;
}
.lineheight25{
	line-height: 2.5em;
}

.topmargin10 {
	margin-top:10px;
}
.topmarginmobile10{
		margin-top:0px;
	}


.content-journal {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 0 30px;
  clear:both;
   font-family: "Open Sans", sans-serif;
}

.wrapper-journal {
  width: 33.3%;
  height: 100%;
  padding: 10px;
  margin: 20px 0;
  
}
  
.box-journal {
  position: relative;
  max-height: 500px;
  min-height: 400px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1.4px 1.7px rgba(0, 0, 0, 0.17), 0 3.3px 4px rgba(0, 0, 0, 0.24), 0 6.3px 7.5px rgba(0, 0, 0, 0.3), 0 7.2px 8.4px rgba(0, 0, 0, 0.36), 0 10.9px 15.1px rgba(0, 0, 0, 0.43), 0 20px 30px rgba(0, 0, 0, 0.6);
  right:0;
}
.box-journal .hide-journal {
  opacity: 0;
}
.box-journal .frame-journal {
  position: absolute;
  border: 1px solid #fff;
  z-index: 2;
  top: 50%;
  left: 50%;
  right:0;
  transform: translate(-50%, -50%);
  
}
.box-journal h2, .box-journal h4, .box-journal .myrow {
  position: absolute;
  color: #fff;
  z-index: 2;
  width: 100%;
  transition: opacity 0.2s, transform 0.3s;
  right:0;
}
.box-journal h2 {
  font-weight: 900;
  font-size: 19px;
  margin-bottom: 0;
  letter-spacing: 1px;
  margin-top: 0;
  top: 15%;
  
}
.box-journal h4 {
font-family: "Open Sans", sans-serif;
}
.box-journal .myrow {
  bottom: 0;
  font-size: 14px;
  letter-spacing: 1px;
  right:0;
  left:-3%;
}
.box-journal:hover {
  transition: all 0.3s ease-in-out;
}
.box-journal:hover:before {
  transition: all 0.3s ease-in-out;
}
.box-journal .img-journal {
  position: relative;
  width: 90%;
  height: 100%;
  z-index: 1;
  opacity:0.5;
  transition: all 0.3s ease-in-out;
   display: block;
  margin-left: auto;
  margin-right: auto;
  padding:15px;
}
.box-journal .img-journal:hover {
  transition: all 0.3s ease-in-out;
}
.box-journal .img-journal:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.box-journal .img-journal:hover {
  transition: all 0.3s ease-in-out;
}


.zoom-out-journal .frame-journal {
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  
}
.zoom-out-journal h2 {
  font-size: 20px;
  font-weight: 800;
  top:20%;
  letter-spacing: 1px;
 
  color:#FFFFFF;
  text-align:center;
  padding:10px 5px;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient-journal 15s ease infinite;
}
.zoom-out-journal h4 {
  font-size: 14px;
  font-weight: 800;
  top:35%;
  letter-spacing: 1px;
 
  color:#FFFFFF;
  text-align:center;
  padding:10px 5px;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient-journal 15s ease infinite;
}
@keyframes gradient-journal {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.zoom-out-journal span {
  font-size: 24px;
  font-weight: 500;
  background-color:#009746;
  color:#FFFFFF;
  padding:2px;
}
.zoom-out-journal .myrow {
  
  text-align: center;
  margin: 10px;
  right:0;
  background-color:#009746;
  color:#FFFFFF;
  padding:2px;
}
.zoom-out-journal .img-journal {
  transform: scale(1.1);
}
.zoom-out-journal:hover .img-journal {
  transform: scale(1);
  filter: contrast(70%);
}

@media screen and (max-width: 880px) {
  .wrapper-journal {
    width: 100%;
  }
 
}
@media screen and (max-width: 520px) {
  .wrapper-journal {
    width: 100%;
  }
}
  
  
  
.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.7);
    animation: animate-bg 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate-bg {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}  
  
  
  
 .demof {
border: 1px solid #ccc;
margin: 25px 0;
max-height:350px;
}
.demof ul {
padding: 0;
list-style: none;
width:100%;
}
.demof li {
padding: 20px;
border-bottom: 1px dashed #ccc;
margin-bottom:10px;
background: #eee;
width:100%;
}
.demof li.odd {
background: #ccc;
}
.demof li:after {
content: '';
display: block;
clear: both;
}
.demof img {
float: left;
width: 100px;
margin: 5px 15px 0 0;
}
.demof a {
font-family: Arial, sans-serif;
font-size: 16px;
font-weight: 600;
color:#00913E;
}
.demof h5 {
font-family: Arial, sans-serif;
font-size: 16px;
font-weight: 600;
color:#00913E;
}
.demof .btn  {
font-family: Arial, sans-serif;
font-size: 16px;
font-weight: 600;
margin: 15px 0;
color:#ffffff;
}
.demof p {
margin: 15px 0 0;
font-size: 14px;
width:100%;
}
.demof .news-description{
	margin: 15px 0 0;
font-size: 14px;
width:100%;
}
.demof li.odd .news-description{
background: #ccc;
}


/* for download page */
.container-download{
	 --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;

  /*background-color:rgba(0,0,0,0.3);*/
  border:1px solid rgba(0,0,0,0.2);
  border-radius:10px;
  color:#E12A21;
}
.img-download-1{
  min-height:75px;
  width:100%;
  background: url("../img/download_bg_5.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  padding:10px;
  text-align:left;
  color:#FFFFFF;
  font-weight:700;
  font-size:16px;
  margin-top:10px;
  border-top-left-radius:10px;
  border-top-right-radius:10px;
}
.img-download-1 .date{
	  color:#FFFFFF;
  font-weight:600;
  font-size:14px;
}
.item-download-1 {
  padding-left:5px;
  padding-right:5px;
}
.img-download-2 {
  height:75px;
  width:100%;
  background: url("../img/download_bg_6.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  padding:10px;
  text-align:left;
  color:#FFFFFF;
  font-weight:700;
  font-size:16px;
  margin-top:10px;
  border-top-left-radius:10px;
  border-top-right-radius:10px;
}
.img-download-2 .date {
	  color:#FFFFFF;
  font-weight:600;
  font-size:14px;
}
.item-download-2 {
  padding-left:5px;
  padding-right:5px;
}


.img-download-3 {
  height:75px;
  width:100%;
  background: url("../img/download_bg_7.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  padding:10px;
  text-align:left;
  color:#FFFFFF;
  font-weight:700;
  font-size:16px;
  margin-top:10px;
  border-top-left-radius:10px;
  border-top-right-radius:10px;
}
.img-download-3 .date {
	  color:#FFFFFF;
  font-weight:600;
  font-size:14px;
}
.item-download-3 {
  padding-left:5px;
  padding-right:5px;
}


.item-card-download{
  transition:0.5s;
  cursor:pointer;
    margin-bottom: 20px;
}
.item-card-title-download{  
  
  transition:1s;
  cursor:pointer;
}
.item-card-title-download i{  
  font-size:15px;
  transition:1s;
  cursor:pointer;
  color:#ffa710
}
.card-title-download i:hover{
  transform: scale(1.010) rotate(100deg); 
  color:#18d4ca;
  
}
.card-download:hover{
  transform: scale(1.010);
  box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
	
}
.card-text-download{
  height:40px;  
}

.card-download::before, .card-download::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale3d(0, 0, 1);
  transition: transform .3s ease-out 0s;
  background: rgba(255, 255, 255, 0.1);
  content: '';
  pointer-events: none;
}
.card-download::before {
  transform-origin: left top;
}
.card-download::after {
  transform-origin: right bottom;
}
.card-download:hover::before, .card-download:hover::after, .card-download:focus::before, .card-download:focus::after {
  transform: scale3d(1, 1, 1);
}

.myblue {
	color:#00913E !important;
}
.mydarkblue {
	color:#23116D !important;
}
.myred {
	color:#E12A21 !important;
}
.myyellow {
	color:#FFF851 !important;
}
.mygreen {
	color:#009746 !important;
}

.img-circle-footer {
	width:50px;
	height:50px;
	border-radius:50px;
}
 
 .terms-ul {
	 padding:5px;
	 margin-left:40px;
 }
 
 
  .container-view {
  display: flex;
  justify-content: center;
  align-items: center;

  flex-direction: column;
}
.buttons-view {
  display: flex;
  margin-left: auto;
}
.buttons-view div {
  margin: 0px 5px;
  color: rgba(225, 42, 33, 0.3);
  cursor: pointer;
  
}
.active {
  
  color: rgba(0, 128, 0, 1.0);
 
}
.buttons-view div > * {
  pointer-events: none;
}

.wrapper-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  width: 100%;
}
.wrapper-view.list {
  grid-template-columns: 1fr;
}
.wrapper-view .col-view {
  width: calc(100% - 20px);
  min-height: 200px;
  background: rgba(255,255,255,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
 
  color: #FFFFFA;
  margin-bottom: 10px;
}

.fade-in-text {
	animation: fadeIn 2s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
#quote_category {
	color:rgba(255, 248, 81,1);
}

@import "compass/css3";
.testimonial-quote {
    font-size: 16px;
}

.testimonial-quote blockquote {
    /* Negate theme styles */
    border: 0;
    margin: 0;
    padding: 2px 2px 2px 40px;

    background: rgba(255, 248, 81,0.2);
    color: #00913E;
    
    font-size: 1em;
    font-style: italic;
    line-height: 1.4 !important;
    margin: 0;
    position: relative;
    text-shadow: 0 1px white;
    z-index: 600;
}

.testimonial-quote blockquote * {
    box-sizing: border-box; 
}

.testimonial-quote blockquote p {
    color: #00913E; 
    line-height: 1.4 !important;
	font-weight:600;
}

.testimonial-quote blockquote p:first-child:before {
    content: '\201C';
    color: rgb(225, 42, 33);
    font-size: 5.5em;
    font-weight: 700;
    opacity: .2;
    position: absolute;
    top: -.4em;
    left: -.2em;    
    text-shadow: none;
    z-index: -300;
	font-family: Georgia, serif;
}

.testimonial-quote img {
    border: 3px solid #9CC1D3;
    border-radius: 50%;
    display: block;
    width: 120px;
    height: 120px;
    position: absolute;
    top: -.2em; 
    left: 0;    
}

.testimonial-quote cite {
    color: #E12A21;
    display: block;
    font-size: 1em;
	margin-left:30px;
}
  
.testimonial-quote cite span {
    color: #5e5e5e;
    font-size: 1em;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px white; 
}

.testimonial-quote {
    position: relative; 
}

.testimonial-quote .quote-container {
    padding-left: 10px; 
}
  
.testimonial-quote.right .quote-container {
    padding-left: 0;
    padding-right: 160px; 
}

.testimonial-quote.right img {
    left: auto;
    right: 0;
}

.testimonial-quote.right cite {
    text-align: right; 
}









.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #333;
  width: 95%;
  height: 50px;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #c0392b;
  padding: 8px 15px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: 10px;
}
.select-styled:hover {
  background-color: #b83729;
}
.select-styled:active, .select-styled.active {
  background-color: #ab3326;
}
.select-styled:active:after, .select-styled.active:after {
  top: 9px;
  border-color: transparent transparent #fff transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #ab3326;
}
.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  border-top: 1px solid #962d22;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.select-options li:hover, .select-options li.is-selected {
  color: #c0392b;
  background: #fff;
}
.select-options li[rel="hide"] {
  display: none;
}




/* Preloader https://codepen.io/crianbluff/pen/yxvMVJ */
.no-scroll-y {
	overflow-y: hidden;
}
.ctn-preloader {
	align-items: center;
  cursor: none;
	display: flex;
  height: 100%;
  justify-content: center;
	position: fixed;
	left: 0;
  top: 0;
	width: 100%;
  z-index: 99999999;
}

.ctn-preloader .animation-preloader {
	position: absolute;
  z-index: 100;
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
	border-radius: 50%;
  border: 20px groove rgba(12, 92, 194, 0.6);
  border-top-color: rgb(225, 42, 33); /* No se identa por orden alfabetico para que no lo sobre-escriba */
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
  font: bold 3em 'Montserrat', sans-serif;
	text-align: center;
	user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #00913E;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
	color: rgba(225, 42, 33, 0.2);
	position: relative;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.ctn-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
  left: 0;
}

.ctn-preloader .loader-section.section-right {
  right: 0;
}

/* Efecto de fade en la animación de cargando */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

/* Efecto de cortina */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

/* Animación del preloader */
@keyframes spinner {
	to {
		transform: rotateZ(360deg);
	}
}

/* Animación de las letras cargando del preloader */
@keyframes letters-loading {
  0%,
  75%,
  100% {
  	opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* Tamaño de portatil hacia atras (portatil, tablet, celular) */
@media screen and (max-width: 767px) {
	/* Preloader */
	/* Spinner cargando */	
	.ctn-preloader .animation-preloader .spinner {
		height: 8em;
		width: 8em;
	}

	/* Texto cargando */
	.ctn-preloader .animation-preloader .txt-loading {
	  font: bold 2.5em 'Montserrat', sans-serif;
	}
}

@media screen and (max-width: 500px) {
	/* Prelaoder */
	/* Spinner cargando */
	.ctn-preloader .animation-preloader .spinner {
		height: 7em;
		width: 7em;
	}

	/* Texto cargando */
	.ctn-preloader .animation-preloader .txt-loading {
	  font: bold 1.5em 'Montserrat', sans-serif;
	}
}


.news-ticker{
	max-height:350px;
}
@media screen and (max-width: 767px) {
	
.news-ticker{
	max-height:420px;
}	
}



.author-small-img {
	width:30px;
	height:30px;
	border-radius:50px;
}
.author-img {
	width:100px;
	height:100px;
	border-radius:3px;
}

.zoom {
    transition: transform 3.2s linear; /* Animation */
    z-index:9999999999999;
    margin: 0 auto;
}

.zoom:hover {
    transition: transform 2.2s ease-in-out; /* Animation */
	border-radius:1px;
	z-index:9999999999999;
	position:relative;
	-moz-transform: scale(4.5);
	-webkit-transform: scale(4.5);
	-o-transform: scale(4.5);
	-ms-transform: scale(4.5);
	transform: scale(4.5);
} 

.zoom-circle {
    transition: transform 0.5s linear; /* Animation */
    z-index:9999999999999;
    margin: 0 auto;
}

.zoom-circle:hover {
    transition: transform 1.2s ease-in-out; /* Animation */
	border-radius:50px;
	z-index:9999999999999;
	position:relative;
	-moz-transform: scale(5.5);
	-webkit-transform: scale(5.5);
	-o-transform: scale(5.5);
	-ms-transform: scale(5.5);
	transform: scale(5.5);
} 
.zoom-circle-1 {
    transition: transform 0.5s linear; /* Animation */
    z-index:9999999999999;
    
}

.zoom-circle-1:hover {
    transition: transform 1.2s ease-in-out; /* Animation */
	border-radius:50px;
	z-index:9999999999999;
	position:relative;
	-moz-transform: scale(9.5);
	-webkit-transform: scale(9.5);
	-o-transform: scale(9.5);
	-ms-transform: scale(9.5);
	transform: scale(9.5);
} 

.zoom-circle-big {    
    transition: transform 3.2s linear; /* Animation */
	z-index:9999999999999;
    margin: 0 auto;
}

.zoom-circle-big:hover {  
	transition: transform 1.2s ease-in-out; /* Animation */
	border-radius:1px;
	z-index:9999999999999;
	position:relative;
	-moz-transform: scale(15.5);
	-webkit-transform: scale(15.5);
	-o-transform: scale(15.5);
	-ms-transform: scale(15.5);
	transform: scale(15.5);
} 
 
 
 
 .marquee-container-new {
  height: 30px;
  overflow: hidden;
  line-height: 30px;
  color:#666666;
  font-weight:700;
}
.marquee-container-new .marquee-new {
  top: 0;
  left: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  animation: marquee-new 30s linear infinite;
}
.marquee-container-new .marquee2-new {
  animation-delay: 15s;
}
.marquee-container-new b {
  padding-left: 10px;
}

@keyframes marquee-new {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.marquee-new:hover {
 -moz-animation-play-state: paused;
 -webkit-animation-play-state: paused;
 animation-play-state: paused;
 }
 
 .marquee2-new:hover {
 -moz-animation-play-state: paused;
 -webkit-animation-play-state: paused;
 animation-play-state: paused;
 }