/* Colors */
/*TODO: rendrakás a színekben*/
:root {
  --color-default: #F5D09C;
  --color-primary: #3F312E;
  --color-secondary: #ecf39e;
  --color-next: #495f21;
  --color-logo: #F5D09C;
  --color-footer: #3F312E;
  --color-footer-light: #F5D09C;
  --color-footer-old: #0b212d;
  --color-footer-old-light: #b7e3a2;
  --color-icon: #738a31;
  --color-background: #c6cec1;
  --color-section-header: #273212;
}

/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Comfortaa", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --font-logo: "Damion", sans-serif;
  --font-pica: "IM Fell DW Pica", sans-serif;
  --font-comforta: "Comfortaa", sans-serif;
  --font-manrope: "Manrope", sans-serif;
  --font-outfit: "Outfit", sans-serif;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Outfit", sans-serif;
  color: #111111;
  background-color: #f7f7f7;
}

a {
  color: #4fa6d5;
  text-decoration: none;
}

a:hover {
  color: #45beff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Outfit", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-next);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #3F312E;
  opacity: 1;
}

#header.header-transparent {
  background: none;
}

#header.header-scrolled {
  background: rgba(63, 49, 46, 0.9);
  height: 70px;
}

#header .logo h1 {
  font-size: 40px;
  margin: 0;
  padding: 5px 0;
  line-height: 1;
  font-weight: 500;
  color: var(--color-logo);
  font-family: var(--font-logo);
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: var(--color-logo);
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin-right: 20px;
  max-height: 50px;
}

#main {
  margin-top: 80px;
}

@media (max-width: 768px) {
  #header .logo {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: hidden;
  }

  #header .logo img {
    max-height: 40px;
    width: auto;
    margin-right: 10px;
  }

  #header .logo h1 {
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .company {
    font-size: 20px !important;
  }

  #header .container {
    padding: 0 15px;
    overflow: hidden;
  }
}


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

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: var(--font-comforta);
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 800;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color-logo);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(63, 49, 46, 0.25);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #1c3745;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--color-icon);
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

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

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-menu a{
  display: none;
}

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

  .navbar ul {
    display: none;
  }
    .mobile-menu a{
    display: block;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 48, 31, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

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

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1e4356;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #68A4C4;
}

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

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

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

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

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #68A4C4;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}


#hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 100%;
  /*background: linear-gradient(to right, rgba(66, 138, 48, 0.3), rgba(30, 61, 86, 0.3)), url("../img/hatter4.webp") center top no-repeat;*/
  background: linear-gradient(to right, rgba(129, 138, 48, 0.3), rgba(32, 86, 30, 0.3)), url("../img/hatter4.webp") center top no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  border-radius: 0 0 0 0;
  transform: translateX(-50%) rotate(0deg);
}


#hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 96%;
  background: #49966d;
  opacity: 0.5;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) translateY(18px) rotate(2deg);
}

#hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 100%;
  /*background: #38383662;*/
  background: #1df02e62;
  opacity: 0.3;
  z-index: 0;
  border-radius: 0 0 0 0;
  transform: translateX(-50%) translateY(18px);
}

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

#hero video {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}



#hero h2 {
  color: #F8EDC2;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-comforta);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero p {
  width: 80%;
  font-size: 25px;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #F8EDC2;
  font-family: var(--font-comforta);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .btn-get-started {
  font-family: var(--font-comforta);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 3px solid var(--color-primary);
}

#hero .btn-get-started:hover {
  background: var(--color-primary);
  color: var(--color-logo);
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
    color: var(--color-secondary);
  }
}



@media (max-width: 575px) {
  #hero h2 {
    font-size: 30px;
  }

}

/*--------------------------------------------------------------
# Hero No Slider Section
--------------------------------------------------------------*/
#hero-no-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  text-align: center;
}

#hero-no-slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.6)), url("../img/út4.jpg") center top no-repeat;
}

#hero-no-slider h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 700;
}

#hero-no-slider p {
  color: #fff;
}

#hero-no-slider .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #BBD2B8;
}

#hero-no-slider .btn-get-started:hover {
  background: #BBD2B8;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px) {
  #hero-no-slider h2 {
    font-size: 30px;
  }
}


/*--------------------------------------------------------------
# Get Started
--------------------------------------------------------------*/
.get-started {
  padding: 0;
}

.get-started .content {
  background-color: rgba(40, 139, 36, 0.1);
  border-radius: 50px;
  margin-right: 30px;
  box-shadow: 0 7px 14px 0 rgba(54, 64, 37, 0.3);
}

.get-started .content h3 {
  margin-bottom: 20px;
  color: #495f21;
  letter-spacing: 1px;
}

.get-started span {
  font-weight: 600;
}

.get-started .content :after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(8px);
  z-index: -1;
}

.get-started .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 50px;
  color: #fff;
  background-color: #495f21d8;
  border: 1px solid var(--color-icon);
  text-align: center;
  letter-spacing: 3px;
  box-shadow: 0 7px 14px 0 rgba(54, 64, 37, 0.3);
}

.get-started .btn-get-started:hover {
  font-weight: 600;
  background: var(--color-icon);
  color: #fff;
}

.get-started .getting-help {
  background-color: #17455e56;
  background: linear-gradient(to right, rgba(66, 138, 48, 0.1), rgba(30, 61, 86, 0.1)), url("../img/erdout.jpg") center top no-repeat;
  background-size: cover;
  border-radius: 50px;
  align-items: center;
  display: flex;
  box-shadow: 0 7px 14px 0 rgba(54, 64, 37, 0.3);
}

.get-started .info {
  margin-top: 30px;
}

@media (max-width: 720px) {
  .get-started .content {
    margin-bottom: 20px;
    border-radius: 15px;
    border-top: 3px solid var(--color-icon);
  }

  .get-started .getting-help {
    margin-top: 40px;
    border-radius: 15px;
    border-bottom: 3px solid var(--color-icon);
  }
}

.extra-space {
  padding-top: 40px;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}


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

.section-title h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-section-header);
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-default);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 45px;
  font-weight: 500;
  font-family: var(--font-outfit);
  color: var(--color-default);
  margin-bottom: 50px;
}


@media (max-width: 768px) {
  .breadcrumbs h2 {
    font-size: 25px;
    text-align: center;
    vertical-align: middle;
  }
}


@media (max-width: 991px) {
  .breadcrumbs {
    background-color: #808080;
    background-image: none;
  }

  .breadcrumbs .container {
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 20px;
}

.services .row {
  display: flex;
  flex-wrap: wrap;
}

.service p span {
  font-weight: 600;
}

.services .icon-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #2a61230e;
  box-shadow: 0 7px 7px 0 rgba(54, 64, 37, 0.3);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border-radius: 30px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
}

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

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

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}

.services h4 {
  text-shadow: 0 0 0 transparent;
  transition: text-shadow 0.3s ease;
}

.services a {
  color: #000;
  font-weight: 500;
  transition: 0.3s smooth;
}

.services a:hover h4 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.services .icon-box-green .icon {
  background: #d3eecf;
}

.services .icon-box-green .icon i {
  color: #309622;
}

.services .icon-box-green img {
  transition: transform 0.3s ease;
  border-radius: 30px;
}

.services .icon-box-green:hover img {
  transform: scale(1.1);
}

.services .icon-box-green:hover {
  box-shadow: 0 7px 7px 0 rgba(54, 64, 37, 1);

}


.services .post-img {
  height: 200px;
  overflow: hidden;
  padding-bottom: 20px;
}

.services .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .card {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
}

.services .card img {
  transition: transform 0.3s ease;
}

.services .card img {
  transform: scale(1.1);
}

.service-cards {
  background-color: var(--color-background);
}

#service-cards img:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease;
  content: "";
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.image-container:hover .overlay {
  opacity: 1;
}

.image-container:hover img:not(:hover) {
  opacity: 0.7;
}

.image-container:hover img {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .services .icon-box {
    padding: 15px;
  }

  .services .icon-box h4,
  .services .icon-box p {
    padding: 10px;
  }
}

/*--------------------------------------------------------------
# Service-details
---------------------------------------------------------------*/

.service {
  box-sizing: border-box;
}


.service h3 {
  padding-bottom: 20px;
}

.service p {
  text-align: justify;
}

.service .description {
  text-align: justify;
}


.custom-shape {
  display: inline-block;
  margin-top: 50px;
  /*filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));*/
}


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

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

.service-title h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-section-header);
}

.service-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.service-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-default);
  bottom: 0;
  left: calc(50% - 20px);
}

.service-title p {
  margin-bottom: 0;
  text-align: center, justify;
}

/*--------------------------------------------------------------
# Container
---------------------------------------------------------------*/


.flipping {
  transform-style: preserve-3d;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.flipping .box {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 50px;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
}

.flipping .box .body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: 0.9s ease;
}



.flipping .box .body .imgContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.flipping .box .body .imgContainer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flipping .box .body .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-next);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: rotateY(180deg);
}

.flipping .box:hover .body {
  transform: rotateY(180deg);
}

.flipping .box .body .content div {
  transform-style: preserve-3d;
  padding: 20px;
  background: var(--color-primary);
  /*background: linear-gradient(45deg, var(--color-default),var(--color-primary));*/
  transform: translateZ(100px);
}

.flipping .box .body .content div h3 {
  letter-spacing: 1px;
}



/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .row+.row {
  margin-top: 100px;
}

.features .row {
  display: flex;
  align-items: flex-start;
}

.features .col-md-5 {
  display: flex;
  align-items: center;
}

.features h3 {
  font-weight: 400;
  font-size: 24px;
}

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

.features ul li {
  padding-bottom: 10px;
}

.features ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}

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

.text {
  line-height: 1.5;
  word-spacing: 0.2em;
}

.features .img-container {
  /*position: relative;*/
  max-width: 100%;
  height: auto;
}

.features .img-container::before {
  content: "";
  /*position: absolute;*/
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(8px);
  z-index: -1;
}


/*--------------------------------------------------------------
 # How-to 
--------------------------------------------------------------*/

.howto {
  padding-top: 20px;
}

.howto .row {
  padding-top: 50px;
}

.howto .icon-box {
  padding-left: 15px;
}

.howto .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}


.howto .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--color-icon);
}

.howto .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.howto .icon-box a {
  color: var(--color-section-header);
}

.howto .icon-box a:hover {
  color: var(--color-next);
}

.howto .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

#permit-types {
  padding: 20px;
}

#permit-types h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

#permit-types p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}



/*--------------------------------------------------------------
# Permit
--------------------------------------------------------------*/
.permit {
  padding-bottom: 40px;
  background-color: #fafafa;
}

.permit .nav-tabs {
  border: 0;
}

.permit .nav-link {
  border: 0;
  padding: 20px;
  transition: 0.3s;
  color: #364146;
  transition: 0.3s ease-in-out;
  border-radius: 0;
  border-left: 4px solid #fafbfb;
}

.permit .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  color: #597157;
}

.permit .nav-link p {
  font-size: 16px;
  margin-bottom: 0;
}

.permit .nav-link:hover {
  background: #e9ece9;
}

.permit .nav-link:hover h4 {
  color: #364146;
}

.permit .nav-link.active {
  border-radius: 0;
  border: 0;
  border-left: 4px solid var(--color-icon);
  background: #e9ece9;
}

.permit .nav-link.active h4 {
  color: var(--color-icon);
}

.permit .tab-pane.active {
  animation: slide-down 0.5s ease-out;
}

.permit .tab-content {
  text-align: right;
}

.permit .tab-content p {
  text-align: justify;
}

.permit .tab-content h3 {
  color: var(--color-icon);
  font-weight: 500;
}

.permit .tab-content li {
  text-align: left;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 60px 50px;
  align-items: center;
  display: block;
}

.bemutatkozas {
  background-color: rgba(143, 141, 137, 0.1);
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 30px, 30px, 30px, rgba(45, 55, 68, 0.5);
  text-align: center;
  align-items: center;
}

.description {
  color: #0b212d;
}



.about h3 {
  font-weight: 400;
  font-size: 40px;
  color: #273212;
  padding-bottom: 20px;
}

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

.about ul li {
  padding-bottom: 10px;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #0b212d;
  /*color: var(--color-icon);*/
}

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

.about .description {
  text-align: justify;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  padding-left: 30px;
}

.about span {
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.about img {
  padding-right: 30px;
}

/*
.about .bemutatkozas {
  position: absolute;
  width: 60%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 50px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 30 px, 30 px, 30 px, rgba(45, 55, 68, 0.30);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-primary);
  text-align: center;
  align-items: center;
}*/

/*
Who are we
*/

.about2 .content {
  background-color: #d4d4d4;
  padding: 40px;
  border-radius: 0;
}

.about2 h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-next);
  text-transform: uppercase;
}

.about2 h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-next);
}

.about2 p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about2 .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 30px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-next);
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.about2 .btn-read-more span {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about2 .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about2 .btn-read-more:hover i {
  transform: translateX(5px);
}


/*--------------------------------------------------------------
# Features2
--------------------------------------------------------------*/
.features2 .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 40px rgba(32, 112, 1, 0.08);
  transition: 0.3s;
  height: 100%;
  border-radius: 15px;
}

.features2 .feature-box h3 {
  font-size: 18px;
  color: #102011;
  font-weight: 700;
  margin: 0;
}

.features2 .feature-box i {
  line-height: 0;
  background: #d5e7d2;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 50px;
  transition: 0.3s;
}

.features2 .feature-box:hover i {
  background: var(--color-next);
  color: #fff;
}

.features2 .feture-tabs {
  margin-top: 120px;
}

.features2 .feture-tabs h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .features2 .feture-tabs h3 {
    font-size: 28px;
  }
}

.features2 .feture-tabs .nav-pills {
  border-bottom: 1px solid #eee;
}

.features2 .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #012970;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}

.features2 .feture-tabs .nav-link.active {
  color: #4154f1;
  border-bottom: 3px solid #4154f1;
}

.features2 .feture-tabs .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #012970;
}

.features2 .feture-tabs .tab-content i {
  font-size: 24px;
  line-height: 0;
  margin-right: 8px;
  color: #4154f1;
}

.features2 .feature-icons {
  margin-top: 120px;
}

.features2 .feature-icons h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .features2 .feature-icons h3 {
    font-size: 28px;
  }
}

.features2 .feature-icons .content .icon-box {
  display: flex;
}

.features2 .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #012970;
}

.features2 .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: #0245bc;
  margin-right: 15px;
}

.features2 .feature-icons .content .icon-box p {
  font-size: 15px;
  color: #848484;
}

.features2

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .counters span {
  font-size: 48px;
  display: block;
  color: var(--color-icon);
}

.facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
}

.facts {
  background-color: var(--color-background);
}

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

.counts .count-box {
  display: flex;
  align-items: center;
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.counts .count-box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: var(--color-icon);
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #102011;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials {
  background-color: #fffcf7;
}


.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}


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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary)
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}



/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding-bottom: 30px;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
}

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

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
  background: rgba(30, 67, 86, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 12px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #68A4C4;
}

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

.team .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #68A4C4;
}

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

.team .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}

.team .member:hover .social a,
.team .member:hover .social i {
  line-height: 0;
  font-size: 18px;
}

.team .member .social i {
  transition: color 0.3s;
  color: #fff;
  margin: 0 12px;
  display: inline-block;
}

.team .social i:hover {
  color: #68A4C4;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 30px;
}

.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
}

.contact .info-box i {
  font-size: 32px;
  color: var(--color-icon);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b7e3a2;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #666;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  margin-bottom: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #68A4C4;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

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

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

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

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

.contact .php-email-form .form-group a {
  color: var(--color-icon);
}

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

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

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
  padding: 0;
  margin-bottom: -6px;
}

.map iframe {
  width: 100%;
  height: 380px;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #1e4356;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #68A4C4;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #72afce;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #68A4C4;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #7aafcb;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #1e4356;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #4c99c1;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #255269;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #68A4C4;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #1e4356;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(30, 67, 86, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}


.blog .blog-pagination {
  color: #387ea2;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #1e4356;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #68A4C4;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #1e4356;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #68A4C4;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #77adca;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #1e4356;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #68A4C4;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #1e4356;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #68A4C4;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #3f8db5;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #e4eff5;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #68A4C4;
  background: #68A4C4;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #bedae8;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--color-footer);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: var(--color-footer);
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #b7e3a2;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

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

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  margin: 3px;
  background: #68A4C4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

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

#footer .footer-top {
  background: var(--color-footer);
  border-top: 1px solid #5e3917;
  border-bottom: 1px solid #271504;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: #fff;
  font-weight: 600;
}

#footer footer-top .footer-info .logo h3 {
  font-family: var(--font-logo);
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1e4356;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-footer-light);
  position: relative;
  padding-bottom: 12px;
}

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

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #b7e3a2;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #b7e3a2;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #b7e3a2;
}

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 200px;
  border: 1px solid #f1f1f1;
  perspective: 1000px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #bbb;
  color: black;
}

.flip-card-back {
  background-color: var(--color-default);
  color: white;
  transform: rotateY(180deg);
}


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.cont {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.cont::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}


.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.right::after {
  left: -16px;
}

.content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}


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

  .timeline::after {
    left: 31px;
  }

  .cont {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .cont::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }


  .left::after,
  .right::after {
    left: 15px;
  }

  .right {
    left: 0%;
  }
}


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

.modal-body ul li {
  padding-bottom: 10px;
}

.modal-body ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}

.modal h1 {
  color: var(--color-icon);
  text-align: center;
  margin-bottom: 30px;
}


.modal h2 {
  margin-bottom: 30px;
  text-align: center;
  color: var(--color-next);
}

.modal h3 {
  color: #4e4e4e;
  text-align: center;
}




.herotext {
  font-size: 20px;
}

.company {
  font-family: var(--font-logo);
  font-size: 40px;
  color: #F5D09C;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

#preloader-text {
  position: fixed;
  top: calc(50% + 40px);
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-primary);
  font-size: 40px;
  font-family: var(--font-logo);
  font-weight: 600;
  z-index: 999999;
}

#preloader-text span {
  color: #1a2b1c;
}

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

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

@media (max-width: 768px) {
  #preloader-text {
    font-size: 20px;
  }

  #preloader:before {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    border-width: 4px;
  }

  #preloader-text {
    top: calc(50% + 60px);
  }
}



/* God To Know  */


.good-to-know p span {
  font-weight: 600;
}

.good-to-know a {
  /*color: #9b5e19;*/
  color: var(--color-icon);
}

.good-to-know ul {
  list-style: none;
  padding: 0;
}


.good-to-know ul li {
  padding-bottom: 10px;
  display: flex;
  text-align: justify;
}

.good-to-know ul i {
  font-size: 25px;
  padding-right: 4px;
  color: var(--color-icon);
}

.good-to-know h3 {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-section-header);
}

.good-to-know h2 {
  padding-top: 0;
  padding-bottom: 30px;
  color: var(--color-section-header);
  letter-spacing: 1px;
}

.good-to-know .heading p {
  padding-bottom: 0;
  color: #8b4242;
}

/* TODO */
.good-to-know ul span {
  font-weight: 600;
  margin-left: 10px;
  padding-right: 10px;
  text-align: justify;
}

@media (max-width: 768px) {
  .good-to-know h2{
    font-size: 24px;
  }
}

/* Call-to Action */

.cta-section {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.cta-background {
  background: linear-gradient(rgba(154, 161, 44, 0.5), rgba(16, 78, 33, 0.5)), url("../img/út4.jpg");
  background-size: cover;
  /*background-image: url('../img/út4.jpg');*/
  /*background-color: #123649;*/
  background-size: cover;
  opacity: 1;
  height: 100%;
}

@media (min-width: 1365px) {
  .cta-section {
    background-attachment: fixed;
  }
}

.cta-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #d1ebe7;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #cbd9db;
}



.background-button {
  background-color: #61869b;
  width: 500px;
  height: 200px;
  color: rgb(255, 255, 255);
  padding: 15px 30px;
  font-size: 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.background-button:hover {
  background-color: #0d4d6e;
  color: #e4e4f3;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.why-us .icon-box {
  text-align: center;
  box-shadow: inset;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  box-shadow: 10px 5px 25px 5px rgba(25, 75, 40, 0.1);
  border-radius: 15px;
  background-color: #fffcf7;
}

.why-us .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #4e8b41;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}


.why-us .icon-box .icon i {
  color: #fdfce8;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.why-us .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  margin-top: 30px;
  text-transform: uppercase;
}

.why-us .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.why-us .icon-box h4 a:hover {
  color: #ffc451;
}

.why-us .icon-box p {
  text-align: justify;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 20px;
}

.why-us .icon-box:hover {
  border-color: #fff;
  box-shadow: 10px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  background: rgba(121, 120, 120, 0.1);
}

.why-us .icon-box:hover .icon {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  color: #c44513;
  background: #4e8b41;
}



/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

#faq.faq {
  padding: 60px 0;
}

#faq a {
  color: #248539;
}

.accordion-item {
  margin-bottom: 15px;

}

.accordion-button,
.accordion-header {
  background-color: var(--color-footer);
  color: #fff;
}

.accordion-button {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}


.accordion-button[aria-expanded="true"] {
  background-color: var(--color-primary);
}

.accordion-button:not(.collapsed) {

  color: #fff;
}

.accordion-body {
  background-color: #f3cea4;
  color: #000;
}

/*----------------------------
 #Prices
-----------------------------*/

.prices .container {
  padding: 30px, 30px, 30px, 30px;
  margin-bottom: 10px;
}

.prices h3 {
  color: var(--color-next);
}

.prices span {
  font-weight: 600;
}




/*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/
.onfocus {
  padding: 0;
}

.onfocus .video-play {
  min-height: 400px;
  background: url("../img/okir_szeles.png") center top no-repeat;
  background-size: cover;
}

.onfocus .content {
  /*background: url("../img/on-focus-content-bg.png") center center;*/
  background-color: #2f95b456;
  background-size: cover;
  color: rgba(var(--color-white-rgb), 0.8);
  padding: 40px;
  border-radius: 0px;
}

@media (min-width: 768px) {
  .onfocus .content {
    padding: 80px;
  }
}

.onfocus .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
}

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

.onfocus .content ul li {
  padding-bottom: 10px;
}

.onfocus .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

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

.onfocus .content .read-more {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 30px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #2f95b4;
}

.onfocus .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.onfocus .content .read-more:hover {
  background: #3f2e9e;
  color: #d3d9db;
  font-weight: 600;
  padding-right: 19px;
}

.onfocus .content .read-more:hover i {
  margin-left: 10px;
}


/*--------------------------------------------------------------
# Features3 Section
--------------------------------------------------------------*/
.features3 .nav-tabs {
  border: 0;
}

.features3 .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--color-icon);
  box-shadow: 5px 5px 25px #0a4e1342;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.features3 .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.features3 .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: #000;
  text-align: center;
}

.features3 .nav-link:hover {
  color: var(--color-next);
}

.features3 .nav-link.active {
  transition: 0.3s;
  /*background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));*/
  background-color: #0d5c04;
  border-color: var(--color-next);
}

.features3 .nav-link.active h4 {
  color: #fff;
}

.features3 .nav-link.active i {
  color: #fff !important;
}

.features3 .tab-content {
  margin-top: 30px;
}

.features3 .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features3 .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: var(--color-next);
}

.features3 .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features3 .tab-pane ul li {
  padding-bottom: 10px;
}

.features3 .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-icon);
}

.features3 .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*Tablazat*/

.container2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.tablazat h2 {
  font-size: 26px;
  margin: 20px 0;
  text-align: center;
}

.tablazat p {
  text-transform: uppercase;
  margin-left: 30px;
  margin-bottom: 30px;
  font-weight: 600;
  background-color: rgb(188, 212, 188);
  padding: 25px 30px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}

.tablazat .responsive-table li {
  border-radius: 3px;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.tablazat .responsive-table .table-header {
  background-color: rgb(188, 212, 188);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tablazat .responsive-table .table-row,
.tablazat .responsive-table .table-row-2 {
  background-color: #ffffff;
  border-left: 4px solid rgb(188, 212, 188);
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}

.tablazat .responsive-table .table-row-2 {
  background-color: #e6e6e6;
  border-left: 4px solid #044e1a25;
}

.tablazat .responsive-table .table-row:hover,
.tablazat .responsive-table .table-row-2:hover {
  background-color: rgba(188, 212, 188, 0.5);
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}

.tablazat .responsive-table .col-2 {
  flex-basis: 40%;
}

.tablazat .responsive-table .col-3,
.tablazat .responsive-table .col-4 {
  flex-basis: 30%;
}

@media all and (max-width: 767px) {
  .tablazat .responsive-table .table-header {
    display: none;
  }

  .tablazat .responsive-table li {
    display: block;
    flex-basis: 40%;

  }

  .tablazat .responsive-table .col {
    flex-basis: 40%;
    display: flex;
    padding: 10px 0;
    text-align: center;
  }

  .tablazat .responsive-table .col:before {
    color: #6C7A89;
    padding-right: 20px;
    content: attr(data-label);
    flex-basis: 60%;
    text-align: right;
  }
}


.more-service .card {
  border: 1px solid rgba(14, 29, 52, 0.15);
  background: #fff;
  position: relative;
  border-radius: 0;
  height: 100%;
}

.more-service .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.more-service .card .card-img img {
  transition: 0.3s ease-in-out;
}

.more-service .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.more-service .card a {
  color: var(--primary-color);
  transition: 0.3;
}

.more-service .card a:hover {
  color: var(--primary-contrast);
}

.more-service .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: var(--primary-contrast);
  font-size: 20px;
}

.more-service .card:hover .card-img img {
  transform: scale(1.1);
}

.more-service .card-dsc {
  background: #fff;
  position: relative;
  border-radius: 0;
  height: 100%;
}


/*--------------------------------------------------------------
# houses Section
--------------------------------------------------------------*/
#houses {
  padding: 60px 0;
}

#houses .house {
  border: 1px solid #e0e5fa;
  background: #fff;
  margin-bottom: 30px;
  position: relative;
}

#houses .house:hover{
  box-shadow: 0px 0px 30px rgba(63, 49, 46, 0.1);
}

#houses .house:hover .house-img img {
  transform: scale(1.1);
}

#houses .house-img {
  overflow: hidden;
  margin-bottom: 15px;
}

#houses .house-img img {
  transition: 0.3s ease-in-out;
}

#houses h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
}

#houses a {
  color: var(--color-next);
}

#houses a:hover {
  color: var(--color-icon);
}

#houses p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #060c22;
  font-style: italic;
  font-size: 15px;
}

#houses .blog-img {
  display: block;
  margin: 0 auto;
  padding: 20px;
  height: auto;
  max-width: 100%;
}

#houses .post-img {
  height: 300px;
  overflow: hidden;
}

#houses .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#houses .details {
  display: flex;
  margin-bottom: 15px;
}

#houses .details p {
  color: var(--color-section-header);
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
}

#houses  table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
}
#houses th{
  text-align: center;
  color: #5f6672;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 10px;
}
#houses td {
  text-align: center;
  color: var(--color-section-header);
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
}
