/*--Reset CSS--*/
*{margin:0;padding: 0}
a{text-decoration: none;transition: all .5s;}
a:hover{text-decoration: none}
ul{list-style: none;margin:0;padding: 0}
img{max-width: 100%}
input {transition: all .5s;}
a:focus{text-decoration: none;outline: unset;}
.fixo {
    overflow: hidden;
}
.fix{
    /*overflow:hidden;*/
    width: 100%;
}
.fullwidth {
	width: 100%;
}

/*--Jarallax css--*/
.jarallax {
    position: relative;
    z-index: 0;
}
.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/*--Loading icon 2--*/
.loader {
    height: 20px;
    width: 250px;
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 50%;
    right: 0;
    margin: auto;
    transform: translate(-50%, -50%);
}
.loader--dot {
    animation-name: loader;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: black;
    position: absolute;
    border: 2px solid #fff;
}
.loader--dot:first-child {
    background-color: #ffc528;
    animation-delay: 0.5s;
}
.loader--dot:nth-child(2) {
    background-color: #115b3b;
    animation-delay: 0.4s;
}
.loader--dot:nth-child(3) {
    background-color: #164177;
    animation-delay: 0.3s;
}
.loader--dot:nth-child(4) {
    background-color: #ffc528;
    animation-delay: 0.2s;
}
.loader--dot:nth-child(5) {
    background-color: #115b3b;
    animation-delay: 0.1s;
}
.loader--dot:nth-child(6) {
    background-color: #164177;
    animation-delay: 0s;
}
.loader--text {
position: absolute;
top: 200%;
left: 0;
right: 0;
width: 4rem;
margin: auto;
}
.loader--text:after {
content: "";
font-weight: bold;
animation-name: loading-text;
animation-duration: 3s;
animation-iteration-count: infinite;
}
  
  @keyframes loader {
    15% {
      transform: translateX(0);
    }
    45% {
      transform: translateX(230px);
    }
    65% {
      transform: translateX(230px);
    }
    95% {
      transform: translateX(0);
    }
  }
  @keyframes loading-text {
    0% {
      content: "";
    }
    25% {
      content: "";
    }
    50% {
      content: "";
    }
    75% {
      content: ""
    }
  }
  
/*--Loading icon 2--*/

/*--Button CSS--*/
.btnc {
    display: inline-block;
    background: #7da52e;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    overflow: hidden;
    width: 210px;
    text-align: center;
    height: 48px;
    line-height: 50px;
    position: relative;
}
.btnc:before, .btnc > span {
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    color: #fff;
}
.btnc > span {
    display: block;
    color: #fff;
}
.btnc > span {
    vertical-align: middle;
}
.btnc:hover > span {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    color: #fff;    
}
.btnc::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a457b;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);    
}
.btnc:hover:before{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);   
    color: #fff;
}

.btnb {
    display: inline-block;
    background: transparent;
    border: 2px solid #f3d016;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    overflow: hidden;
    width: 210px;
    text-align: center;
    height: 48px;
    line-height: 50px;
    position: relative;
}
.btnb:before, .btnb > span {
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    color: #fff;
}
.btnb > span {
    display: block;
    color: #fff;
}
.btnb > span {
    vertical-align: middle;
}
.btnb:hover > span {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    color: #fff;    
}
.btnb::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #f3d016;
    background: #f3d016;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);    
}
.btnb:hover:before{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);   
    color: #fff;
}


/*==================================================================5/12*/
.btnz {
	border: none;
	background: none;
	cursor: pointer;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 2px;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	text-align:center;
	overflow:hidden;
}

.btnz:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.btnz:before {
	speak: none;
	position: relative;
	-webkit-font-smoothing: antialiased;
}
/* Button 1b */
.btnz-1:after {
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	background: #f3d016;
}



.btnz-1:hover:after,
.btnz-1:active:after {
	height: 100%;
}
/* .btnz-1-a {
	border:2px solid #1a457b;
	color: #1a457b;
	height:45px;
	line-height:39px;
} */
.btnz-1-a {
	border: 2px solid #1a457b;
	color: #1a457b;
	height: 45px;
	line-height: 39px;
	background-color: #f3d016;
	border: none !important;
	font-weight: 600;
	letter-spacing: 4px;
}
/*==================================================================5/12*/
/*--Loading css icon--*/
#loading {
	background: #fff none repeat scroll 0 0;
	height: 100%;
	padding-top: 18%;
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 999999;
}
#loading i {
	color:#fff;
	font-size:40px;
}
#loading img{
    max-width: 300px;
    margin-bottom: 20px;
}
.loadasst {
    position: absolute;
    left: 50%;
    /*top: 58%;*/
	padding-top:110px;
    transform: translate(-50%, -50%);
}
  .p_loads { position:relative; }
/*--Loading full page css*/

/*--Loading bullet animation--*/
.loader-icon.bullets-jump span {
    -webkit-animation: loader-bullets-jump 1.2s infinite ease;
    -moz-animation: loader-bullets-jump 1.2s infinite ease;
    animation: loader-bullets-jump 1.2s infinite ease;
    animation-delay: 0.2s;
}
.loader-icon.bullets-jump span:nth-of-type(1) { animation-delay: 0.4s; }
.loader-icon.bullets-jump span:nth-of-type(3) { animation-delay: 0s; }
@-webkit-keyframes loader-bullets-jump {
  0% { top: 0; }
  40% { top: -4px; }
  80% { top: 0; }
}
@-moz-keyframes loader-bullets-jump {
  0% { top: 0; }
  40% { top: -4px; }
  80% { top: 0; }
}
@keyframes loader-bullets-jump {
  0% { top: 0; }
  40% { top: -4px; }
  80% { top: 0; }
}
.loader-icon[class*='bullets'] {
    width: 10px;
    height: 10px;
    display: inline-block;
    position: relative;
    margin-left: -50px;
}
.loader-icon[class*='bullets'] span {
    content: "";
    background: #de853c;
    width: 10px;
    height: 10px;
    margin-left:20px;
    margin-right:20px;
    position:  absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}
.text-light .loader-icon[class*='bullets'] span { background: #de853c; }
.loader-icon[class*='bullets'] span:nth-of-type(1) { left: 12px; }
.loader-icon[class*='bullets'] span:nth-of-type(3) { left: -12px; }
.loader-icon.bullets-fade span {
    -webkit-animation: loader-bullets-fade 1.6s infinite ease;
    -moz-animation: loader-bullets-fade 1.6s infinite ease;
    animation: loader-bullets-fade 1.6s infinite ease;
    animation-delay: 0.4s;
    }
    .loader-icon.bullets-fade span:nth-of-type(1) { animation-delay: 0.8s; }
    .loader-icon.bullets-fade span:nth-of-type(3) { animation-delay: 0s; }
    @-webkit-keyframes loader-bullets-fade {
      0% { opacity: 1; }
      40% { opacity: 0.3; }
      80% { opacity: 1; }
    }
    @-moz-keyframes loader-bullets-fade {
      0% { opacity: 1; }
      40% { opacity: 0.3; }
      80% { opacity: 1; }
    }
    @keyframes loader-bullets-fade {
      0% { opacity: 1; }
      40% { opacity: 0.3; }
      80% { opacity: 1; }
}
.loader-icon.bullets-jump span {
    -webkit-animation: loader-bullets-jump 1.2s infinite ease;
    -moz-animation: loader-bullets-jump 1.2s infinite ease;
    animation: loader-bullets-jump 1.2s infinite ease;
    animation-delay: 0.2s;
    }
    .loader-icon.bullets-jump span:nth-of-type(1) { animation-delay: 0.4s; }
    .loader-icon.bullets-jump span:nth-of-type(3) { animation-delay: 0s; }
    @-webkit-keyframes loader-bullets-jump {
      0% { top: 0; }
      40% { top: -4px; }
      80% { top: 0; }
    }
    @-moz-keyframes loader-bullets-jump {
      0% { top: 0; }
      40% { top: -4px; }
      80% { top: 0; }
    }
    @keyframes loader-bullets-jump {
      0% { top: 0; }
      40% { top: -4px; }
      80% { top: 0; }
}
.loader-icon.bullets-pulse span {
    -webkit-animation: loader-bullets-pulse 1.2s infinite ease;
    -moz-animation: loader-bullets-pulse 1.2s infinite ease;
    animation: loader-bullets-pulse 1.2s infinite ease;
    animation-delay: 0.2s;
    }
    .loader-icon.bullets-pulse span:nth-of-type(1) { animation-delay: 0.4s; }
    .loader-icon.bullets-pulse span:nth-of-type(3) { animation-delay: 0s; }

    @-webkit-keyframes loader-bullets-pulse {
      0% { -webkit-transform: scale(1); transform: scale(1); }
      40% { -webkit-transform: scale(1.1); transform: scale(1.3); }
      80% { -webkit-transform: scale(1); transform: scale(1); }
    }
    @-moz-keyframes loader-bullets-pulse {
      0% { -webkit-transform: scale(1); transform: scale(1); }
      40% { -webkit-transform: scale(1.1); transform: scale(1.3); }
      80% { -webkit-transform: scale(1); transform: scale(1); }
    }
    @keyframes loader-bullets-pulse {
      0% { -webkit-transform: scale(1); transform: scale(1); }
      40% { -webkit-transform: scale(1.1); transform: scale(1.3); }
      80% { -webkit-transform: scale(1); transform: scale(1); }
}
/*--Loading bullet animation end--*/

/*--Back top--*/
#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 15px;
    z-index: 9999;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 30px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    border: 1px solid #87c13c;
    background: #87c13c;
    border-radius: 50%;
    color:#fff;
}
#back-to-top:hover {
    border: 1px solid #000;
    color:#fff;
    background: #000;    
}
#back-to-top.show {
    opacity: 1;
}
/*--Back top end--*/

/*--Mouse scrolling icon --*/
@-webkit-keyframes ani-mouse {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
@-moz-keyframes ani-mouse {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
@keyframes ani-mouse {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
.scroll-btn > * {
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    color: #888;
    letter-spacing: 2px;
    font-weight: 300;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
    color: #ffffff;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
    opacity: 0.8;
    filter: alpha(opacity=80);
}
.scroll-btn .mouse {
    position: relative;
    display: block;
    width: 24px;
    height: 40px;
    margin: 0 auto 1px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #888;
    border-radius: 23px;
}
.scroll-btn .mouse > * {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 2px;
    height: 8px;
    margin: -10px 0 0 -1px;
    background: white;
    border-radius: 10px;
    -webkit-animation: ani-mouse 2.5s linear infinite;
    -moz-animation: ani-mouse 2.5s linear infinite;
    animation: ani-mouse 2.5s linear infinite;
}  
.scroll-btn a i {
    font-size: 20px;
    padding-left: 4px;
}
/*--Mouse scrolling icon end --*/

/*--lds-spinner icon--*/
.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-spinner div {
  transform-origin: 32px 32px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 29px;
  width: 5px;
  height: 14px;
  border-radius: 20%;
  background: #3f7bb1;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*--lds-spinner icon end--*/










