/**
* Importing necessary  Styles.
**/
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,900|Poppins:300,400,500,600');
/*----bootstrap css ----- */
@import url('../vendor/bootstrap/bootstrap.css');
/*----bootstrap Select ----- */
@import url('../vendor/bootstrap-select/dist/css/bootstrap-select.css');
/*----camera-slider---*/
@import url('../vendor/Camera-master/css/camera.css');
/*------- Mega menu ------*/
@import url('../vendor/bootstrap-mega-menu/css/menu.css');
/*----font awesome -------*/
@import url('../fonts/fontawesome/css/fontawesome.min.css');
@import url('../fonts/fontawesome/css/regular.min.css');
@import url('../fonts/fontawesome/css/solid.min.css');
@import url('../fonts/fontawesome/css/brands.min.css');
/*----owl-carousel css----*/
@import url('../vendor/owl-carousel/owl.carousel.css');
@import url('../vendor/owl-carousel/owl.theme.css');
/*-------- animated css ------*/
@import url('../vendor/WOW-master/css/libs/animate.css');
/*-------Hover Css --------*/
@import url('../vendor/hover.css');
/*----------- Fancybox css -------*/
@import url('../vendor/fancybox/dist/jquery.fancybox.min.css');
/*--------- Jquery ui ---------*/
@import url('../vendor/jquery-ui/jquery-ui.min.css');
/*** 

====================================================================
  Loading Transition
====================================================================

 ***/
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: #fff;
  overflow: hidden;
}
#loader {
  width: 90px;
  height: 65px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loader ul {
  margin: 0;
  list-style: none;
  width: 90px;
  position: relative;
  padding: 0;
  height: 10px;
}
#loader ul li {
  position: absolute;
  width: 2px;
  height: 0;
  background-color: #55a932;
  bottom: 0;
}
@keyframes sequence1 {
  0% {
    height: 10px;
  }
  50% {
    height: 50px;
  }
  100% {
    height: 10px;
  }
}
@keyframes sequence2 {
  0% {
    height: 20px;
  }
  50% {
    height: 65px;
  }
  100% {
    height: 20px;
  }
}
/* Bounce */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2.5rem);
  }
  100% {
    transform: translateY(0);
  }
}
#loader li:nth-child(1) {
  left: 0;
  animation: sequence1 1s ease infinite 0;
}
#loader li:nth-child(2) {
  left: 15px;
  animation: sequence2 1s ease infinite 0.1s;
}
#loader li:nth-child(3) {
  left: 30px;
  animation: sequence1 1s ease-in-out infinite 0.2s;
}
#loader li:nth-child(4) {
  left: 45px;
  animation: sequence2 1s ease-in infinite 0.3s;
}
#loader li:nth-child(5) {
  left: 60px;
  animation: sequence1 1s ease-in-out infinite 0.4s;
}
#loader li:nth-child(6) {
  left: 75px;
  animation: sequence2 1s ease infinite 0.5s;
}
/*==================== Click Top ====================*/
.scroll-top {
  width: 30px;
  height: 30px;
  position: fixed;
  border-radius: 5px;
  bottom: 5px;
  right: 5px;
  z-index: 99;
  text-align: center;
  color: #fff;
  background: #54a832;
  font-size: 25px;
  display: none;
}
.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
/*______________________ Global stlye ___________________*/
html {
  scroll-behavior: smooth;
}
body {
  /*  font-family: 'Lato', sans-serif;  */
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
  position: relative;
}
body .main-page-wrapper {
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p, ul {
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h6 {
  color: #00441b;
}
h1 {
  font-size: 60px;
  font-weight: 600;
}
h2 {
  font-size: 40px;
  font-weight: 600;
}
h3 {
  font-size: 30px;
  font-weight: 500;
}
h4 {
  font-size: 24px;
  font-weight: 500;
}
h5 {
  font-size: 22px;
  font-weight: 500;
}
h6 {
  font-size: 20px;
  font-weight: normal;
}
p {
  line-height: 32px;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  display: inline-block;
}
a:hover, a:focus, a:visited {
  text-decoration: none;
  outline: none;
}
.main-wrapper{
    padding: 25px;
}
.main-wrapper ul{
    padding-left:25px;
}
.main-wrapper ul li{
    padding-bottom:15px;
}
img {
  max-width: 100%;
  display: block;
}
button {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: block;
  padding: 0;
}
input, textarea {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.mt-5{
    margin-top: 30px;
}
.m-top0 {
  margin-top: 0 !important;
}
.m-bottom0 {
  margin-bottom: 0 !important;
}
.p-bottm0 {
  padding-bottom: 0 !important;
}
.no-border {
  border: none !important;
}
h4 .title-ico {
  font-size: 40px;
  position: absolute;
  top: -8px;
  left: -65px;
  font-weight: bold;
}
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
/*--------------------- Buttons ------------------*/
.button-aligned{
	width: 348px;
    position: absolute;
    bottom: 80px;
    padding: 35px 0 40px 65px;
	display:block;
	font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-top: 2px;
}
.button-aligned i {
  font-size: 25px;
 
  vertical-align: middle;
}
.button-aligned:hover{
	color: #fff;
	background-color:#00441b;
}
.button-right{
	right: 0;
}
.button-right i {
	 margin-left: 12px;
}
.button-left{
	left: 0;
}
.button-left i{
	 margin-right: 12px;
}
/*--------------------- Transition --------------------*/
.tran3s, header.theme-menu-wrapper #mega-menu-wrapper .nav > li > a:before, #mega-menu-wrapper .nav > li.dropdown-holder .sub-menu li a:before, .park-bartbo-section .theme-title a:before, .owl-theme .owl-nav [class*=owl-], .nav-tabs > li > a, .banner-three .container a.button-two:after, .about-text .about-tab-wrapper .nav-tabs > li > a, .gullu-portfolio .single-item .opacity a.view-more:before, .our-blog .single-blog .image img, .bootstrap-select.btn-group .dropdown-menu li a, .blog-sidebar .blog-categories ul li a, .blog-sidebar .sidebar-recent-post li a, .blog-sidebar .sidebar-keyword ul li a {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.tran4s, .park-bartbo-section ul li div i {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
/*----------------------- Theme Color File -------------------*/
.p-color, .what-we-do .single-block:hover h5 a, .more-about-us .main-content .main-wrapper h4:before, .park-bartbo-section .theme-title a:hover, .park-bartbo-section h5, .camping-section .main-container .item .wrapper p:before, .home-blog-section .single-blog:hover > a, footer .footer-logo h5 a:hover, footer .footer-list ul li a:hover, footer .footer-subscribe ul li a:hover, #theme-main-banner.banner-one .camera_prev:before, #theme-main-banner.banner-one .camera_next:before, .blog-details .tag-option ul li a:hover, .our-blog .single-blog:hover .text > a, .our-team-styleOne .single-team-member .image .opacity ul li a, .service-version-one .single-service:hover a, .service-version-two .single-service:hover .text a, .gullu-portfolio .single-item:hover .opacity a.view-more, .portfolio-details .page-changer li a:hover, .our-blog .single-blog.solid-color:hover .text > a, .our-blog.blog-v3 .single-blog:hover .text h5 a, .our-blog.blog-v2 .single-blog:hover .text h5 a, .shop-page .shop-sidebar .popular-product li:hover .text a, .blog-details .comment-area .comment-section .comment button:hover, .contact-us .contact-address > a:hover, .contact-us .contact-address ul li a:hover, .shop-page .shop-sidebar .sidebar-categories li a:hover, .shop-page .shop-product-wrapper .single-product:hover h6 a, .shop-page .shop-product-wrapper .single-product > a:hover, header.theme-menu-wrapper.menu-style-two #mega-menu-wrapper .nav .login-button a:hover, .blog-sidebar .sidebar-recent-post li a:hover, .blog-sidebar .blog-categories ul li a:hover, .theme-modal-box .modal-content .modal-body form ul li label:before, .service-details .box-wrapper .middle-text ul li:before, .title-ico {
  color: #55a932;
}
.karczma-bartbo-section .theme-title a:hover, .karczma-bartbo-section h5 {
  color: #422713;
}
.p-bg-color, .two-bg-color, header.theme-menu-wrapper #mega-menu-wrapper .nav .login-button a:hover, .our-portfolio .theme-title a:hover, .park-bartbo-section .theme-title a:hover:before, .pricing-plan-one .nav-tabs > li.active > a, .pricing-plan-one .nav-tabs > li.active > a:hover, .pricing-plan-one .nav-tabs > li.active > a:focus, .banner-two .watch-video a:hover, .our-team-styleOne .title a:hover, .our-blog.blog-v2 .load-more:hover, .bootstrap-select.btn-group .dropdown-menu li.selected a, .bootstrap-select.btn-group .dropdown-menu li:hover a, .shop-details .procuct-details .product-info > div > a.cart-button, .shop-details .procuct-details .product-info > div > a.wishlist-button:hover, #mega-menu-wrapper .navbar-toggle .icon-bar, .blog-sidebar .sidebar-keyword ul li a:hover, .service-details .box-wrapper .title .loan {
  background: #55a932;
}
header.theme-menu-wrapper #mega-menu-wrapper .nav .login-button a:hover, .our-portfolio .theme-title a:hover, .banner-two .watch-video a:hover, .our-team-styleOne .title a:hover, header.theme-menu-wrapper.menu-style-two #mega-menu-wrapper .nav .login-button a:hover, .gullu-portfolio .single-item .opacity a.view-more:hover:before, .our-blog.blog-v2 .load-more:hover, .contact-us .contact-address ul li a:hover, .shop-page .shop-sidebar .sidebar-search input:focus, .shop-details .procuct-details .product-info > div > a.cart-button, .shop-details .procuct-details .product-info > div > a.wishlist-button:hover, .blog-sidebar .sidebar-keyword ul li a:hover {
  border-style: solid;
  border-color: #55a932;
}
.one-bg-color {
  background: #00481f;
}
.three-bg-color {
  background: #422713;
}
.dark-green {
  color: #00481f;
}
.anchor {
  padding-top: 100px;
  margin-top: -100px;
}
/*------------------- Theme Title ------------------*/
.theme-title {
  position: relative;
}
.theme-title h6 {
  font-weight: 600;
  font-size: 16px;
  color: rgba(0, 0, 10, 0.45);
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.theme-title h6:before {
  content: '';
  width: 100%;
  height: 5px;
  position: absolute;
  background: #55a932;
  border-radius: 2.5px;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.theme-title h2 {
  line-height: 55px;
  margin-top: 20px;
}
.theme-title-two h6 {
  font-weight: 500;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}
.theme-title-two h2 {
  line-height: 55px;
  font-weight: 700;
}
.theme-title-two h2 span {
  position: relative;
  z-index: 9;
}
.theme-title-two h2 span:before {
  content: '';
  width: 97%;
  height: 10px;
  position: absolute;
  background: #c7fadb;
  border-radius: 5px;
  left: 3px;
  bottom: 7px;
  z-index: -1;
}
.theme-title-two h2 strong {
  color: #0dda8f;
}
/*------------------------------ Theme menu ----------------------*/
header.theme-menu-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding-top: 62px;
}
header.theme-menu-wrapper.menu-style-one {
  background: rgba(255, 255, 255, 0.8);
}
header.theme-menu-wrapper.full-width-menu {
  padding-left: 80px;
  padding-right: 80px;
}
header.theme-menu-wrapper #mega-menu-wrapper .nav > li > a {
  padding: 0 0 20px 0;
  margin: 0 22px;
  position: relative;
  z-index: 9;
}
header.theme-menu-wrapper #mega-menu-wrapper .nav > li > a:before, #mega-menu-wrapper .nav > li.dropdown-holder .sub-menu li a:before {
  content: '';
  width: 0;
  height: 5px;
  opacity: 0;
  position: absolute;
  background: #55a932;
  border-radius: 2.5px;
  left: 0;
  z-index: -1;
}
header.theme-menu-wrapper #mega-menu-wrapper .nav > li > a:before {
  top: 17px;
}
#mega-menu-wrapper .nav > li.dropdown-holder .sub-menu li a:before {
  bottom: 14px;
}
header.theme-menu-wrapper #mega-menu-wrapper .nav > li.active > a:before, header.theme-menu-wrapper #mega-menu-wrapper .nav > li:hover > a:before, #mega-menu-wrapper .nav > li.dropdown-holder .sub-menu li:hover > a:before, #mega-menu-wrapper .nav > li.dropdown-holder .sub-menu .second-sub-menu > li > a:hover:before {
  opacity: 1;
  width: 100%;
}
header.theme-menu-wrapper #mega-menu-wrapper .nav .login-button a {
  width: 110px;
  line-height: 36px;
  font-weight: 600;
  font-size: 15px;
  padding: 0;
  text-align: center;
  color: #00000a;
  text-transform: uppercase;
  border: 2px solid rgba(0, 0, 10, 0.08);
  border-radius: 5px;
  margin: -7px 0 0 30px;
}
header.theme-menu-wrapper #mega-menu-wrapper .nav .login-button a:before {
  display: none;
}
header.theme-menu-wrapper #mega-menu-wrapper .nav .login-button a:hover {
  color: #fff;
}
/*------------------------------ Menu Style Two ------------------------*/
header.theme-menu-wrapper.menu-style-two #mega-menu-wrapper .nav > li > a {
  color: #fff;
  font-weight: normal;
}
header.theme-menu-wrapper.menu-style-two #mega-menu-wrapper .nav > li > a:before {
  display: none;
}
header.theme-menu-wrapper.menu-style-two #mega-menu-wrapper .nav .login-button a {
  border-color: rgba(255, 255, 255, 0.3);
}
header.theme-menu-wrapper.menu-style-two #mega-menu-wrapper .nav .login-button a:hover {
  background: #fff;
  border-color: #fff;
}
header.theme-menu-wrapper.menu-style-two.inner-menu #mega-menu-wrapper .nav > li > a:before {
  display: block;
}
header.theme-menu-wrapper.menu-style-two.inner-menu #mega-menu-wrapper .nav .login-button a:before {
  display: none;
}
/*--------------------------------- Header/Menu style Three ----------------------*/
header.theme-menu-wrapper.menu-style-three {
  padding-top: 45px;
}
.menu-style-three .top-header p {
  display: inline-block;
  color: rgba(38, 41, 46, 0.4);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 40px;
}
.menu-style-three .top-header p a {
  font-weight: 500;
  color: #29293f;
  font-size: 24px;
  margin: 0 42px 0 12px;
  vertical-align: -3px;
}
.menu-style-three .top-header p a:hover {
  color: #0dda8f;
}
.menu-style-three .top-header ul, .menu-style-three .top-header ul li {
  display: inline-block;
}
.menu-style-three .top-header ul li a {
  line-height: 40px;
  color: #d5d6d6;
  margin-left: 15px;
  font-size: 18px;
}
.menu-style-three .top-header ul li a:hover {
  color: #29293f;
}
header.theme-menu-wrapper.menu-style-three #mega-menu-wrapper .nav .quote-button a {
  width: 160px;
  line-height: 50px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  margin-left: 15px;
  color: #fff;
  background: #0dda8f;
  padding: 0 !important;
}
header.theme-menu-wrapper #mega-menu-wrapper .nav .quote-button a:before {
  display: none;
}
header.theme-menu-wrapper.menu-style-three #mega-menu-wrapper .nav > li > a {
  color: rgba(38, 41, 46, 0.4);
  margin: 0;
  padding: 14px 18px 20px 18px;
}
.menu-style-three #mega-menu-wrapper .nav > li.dropdown-holder .sub-menu li a {
  color: rgba(38, 41, 46, 0.4);
}
.menu-style-three #mega-menu-wrapper .nav > li.dropdown-holder .sub-menu li a:hover {
  color: #0dda8f;
}
header.theme-menu-wrapper.menu-style-three #mega-menu-wrapper .nav > li > a:before {
  content: '.';
  position: absolute;
  top: 12px;
  left: 0;
  background: transparent;
  opacity: 1;
  width: auto;
  height: auto;
}
header.theme-menu-wrapper.menu-style-three #mega-menu-wrapper .nav > li:first-child > a:before, .menu-style-three #mega-menu-wrapper .nav > li.dropdown-holder .sub-menu li a:before {
  display: none;
}
header.theme-menu-wrapper.menu-style-three #mega-menu-wrapper {
  margin-top: 20px;
}
/*================= Sticky Menu ===============*/
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -64px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -64px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
.theme-menu-wrapper.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
  padding-top: 35px;
  -webkit-box-shadow: 0px 13px 35px -12px rgba(35, 35, 35, 0.15);
  box-shadow: 0px 13px 35px -12px rgba(35, 35, 35, 0.15);
  -webkit-animation: menu_sticky 0.7s ease-in-out;
  animation: menu_sticky 0.7s ease-in-out;
}
.theme-menu-wrapper.fixed.menu-style-two {
  background: rgb(0, 68, 31)
}
.theme-menu-wrapper.fixed.menu-style-two.inner-menu {
  background: rgba(0, 68, 31, 0.8);
}
.menu-style-two #mega-menu-wrapper .navbar-toggle .icon-bar {
  background: #fff !important;
}
header.theme-menu-wrapper.fixed #mega-menu-wrapper .nav > li.menu-list > a {
  padding-bottom: 38px;
}
/*.theme-menu-wrapper.fixed .logo {
  -webkit-transform:rotate(90deg);
          transform:rotate(90deg);
}*/
header.theme-menu-wrapper.menu-style-three.fixed {
  padding-top: 35px;
}
.theme-menu-wrapper.menu-style-three.fixed .top-header {
  display: none;
}
header.theme-menu-wrapper.menu-style-three.fixed #mega-menu-wrapper {
  margin-top: 0;
}
header.theme-menu-wrapper.menu-style-three.fixed #mega-menu-wrapper .nav > li > a {
  padding-top: 15px;
  padding-bottom: 25px;
}
/*bon*/
.bon{
	position: relative;
	padding-bottom: 200px;
}
/*---------------------------------- Theme Banner --------------------------*/
.banner-img-one {
  -webkit-clip-path: url(#shape-one);
  clip-path: url(#shape-one);
}
.banner-img-two {
  -webkit-clip-path: url(#shape-two);
  clip-path: url(#shape-two);
}
.banner-img-three {
  -webkit-clip-path: url(#shape-three);
  clip-path: url(#shape-three);
}
.theme-shape-one-two {
  background: url(../svg/1-1.svg) no-repeat;
  height: 100%;
}
.theme-shape-two-two {
  background: url(../svg/2-2.svg) no-repeat;
  height: 100%;
}
.theme-shape-three-two {
  background: url(../svg/3-3.svg) no-repeat;
  height: 100%;
}
#theme-main-banner {
  margin-bottom: 90px;
}
.camera_wrap {
  float: none;
}
#theme-main-banner .camera_prev, #theme-main-banner .camera_next {
  height: 70px;
  margin-top: -35px;
  width: 30px;
  background: transparent;
  border-radius: 5px;
}
#theme-main-banner .camera_prev:before, #theme-main-banner .camera_next:before {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 70px;
  color: #fff;
  font-size: 50px;
  z-index: 9;
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
#theme-main-banner .camera_prev:before {
  content: '\f053';
}
#theme-main-banner .camera_next:before {
  content: "\f054";
}
#theme-main-banner .camera_prev > span, #theme-main-banner .camera_next > span {
  display: none;
}
#theme-main-banner .camera_overlayer {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#theme-main-banner.banner-one .camera_overlayer {
  /*background: url(../images/home/shape-1.png) no-repeat center center;*/
}
#theme-main-banner.camera_wrap .camera_pag .camera_pag_ul {
  position: absolute;
  text-align: center;
  top: 90%;
  left: 50%;
  z-index: 99;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#theme-main-banner .camera_caption {
  height: 100%;
}
#theme-main-banner .container {
  position: relative;
}
#theme-main-banner .camera_caption > div {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-shadow: none;
  left: 0;
  padding: 0;
}
.banner-one h5 {
  font-weight: normal;
  color: rgba(0, 0, 0, 0.4);
}
.banner-one h1 {
  line-height: 78px;
  margin: 25px 0 55px 0;
}
.banner-one .banner-slide-two h1 {
  color: #55a932;
}
.banner-one .banner-slide-three h1 {
  color: #422713;
}
.banner-one h1 span {
  position: relative;
  z-index: 9;
}
.banner-one h1 span:before {
  content: '';
  width: 97%;
  height: 7px;
  position: absolute;
  background: #55a932;
  border-radius: 2.5px;
  left: 3px;
  bottom: 17px;
  z-index: -1;
}
.banner-one .banner-slide-two span:before {
  background-color: #00441b;
}
.banner-one .banner-slide-three span:before {
  background-color: #f07820;
}
.camera_wrap .container a.button-one {
  width: 200px;
  line-height: 55px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  border-radius: 28px;
}
.banner-one .image-shape-one {
  display: inline-block;
  position: absolute;
  right: -96px;
  top: -15%;
  z-index: 0;
}
.banner-one .image-shape-two {
  display: inline-block;
  position: absolute;
  width: 850px;
  height: 569px;
  right: -119px;
  top: -20%;
  z-index: -1;
}
.bounce-slow {
  animation: bounce;
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.bounce {
  animation: bounce;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.banner-one #theme-shape-two {
  width: 100%;
  height: 100%;
}
.shapes {
  position: absolute;
  right: -96px;
  top: -15%;
  z-index: -10;
}
/*----------------------------- Banner Style Two ----------------*/
#theme-main-banner.banner-two .camera_overlayer {
  background: rgba(0, 0, 0, 0.6);
}
.banner-two h5 {
  font-weight: normal;
}
.banner-two h1 {
  line-height: 75px;
  color: #fff;
  margin: 25px 0 55px 0;
}
.banner-two .watch-video {
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  padding-left: 110px;
}
.banner-two .watch-video h6 {
  color: #fff;
}
.banner-two .watch-video h4 {
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-top: 7px;
}
.banner-two .watch-video a {
  width: 70px;
  height: 70px;
  text-align: center;
  border: 2px solid #fff;
  line-height: 66px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 2px;
  top: 0;
  z-index: 1;
}
.banner-two .play-option {
  position: absolute;
  right: -65px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*------------------------ Banner Style Three -----------------*/
.banner-three .container h1 {
  color: #1c1c27;
  line-height: 78px;
}
.banner-three .container h1 span, .banner-three .container a.button-two:hover, #theme-main-banner.banner-three .camera_prev:before, #theme-main-banner.banner-three .camera_next:before {
  color: #0dda8f;
}
.banner-three .container h5 {
  font-size: 19px;
  font-weight: normal;
  color: rgba(38, 41, 46, 0.7);
  margin: 70px 0 60px 0;
}
.banner-three .container a.button-two {
  font-weight: 500;
  font-size: 18px;
  color: #26292e;
  text-transform: capitalize;
  padding-bottom: 5px;
}
.banner-three .container a.button-two:before {
  content: '';
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.07);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.banner-three .container a.button-two:after {
  content: '';
  width: 0;
  height: 2px;
  background: #0dda8f;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
}
.banner-three .container a.button-two:hover:after {
  width: 100%;
}
.banner-three .watch-video {
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  padding-left: 95px;
}
.banner-three .watch-video a i:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.banner-three .watch-video h6 {
  color: #cfcfcf;
}
.banner-three .watch-video h4 {
  font-weight: 600;
  text-transform: uppercase;
  color: #26292e;
  margin-top: 7px;
}
.banner-three .watch-video a {
  width: 36px;
  height: 36px;
  text-align: center;
  border: 2px solid #0dda8f;
  line-height: 32px;
  border-radius: 50%;
  color: #0dda8f;
  font-size: 15px;
  position: absolute;
  left: 2px;
  top: 0;
  z-index: 1;
}
.banner-three .watch-video a:before, .banner-three .watch-video a:after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.banner-three .watch-video a:before {
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  border: 2px solid rgba(0, 228, 135, 0.35);
  -webkit-animation: hvr-ripple-out 1.2s ease-in-out infinite;
  animation: hvr-ripple-out 1.2s ease-in-out infinite;
}
.banner-three .watch-video a:after {
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  border: 2px solid rgba(0, 228, 135, 0.15);
  -webkit-animation: hvr-ripple-out-two 1.2s ease-in-out infinite;
  animation: hvr-ripple-out-two 1.2s ease-in-out infinite;
}
.banner-three .play-option {
  position: absolute;
  left: -25%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*----------------------- Video Banner -------------------*/
#video-banner {
  width: 100%;
  height: 900px;
  position: relative;
  margin-bottom: 90px;
}
#video-banner #video-player {
  width: 100%;
  height: 100%;
}
#video-banner .banner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}
#video-banner .banner-wrapper .container {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#video-banner .banner-wrapper h5 {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
}
#video-banner .banner-wrapper h1 {
  text-transform: capitalize;
  color: #fff;
  line-height: 78px;
  margin: 25px 0 55px 0;
}
#video-banner .banner-wrapper a.button-one {
  width: 200px;
  line-height: 55px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  border-radius: 28px;
}
/*-------------------------- What we do -------------------*/
.what-we-do {
  text-align: center;
  padding-bottom: 125px;
}
.what-we-do h3 {
  font-family: 'Lato', sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 54px;
  margin: 0 auto;
  width: 75%;
}
.what-we-do .container > h6 {
  color: rgba(37, 47, 62, 0.8);
  margin: 50px 0 130px 0;
}
.what-we-do .single-block .icon {
  width: 121px;
  height: 121px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 119px;
  font-size: 45px;
  margin: 0 auto;
  position: relative;
}
.what-we-do .single-block .icon.color-one {
  color: #55a932;
}
.what-we-do .single-block .icon.color-two {
  color: #ff3838;
}
.what-we-do .single-block .icon.color-three {
  color: #9262ff;
}
.what-we-do .single-block h6 {
  color: rgba(37, 47, 62, 0.5);
  font-size: 18px;
  margin: 30px 0 20px 0;
}
.what-we-do .single-block h5 a {
  color: #00441b;
  font-size: 20px;
  line-height: 30px;
}
.what-we-do .single-block:hover h5 a {
  text-shadow: 1px 1px 5px rgba(37, 47, 62, 0.1);
}
.what-we-do .single-block {
  padding: 0 25px;
  margin-bottom: 50px;
}
.what-we-do .single-block .icon.middle-block:before, .what-we-do .single-block .icon.middle-block:after {
  content: '';
  width: 200px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 49%;
}
.what-we-do .single-block .icon.middle-block:before {
  left: -240px;
}
.what-we-do .single-block .icon.middle-block:after {
  right: -240px;
}
/*---------------------- More About Us ---------------------*/
.more-about-us.bg-color {
  background: #f6fbfe;
  padding: 115px 0 110px 0;
  margin-bottom: 0;
}
.more-about-us.bg-color:before {
  content: '';
  width: 42%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/home/10.jpg) no-repeat center;
}
.more-about-us {
  padding: 0 0 30px 0;
  margin-bottom: 90px;
  position: relative;
  z-index: 9;
}
.more-about-us .main-content {
  padding-left: 45px;
}
.more-about-us .main-content h2 {
  line-height: 60px;
}
.more-about-us .main-content .main-wrapper {
  padding: 52px 0 0 65px;
}
.more-about-us .main-content .main-wrapper h4 {
  position: relative;
}
.more-about-us .main-content .main-wrapper p {
  line-height: 35px;
  margin: 32px 0 40px 0;
}
.more-about-us [class*="col-"] {
  position: static;
}
.more-about-us .image-box {
  position: absolute;
  top: 90px;
  left: -85px;
  z-index: -1;
}
.more-about-us .image-box .image-shape {
  -webkit-clip-path: url(#shape-one);
  clip-path: url(#shape-one);
}
.more-about-us .theme-shape-three {
  background: url(../svg/2.svg);
  width: 865px;
  height: 525px;
  position: absolute;
  top: 85px;
  left: -135px;
  z-index: -2;
}
/*------------------------ Theme Counter --------------------*/
.theme-counter {
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 130px 0 50px 0;
}
.theme-counter.fix {
  padding-bottom: 120px;
}
.theme-counter h2 {
  font-size: 50px;
}
.theme-counter p {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: #aeaeae;
  margin: 5px 0 40px 0;
}
/*------------------------ Previo ----------------------*/


.previo p {
  line-height: 35px;
  margin: 32px 0 40px 0;
}

/*------------------------ Our gallery ----------------------*/
.our-gallery {
  padding: 180px 0 200px 0;
}
.our-gallery .theme-title a {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  line-height: 51px;
  border: 2px solid rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: #00000a;
}
.our-gallery p {
  line-height: 35px;
  margin: 32px 0 40px 0;
}
.our-gallery .theme-title a:hover {
  color: #fff;
}
.our-gallery .wrapper {
  padding: 0 35px;
  margin-top: 130px;
}
.our-gallery .wrapper .image img {
  width: 100%;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.our-gallery .wrapper .image {
  position: relative;
  overflow: hidden;
}
.our-gallery .wrapper .image .opacity {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.our-gallery .wrapper .image:hover .opacity {
  opacity: 1;
  border-radius: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.our-gallery .wrapper .image .opacity a {
  display: block;
  width: 80px;
  height: 80px;
  margin: -40px auto 0 auto;
  position: relative;
  top: 50%;
}
.our-gallery .wrapper .image .opacity a:before, .our-gallery .wrapper .image .opacity a:after {
  content: '';
  position: absolute;
  background: #55a932;
}
.our-gallery .wrapper .image .opacity a:before {
  width: 2px;
  height: 100%;
  left: 50%;
  margin-left: -1px;
  bottom: 0;
}
.our-gallery .wrapper .image .opacity a:after {
  width: 100%;
  height: 2px;
  left: 0;
  margin-top: -1px;
  top: 50%;
}
.our-gallery .wrapper {
  margin: 0 0 0 15px;
}
/*------------------------ Park Bartbo Section ----------------------*/
.park-bartbo-section {
  position: relative;
  padding-bottom: 150px;
}
.park-bartbo-section img {
  position: absolute;
  left: 0;
  top: 0;
}
.park-bartbo-section .theme-title {
  margin-bottom: 70px;
}
.park-bartbo-section .theme-title p {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  margin: 35px 0 20px 0;
  display: inline-block;
}
.park-bartbo-section .theme-title a {
  font-weight: 600;
  color: #00000a;
  padding-bottom: 2px;
  text-transform: uppercase;
  bottom: -30px;
  float: right;
  border-bottom: 3px solid;
}
.park-bartbo-section ul {
  margin: 0 -35px;
  counter-reset: park-counter;
}
.park-bartbo-section ul li {
  padding: 0 35px;
  margin-bottom: 90px;
}
.park-bartbo-section ul li:before {
  content: counter(park-counter);
  font-size: 120px;
  line-height: 120px;
  font-weight: 900;
  counter-increment: park-counter;
  opacity: 0.15;
  position: absolute;
  left: 0;
  top: -20px;
}
.park-bartbo-section ul li div {
  position: relative;
}
.park-bartbo-section ul li div h5 a {
  color: #00000a;
  margin-bottom: 12px;
}
.park-bartbo-section ul li div p {
  line-height: 30px;
  font-weight: 500;
}
.park-bartbo-section ul li div i {
  font-size: 62px;
  position: absolute;
  top: -10px;
  left: 0;
}
.park-bartbo-section ul li:hover div i {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.park-bartbo-section ul li div i.flaticon-user {
  color: #088ed3;
}
.park-bartbo-section ul li div i.flaticon-layers {
  color: #ff5757;
}
.park-bartbo-section ul li div i.flaticon-bar-chart {
  color: #2ed876;
}
.park-bartbo-section ul li div i.flaticon-smartphone {
  color: #ffba34;
}
/*------------------------ KarczmaBartbo Section ----------------------*/
.karczma-bartbo-section {
  position: relative;
  padding-bottom: 150px;
}
.karczma-bartbo-section img {
  position: absolute;
  right: 0;
  top: 0;
}
.karczma-bartbo-section h2 {
  color: #422713;
}
.karczma-bartbo-section .theme-title h6:before {
  background: #422713;
}
.karczma-bartbo-section .theme-title {
  margin-bottom: 70px;
}
.karczma-bartbo-section .theme-title p {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  margin: 35px 0 20px 0;
  display: inline-block;
}
.karczma-bartbo-section .theme-title a {
  font-weight: 600;
  color: #00000a;
  padding-bottom: 2px;
  text-transform: uppercase;
  bottom: -30px;
  float: right;
  border-bottom: 3px solid;
}
.karczma-bartbo-section ul {
  margin: 0 -35px;
	counter-reset: karczma-counter;
}
.karczma-bartbo-section ul li {
  padding: 0 35px;
  margin-bottom: 90px;
}
.karczma-bartbo-section ul li:before {
  content: counter(karczma-counter);
  font-size: 120px;
  line-height: 120px;
  font-weight: 900;
  counter-increment: karczma-counter;
  opacity: 0.15;
  position: absolute;
  left: 0;
  top: -20px;
}
.karczma-bartbo-section ul li div {
  position: relative;
}
.karczma-bartbo-section ul li div h5 a {
  color: #00000a;
  margin-bottom: 12px;
}
.karczma-bartbo-section ul li div p {
  line-height: 30px;
  font-weight: 500;
}
.karczma-bartbo-section ul li div i {
  font-size: 62px;
  position: absolute;
  top: -10px;
  left: 0;
}
.karczma-bartbo-section ul li:hover div i {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.karczma-bartbo-section ul li div i.flaticon-user {
  color: #088ed3;
}
.karczma-bartbo-section ul li div i.flaticon-layers {
  color: #ff5757;
}
.karczma-bartbo-section ul li div i.flaticon-bar-chart {
  color: #2ed876;
}
.karczma-bartbo-section ul li div i.flaticon-smartphone {
  color: #ffba34;
}
/*------------------- Two Section Wrapper -----------------*/
.two-section-wrapper {
  background: url(../images/home/shape-3.png) no-repeat center;
}
/*--------------------- Testimonial ---------------------*/
.camping-section {
  padding: 130px 0 150px 0;
  position: relative;
  z-index: 9;
  margin-bottom: 140px;
}
.camping-section h6 {
  font-weight: 600;
  font-size: 16px;
  color: rgba(0, 0, 10, 0.45);
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.camping-section h6:before {
  content: '';
  width: 100%;
  height: 5px;
  position: absolute;
  background: #55a932;
  border-radius: 2.5px;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.camping-section h4 {
  position: relative;
}
.camping-section .main-content .main-wrapper {
  padding: 52px 0 0 65px;
}
.camping-section .main-content .main-wrapper p {
  line-height: 35px;
  margin: 32px 0 40px 0;
}
.camping-section.bg-image {
  background: url(../images/home/11.jpg) no-repeat center;
  background-size: cover;
  padding: 130px 0 150px 0;
}
.camping-section.bg-image .theme-title h6:before {
  display: none;
}
.camping-section.bg-image .theme-title h6 {
  letter-spacing: 1.2px;
}
.camping-section .main-container .theme-title {
  margin-bottom: 60px;
}
.camping-section .image-box {
  position: absolute;
  top: 130px;
  left: -85px;
  z-index: 1;
}
.camping-section .image-box .image-shape {
  -webkit-clip-path: url(#shape-one);
  clip-path: url(#shape-one);
}
.camping-section .theme-shape-four {
  background: url(../svg/2.svg);
  width: 865px;
  height: 525px;
  position: absolute;
  top: 110px;
  left: -135px;
  z-index: -1;
}

.ticket-promo {
    text-align: center;
    padding-top:30px;
        padding-bottom:30px;
  margin-bottom: 105px;
    background-color:#55a932;
    color: #fff !important;
}
.ticket-promo  p {
  
}
.gwiazdki {
        text-align: center;
    padding-bottom: 125px;
}
.gwiazdki h3{
    font-family: 'Lato', sans-serif;
    font-size: 38px;
    font-weight: 300;
    line-height: 54px;
    margin: 0 auto;
    width: 75%;
}

/*-------------------------- Pricing Plan One ----------------------*/
.pricing-plan-one .theme-title p {
  line-height: 34px;
  margin: 35px 0 0 0;
}
.pricing-plan-one .left-side {
  background: #54a832;
  text-align: center;
  color: #fff;
  padding: 50px 0 0 0;
}
.pricing-plan-one .adult-price {
  background: #00441b;
}
.pricing-plan-one .left-side span {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 60px;
  display: inline-block;
}
.pricing-plan-one .left-side span sup {
  font-size: 32px;
  top: -22px;
}
.pricing-plan-one .left-side span sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 24px;
  top: -25px;
  left: -5px;
}
.pricing-plan-one .left-side h6 {
  font-weight: 300;
  font-size: 24px;
  color: #fff;
  padding: 22px 0 62px 0;
}
.pricing-plan-one .left-side a {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 72px;
  line-height: 166px;
  background: #06d048;
  color: #fff;
}
.pricing-plan-one .right-side {
  background: #fff;
  padding: 65px 10px 73px 45px;
}
.pricing-plan-one .right-side h6 {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}
.pricing-plan-one .right-side h4 {
  margin: 22px 0 35px 0;
}
.pricing-plan-one .right-side ul li {
  line-height: 42px;
  font-weight: 500;
}
.pricing-plan-one .tab-content {
  -webkit-box-shadow: 0px 3px 35px 0px rgba(160, 190, 212, 0.22);
  box-shadow: 0px 3px 35px 0px rgba(160, 190, 212, 0.22);
}
.pricing-plan-one {
  padding-bottom: 210px;
}
.pricing-plan-one ul {
	list-style: disc;
}
/*------------------------ Home Blog Section --------------------*/
.home-blog-section {
  padding: 60px 0 0 0;
}
.home-blog-section .theme-title {
  margin-bottom: 140px;
}
.home-blog-section .row {
  margin: 0 -45px;
}
.home-blog-section .row [class*="col-"] {
  padding: 0 45px;
}
.home-blog-section .single-blog {
  position: relative;
  padding-left: 95px;
}
.home-blog-section .single-blog h6 {
  font-weight: 500;
  font-size: 18px;
}
.home-blog-section .single-blog h5 a {
  color: #13192d;
  position: relative;
  display: inline-block;
  line-height: 32px;
  margin: 12px 0 20px 0;
  z-index: 1;
}
.home-blog-section .single-blog p {
  margin: 0 0 20px 0;
  font-weight: 500;
}
.home-blog-section .single-blog > a {
  font-weight: 500;
  color: #000000;
}
.home-blog-section .single-blog > a i {
  margin-left: 8px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.4);
}
.home-blog-section .single-blog h5 a:before {
  content: '';
  width: 100%;
  height: 10px;
  border-radius: 5px;
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: -1;
}
.home-blog-section .single-blog.color-one h5 a:before {
  background: #edceff;
}
.home-blog-section .single-blog.color-two h5 a:before {
  background: #adf2c4;
}
.home-blog-section .single-blog.color-three h5 a:before {
  background: #ffe8bf;
}
.home-blog-section .single-blog.color-four h5 a:before {
  background: #ffdada;
}
.home-blog-section .single-blog img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.home-blog-section .single-blog {
  margin-bottom: 85px;
}
/*----------------------- Footer ---------------------*/
footer.bg-one {
  background: url(../images/home/footer.png) no-repeat center top;
  background-size: cover;
}
footer.bg-two {
  background: url(../images/home/footer2.jpg) no-repeat center center;
  background-size: cover;
  padding-top: 150px;
}
footer {
  padding-top: 180px;
}
footer .footer-logo h5 a {
  font-weight: 600;
  font-size: 16px;
  color: #222222;
  margin: 30px 0 15px 0;
}
footer h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}
footer .footer-list ul li {
  line-height: 40px;
}
footer .footer-list ul li a {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 500;
}
footer .footer-subscribe input {
  width: 100%;
  height: 55px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 0 20px;
  background: transparent;
}
footer .footer-subscribe form {
  padding: 15px 0 35px 0;
}
footer .footer-subscribe {
 text-align: right;
}
footer .footer-subscribe ul li {
  display: inline-block;
}
footer .footer-subscribe ul li a {
  color: #b4b5b6;
  font-size: 18px;
  margin-left: 15px;
}
footer .bottom-footer p, footer .bottom-footer ul li {
  line-height: 40px;
}
footer .bottom-footer p a {
  font-weight: 500;
}
footer .bottom-footer ul li {
  float: left;
  padding-left: 50px;
}
footer .bottom-footer ul li h3 {
  font-size: 24px;
  font-weight: 600;
}
footer .row [class*='col-'] {
  margin-bottom: 60px;
}
footer .bottom-footer {
  padding: 25px 0 70px 0;
}
#svag-shape {
  position: absolute;
  z-index: -999;
}
/*-------------------------- Home Version 3 ---------------------------*/
/*------------------ What We Do Style Two ------------------*/
.what-we-do-styletwo {
  padding: 85px 0 95px 0;
}
.what-we-do-styletwo .single-block {
  position: relative;
  padding-left: 75px;
  margin-bottom: 50px;
}
.what-we-do-styletwo .single-block .icon {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(38, 41, 46, 0.15);
  text-align: center;
  line-height: 48px;
  top: 8px;
  left: 0;
  color: rgba(38, 41, 46, 0.15);
  font-size: 18px;
}
.what-we-do-styletwo .single-block h6 {
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
}
.what-we-do-styletwo .single-block p {
  line-height: 28px;
}
/*----------------------- Company CEO Text -------------------*/
.company-seo-text p {
  margin: 30px 0 50px 0;
}
.company-seo-text h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  color: #000000;
}
.company-seo-text h6 {
  font-size: 17px;
  font-weight: 600;
  position: relative;
  padding-left: 60px;
  color: #000;
  margin: 42px 0 60px 0;
}
.company-seo-text h6 span {
  color: #bdbdbd;
  font-weight: 500;
}
.company-seo-text h6:before {
  content: '';
  width: 35px;
  height: 2px;
  background: #1c1c27;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
}
.company-seo-text a {
  width: 200px;
  line-height: 55px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  background: #0dda8f;
}
.company-seo-text img {
  border-radius: 50%;
}
/*----------------------------- Short Banner ----------------------*/
.short-banner {
  background: url(../images/home/13.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  margin: 150px 0 0 0;
}
.short-banner .opacity {
  text-align: center;
  background: rgba(0, 0, 0, 0.75);
  padding: 170px 0;
}
.short-banner .opacity h2 {
  font-family: 'Lato', sans-serif;
  font-weight: normal;
  font-size: 50px;
  line-height: 70px;
  color: #fff;
}
/*--------------------- Business Statics -----------------------*/
.business-statics {
  margin: 150px 0 150px 0;
  position: relative;
  max-width: 1920px;
}
.business-statics #chart {
  position: absolute;
  left: 0;
  top: 30px;
  z-index: -1;
  width: 49%;
}
.business-statics .main-content {
  padding-left: 35px;
}
.business-statics .main-content h2 {
  line-height: 60px;
}
.business-statics .main-content .main-wrapper {
  padding: 52px 0 0 75px;
}
.business-statics .main-content .main-wrapper h4 {
  position: relative;
  font-size: 22px;
  line-height: 35px;
}
.business-statics .main-content .main-wrapper h4:before {
  content: "\f107";
  font-family: Flaticon;
  font-size: 45px;
  position: absolute;
  top: 15px;
  left: -65px;
  color: rgba(0, 0, 0, 0.12);
  font-weight: normal;
}
.business-statics .main-content .main-wrapper p {
  line-height: 35px;
  margin: 32px 0 40px 0;
}
.business-statics .statics {
  width: 220px;
  height: 125px;
  border-radius: 15px;
  background: #fff;
  padding: 18px 0 0 45px;
  -webkit-box-shadow: 0px 0px 60px 0px rgba(193, 216, 228, 0.25);
  box-shadow: 0px 0px 60px 0px rgba(193, 216, 228, 0.25);
}
.business-statics .statics.fix {
  margin-left: 250px;
}
.business-statics .statics strong {
  font-family: 'Lato', sans-serif;
  font-size: 36px;
  color: #1b1b26;
  font-weight: normal;
}
.business-statics .statics i {
  font-size: 25px;
  margin-left: 10px;
  vertical-align: 5px;
}
.business-statics .statics p {
  font-size: 18px;
  font-weight: 500;
  color: #b8b8b8;
}
.business-statics .statics i.fa-long-arrow-up {
  color: #0dee67;
}
.business-statics .statics i.fa-long-arrow-down {
  color: #ff4052;
}
.business-statics .wrapper {
  margin-top: 100px;
  position: relative;
  z-index: 99;
}
/*--------------------- Theme Counter Style Two -------------------*/
.theme-counter-styleTwo {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 150px;
}
.theme-counter-styleTwo ul li {
  text-align: center;
  width: 30%;
  padding: 85px 0;
}
.theme-counter-styleTwo ul li:nth-child(2) {
  width: 40%;
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  border-right: 1px solid rgba(0, 0, 0, 0.07);
}
.theme-counter-styleTwo ul li p {
  font-size: 18px;
  color: rgba(27, 27, 38, 0.35);
  font-weight: 500;
  margin-bottom: 15px;
}
.theme-counter-styleTwo ul li h2 {
  font-family: 'Lato', sans-serif;
  font-weight: normal;
  color: #1b1b26;
}
/*---------------------------- Home Project -------------------------*/
.home-project .single-project-wrapper {
  padding: 0 50px;
  margin-bottom: 75px;
}
.home-project .single-project-wrapper h6 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 10, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.home-project .single-project-wrapper h2 a {
  color: #00000a;
  line-height: 55px;
  margin: 15px 0 50px 0;
}
.home-project .single-project-wrapper h2 a:hover {
  color: #0dda8f;
}
.home-project .single-project-wrapper .content {
  position: relative;
  padding-left: 95px;
}
.home-project .single-project-wrapper .content a {
  font-weight: 500;
  font-size: 17px;
  color: #00000a;
  margin-top: 24px;
}
.home-project .single-project-wrapper .content a i {
  margin-left: 8px;
  opacity: 0.4;
  vertical-align: -1px;
}
.home-project .single-project-wrapper:hover .content a {
  color: #0dda8f;
}
.home-project .single-project-wrapper .content span {
  font-size: 60px;
  font-weight: 300;
  color: rgba(40, 40, 50, 0.14);
  position: absolute;
  left: 0;
  top: -10px;
}
.home-project .single-project-wrapper .space {
  margin-bottom: 100px;
}
/*----------------------- End Hone Three Version -------------------*/
/*------------------ Theme Inner Banner -----------------*/
.inner-page-banner {
  background: url(../images/inner-page/banner.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  margin-bottom: 190px;
}
.sylwester {
  background: url(../images/inner-page/sylwester.jpg) no-repeat center;
	background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.inner-page-banner .opacity {
  text-align: center;
  background: rgba(0, 0, 10, 0.55);
  padding: 220px 0 175px 0;
}
.inner-page-banner .opacity h1 {
  color: #fff;
  text-transform: capitalize;
}
.inner-page-banner .opacity ul li {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  margin: 40px 2px 0 2px;
  text-transform: uppercase;
  color: #929292;
  letter-spacing: 1.1px;
}
.inner-page-banner .opacity ul li a {
  color: #fff;
}
/*--------------------- About Text ---------------------*/
.about-text {
  padding-bottom: 50px;
}
.about-text .title {
  text-align: center;
}
.about-text .title h6 {
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}
.about-text .title h2 {
  line-height: 60px;
  margin: 25px 0 100px 0;
}
.about-text .about-tab-wrapper {
  width: 65%;
  margin: 110px auto 0 auto;
}
.about-text .about-tab-wrapper .nav {
  width: 160px;
  border: none;
}
.about-text .about-tab-wrapper .nav-tabs > li {
  display: block;
  float: none;
  margin: 0;
}
.about-text .about-tab-wrapper .nav-tabs > li > a {
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  background: transparent;
  border: none;
  padding: 0;
  line-height: 58px;
}
.about-text .about-tab-wrapper .nav-tabs > li.active > a, .about-text .about-tab-wrapper .nav-tabs > li.active > a:hover, .about-text .about-tab-wrapper .nav-tabs > li.active > a:focus {
  color: #000;
}
.about-text .about-tab-wrapper .tab-content {
  width: calc(100% - 160px);
  padding: 12px 0 0 20px;
}
.about-text .about-tab-wrapper .tab-content p {
  line-height: 35px;
  margin-bottom: 30px;
}
/*-------------------- Our Team Style One ----------------------*/
.our-team-styleOne.inner-page {
  padding-bottom: 80px;
}
.our-team-styleOne .title {
  position: relative;
  margin: 0 0 115px 0;
}
.our-team-styleOne .title h2 {
  line-height: 55px;
}
.our-team-styleOne .title a {
  width: 145px;
  line-height: 46px;
  border: 2px solid rgba(0, 0, 0, 0.07);
  border-radius: 3px;
  text-align: center;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: absolute;
  right: 0;
  bottom: 10px;
}
.our-team-styleOne .title a:hover {
  color: #fff;
}
.our-team-styleOne .single-team-member {
  border-bottom: 1px solid rgba(108, 108, 108, 0.1);
  padding-bottom: 25px;
  margin-bottom: 90px;
  text-align: center;
}
.our-team-styleOne .single-team-member .image {
  position: relative;
  overflow: hidden;
}
.our-team-styleOne .single-team-member .image img {
  width: 100%;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.our-team-styleOne .single-team-member .image .opacity {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.our-team-styleOne .single-team-member .image .opacity ul li {
  display: inline-block;
}
.our-team-styleOne .single-team-member .image .opacity ul li a {
  font-size: 20px;
  margin: 0 10px;
}
.our-team-styleOne .single-team-member .image .opacity ul {
  opacity: 0;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.our-team-styleOne .single-team-member:hover .image .opacity ul {
  opacity: 1;
}
.our-team-styleOne .single-team-member:hover .image .opacity {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.our-team-styleOne .single-team-member:hover .image img {
  -webkit-transform: scale3D(1.1, 1.1, 1);
  transform: scale3D(1.1, 1.1, 1);
}
.our-team-styleOne .single-team-member h6 {
  font-weight: 500;
  margin: 38px 0 3px 0;
}
.our-team-styleOne.style-two .single-team-member .image {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  margin: 0 auto;
}
.our-team-styleOne.style-two .single-team-member .image .opacity {
  border-radius: 50%;
}
.our-team-styleOne.style-two .single-team-member {
  border: none;
  padding-bottom: 0;
}
/*------------------------ Trusted Client ------------------------*/
.trusted-client {
  padding-bottom: 100px;
}
.trusted-client .title {
  text-align: center;
  margin: 40px 0 100px 0;
}
.trusted-client .title p {
  font-size: 20px;
  margin-top: 35px;
}
.trusted-client .client-img {
  position: relative;
  height: 150px;
  margin-bottom: 50px;
}
.trusted-client .client-img img {
  position: relative;
  top: 50%;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*----------------------- Our Service Version One -----------------------*/
.service-version-one {
  padding-bottom: 130px;
}
.service-version-one h2 {
  line-height: 55px;
  margin-bottom: 110px;
}
.service-version-one .single-service i {
  display: block;
  font-size: 60px;
}
.service-version-one .single-service p {
  font-weight: 500;
  color: rgba(9, 9, 19, 0.4);
  margin-bottom: 8px;
}
.service-version-one .single-service a {
  font-weight: 500;
  line-height: 30px;
  color: #090913;
}
.service-version-one .single-service {
  margin-bottom: 75px;
}
.service-version-one .single-service i.flaticon-diamond {
  color: #ff5151;
}
.service-version-one .single-service i.flaticon-round-chart {
  color: #2dd665;
}
.service-version-one .single-service i.flaticon-notepad {
  color: #b15dff;
}
.service-version-one .single-service i.flaticon-drawing {
  color: #ffad43;
}
.service-version-one .single-service i.flaticon-computer {
  color: #2bbcff;
}
.service-version-one .single-service i.flaticon-business {
  color: #ff5151;
}
/*----------------------- Our Service Version two -----------------------*/
.service-version-two {
  padding-bottom: 60px;
}
.service-version-two .row {
  margin: 0 -35px;
}
.service-version-two .row [class*="col-"] {
  padding: 0 35px;
}
.service-version-two .single-service {
  margin-bottom: 130px;
}
.service-version-two .single-service .image-box {
  position: relative;
  overflow: hidden;
}
.service-version-two .single-service .image-box img {
  width: 100%;
  -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
  transform: translate3d(-30px, 0, 0) scale(1.1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.service-version-two .single-service:hover .image-box img {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.service-version-two .single-service .image-box .opacity {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(46, 93, 88, 0.8);
  padding: 50px 20px 50px 20px;
}
.service-version-two .single-service:hover .image-box .opacity {
  opacity: 1;
}
.service-version-two .single-service .image-box .opacity p {
  line-height: 24px;
  font-weight: 300;
  width: 50%;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}
.service-version-two .single-service .image-box .opacity p.one {
  padding: 0 10px 0 0;
  border-right: 1px solid #fff;
  text-align: right;
  -webkit-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
}
.service-version-two .single-service .image-box .opacity p.two {
  position: absolute;
  bottom: 50px;
  right: 20px;
  width: 45%;
  padding: 0 0 0 10px;
  border-left: 1px solid #fff;
  -webkit-transform: translate3d(40px, 0, 0);
  transform: translate3d(40px, 0, 0);
}
.service-version-two .single-service:hover .image-box .opacity p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.service-version-two .single-service .text p {
  font-weight: 500;
  font-size: 20px;
  color: rgba(0, 0, 10, 0.3);
  margin-top: 165px;
}
.service-version-two .single-service .text h2 {
  font-size: 72px;
  line-height: 80px;
  margin: 25px 0 10px 0;
}
.service-version-two .single-service .text a {
  font-size: 30px;
  color: rgba(0, 0, 0, 0.2);
  font-weight: normal;
}
/*----------------------- Service Details ------------------------*/
.service-details {
  padding-bottom: 120px;
}
.service-details .box-wrapper {
  padding: 0 75px;
}
.service-details .box-wrapper .title h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  font-weight: 600;
  margin-top: 8px;
}
.service-details .box-wrapper .title .loan {
  line-height: 55px;
  padding: 0 35px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.1px;
  color: #fff;
}
.service-details .box-wrapper .title {
  padding: 65px 0 50px 0;
}
.service-details .box-wrapper .top-text h4 {
  line-height: 40px;
  padding-bottom: 45px;
}
.service-details .box-wrapper .top-text p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
}
.service-details .box-wrapper .middle-text {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 60px 0 10px 0;
  margin: 50px 0 60px 0;
}
.service-details .box-wrapper .list-box-text h3 {
  font-size: 24px;
  font-weight: 600;
  padding: 1em 0;
}
.service-details .box-wrapper .list-box-text > p {
  font-size: 18px;
  margin: 20px 0 20px 0;
  line-height: 32px;
}
.service-details .box-wrapper .list-box-text ul li h4 {
  margin-bottom: 15px;
}
.service-details .box-wrapper .list-box-text ul li {
  position: relative;
  padding: 0 0 55px 40px;
}
.service-details .box-wrapper .middle-text ul li:before {
  content: "";
  font-family: 'font-awesome';
  position: absolute;
  top: -3px;
  left: 0;
  font-size: 25px;
}
.service-details .box-wrapper .list-box-text.bottom-text ul li {
  padding-left: 0;
}
.service-details .pakiet{
	border: 1px dotted #55A932;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 0 1em 1em;
	margin-bottom:1em;
}
/*------------------------ Conatct US -------------------------*/
.contact-us-form {
  padding-right: 70px;
}
.contact-us-form form input, .contact-us-form form textarea {
  background: #fff;
  border: none;
  border-bottom: 1px solid #f0eff4;
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  font-size: 16px;
}
.contact-us-form form input:focus, .contact-us-form form textarea:focus {
  border-bottom-color: #55a932;
}
.contact-us-form form input {
  height: 50px;
}
.contact-us-form form input[type="radio"], .contact-us-form form input[type="checkbox"] {
width: 30px;
    height: 30px;
	margin-left: -40px;
}
.contact-us-form form .radio label, .contact-us-form form .checkbox label{
font-size: 24px;
	padding-left: 50px;
}
.contact-us-form form textarea {
  height: 150px;
  max-height: 150px;
  padding: 20px 0;
}
.contact-us-form form button {
  width: 190px;
  line-height: 55px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
}
.contact-us .row [class*="col-"] {
  margin-bottom: 60px;
}
.contact-us .contact-address h2 {
  line-height: 55px;
  font-size: 38px;
}
.contact-us .contact-address p {
  font-size: 20px;
  font-weight: 300;
  margin: 35px 0 15px 0;
}
.contact-us .contact-address > a {
  font-size: 28px;
  font-weight: 500;
  color: #000;
}
.contact-us .contact-address ul li {
  display: inline-block;
  margin-top: 30px;
}
.contact-us .contact-address ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 38px;
  text-align: center;
  color: #cccccc;
  margin-right: 15px;
}
#google-map-area {
  padding: 0 50px;
  margin: 50px 0 120px 0;
}
#contact-google-map {
  width: 100%;
  height: 550px;
}
/*======================= Form Validation ===================*/
.alert-wrapper {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 9999999;
}
#success, #error {
  position: relative;
  width: 500px;
  height: 100px;
  top: calc(50% - 50px);
  left: calc(50% - 250px);
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
}
#success .wrapper, #error .wrapper {
  display: table;
  width: 100%;
  height: 100%;
}
#success .wrapper p, #error .wrapper p {
  display: table-cell;
  vertical-align: middle;
  letter-spacing: 1px;
}
#success {
  color: #26ace3;
}
#error {
  color: #C9182B;
}
#error button, #success button {
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 20px;
  background: transparent;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 20px;
}
.form-validation label.error {
  display: none !important;
}
.form-validation input.error, .form-validation textarea.error {
  border-bottom: 1px solid #f03838 !important;
}
