/*================================================
            0 BASE CSS
==================================================*/

@import url('https://fonts.googleapis.com/css?family=Nunito:400,700|Roboto+Slab:400,700');

html, body {
    height: 100%;
    vertical-align: baseline;
}
body {
  overflow-x: hidden;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Nunito', sans-serif;
}

/*
font-family: 'Nunito', sans-serif;
font-family: 'Roboto Slab', serif;
 */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
}
a:focus {
    outline: 0 solid;
}
img {
    height: auto;
}
a{
   transition: 0.5s;
}
a:hover {
    text-decoration: none;
}
/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
a,
textarea,
input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"],
input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
    outline: none;
}
*, ::before, ::after {
    box-sizing: border-box;
}
img {
    max-width: 100%;
}
/***

====================================================================
  Loading Transition
====================================================================

 ***/
/* Preloader */
.ctn-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
}
.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: 3px solid rgba(0, 134, 65, 0.20);
  border-top-color: #008641;
  height: 170px;
  margin: 0 auto 45px auto;
  width: 170px;
}
/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #008641;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  line-height: 70px;
  position: absolute;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 15px;
  display: inline-block;
  color: rgba(0, 134, 65, 0.20);
  position: relative;
  font-size: 70px;
  line-height: 70px;
}
.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 .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.ctn-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
/* Animación del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .ctn-preloader .animation-preloader .txt-loading .letters-loading {font-size: 40px; letter-spacing: 10px;}
}

/* ------------------------------------
   Preloader CSS End Here
---------------------------------------*/
/* ------------------------------------
   Scroll To Css Start Here
---------------------------------------*/
#return-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: #fbc02d;
  width: 45px;
  height: 45px;
  display: block;
  text-decoration: none;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  z-index: 999999;
}
#return-to-top:before {
  transition: all 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85) 0s;
}
#return-to-top:hover::before {
  top: -60px;
}
#return-to-top::before {
  bottom: 0;
  content: "\f106";
  font-family: FontAwesome;
  font-size: 30px;
  left: 0;
  line-height: 55px;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: -5px;
  color: #ffffff;
}
#return-to-top:hover {
  background: #000;
}
#return-to-top:hover span {
  top: -6px;
}
#return-to-top span {
  bottom: 0;
  left: 0;
  line-height: 60px;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 60px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85) 0s;
}
/* ------------------------------------
   Header Style Start Here
---------------------------------------*/
.header {
  border-top: 4px solid #4ba50f;
  width: 100%;
  overflow: hidden;
}
.logo-area {
  margin-bottom: 10px;
  margin-top: -15px;
}
.header-top-area {

}
.head-top-social-area:after {
  background: #4ba50f;
  content: "";
  position: absolute;
  left: 50px;
  right: -20000px;
  top: 0;
  bottom: 0;
  -webkit-transform: skewX(30deg);
  -ms-transform: skewX(30deg);
  transform: skewX(30deg);
  z-index: -200;
}
.head_top_social .top_socail_icon_text {
  float: left;
}
.head_top_social .top_socail_icon_text h5 {
  color: #ffffff;
  font-size: 16px;
  padding: 7px 0 9px 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  margin: 0;
}
.social-helper {
  position: relative;
  float: right;
}
.social-top-icon {
  margin: 0;
  padding: 0;
}
.social-top-icon li {
  position: relative;
  list-style: none;
  float: left;
}
.social-top-icon li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  overflow: hidden;
  display: block;
  float: left;
  white-space: nowrap;
  text-decoration: none;
  transition: width 0.5s;
  box-sizing: border-box;
}
.social-top-icon li:hover a {
  width: 120px;
}
.social-top-icon li a .fa {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
.social-top-icon li:last-child a .fa {
  border-right: 0;
}
.social-top-icon li a span {
  color: #fff;
  padding-left: 3px;
  font-size: 16px;
  line-height: 30px;
  font-family: sans-serif;
}
.social-top-icon li:nth-child(1) a {
  background: #3b5999;
}
.social-top-icon li:nth-child(2) a {
  background: #cd201f;
}
.social-top-icon li:nth-child(3) a {
  background: #55acee;
}
.social-top-icon li:nth-child(4) a {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.social-top-icon li:nth-child(5) a {
  background: #007bb6;
}
.social-top-icon li:nth-child(6) a {
  background: #cb2027;
}
.social-top-icon li:nth-child(7) a {
  background: #F26522;
}
.header-middle-area{

}
.left-content-header {
  width: 45%;
  float: left;
}
.right-content-header {
  width: 55%;
  float: left;
}
.header-right-info ul li {
  display: inline-block;
  vertical-align: middle;
  padding-left: 25px;
  list-style: none;
}
.header-right-info ul {
  padding: 0;
  margin: 0;
  padding-top: 13px;
}
.header-right-info ul li .single-header-right-info .icon-box {
  float: left;
  width: 40px;
  height: 40px;
  border: 1px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-color: #008641;
  text-align: center;
  margin-right: 25px;
  margin-top: 6px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-right-info ul li .single-header-right-info .icon-box i {
  font-size: 22px;
  line-height: 40px;
  color: #008641;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-right-info {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
}
.header-right-info ul li .single-header-right-info .text-box, .header-right-info ul li .single-header-right-info .icon-box {
  display: table-cell;
  vertical-align: top;
}
.single-header-right-info .text-box {
  font-size: 15px;
}
.text-box p {
  margin-bottom: 5px;
  font-size: 15px;
  color: #000000;
  font-weight: 400;
}
.single-header-right-info .text-box h5 {
  font-size: 16px;
}
.text-box p a {
  color: #000000;
}
