/* !---------- ANIMATIONS ----------*/
@-webkit-keyframes animateBG {

  0 {
    background-position: 0 0;
  }
  100% {
    background-position: 1000% 0;
  }
}
@keyframes animateBG {

  0 {
    background-position: 0 0;
  }
  100% {
    background-position: 1000% 0;
  }
}
.animateBG{
  -webkit-animation: animateBG 60s linear infinite;
  -o-animation: animateBG 60s linear infinite;
  animation: animateBG 60s linear infinite;
  background-repeat: repeat-x;
}
/* !---------- MAIN CONTENTS PADDINGS ----------*/
.small-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}
.medium-padding {
  padding-top: 150px;
  padding-bottom: 150px;
}

.nopadding{
	padding-left: 0 !important;
	padding-right: 0 !important;
}
/* !---------- TEXT SHORTCODES ----------*/
.uppercase {
  text-transform: uppercase !important;
}
.lowercase {
  text-transform: lowercase !important;
}
.capitalize {
  text-transform: capitalize !important;
}
.underline {
  text-decoration: underline !important;
}
.extralight {
  font-weight: 100 !important;
}
.light {
  font-weight: 300 !important;
}
.normal {
  font-weight: 400 !important;
}
.semibold {
  font-weight: 600 !important;
}
.bold {
  font-weight: 700 !important;
}
.extrabold {
  font-weight: 900 !important;
}
.italic {
  font-style: italic !important;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.align-justify {
  text-align: justify;
}


/* !---------- ELEMENTS SHORTCODES ----------*/
.fixed{
	position: fixed;
	z-index: 2;
	width: 100%;
}

p.tall {
  margin-bottom: 28px;
}
p.taller {
  margin-bottom: 62px;
}
p.big {
  font-size: 18px;
  line-height: 1.6em;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
}
.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
}
.parallax[class*=pattern] {
  background-size: inherit;
}
.dot-overlay {
  position: relative;
}
.dot-overlay:before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-image: url(../img/template-assets/dot.png);
}
.bg-center {
  background-position: center center;
}
.bg-left,
.bg-right {
  background-repeat: no-repeat;
}
.bg-left {
  background-position: left bottom;
}
.bg-right {
  background-position: right bottom;
}
.fullscreen-background {
  /*background-attachment: fixed !important;*/
  background-size: cover !important;
  background-position: center;
}
.fullscreen-section {
  min-height: 100%;
}
input,
select,
textarea {
  border: 1px solid #ddd;
}
.owl-item {
  transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.breadcrumbs, .breadcrumb{
  background: none;
}

/* !---------- CUSTOM COLORS ----------*/
.black {
  color: black !important;
}
.white {
  color: white !important;
}
.blue {
  color: #88daf7 !important;
}
.green{
	color: #2fc6b5 !important;
}
.textGray {
  color: #959595 !important;
}
.gray {
  color: #a6a6a6 !important;
}
.dark-gray {
  color: #555555 !important;
}
.transparent {
  color: transparent !important;
}
.foggy-white {
  color: #dbdbdb !important;
}
.smocky-white {
  color: #f4f4f4 !important;
}
.milky-white {
  color: #f9f9f9 !important;
}
.dark-transparent {
  color: rgba(0, 0, 0, 0.7) !important;
}


/* !---------- CUSTOM BACKGROUND COLORS ----------*/
.black-bg {
  background-color: black !important;
}
.dark-bg {
  background-color: #555555 !important;
}
.white-bg {
  background-color: white !important;
}
.blue-bg {
  background-color: #88daf7 !important;
  color: white;
}
.green-bg{
	background: #206122;
	color: white;
}
.gray-bg {
  background-color: #a6a6a6 !important;
  color: white;
}
.dark-gray-bg {
  background-color: #555555 !important;
  color: white;
}
.transparent-bg {
  background-color: transparent !important;
}
.foggy-white-bg {
  background-color: #dbdbdb !important;
  color: white;
}
.smocky-white-bg {
  background-color: #f4f4f4 !important;
}
.milky-white-bg {
  background-color: #f9f9f9 !important;
}
.dark-transparent-bg {
  background-color: rgba(0, 0, 0, 0.7) !important;
}
.white-transparent-bg {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
/* !---------- BORDER STYLES ----------*/
.bordered-gris {
  border-top: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
}

/*--------- BOTTOM ---------*/

.bottom-bordered-1-gray {
  border-bottom: 1px solid #aaa;
}
.bottom-bordered-2-gray {
  border-bottom: 2px solid #aaa;
}
.bottom-bordered-3-gray {
  border-bottom: 3px solid #aaa;
}
.bottom-bordered-4-gray {
  border-bottom: 4px solid #aaa;
}

.bottom-bordered-1-dark-bg {
  border-bottom: 1px solid #222;
}
.bottom-bordered-2-dark-bg {
  border-bottom: 2px solid #222;
}
.bottom-bordered-3-dark-bg {
  border-bottom: 3px solid #222;
}
.bottom-bordered-4-dark-bg {
  border-bottom: 4px solid #222;
}

.bottom-bordered-1-white {
  border-bottom: 1px solid #fff;
}
.bottom-bordered-2-white {
  border-bottom: 2px solid #fff;
}
.bottom-bordered-3-white {
  border-bottom: 3px solid #fff;
}
.bottom-bordered-4-white {
  border-bottom: 4px solid #fff;
}

.bottom-bordered-1-green {
  border-bottom: 1px solid #2fc6b5;
}
.bottom-bordered-2-green {
  border-bottom: 2px solid #2fc6b5;
}
.bottom-bordered-3-green {
  border-bottom: 3px solid #2fc6b5;
}
.bottom-bordered-4-green {
  border-bottom: 4px solid #2fc6b5;
}

.bottom-bordered-1-foggy-white {
  border-bottom: 1px solid #dbdbdb;
}
.bottom-bordered-2-foggy-white {
  border-bottom: 2px solid #dbdbdb;
}
.bottom-bordered-3-foggy-white {
  border-bottom: 3px solid #dbdbdb;
}
.bottom-bordered-4-foggy-white {
  border-bottom: 4px solid #dbdbdb;
}

.bottom-bordered-1-blue {
  border-bottom: 1px solid #88daf7;
}
.bottom-bordered-2-blue {
  border-bottom: 2px solid #88daf7;
}
.bottom-bordered-3-blue {
  border-bottom: 3px solid #88daf7;
}
.bottom-bordered-4-blue {
  border-bottom: 4px solid #88daf7;
}


/*--------- TOP ---------*/


.top-bordered-1-gray {
  border-top: 1px solid #aaa;
}
.top-bordered-2-gray {
  border-top: 2px solid #aaa;
}
.top-bordered-3-gray {
  border-top: 3px solid #aaa;
}
.top-bordered-4-gray {
  border-top: 4px solid #aaa;
}

.top-bordered-1-dark-bg {
  border-top: 1px solid #222;
}
.top-bordered-2-dark-bg {
  border-top: 2px solid #222;
}
.top-bordered-3-dark-bg {
  border-top: 3px solid #222;
}
.top-bordered-4-dark-bg {
  border-top: 4px solid #222;
}

.top-bordered-1-white {
  border-top: 1px solid #fff;
}
.top-bordered-2-white {
  border-top: 2px solid #fff;
}
.top-bordered-3-white {
  border-top: 3px solid #fff;
}
.top-bordered-4-white {
  border-top: 4px solid #fff;
}

.top-bordered-1-green {
  border-top: 1px solid #2fc6b5;
}
.top-bordered-2-green {
  border-top: 2px solid #2fc6b5;
}
.top-bordered-3-green {
  border-top: 3px solid #2fc6b5;
}
.top-bordered-4-green {
  border-top: 4px solid #2fc6b5;
}

.top-bordered-1-foggy-white {
  border-top: 1px solid #dbdbdb;
}
.top-bordered-2-foggy-white {
  border-top: 2px solid #dbdbdb;
}
.top-bordered-3-foggy-white {
  border-top: 3px solid #dbdbdb;
}
.top-bordered-4-foggy-white {
  border-top: 4px solid #dbdbdb;
}

.top-bordered-1-blue {
  border-top: 1px solid #88daf7;
}
.top-bordered-2-blue {
  border-top: 2px solid #88daf7;
}
.top-bordered-3-blue {
  border-top: 3px solid #88daf7;
}
.top-bordered-4-blue {
  border-top: 4px solid #88daf7;
}

.bottom-bordered-dotted {
  border-bottom: 1px dotted #ccc;
}

.right-bordered {
  border-right: 1px solid #aaa;
}
.left-bordered-orange {
  border-left: 8px solid #FF4200;
}
.left-bordered-green {
  border-left: 8px solid #2fc6b5;
}

.borderless {
  border: none !important;
}
/* !--------------- ICON SIZES ---------------*/
.icon {
  position: relative;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  padding: 0 6px;
}
.icon1-5x {
  font-size: 1.5em !important;
}
.icon2x {
  font-size: 1.9em !important;
}
.icon2-5x {
  font-size: 2.4em !important;
}
.icon3x {
  font-size: 2.85em !important;
}
.icon4x {
  font-size: 3.5em !important;
}
.icon4-5x {
  font-size: 4.6em !important;
}
/* !---------- CUSTOM PADDINGS AND MARGINS ----------*/
.padding-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.padding-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.padding-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.padding-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.padding-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.padding-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.padding-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.padding-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}
.padding-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.padding-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.padding-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.padding-top10 {
  padding-top: 10px !important;
}
.padding-top15 {
  padding-top: 15px !important;
}
.padding-top20 {
  padding-top: 20px !important;
}
.padding-top25 {
  padding-top: 25px !important;
}
.padding-top30 {
  padding-top: 30px !important;
}
.padding-top35 {
  padding-top: 35px !important;
}
.padding-top40 {
  padding-top: 40px !important;
}
.padding-top50 {
  padding-top: 50px !important;
}
.padding-top60 {
  padding-top: 60px !important;
}
.padding-top70 {
  padding-top: 70px !important;
}
.padding-top80 {
  padding-top: 80px !important;
}
.padding-top90 {
  padding-top: 90px !important;
}
.padding-top100 {
  padding-top: 100px !important;
}
.padding-bottom5 {
  padding-bottom: 5px !important;
}
.padding-bottom10 {
  padding-bottom: 10px !important;
}
.padding-bottom15 {
  padding-bottom: 15px !important;
}
.padding-bottom20 {
  padding-bottom: 20px !important;
}
.padding-bottom27 {
  padding-bottom: 27px !important;
}
.padding-bottom30 {
  padding-bottom: 30px !important;
}
.padding-bottom35 {
  padding-bottom: 35px !important;
}
.padding-bottom37 {
  padding-bottom: 37px !important;
}
.padding-bottom40 {
  padding-bottom: 40px !important;
}
.padding-bottom50 {
  padding-bottom: 50px !important;
}
.padding-bottom60 {
  padding-bottom: 60px !important;
}
.padding-bottom70 {
  padding-bottom: 70px !important;
}
.padding-bottom80 {
  padding-bottom: 80px !important;
}
.padding-bottom150 {
  padding-bottom: 150px !important;
}
.padding-left0 {
  padding-left: 0 !important;
}

.margin-top0 {
  margin-top: 0 !important;
}
.margin-top8 {
  margin-top: 8px !important;
}
.margin-top15 {
  margin-top: 15px !important;
}
.margin-top20 {
  margin-top: 20px !important;
}
.margin-top25 {
  margin-top: 25px !important;
}
.margin-top30 {
  margin-top: 30px !important;
}
.margin-top35 {
  margin-top: 35px !important;
}
.margin-top40 {
  margin-top: 40px !important;
}
.margin-top100 {
  margin-top: 100px !important;
}
.margin-bottom0 {
  margin-bottom: 0 !important;
}
.margin-bottom5 {
  margin-bottom: 5px !important;
}
.margin-bottom10 {
  margin-bottom: 10px !important;
}
.margin-bottom15 {
  margin-bottom: 15px !important;
}
.margin-bottom18 {
  margin-bottom: 18px !important;
}
.margin-bottom20 {
  margin-bottom: 20px !important;
}
.margin-bottom25 {
  margin-bottom: 25px !important;
}
.margin-bottom30 {
  margin-bottom: 30px !important;
}
.margin-bottom33 {
  margin-bottom: 33px !important;
}
.margin-bottom35 {
  margin-bottom: 35px !important;
}
.margin-bottom40 {
  margin-bottom: 40px !important;
}
.margin-left0 {
  margin-left: 0px !important;
}
/* !---------- CLEAR HEIGHTS ----------*/
.empty-space10 {
  height: 10px;
}
.empty-space15 {
  height: 15px;
}
.empty-space20 {
  height: 20px;
}
.empty-space22 {
  height: 22px;
}
.empty-space25 {
  height: 25px;
}
.empty-space30 {
  height: 30px;
}
.empty-space35 {
  height: 35px;
}
.empty-space38 {
  height: 38px;
}
.empty-space40 {
  height: 40px;
}
/* !---------- CUSTOM HEIGHTS ----------*/
.height240 {
  height: 240px;
}
.height320 {
  height: 320px;
}
.height360 {
  height: 360px;
}
.height415 {
  height: 415px;
}
.height450 {
  height: 450px;
}
.height520 {
  height: 520px;
}
.height530 {
  height: 530px;
}
.height540 {
  height: 540px;
}
.height550 {
  height: 550px;
}
.height570 {
  height: 570px;
}
.height600 {
  height: 600px;
}
.height630 {
  height: 630px;
}
.height650 {
  height: 650px;
}
.height700 {
  height: 700px;
}
.height760 {
  height: 760px;
}
.height890 {
  height: 890px;
}
.height960 {
  height: 960px;
}
/* !--------------- PAGINATION ---------------*/
.pagination {
  display: block;
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
}
.pagination ul {
  display: inline-block;
}
.pagination ul li {
  display: inline-block;
  width: 60px;
  height: 56px;
  float: left;
}
.pagination ul li a {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #f6f6f6;
  color: #a6a6a6;
  border: 1px solid #ddd;
  padding-top: 13px;
}
.pagination ul li a:hover {
  background: #a6a6a6;
  color: white;
}
.pagination ul li.pagination-prev a,
.pagination ul li.pagination-next a {
  padding-top: 14px;
}
.pagination ul li.pagination-prev a i,
.pagination ul li.pagination-next a i {
  font-size: 1.4em;
}
.pagination ul li:first-child a,
.pagination ul li:last-child a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.pagination.pagination-style1 ul li {
  margin-right: 5px;
  margin-left: 5px;
}
.pagination.pagination-style2 ul li a {
  border-left: none;
}
.pagination.pagination-style2 ul li.pagination-prev,
.pagination.pagination-style2 ul li.pagination-next {
  width: 100px;
}
.pagination.pagination-style2 ul li.pagination-prev a,
.pagination.pagination-style2 ul li.pagination-next a {
  font-size: 14px;
  font-weight: 600;
  padding-top: 15px;
  position: relative;
}
.pagination.pagination-style2 ul li.pagination-prev a i,
.pagination.pagination-style2 ul li.pagination-next a i {
  font-size: 1.9em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.pagination.pagination-style2 ul li.pagination-prev a {
  border-left: 1px solid #ccc;
  text-indent: 19px;
}
.pagination.pagination-style2 ul li.pagination-prev a i {
  left: -14px;
}
.pagination.pagination-style2 ul li.pagination-next a i {
  right: 6px;
}



/*************************************************************
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
..................... MEDIA QUERIES ......................
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*************************************************************/
@media screen and (max-width: 479px) {

}
@media screen and (min-width: 480px) and (max-width: 667px) {

}
@media screen and (max-width: 767px) {

}
@media screen and (max-width: 991px) {

}
@media screen and (min-width: 992px) and (max-width: 1199px) {

}
@media screen and (min-width: 1200px) and (max-width: 1400px) {

}
@media screen and (min-width: 1200px) and (max-width: 1600px) {

}
@media screen and (max-width: 1740px) {

}