@charset "UTF-8";
/* Yleiset */
:root {
  --font_gray: #333;
  --theme_color: #215300;
  --yellow_color: #FFC400;
  --white-color: #fff;
  --yellow-deep: #B4830D;
  --hover-color-1: #215300;
  --hover-color-2: #000;
  --hover-color-3: #B4830D;
}
.white-color {
  color: var(--white-color) !important;
}
.yellow-deep-color {
  color: var(--yellow-deep) !important;
}
.yellow-deep-bg {
  background-color: var(--yellow-deep) !important;
}
.theme-color {
  color: var(--theme_color) !important;
}
.theme-bg {
  background-color: var(--theme_color) !important;
}
.white-bg {
  background-color: #ffffff;
}
.black-bg {
  background-color: #000;
}
body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color:#000;
}
.img, img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.f-left {
  float: left;
}
.f-right {
  float: right;
}
.fix {
  overflow: hidden;
}
a,
.button {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}
a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}
a,
button {
  color: inherit;
  outline: medium none;
  text-decoration: none;
}
.ac-blog-details a {
  color: darkgreen;
}
button:focus, input:focus, input:focus, textarea, textarea:focus {
  outline: 0;
}
.uppercase {
  text-transform: uppercase;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair", serif;
  color: var(--theme_color);
  margin-top: 0px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 {
  font-size: 80px;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 34px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 22px;
}
h6 {
  font-size: 16px;
}
ul {
  margin: 0px;
  padding: 0px;
}
p {
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
  color: var(--font_gray);
  margin-bottom: 15px;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}
hr {
  border-bottom: 1px solid #2E421E;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
  opacity: 1;
}
label {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}
.w_100 img {
  width: 100%;
}
*::-moz-selection {
  background-color: var(--theme_color);
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background-color: var(--theme_color);
  color: #fff;
  text-shadow: none;
}
::selection {
  background-color: var(--theme_color);
  color: #fff;
  text-shadow: none;
}
/*  Input */
input::-webkit-input-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
input:-moz-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
input::-moz-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
input:-ms-input-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
textarea::-webkit-input-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
textarea:-moz-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
textarea::-moz-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
textarea:-ms-input-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
input:focus::placeholder, textarea:focus::placeholder {
  opacity: 0;
}
/*  Common */
.fix {
  overflow: hidden;
}
.clear {
  clear: both;
}
.p-rel {
  position: relative;
}
.p-abs {
  position: absolute;
}
.p-static {
  position: static;
}
.w_img img {
  width: 100%;
}
@media (max-width: 767px) {
  .d-xs-none {
    display: none !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .d-xs-none {
    display: flex !important;
  }
}

/*  Overlay */
/*[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}
[data-overlay=light]::before {
  background-color: #f2f2f2;
}
[data-overlay=dark]::before {
  background-color: #1a1a1a;
}
[data-overlay=soft]::before {
  background-color: #f6f6f6;
}
[data-opacity="1"]::before {
  opacity: 0.1;
}
[data-opacity="2"]::before {
  opacity: 0.2;
}
[data-opacity="3"]::before {
  opacity: 0.3;
}
[data-opacity="4"]::before {
  opacity: 0.4;
}
[data-opacity="5"]::before {
  opacity: 0.5;
}
[data-opacity="6"]::before {
  opacity: 0.6;
}
[data-opacity="7"]::before {
  opacity: 0.7;
}
[data-opacity="8"]::before {
  opacity: 0.8;
}
[data-opacity="9"]::before {
  opacity: 0.9;
}*/
/* Margin & Padding */
.mt-5 {
  margin-top: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-35 {
  margin-top: 35px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-55 {
  margin-top: 55px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-65 {
  margin-top: 65px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-75 {
  margin-top: 75px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-85 {
  margin-top: 85px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-95 {
  margin-top: 95px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-105 {
  margin-top: 105px;
}
.mt-110 {
  margin-top: 110px;
}
.mt-115 {
  margin-top: 115px;
}
.mt-120 {
  margin-top: 120px;
}
.mt-125 {
  margin-top: 125px;
}
.mt-130 {
  margin-top: 130px;
}
.mt-135 {
  margin-top: 135px;
}
.mt-140 {
  margin-top: 140px;
}
.mt-145 {
  margin-top: 145px;
}
.mt-150 {
  margin-top: 150px;
}
.mt-155 {
  margin-top: 155px;
}
.mt-160 {
  margin-top: 160px;
}
.mt-165 {
  margin-top: 165px;
}
.mt-170 {
  margin-top: 170px;
}
.mt-175 {
  margin-top: 175px;
}
.mt-180 {
  margin-top: 180px;
}
.mt-185 {
  margin-top: 185px;
}
.mt-190 {
  margin-top: 190px;
}
.mt-195 {
  margin-top: 195px;
}
.mt-200 {
  margin-top: 200px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-55 {
  margin-bottom: 55px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-65 {
  margin-bottom: 65px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-75 {
  margin-bottom: 75px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-85 {
  margin-bottom: 85px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-95 {
  margin-bottom: 95px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-105 {
  margin-bottom: 105px;
}
.mb-110 {
  margin-bottom: 110px;
}
.mb-115 {
  margin-bottom: 115px;
}
.mb-120 {
  margin-bottom: 120px;
}
.mb-125 {
  margin-bottom: 125px;
}
.mb-130 {
  margin-bottom: 130px;
}
.mb-135 {
  margin-bottom: 135px;
}
.mb-140 {
  margin-bottom: 140px;
}
.mb-145 {
  margin-bottom: 145px;
}
.mb-150 {
  margin-bottom: 150px;
}
.mb-155 {
  margin-bottom: 155px;
}
.mb-160 {
  margin-bottom: 160px;
}
.mb-165 {
  margin-bottom: 165px;
}
.mb-170 {
  margin-bottom: 170px;
}
.mb-175 {
  margin-bottom: 175px;
}
.mb-180 {
  margin-bottom: 180px;
}
.mb-185 {
  margin-bottom: 185px;
}
.mb-190 {
  margin-bottom: 190px;
}
.mb-195 {
  margin-bottom: 195px;
}
.mb-200 {
  margin-bottom: 200px;
}
.ml-5 {
  margin-left: 5px;
}
.ml-10 {
  margin-left: 10px;
}
.ml-15 {
  margin-left: 15px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-25 {
  margin-left: 25px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-35 {
  margin-left: 35px;
}
.ml-40 {
  margin-left: 40px;
}
.ml-45 {
  margin-left: 45px;
}
.ml-50 {
  margin-left: 50px;
}
.ml-55 {
  margin-left: 55px;
}
.ml-60 {
  margin-left: 60px;
}
.ml-65 {
  margin-left: 65px;
}
.ml-70 {
  margin-left: 70px;
}
.ml-75 {
  margin-left: 75px;
}
.ml-80 {
  margin-left: 80px;
}
.ml-85 {
  margin-left: 85px;
}
.ml-90 {
  margin-left: 90px;
}
.ml-95 {
  margin-left: 95px;
}
.ml-100 {
  margin-left: 100px;
}
.ml-105 {
  margin-left: 105px;
}
.ml-110 {
  margin-left: 110px;
}
.ml-115 {
  margin-left: 115px;
}
.ml-120 {
  margin-left: 120px;
}
.ml-125 {
  margin-left: 125px;
}
.ml-130 {
  margin-left: 130px;
}
.ml-135 {
  margin-left: 135px;
}
.ml-140 {
  margin-left: 140px;
}
.ml-145 {
  margin-left: 145px;
}
.ml-150 {
  margin-left: 150px;
}
.ml-155 {
  margin-left: 155px;
}
.ml-160 {
  margin-left: 160px;
}
.ml-165 {
  margin-left: 165px;
}
.ml-170 {
  margin-left: 170px;
}
.ml-175 {
  margin-left: 175px;
}
.ml-180 {
  margin-left: 180px;
}
.ml-185 {
  margin-left: 185px;
}
.ml-190 {
  margin-left: 190px;
}
.ml-195 {
  margin-left: 195px;
}
.ml-200 {
  margin-left: 200px;
}
.mr-5 {
  margin-right: 5px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-15 {
  margin-right: 15px;
}
.mr-20 {
  margin-right: 20px;
}
.mr-25 {
  margin-right: 25px;
}
.mr-30 {
  margin-right: 30px;
}
.mr-35 {
  margin-right: 35px;
}
.mr-40 {
  margin-right: 40px;
}
.mr-45 {
  margin-right: 45px;
}
.mr-50 {
  margin-right: 50px;
}
.mr-55 {
  margin-right: 55px;
}
.mr-60 {
  margin-right: 60px;
}
.mr-65 {
  margin-right: 65px;
}
.mr-70 {
  margin-right: 70px;
}
.mr-75 {
  margin-right: 75px;
}
.mr-80 {
  margin-right: 80px;
}
.mr-85 {
  margin-right: 85px;
}
.mr-90 {
  margin-right: 90px;
}
.mr-95 {
  margin-right: 95px;
}
.mr-100 {
  margin-right: 100px;
}
.mr-105 {
  margin-right: 105px;
}
.mr-110 {
  margin-right: 110px;
}
.mr-115 {
  margin-right: 115px;
}
.mr-120 {
  margin-right: 120px;
}
.mr-125 {
  margin-right: 125px;
}
.mr-130 {
  margin-right: 130px;
}
.mr-135 {
  margin-right: 135px;
}
.mr-140 {
  margin-right: 140px;
}
.mr-145 {
  margin-right: 145px;
}
.mr-150 {
  margin-right: 150px;
}
.mr-155 {
  margin-right: 155px;
}
.mr-160 {
  margin-right: 160px;
}
.mr-165 {
  margin-right: 165px;
}
.mr-170 {
  margin-right: 170px;
}
.mr-175 {
  margin-right: 175px;
}
.mr-180 {
  margin-right: 180px;
}
.mr-185 {
  margin-right: 185px;
}
.mr-190 {
  margin-right: 190px;
}
.mr-195 {
  margin-right: 195px;
}
.mr-200 {
  margin-right: 200px;
}
.pt-5 {
  padding-top: 5px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-15 {
  padding-top: 15px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-25 {
  padding-top: 25px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-35 {
  padding-top: 35px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-45 {
  padding-top: 45px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-55 {
  padding-top: 55px;
}
.pt-60 {
  padding-top: 60px;
}
.pt-65 {
  padding-top: 65px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-75 {
  padding-top: 75px;
}
.pt-80 {
  padding-top: 80px;
}
.pt-85 {
  padding-top: 85px;
}
.pt-90 {
  padding-top: 90px;
}
.pt-95 {
  padding-top: 95px;
}
.pt-100 {
  padding-top: 100px;
}
.pt-105 {
  padding-top: 105px;
}
.pt-110 {
  padding-top: 110px;
}
.pt-115 {
  padding-top: 115px;
}
.pt-120 {
  padding-top: 120px;
}
.pt-125 {
  padding-top: 125px;
}
.pt-130 {
  padding-top: 130px;
}
.pt-135 {
  padding-top: 135px;
}
.pt-140 {
  padding-top: 140px;
}
.pt-145 {
  padding-top: 145px;
}
.pt-150 {
  padding-top: 150px;
}
.pt-155 {
  padding-top: 155px;
}
.pt-160 {
  padding-top: 160px;
}
.pt-165 {
  padding-top: 165px;
}
.pt-170 {
  padding-top: 170px;
}
.pt-175 {
  padding-top: 175px;
}
.pt-180 {
  padding-top: 180px;
}
.pt-185 {
  padding-top: 185px;
}
.pt-190 {
  padding-top: 190px;
}
.pt-195 {
  padding-top: 195px;
}
.pt-200 {
  padding-top: 200px;
}
.pb-5 {
  padding-bottom: 5px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-25 {
  padding-bottom: 25px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-35 {
  padding-bottom: 35px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-45 {
  padding-bottom: 45px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-55 {
  padding-bottom: 55px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pb-65 {
  padding-bottom: 65px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-75 {
  padding-bottom: 75px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pb-85 {
  padding-bottom: 85px;
}
.pb-90 {
  padding-bottom: 90px;
}
.pb-95 {
  padding-bottom: 95px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-105 {
  padding-bottom: 105px;
}
.pb-110 {
  padding-bottom: 110px;
}
.pb-115 {
  padding-bottom: 115px;
}
.pb-120 {
  padding-bottom: 120px;
}
.pb-125 {
  padding-bottom: 125px;
}
.pb-130 {
  padding-bottom: 130px;
}
.pb-135 {
  padding-bottom: 135px;
}
.pb-140 {
  padding-bottom: 140px;
}
.pb-145 {
  padding-bottom: 145px;
}
.pb-150 {
  padding-bottom: 150px;
}
.pb-155 {
  padding-bottom: 155px;
}
.pb-160 {
  padding-bottom: 160px;
}
.pb-165 {
  padding-bottom: 165px;
}
.pb-170 {
  padding-bottom: 170px;
}
.pb-175 {
  padding-bottom: 175px;
}
.pb-180 {
  padding-bottom: 180px;
}
.pb-185 {
  padding-bottom: 185px;
}
.pb-190 {
  padding-bottom: 190px;
}
.pb-195 {
  padding-bottom: 195px;
}
.pb-200 {
  padding-bottom: 200px;
}
.pl-5 {
  padding-left: 5px;
}
.pl-10 {
  padding-left: 10px;
}
.pl-15 {
  padding-left: 15px;
}
.pl-20 {
  padding-left: 20px;
}
.pl-25 {
  padding-left: 25px;
}
.pl-30 {
  padding-left: 30px;
}
.pl-35 {
  padding-left: 35px;
}
.pl-40 {
  padding-left: 40px;
}
.pl-45 {
  padding-left: 45px;
}
.pl-50 {
  padding-left: 50px;
}
.pl-55 {
  padding-left: 55px;
}
.pl-60 {
  padding-left: 60px;
}
.pl-65 {
  padding-left: 65px;
}
.pl-70 {
  padding-left: 70px;
}
.pl-75 {
  padding-left: 75px;
}
.pl-80 {
  padding-left: 80px;
}
.pl-85 {
  padding-left: 85px;
}
.pl-90 {
  padding-left: 90px;
}
.pl-95 {
  padding-left: 95px;
}
.pl-100 {
  padding-left: 100px;
}
.pl-105 {
  padding-left: 105px;
}
.pl-110 {
  padding-left: 110px;
}
.pl-115 {
  padding-left: 115px;
}
.pl-120 {
  padding-left: 120px;
}
.pl-125 {
  padding-left: 125px;
}
.pl-130 {
  padding-left: 130px;
}
.pl-135 {
  padding-left: 135px;
}
.pl-140 {
  padding-left: 140px;
}
.pl-145 {
  padding-left: 145px;
}
.pl-150 {
  padding-left: 150px;
}
.pl-155 {
  padding-left: 155px;
}
.pl-160 {
  padding-left: 160px;
}
.pl-165 {
  padding-left: 165px;
}
.pl-170 {
  padding-left: 170px;
}
.pl-175 {
  padding-left: 175px;
}
.pl-180 {
  padding-left: 180px;
}
.pl-185 {
  padding-left: 185px;
}
.pl-190 {
  padding-left: 190px;
}
.pl-195 {
  padding-left: 195px;
}
.pl-200 {
  padding-left: 200px;
}
.pr-5 {
  padding-right: 5px;
}
.pr-10 {
  padding-right: 10px;
}
.pr-15 {
  padding-right: 15px;
}
.pr-20 {
  padding-right: 20px;
}
.pr-25 {
  padding-right: 25px;
}
.pr-30 {
  padding-right: 30px;
}
.pr-35 {
  padding-right: 35px;
}
.pr-40 {
  padding-right: 40px;
}
.pr-45 {
  padding-right: 45px;
}
.pr-50 {
  padding-right: 50px;
}
.pr-55 {
  padding-right: 55px;
}
.pr-60 {
  padding-right: 60px;
}
.pr-65 {
  padding-right: 65px;
}
.pr-70 {
  padding-right: 70px;
}
.pr-75 {
  padding-right: 75px;
}
.pr-80 {
  padding-right: 80px;
}
.pr-85 {
  padding-right: 85px;
}
.pr-90 {
  padding-right: 90px;
}
.pr-95 {
  padding-right: 95px;
}
.pr-100 {
  padding-right: 100px;
}
.pr-105 {
  padding-right: 105px;
}
.pr-110 {
  padding-right: 110px;
}
.pr-115 {
  padding-right: 115px;
}
.pr-120 {
  padding-right: 120px;
}
.pr-125 {
  padding-right: 125px;
}
.pr-130 {
  padding-right: 130px;
}
.pr-135 {
  padding-right: 135px;
}
.pr-140 {
  padding-right: 140px;
}
.pr-145 {
  padding-right: 145px;
}
.pr-150 {
  padding-right: 150px;
}
.pr-155 {
  padding-right: 155px;
}
.pr-160 {
  padding-right: 160px;
}
.pr-165 {
  padding-right: 165px;
}
.pr-170 {
  padding-right: 170px;
}
.pr-175 {
  padding-right: 175px;
}
.pr-180 {
  padding-right: 180px;
}
.pr-185 {
  padding-right: 185px;
}
.pr-190 {
  padding-right: 190px;
}
.pr-195 {
  padding-right: 195px;
}
.pr-200 {
  padding-right: 200px;
}
.bg-default {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}
@media only screen and (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 30px;
}
.g-0 {
  --bs-gutter-x: 0;
}
.custom-z-index {
  z-index: 8;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .custom-width {
    width: 930px;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .custom-width {
    width: 720px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .custom-width {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-width {
    width: 540px;
    margin: auto;
  }
}
/* Yleiset */
.btn-1 {
  width: 190px;
  height: 60px;
  background-color: var(--theme_color);
  border-radius: 5px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  font-weight: 700;
  color: var(--white-color);
}
.btn-1:hover {
  background-color: var(--yellow_color);
  color: black;
}
.btn-2 {
  width: 190px;
  height: 60px;
  background: var(--theme_color);
  color: var(--white-color);
  border-radius: 5px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  font-weight: 700;
  border: 0;
}
.btn-2:hover {
  background-color: var(--yellow_color);
  color: #000;
}
.btn-3 {
  width: 190px;
  height: 60px;
  background: var(--yellow-deep);
  color: var(--white-color);
  border-radius: 5px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  font-weight: 700;
  position: relative;
}
.btn-3::after {
  position: absolute;
  content: "";
  height: 95%;
  left: 50%;
  top: 50%;
  width: 2px;
  background-color: white;
  border-radius: 10px;
  transform: translate(0%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  opacity: 0;
  visibility: hidden;
}
.btn-3::before {
  position: absolute;
  content: "";
  height: 95%;
  right: 50%;
  top: 50%;
  width: 2px;
  background-color: white;
  border-radius: 10px;
  transform: translate(0%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .btn-3 {
    width: 160px;
  }
}
.btn-3:hover {
  color: var(--white-color);
  letter-spacing: 0.5px;
}
.btn-3:hover::after {
  left: 2px;
  opacity: 1;
  visibility: visible;
}
.btn-3:hover::before {
  right: 2px;
  opacity: 1;
  visibility: visible;
}
.form-btn {
  width: 100%;
  height: 60px;
  background: var(--yellow_color);
  color: var(--theme_color);
  border-radius: 5px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  font-weight: 700;
  border: 0;
}
.form-btn:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}
.ac-section-name {
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
  color: var(--theme_color);
}
.ac-section-name img {
  display: inline-block;
  width: 27px;
  height: 27px;
  margin-top: -12px;
  margin-right: 5px;
}
.ac-section-title {
  line-height: 1;
  font-size: 40px;
  margin-bottom: 20px;
}
.ac-section-title span {
  color: var(--yellow_color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-section-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-section-title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ac-section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-section-title {
    font-size: 40px;
  }
}
.section-title-wrapper h1 {
  font-size: 64px;
}
@media (max-width: 768px) {
  .section-title-wrapper h1 {
    font-size: 44px;
  }
}
@media (max-width: 576px) {
  .section-title-wrapper h1 {
    font-size: 34px;
  }
}
.ac-section-subtitle-2 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 9px;
  display: inline-block;
  color: var(--yellow-deep);
}
.ac-section-subtitle-2 img {
  margin-right: 8px;
}
.ac-section-title-2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--yellow-deep);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-section-title-2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-section-title-2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .ac-section-title-2 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-section-title-2 {
    font-size: 40px;
  }
}
.ac-breadcrumb-area {
  position: relative;
  z-index: 1;
}
.ac-breadcrumb-area::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0));
  top: 0;
  left: 0;
  z-index: 1;
}
.breadcrumb-section {
  position: relative;
  z-index: 7;
}
.ac-breadcrumb-title {
  font-size: 42px;
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: "Playfair", serif;
  font-weight: 700;
  color: var(--white-color);
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-breadcrumb-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .ac-breadcrumb-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-breadcrumb-title {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .breadcrumb-section {
    padding-top: 30px;
  }
}
.breadcrumb-navigation {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 25px;
}
.breadcrumb-navigation li {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  color: var(--white-color);
}
.breadcrumb-navigation li a {
  position: relative;
  z-index: 1;
  display: block;
  margin-right: 10px;
  font-weight: 300;
  font-family: "Playfair", serif;
}
.breadcrumb-navigation li a:hover {
  color: var(--theme_color);
}
.breadcrumb-navigation li.active a {
  color: #fff;
  font-weight: 700;
}
.breadcrumb-navigation li a::after {
  content: "\f068";
  font-family: "font awesome 5 Pro";
  display: inline-block;
  font-weight: 500;
  margin-left: 15px;
  font-weight: 300;
  color: var(--white-color);
}
.breadcrumb-navigation li span {

}
.ac-defualt-header-area .ac-botton-header {
  padding: 0 5px;
}
.ac-preloader {
  background-color: var(--white-color);
  padding: 0;
  margin: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99999;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.loader {
  -webkit-perspective: 700px;
  perspective: 700px;
}
.loader > span {
  font-size: 130px;
  font-family: "Playfair", serif;
  display: inline-block;
  animation: flip 2.6s infinite linear;
  transform-origin: 0 70%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  color: var(--theme_color);
}
@media (max-width: 767px) {
  .loader > span {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .loader > span {
    font-size: 60px;
  }
}
@keyframes flip {
  35% {
    transform: rotateX(360deg);
  }
  100% {
    transform: rotatex(360deg);
  }
}
.loader > span:nth-child(6) {
  color: var(--yellow_color);
}
.loader > span:nth-child(2) {
  animation-delay: 0.3s;
}
.loader > span:nth-child(3) {
  animation-delay: 0.6s;
}
.loader > span:nth-child(4) {
  animation-delay: 0.9s;
}
.loader > span:nth-child(5) {
  animation-delay: 1.2s;
}
.loader > span:nth-child(6) {
  animation-delay: 1.5s;
}
.loader > span:nth-child(7) {
  animation-delay: 1.8s;
}
.loader > span:nth-child(8) {
  animation-delay: 2s;
}
/*.ac-search-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9991;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}
.ac-search-area:is(.active) {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
.ac-search-area .ac-search-overly {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000;
  opacity: 0.9;
  top: 0;
  left: 0;
}
.ac-search-box form {
  position: relative;
}
.ac-search-box form input {
  border-radius: 5px;
  width: 450px;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 20px 98px 20px 30px;
  font-family: "Playfair", serif;
}
@media (max-width: 767px) {
  .ac-search-box form input {
    width: 275px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-search-box form input {
    width: 375px;
  }
}
.ac-search-box form input::placeholder {
  color: var(--font_gray);
  font-size: 18px;
}
.ac-search-box form .ac-search-btn {
  position: absolute;
  border: none;
  outline: none;
  right: 0;
  border-radius: 0px 5px 5px 0px;
  top: 0;
  width: 70px;
  height: 67px;
  font-size: 18px;
  color: var(--white-color);
  background-color: var(--theme_color);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-search-box form .ac-search-btn:hover {
  background-color: var(--yellow_color);
}*/
/* Header */
.ac-header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.ac-top-header-area {
  background-color: rgba(34, 71, 0, 1);
}
@media (max-width: 767px) {
  .ac-top-header-left {
    text-align: center;
    width: 100%;
  }
}
.ac-top-header-text {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  display: inline-block;
  color: var(--white-color);
}
.ac-top-header-text i {
  color: var(--white-color);
  display: inline-block;
  font-size: 14px;
  margin-right: 8px;
}
.ac-logo-area img{
  width: 100%;
  max-width: 175px;
  height: auto;
}
.ac-logo {
  padding: 25px 0;
  display: inline-block;
}
@media (max-width: 767px) {
  .ac-top-header-right {
    text-align: center;
    width: 100%;
  }
}
.ac-top-header-link a {
  color: var(--white-color);
  font-size: 14px;
  padding: 8px 10px;
  display: inline-block;
  margin-left: 6px;
}
.ac-top-header-link a:hover {
  color: var(--hover-color-2);
}
.ac-user-wrapper {
  position: relative;
  display: inline-block;
}
.ac-user-wrapper .ac-user-dropdown {
  border-top: 3px solid #829B85;
  background-color: #fff;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.16);
  border-radius: 1px 1px 5px 5px;
  position: absolute;
  right: -45px;
  top: 160%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  width: 140px;
  z-index: 6;
}
.ac-user-wrapper .ac-user-dropdown a {
  display: block;
  font-size: 16px;
  padding: 12px 0;
  text-align: center;
  font-weight: 700;
  font-family: "Playfair", serif;
}
.ac-user-wrapper .ac-user-dropdown a:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
}
.ac-user-wrapper .ac-user-dropdown a:hover {
  color: var(--yellow_color);
  background-color: var(--theme_color);
}
.ac-user-wrapper:hover .ac-user-dropdown {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.ac-botton-header {
  padding: 0px 40px;
  background: var(--white-color);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-botton-header {
    padding: 0 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-botton-header {
    padding: 0 35px;
  }
}
@media (max-width: 767px) {
  .ac-botton-header {
    padding: 0 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-botton-header {
    padding: 0 35px;
  }
}
.ac-navbar {
  text-align: center;
}
.ac-navbar li {
  list-style: none;
  display: inline-block;
  position: relative;
  padding: 0 10px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-navbar li i {
  margin-left: 5px;
  margin-top: -15px!important;
  font-size: 13px;
}
.ac-navbar li i:hover {
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-navbar li {

  }
  .ac-main-menu  {
    padding-top: 10px!important;
    padding-bottom: 10px!important;
  }
}
.ac-navbar li a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  padding: 10px 0px;
  display: inline-block;
  color: var(--theme_color);
}
.ac-navbar li a.active {
  font-weight: 700;
  color: var(--theme_color);
}
.ac-navbar li a:hover {
  text-decoration: underline;
  color:#000;
}
.ac-navbar li .ac-submenu {
  width: 250px;
  background: var(--white-color);
  position: absolute;
  left: 0;
  top: 130%;
  border-top: 3px solid var(--theme_color);
  transform-origin: top;
  visibility: hidden;
  opacity: 0;
  z-index: 8;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-navbar li .ac-submenu li {
  display: block;
  padding: 0;
}
.ac-navbar li .ac-submenu li a {
  display: block;
  padding: 15px 18px;
  text-align: start;
  border-bottom: 1px solid #ebebeb;
}
.ac-navbar li .ac-submenu li a:hover {
  background-color: var(--theme_color);
  color:#fff;
  text-decoration: none;
}
.ac-navbar li .ac-submenu li:last-child a {
  border-bottom: 0;
}
.ac-navbar li:hover .ac-submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  transform-origin: top;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (max-width: 991px) {
  .ac-navbar li.menu-item-has-children i {
    display:none;
  }
}
.ac-main-menu-link a {
  display: inline-block;
  padding: 20px 8px;
  font-size: 18px;
  color: var(--theme_color);
}
.ac-main-menu-link a:hover {
  color: var(--hover-color-2);
}
.ac-shopping-count {
  position: relative;
}
.mobile-toggle i {
  display: inline-block;
  font-size: 30px;
  cursor: pointer;
  color: var(--theme_color);
}
.mobile-toggle i:hover {
  color: var(--yellow_color);
}
.mobile-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  z-index: 999;
}
.mobile-nav-wrapper:is(.expanded) {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.mobile-nav-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.8;
  cursor: pointer;
  z-index: 99;
}
.mobile-nav-content {
  width: 400px;
  background-color: var(--theme_color);
  padding: 40px 30px 40px 30px;
  position: fixed;
  z-index: 999;
  right: 0;
  overflow-y: scroll;
  height: 100vh;
}
@media (max-width: 767px) {
  .mobile-nav-content {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mobile-nav-content {
    width: 400px;
  }
}
span.mobile-nav-close i {
  padding: 5px 18px;
  font-size: 28px;
  color: var(--white-color);
  cursor: pointer;
}
span.mobile-nav-close i:hover {
  color: var(--yellow_color);
}
.mobile-nav-container .container {
  padding: 0;
}
.mobile-nav-container .container .main-menu-list li {
  list-style: none;
}
.mobile-nav-container .container .main-menu-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--white-color);
}
.mobile-nav-container .container .main-menu-list li a:hover {
  color: var(--yellow_color);
}
.mobile-nav-container .container .main-menu-list li a:is(.expanded) {
  color: var(--yellow_color);
}
.mobile-nav-container .container .main-menu-list li a button {
  background-color: transparent;
  border-left: 1px solid var(--font_gray);
  outline: none;
  border-bottom: none;
  border-right: none;
  border-top: none;
  width: 50px;
}
.mobile-nav-container .container .main-menu-list li a button:is(.expanded) i {
  transform: rotate(90deg);
  color: var(--yellow_color);
}
.mobile-nav-container .container .main-menu-list li ul {
  margin-left: 35px;
}
.mobile-nav-contact li {
  list-style: none;
}
.mobile-nav-contact li i {
  font-size: 16px;
  display: inline-block;
  color: var(--white-color);
  margin-right: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.mobile-nav-contact li a {
  font-size: 16px;
  display: inline-block;
  color: var(--white-color);
}
.mobile-nav-contact li:hover i, .mobile-nav-contact li:hover a {
  color: var(--yellow_color);
}
.mobile-nav-contact li:not(:last-child) {
  margin-bottom: 15px;
}
.mobile-nav-social a {
  font-size: 20px;
  display: inline-block;
  margin-right: 15px;
  color: var(--white-color);
}
.mobile-nav-social a:hover {
  color: var(--yellow_color);
}
.mobile-contact-info h3 {
  font-size: 20px;
}
.mobile-nav-content .logo-box img {
  width: 100%;
  max-width: 155px;
}
.mean-container .mean-nav {
  background: transparent;
}
.mean-container .mean-nav ul.ac-navbar li {
  padding: 0;
}
.mean-container .mean-nav .ac-submenu {
  position: static;
  width: auto;
  opacity: 1;
  visibility: visible;
  background-color: transparent;
  border: 0;
}
.mean-container .mean-nav .ac-submenu li a {
}
.mean-container .mean-nav ul.ac-navbar li > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 0;
  padding: 15px 5%;
  text-transform: none;
  font-size: 16px;
}
.mean-container .mean-nav ul.ac-navbar li > a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.mean-container .mean-nav ul.ac-navbar li ul li a {
  padding: 15px 10%;
  color:white;
}
.mean-container .mean-nav ul.ac-navbar li:not(:last-child) > a:not(.mean-expand) {
  width: 100%;
}
.mean-container .mean-nav ul.ac-navbar li:not(:last-child) > a.mean-expand {
  border: 0;
  margin-top: 0;
  background-color: rgba(255, 255, 255, 0.05);
}
/* Karuselli */
.ac-hero-wrapper {
  position: relative;
  padding-top: 380px;
  padding-bottom: 195px;
}
.ac-hero-wrapper::after {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 32%, rgba(255, 255, 255, 0) 95%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ac-hero-content-area {
  position: relative;
  z-index: 999;
}
.ac-hero-title {
  line-height: 1.12;
  color: var(--white-color);
  font-size: 50px;
}
.ac-hero-title span {
  color: var(--hover-color-2);
  display: inline-block;
}
@media (max-width: 767px) {
  .ac-hero-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-hero-title {
    font-size: 40px;
  }
}
.ac-hero-video {
  display: inline-block;
  position: relative;
}
.ac-hero-video-link {
  width: 60px !important;
  height: 60px;
  display: inline-block;
  border: 2px solid var(--white-color);
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (max-width: 767px) {
  .ac-hero-video-link {
    width: 40px;
    height: 40px;
  }
}
.ac-hero-video-link img {
  width: 100%;
  height: 100%;
}
.ac-hero-video-link:hover {
  border-color: var(--hover-color-2);
}

.ac-hero-video-count {
  display: inline-block;
}
.ac-hero-video-count span {
  display: inline-block;
  font-size: 12px;
  color: var(--white-color);
}
.ac-hero-slider-btn-wrapper {
  transform: translateX(-100px);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-hero-slider-btn-wrapper {
    transform: translateX(-50px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-hero-slider-btn-wrapper {
    transform: translateX(-25px);
  }
}
@media (max-width: 767px) {
  .ac-hero-slider-btn-wrapper {
    transform: translateX(0px);
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-hero-slider-btn-wrapper {
    transform: translateX(0px);
    justify-content: end;
  }
}
.ac-hero-slider-btn i {
  display: block;
  width: 60px;
  height: 60px;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  color: var(--white-color);
  font-size: 22px;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-hero-slider-btn i:is(:nth-child(1)) {
  margin-bottom: 20px;
}
.ac-hero-slider-btn i:hover {
  border-color: var(--hover-color-2);
  color: var(--white-color);
  background-color: var(--hover-color-2);
}

@media (max-width: 767px) {
  .ac-hero-slider-btn i:is(:nth-child(1)) {
    margin-bottom: 0;
  }
  .ac-hero-slider-btn {
    display: flex;
    grid-gap: 15px;
  }
}
/* Sisältö */
@media (max-width: 767px) {
  .ac-about-left {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-left {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .ac-about-left {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-left {
    margin-bottom: 50px;
  }
}
.ac-about-content-wrapper {
  position: relative;
}
.ac-about-left {
  position: relative;
}
.ac-about-img-postion {
  position: relative;
}
.ac-about-img-wrapper {
  padding: 10px;
}
.ac-about-img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-about-img-wrapper:is(.ml-30) {
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-img-wrapper:is(.mt-40) {
    margin-top: 0px;
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-about-img-wrapper:is(.mt-40) {
    margin-top: 0px;
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-text-right:is(.ml-50) {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-about-text-right:is(.ml-50) {
    margin-left: 0;
  }
}
.ac-about-feature-title {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}
.ac-about-feature-content {
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-feature-content.mb-25 {
    margin-bottom: 39px;
  }
}
.ac-about-feature-icon {
  display: inline-block;
  width: 80px;
  height: 64px;
  flex: 0 0 80px;
}
.ac-about-feature-text {
  display: inline-block;
}
.ac-about-feature-title {
  line-height: 1;
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .ac-about-feature-title {
    font-size: 26px;
  }
}
.ac-about-feature-subtitle {
  font-size: 14px;
  line-height: 24px;
  padding-right: 130px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ac-about-feature-subtitle {
    padding-right: 0;
  }
}
.ac-about-author-area {
  border-top: 1px solid #E8E8E8;
  padding-top: 30px;
}
.ac-about-author-content {
  border-right: 1px solid #E8E8E8;
}
@media (max-width: 767px) {
  .ac-about-author-content {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 30px;
    border-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-author-content {
    border-bottom: 0;
    padding-bottom: 0px;
    border-right: 1px solid #E8E8E8;
  }
}
@media (max-width: 595px) {
  .ac-about-author-area {
    display:none;
  }
}
.ac-about-author-img {
  display: flex;
  align-items: center;
}
.ac-about-author-img .about-author-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
}
.ac-about-author-img .about-author-img img {
  border-radius: 50%;
}
.ac-about-author-name span.name {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: var(--theme_color);
  font-family: "Playfair", serif;
}
@media (max-width: 767px) {
  .ac-about-author-name span.name {
    font-size: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-author-name span.name {
    font-size: 22px;
  }
}
.ac-about-author-name a:hover {
  color: var(--hover-color-2);
}
.ac-about-author-name span {
  font-size: 14px;
  line-height: 24px;
  color: #555;
}
.ac-about-author-signature {
  text-align: center;
}
@media (max-width: 767px) {
  .ac-about-author-signature {
    margin-top: 30px;
    text-align: left;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-author-signature {
    margin-top: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .ac-top-header-area {
    padding-top: 15px;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .social {
    display: none!important;
  }
}
.ac-about-feature-text .ac-about-feature-title {
  margin-bottom: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-watch-video-wrapper.pt-135.pb-130 {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-2-right .ac-about-section-title-wrapper {
    width: 67%;
  }
}
/* Video */
.ac-watch-video-bg {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ac-watch-video-bg {
    background-color: var(--theme_color);
  }
}
.ac-watch-video-bg-shape-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ac-watch-video-bg-shape-wrapper .ac-watch-video-bg-shape {
  position: absolute;
  z-index: 1;
  top: 30%;
  left: 50%;
}
@media (max-width: 767px) {
  .ac-watch-video-bg-shape-wrapper .ac-watch-video-bg-shape {
    left: 0;
  }
}
.ac-watch-video-wrapper {
  background-color: var(--theme_color);
  position: relative;
  border-radius: 0px 10px 10px 0px;
}
.ac-watch-video-wrapper::after {
  position: absolute;
  content: "";
  background-color: var(--theme_color);
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
}
.ac-watch-video-content {
  position: relative;
  z-index: 7;
  color:#fff;
}
.ac-watch-video-content h2, .ac-watch-video-content p {
  color:#fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-watch-video-content {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-watch-video-slide-active .swiper-wrapper .swiper-slide {
    width: 201px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-watch-video-slide-active .swiper-wrapper .swiper-slide {
    width: 201px !important;
  }
}
@media (max-width: 767px) {
  .ac-watch-video-slide-active .swiper-wrapper .swiper-slide {
    width: 201px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-watch-video-slide-active .swiper-wrapper .swiper-slide {
    width: 201px !important;
  }
}
.ac-watch-video-right-area {
  display: inline-block;
  position: absolute;
  right: 0px;
  width: 100%;
  top: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-watch-video-right-area {
    position: unset;
    margin-top: -82px;
    padding-bottom: 130px;
  }
}
@media (max-width: 767px) {
  .ac-watch-video-right-area {
    position: unset;
    margin-top: -82px;
    padding-bottom: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-watch-video-right-area {
    position: unset;
    margin-top: -82px;
    padding-bottom: 130px;
  }
}
.ac-watch-video-right-content {
  position: relative;
  width: 100%;
  height: 480px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-watch-video-right-content {
    height: 340px;
    margin-top: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-watch-video-right-content {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .ac-watch-video-right-content {
    height: 250px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-watch-video-right-content {
    height: 350px;
  }
}
.ac-watch-video-right-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ac-watch-video-right-content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2117647059);
  border-radius: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-watch-video-right-content:hover::after {
  color: var(--hover-color-2);
}
.ac-watch-video-slide-btn i {
  display: inline-block;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  margin-right: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-watch-video-slide-btn i:hover {
  border-color: var(--hover-color-2);
  background-color: var(--hover-color-2);
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-watch-video-slide-btn-wrapper-2 {
    text-align: center;
    margin-bottom: 50px;
  }
}
/* Palvelut */
.ac-service-area {
  border-bottom: solid 3px #f6f6e8;
}
.tmpl-palvelut .ac-service-area {
  border-bottom: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-service-area-right:is(.ml-50) {
    margin-left: 0;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .ac-service-area-right {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-service-area-right {
    margin: 0;
  }
}
.tmpl-palvelut .ac-serivice-area-left {

}
.tmpl-palvelut .ac-service-card-wrapper .ac-service-card  {
  padding-bottom: 15px;
  height: auto;
  float: left;
}
.tmpl-palvelut .ac-service-card span  {
  padding-bottom: 10px;
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
.tmpl-palvelut .ac-service-card span a {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  color: #000;
}
.tmpl-palvelut .ac-service-card span a:hover {
  color: #333;
}
.ac-service-card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.ac-service-card-wrapper:hover .ac-service-card-hover {
  opacity: 1;
  visibility: visible;
}
.ac-service-card-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  opacity: 0;
  visibility: hidden;
}
.ac-service-card-hover-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.ac-service-card-hover-img {
  width: 100%;
  height: 100%;
}
.ac-service-card-hover-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.ac-service-card-hover-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 83, 0, 0.92);
  padding: 35px 35px;
  border-radius: 10px;
  color: var(--white-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-service-card-hover-text {
    padding: 15px 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-service-card-hover-text {
    padding: 39px 14px;
  }
}
.ac-service-card h4 {
  font-size: 20px;
}
.ac-service-card-hover-text h4 {
  color: var(--white-color);
  margin-bottom: 10px;
  font-size: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
.ac-service-card-hover-text span {
  font-size: 12px;
  display: inline-block;
  margin-bottom: 5px;
  margin-left: 15px;
  margin-right: 10px;
}
.ac-service-card-hover-text a {
  display: inline-block;
  margin-left: 15px;
  text-decoration: underline;
  font-weight: 700;
  font-size: 12px;
}
.ac-service-card-hover-text a:hover {
  color: #fff;
}
.ac-service-card {
  text-align: center;
  border-radius: 10px;
  width: 100%;
  height: 185px;
  background-color: #F6F6E8;
}
.ac-service-card img {
  margin-bottom: 25px;
  margin-top: 35px;
}
.ac-service-card h4 {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-service-card h4:hover {
  color: var(--hover-color-2);
}
@media (max-width: 767px) {
  .ac-service-2-section-title-wrapper p.yellow-deep-color br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-service-2-section-title-wrapper p.yellow-deep-color br {
    display: block;
  }
}
.ac-service-2-area {
  background-color: #FFFAF2;
}
.ac-service-2-box-wrapper {
  background-color: var(--white-color);
  border-bottom: 3px solid transparent;
  border-radius: 10px 10px 10px 10px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-service-2-box-wrapper::not(:last-child) {
  margin-bottom: 30px;
}
.ac-service-2-box-wrapper:hover {
  border-bottom: 3px solid var(--yellow-deep);
}
.ac-service-2-box-wrapper:hover .ac-service-2-box-img::after {
  opacity: 0.4;
  width: 100%;
}
.ac-service-2-box-wrapper:hover .ac-service-2-box-icon {
  background-color: var(--yellow-deep);
}
.ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_10089, .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_238, .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_239, .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_240, .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_25726, .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_271 {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  fill: var(--white-color);
}
.ac-service-2-box-img {
  position: relative;
  margin-bottom: 50px;
}
.ac-service-2-box-img::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 1;
  border-radius: 10px 10px 0px 0px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-service-2-box-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0px 0px;
}
.ac-service-2-box-icon {
  width: 60px;
  height: 60px;
  display: flex;
  background-color: var(--white-color);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -30px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  z-index: 1;
  box-shadow: 0px 2px 16px 2px rgba(0, 0, 0, 0.2196078431);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-service-2-box-icon img {
  width: 100%;
  height: 100%;
  object-fit: none;
}
.ac-service-2-box-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  display: inline-block;
  font-family: "Playfair", serif;
  color: var(--yellow-deep);
  margin-bottom: 5px;
}
.ac-service-2-box-content {
  margin-bottom: 30px;
  padding: 0 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 767px) {
  .ac-service-2-box-content {
    padding: 0 25px;
  }
}
.ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-img .ac-service-2-box-icon #Path_10089, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-img .ac-service-2-box-icon #Path_238, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-img .ac-service-2-box-icon #Path_239, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-img .ac-service-2-box-icon #Path_240, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-img .ac-service-2-box-icon #Path_25726, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-img .ac-service-2-box-icon #Path_271 {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  fill: var(--theme_color);
}
.ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-content .ac-service-2-box-title {
  color: var(--theme_color);
}
.ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-content .ac-service-2-box-title:hover {
  color: var(--hover-color-2);
}
.ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover {
  border-bottom: 3px solid var(--theme_color);
}
.ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon {
  background-color: var(--theme_color);
}
.ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_10089, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_238, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_239, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_240, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_25726, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_271 {
  fill: var(--white-color);
}
/* Palvelut */
.ac-services-details-img {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ac-services-details-img {
    height: 300px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-services-details-img {
    height: 350px;
  }
}
.ac-services-details-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.ac-services-details-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "Playfair", serif;
  margin-bottom: 18px;
  color: var(--theme_color);
}
@media (max-width: 767px) {
  .ac-services-details-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-services-details-title {
    font-size: 34px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-services-details-title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-services-details-title {
    font-size: 42px;
  }
}
.ac-services-details-list ul li {
  list-style: none;
  display: flex;
}
.ac-services-details-list ul li i {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  background-color: var(--theme_color);
  color: var(--white-color);
  display: inline-block;
  margin-right: 15px;
  border-radius: 50%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-services-details-list ul li i {
    margin-top: 7px;
  }
}
.ac-services-details-list ul li span strong {
  font-size: 18px;
  font-family: "Playfair", serif;
  color: var(--theme_color);
}
.ac-services-details-list ul li:not(:last-child) {
  margin-bottom: 22px;
}
.ac-services-details-list ul li:hover i {
  background-color: var(--hover-color-2);
  transform: rotate(360deg);
}
.ac-services-details-quest-box span {
  font-size: 26px;
  font-family: "Playfair", serif;
  font-weight: 700;
  background-color: var(--theme_color);
  color: var(--white-color);
  padding: 30px 60px;
  display: block;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ac-services-details-quest-box span {
    font-size: 18px;
    padding: 20px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-services-details-quest-box span {
    font-size: 22px;
    padding: 20px 40px;
  }
}
.ac-services-details-quest-box span::selection {
  color: black;
}
.ac-services-dl-feature-content span {
  font-size: 26px;
  display: inline-block;
  line-height: 1;
  font-weight: 700;
  font-family: "Playfair", serif;
  color: var(--theme_color);
  margin-bottom: 15px;
}
.ac-services-dl-feature-content ul li {
  align-items: baseline;
  list-style: none;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  font-family: "Playfair", serif;
}
.ac-services-dl-feature-content ul li:not(:last-child) {
  margin-bottom: 8px;
}
.ac-services-dl-feature-content ul li i {
  flex: 0 0 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--theme_color);
  border-radius: 50%;
  color: var(--white-color);
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  margin-right: 10px;
}
.ac-services-dl-feature-img {
  width: 100%;
  height: 220px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .ac-services-dl-feature-img {
    margin-bottom: 35px;
  }
}
.ac-services-dl-feature-img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .ac-service-details-sidebar-wrapper {
    margin-top: 50px;
  }
}
.ac-services-sidebar {
  padding: 34px 30px;
  padding-bottom: 44px;
  background-color: #F6F6E8;
  margin-bottom: 50px;
  border-radius: 10px;
}
.ac-sidebar-title, .ac-services-sidebar h2 {
  font-size: 34px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ac-sidebar-title, .ac-services-sidebar h2 {
    font-size: 30px;
  }
}
.ac-sidebar-category ul li {
  list-style: none;
}
.ac-sidebar-category ul li:not(:last-child) {
  margin-bottom: 20px;
}
.ac-sidebar-category ul li a {
  display: block;
  padding: 25px;
  text-decoration: none;
  background-color: var(--white-color);
  border-radius: 5px;
  color: var(--theme_color);
}
.ac-sidebar-category ul li a i {
  display: inline-block;
  margin-top: 3px;
  float: right;
}
.ac-sidebar-category ul li a:hover {
  color: var(--white-color);
  background-color: var(--theme_color);
}
.ac-service-sidebar-call-bg {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.ac-service-sidebar-call-bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  border-radius: 10px;
}
.ac-service-sidebar-call-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ac-service-sidebar-call-bg h3 {
  color: #fff;
  z-index: 1;
  padding: 35px;
}
/* Tarjoukset */
.ac-our-product-content-wrapper {
  background-color: #F6F6E8;
  border-radius: 10px;
  text-align: center;
  min-height: 390px;
  padding: 40px;
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-our-product-content-wrapper {
    padding: 30px 15px;
    min-height: 350px;
  }
}
.ac-product-offer {
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
}
.ac-product-offer span {
  font-size: 14px;
  font-weight: 700;
  background-color: var(--theme_color);
  padding: 4px 13px;
  color: var(--white-color);
  border-radius: 2px;
}
.ac-our-product-item-img {
  height: 220px;
  width: 220px;
  margin: auto;
  position: relative;
  margin-bottom: 20px;
  background: white;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-our-product-item-img {
    width: 180px;
    height: 180px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-our-product-item-img {
    width: 150px;
    height: 150px;
  }
}
.ac-our-product-item-img a {
  width: 30px;
  height: 30px;
  background-color: var(--white-color);
  line-height: 30px;
  font-size: 16px;
  margin: 0 5px;
  border-radius: 3px;
  box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1803921569);
  display: inline-block;
}
.ac-our-product-item-img a:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}
.ac-our-product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ac-our-product-item-name a {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  font-family: "Playfair", serif;
  color: var(--theme_color);
  margin-bottom: 7px;
}
.ac-our-product-item-name a:hover {
  color: var(--theme_color);
}
.ac-our-product-item-price .new-price {
  display: block;
  font-weight: 700;
  color: var(--theme_color);
}
.tmpl-tuote .ac-our-product-item-price .new-price {
  margin-top: 15px;
}
.ac-our-product-item-price .old-price {
  display: block;
  margin: 0 10px;
  font-weight: 700;
  color: var(--font_gray);
  text-decoration: line-through;
}
.tmpl-tuote .ac-our-product-item-price .old-price {
  margin-left: 0px!important;
  margin-left: 0em!important;
  margin-top: 5px;
}
.ac-time {
  margin-top: 15px;
  font-size: 12px;
  color:#222;
}
.ac-product-details-item-img {
  width: 100%;
  height: 620px;
  border-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-product-details-item-img {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .ac-product-details-item-img {
    height: 300px;
    margin-bottom: 48px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-img {
    height: 550px;
    margin-bottom: 48px;
  }
}
.ac-product-details-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ac-product-details-item-name {
  display: inline-block;
  font-size: 48px;
  color: var(--theme_color);
  margin-bottom: 25px;
  font-weight: 700;
  font-family: "Playfair", serif;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-product-details-item-name {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-product-details-item-name {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .ac-product-details-item-name {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-name {
    font-size: 34px;
  }
}
.ac-product-details-item-price {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  font-family: "Playfair", serif;
  color: var(--theme_color);
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .ac-product-details-item-price {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-price {
    font-size: 24px;
  }
}
.ac-product-details-item-review {
  margin-bottom: 15px;
}
.ac-product-details-item-review i {
  display: inline-block;
  color: var(--yellow_color);
  margin: 0 2px;
}
.ac-product-details-item-review span {
  display: inline-block;
  font-size: 16px;
  color: var(--font_gray);
  margin-left: 15px;
}
@media (max-width: 767px) {
  .ac-product-details-item-review span {
    margin-left: 8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-review span {
    margin-left: 15px;
  }
}
.ac-product-details-item-text .ac-product-availabe {
  font-size: 18px;
  font-weight: 700;
  font-family: "Playfair", serif;
}
.product-details-item-quantity {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 41px;
  margin-top: 30px;
}
.product-details-item-quantity .ac-quantity-box {
  width: 97px;
  height: 60px;
  border: 1px solid #eceae0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.product-details-item-quantity .ac-quantity-box .sub {
  padding: 0;
  border: none;
  outline: none;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 8px;
  width: 30px;
  border-left: 1px solid #eceae0;
  height: 30px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.product-details-item-quantity .ac-quantity-box .sub:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}
.product-details-item-quantity .ac-quantity-box .add {
  padding: 0;
  border: none;
  outline: none;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 8px;
  width: 30px;
  border-left: 1px solid #eceae0;
  border-top: 1px solid #eceae0;
  height: 30px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.product-details-item-quantity .ac-quantity-box .add:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}
.product-details-item-quantity .ac-quantity-box input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  padding-right: 30px;
  text-align: center;
}
.product-details-item-quantity-text {
  font-size: 22px;
  font-weight: bold;
  font-family: "Playfair", serif;
  color: var(--theme_color);
  line-height: 1;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .ac-product-details-item-btn-wrapper .btn-1 {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-btn-wrapper .btn-1 {
    margin-bottom: 0px;
  }
}
.ac-product-details-item-share-link span {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: var(--font_gray);
  margin-right: 20px;
}
@media (max-width: 767px) {
  .ac-product-details-item-share-link span {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-share-link span {
    font-size: 18px;
  }
}
.ac-product-details-item-share-link a {
  display: inline-block;
  font-size: 20px;
  color: var(--font_gray);
  padding: 0 8px;
}
.ac-product-details-item-share-link a:hover {
  color: var(--yellow_color);
}
.ac-product-item-description-title {
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-product-item-description-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-product-item-description-title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .ac-product-item-description-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-item-description-title {
    font-size: 34px;
  }
}
.ac-product-item-description {
  margin-bottom: 45px;
}
.ac-product-details-item-review-img a {
  display: inline-block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .ac-product-details-item-review-img a {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-review-img a {
    margin-bottom: 0px;
  }
}
.ac-product-details-item-review-img a img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.ac-product-details-item-review-box h2 {
  margin-bottom: 57px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-product-details-item-review-box h2 {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-product-details-item-review-box h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .ac-product-details-item-review-box h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-review-box h2 {
    font-size: 34px;
  }
}
.ac-product-details-item-review-wrapper {
  display: flex;
  padding-left: 20px;
  border-bottom: 1px solid #eceae0;
  padding-right: 20px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .ac-product-details-item-review-wrapper {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-review-wrapper {
    flex-wrap: unset;
  }
}
.ac-product-details-item-review-wrapper:not(:last-child) {
  margin-bottom: 70px;
}
.ac-product-item-review-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .ac-product-item-review-title-wrapper {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-item-review-title-wrapper {
    flex-wrap: unset;
  }
}
.ac-product-item-review-title a {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--theme_color);
  line-height: 1;
  margin-bottom: 20px;
}
.ac-product-item-review-title a:hover {
  color: var(--hover-color-2);
}
.ac-product-item-review-title span {
  font-size: 14px;
  line-height: 1;
  display: block;
  color: var(--font_gray);
  margin: 0;
}
@media (max-width: 767px) {
  .ac-product-item-review-title span {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-item-review-title span {
    margin-bottom: 0;
  }
}
.ac-product-item-review-star i {
  font-size: 16px;
  display: inline-block;
  margin: 0 2px;
  color: var(--yellow_color);
}
.ac-product-item-review-text p {
  font-size: 18px;
}
.ac-product-item-comment-form {
  font-size: 48px;
  margin-bottom: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-product-item-comment-form {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-product-item-comment-form {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .ac-product-item-comment-form {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-item-comment-form {
    font-size: 34px;
  }
}
.ac-product-item-comment-form-review {
  margin-bottom: 35px;
}
.ac-product-item-comment-form-review span {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--font_gray);
  margin-right: 15px;
  line-height: 1;
}
@media (max-width: 767px) {
  .ac-product-item-comment-form-review span {
    font-size: 16px;
    margin-right: 8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-item-comment-form-review span {
    font-size: 18px;
    margin-right: 15px;
  }
}
.ac-product-item-comment-form-review i {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: var(--font_gray);
  margin: 0 4px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .ac-product-item-comment-form-review i {
    margin: 0 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-item-comment-form-review i {
    margin: 0 4px;
  }
}
.ac-product-item-comment-form-review i:hover {
  color: var(--hover-color-2);
}
/* Uutiset */
.tmpl-uutiset .ac-blog-area {
  background: #fff;
}
.ac-blog-area {
  background-color: #F6F6E8;
}
/* Uutinen */
.ac-blog-single-post-img-wrapper {
  position: relative;
}
.ac-blog-single-post-area {
  border: 1px solid #eee;
}
.ac-blog-single-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ac-blog-single-post-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: darkgreen;
  padding-top: 10px;
  padding-right: 20px;
  border-radius: 0px 10px 0px 0px;
  padding-left: 20px;
  padding-bottom: 10px;
  font-size: 14px;
  display: inline-block;
  font-family: "Nunito", sans-serif;
  color: #fff;
  opacity: .9;
}
@media (max-width: 767px) {
  .ac-blog-single-post-meta {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .ac-blog-signle-post {
    border-bottom: 1px solid #999;
    padding-bottom: 10px;
  }
}
.ac-blog-single-post-name {
  padding-left: 15px;
  padding-right: 15px;
}
.ac-blog-single-post-name .ac-blog-single-post-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Playfair", serif;
  color: var(--theme_color);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-blog-single-post-name .ac-blog-single-post-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-single-post-name .ac-blog-single-post-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .ac-blog-single-post-name .ac-blog-single-post-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-single-post-name .ac-blog-single-post-title {
    font-size: 22px;
  }
}
.ac-blog-single-post-name .ac-blog-single-post-title:hover {
  color: var(--hover-color-2);
}
.ac-blog-single-post-name p.read-more a {
    font-weight: 700;
    color:var(--theme_color);
}
.ac-watch-video-icon-box {
  width: 73px;
  height: 73px;
  display: inline-block;
  background: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 73px;
  font-size: 20px;
  border: solid 2px #fff;
}
.ac-watch-video-icon-box:hover {
  background-color: #fff;
  color: #215300;
}

.ac-blog-single-post-img {
  height: 250px;
}

@media (max-width: 767px) {
  .ac-blog-2-section-title-wrapper p br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-section-title-wrapper p br {
    display: block;
  }
}

.ac-blog-2-wrapper {
  position: relative;
}

.ac-blog-2-img {
  width: 100%;
  border-radius: 10px;
  position: relative;
}
.ac-blog-2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ac-blog-2-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 15%, rgba(0, 0, 0, 0.4) 60%);
}

.ac-blog-2-cetegories {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  /*text-transform: capitalize;*/
  background-color: var(--yellow-deep);
  padding: 3px 10px;
  display: inline-block;
  color: var(--white-color);
  border-radius: 3px;
  margin-bottom: 15px;
}

.ac-blog-2-title {
  font-size: 30px;
  font-weight: 700;
  font-family: "Playfair", serif;
  line-height: 1.33;
  color: var(--white-color);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-bottom: 23px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-blog-2-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-blog-2-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-2-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .ac-blog-2-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-title {
    font-size: 30px;
  }
}
.ac-blog-2-title:hover {
  text-decoration: underline;
}

.ac-blog-2-text {
  position: absolute;
  left: 0;
  bottom: 0px;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .ac-blog-2-text {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-text {
    padding: 0 40px;
  }
}
.ac-blog-2-text p {
  font-size: 16px;
  margin-bottom: 35px;
  line-height: 26px;
  color: var(--white-color);
}

.ac-blog-2-date {
  position: absolute;
  top: 40px;
  left: 40px;
  background-color: var(--yellow-deep);
  padding: 15px 19px;
  border-radius: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-blog-2-date {
    padding: 9px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-2-date {
    padding: 15px 19px;
  }
}
@media (max-width: 767px) {
  .ac-blog-2-date {
    padding: 9px 15px;
    top: 20px;
    left: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-date {
    padding: 15px 19px;
    top: 40px;
    left: 40px;
  }
}
.ac-blog-2-date span {
  display: inline-block;
  font-size: 34px;
  line-height: 28px;
  font-family: "Playfair", serif;
  color: var(--white-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-blog-2-date span {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-2-date span {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .ac-blog-2-date span {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-date span {
    font-size: 34px;
  }
}
.ac-blog-2-date p {
  display: block;
  font-size: 24px;
  line-height: 28px;
  font-family: "Playfair", serif;
  margin: 0;
  /*text-transform: capitalize;*/
  color: var(--white-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-blog-2-date p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-2-date p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .ac-blog-2-date p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-date p {
    font-size: 24px;
  }
}

.ac-blog-2-wrapper .ac-blog-2-img {
  height: 690px;
}
@media (max-width: 767px) {
  .ac-blog-2-wrapper .ac-blog-2-img {
    height: 600px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-wrapper .ac-blog-2-img {
    height: 690px;
  }
}

.ac-blog-2-sm .ac-blog-2-img {
  height: 330px;
}

.ac-blog-2-sm .ac-blog-2-text .ac-blog-2-title {
  margin-bottom: 30px;
}

.ac-blog-details-img {
  width: 100%;
  height: 420px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .ac-blog-details-img {
    height: 300px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-img {
    height: 420px;
  }
}
.ac-blog-details-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.ac-blog-details-date {
  background-color: var(--theme_color);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  border: 4px solid var(--white-color);
  text-align: center;
  position: absolute;
  left: 20px;
  top: 20px;
}
.ac-blog-details-date span {
  display: block;
  color: var(--white-color);
  font-family: "Playfair", serif;
  font-size: 26px;
  line-height: 1;
}
.ac-blog-details-date p {
  display: block;
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  color: var(--white-color);
  line-height: 1;
}

.ac-blog-details-post-author a {
  display: inline-block;
  color: var(--font_gray);
  font-size: 18px;
  font-weight: 700;
  font-family: "Playfair", serif;
  margin-right: 20px;
}
.ac-blog-details-post-author a i {
  display: inline-block;
  font-size: 18px;
  color: var(--font_gray);
  margin-right: 10px;
}
.ac-blog-details-post-author a:hover {
  color: var(--theme_color);
}
.ac-blog-details-post-author a:hover i {
  color: var(--theme_color);
}

.ac-blog-details-title {
  font-family: "Playfair", serif;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-details-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .ac-blog-details-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-title {
    font-size: 35px;
  }
}

.blog-details-author-name {
  display: block;
  font-size: 22px;
  font-weight: 700;
  font-family: "Playfair", serif;
  margin-bottom: 10px;
}
.blog-details-author-name:hover {
  color: var(--hover-color-2);
}
.ac-blog-sidebar-posts {
  background-color: #F6F6E8;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 26px;
  padding-bottom: 13px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ac-blog-sidebar-posts {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.ac-blog-sidebar-posts h3 {
  margin-bottom: 30px;
}

.ac-blog-sidebar-posts ul li {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-blog-sidebar-posts ul li:hover {
  background-color: var(--white-color);
}

.ac-blog-sidebar-post-img {
  margin-right: 15px;
}
.ac-blog-sidebar-post-img a {
  width: 90px;
  height: 90px;
  display: inline-block;
  border-radius: 5px;
}
.ac-blog-sidebar-post-img a img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.ac-blog-sidebar-post-comment {
  display: block;
  font-size: 14px;
  color: var(--font_gray);
}
.ac-blog-sidebar-post-comment i {
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  color: var(--font_gray);
}

.ac-sidebar-post-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme_color);
  display: block;
}
.ac-sidebar-post-title:hover {
  color: var(--hover-color-2);
}

.blog-sidebar-categories {
  background-color: #F6F6E8;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 26px;
  padding-bottom: 35px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .blog-sidebar-categories {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog-sidebar-categories h3 {
  margin-bottom: 30px;
}

.blog-sidebar-categories ul li {
  list-style: none;
}
.blog-sidebar-categories ul li a {
  font-size: 18px;
  font-weight: 700;
  font-family: "Playfair", serif;
  color: var(--theme_color);
  display: block;
  padding: 10px 0;
}
.blog-sidebar-categories ul li a:hover {
  color: var(--hover-color-2);
  background-color: var(--white-color);
}
.blog-sidebar-categories ul li a i {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
}

/* Uutinen */
.ac-blog-details {

}
.ac-blog-details-img {
  width: 100%;
  height: 420px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .ac-blog-details-img {
    height: 300px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-img {
    height: 420px;
  }
}
.ac-blog-details-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.ac-blog-details-date {
  background-color: var(--theme_color);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  border: 4px solid var(--white-color);
  text-align: center;
  position: absolute;
  left: 20px;
  top: 20px;
}
.ac-blog-details-date span {
  display: block;
  color: var(--white-color);
  font-family: "Playfair", serif;
  font-size: 26px;
  line-height: 1;
}
.ac-blog-details-date p {
  display: block;
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  color: var(--white-color);
  line-height: 1;
}

.ac-blog-details-post-author a {
  display: inline-block;
  color: var(--font_gray);
  font-size: 18px;
  font-weight: 700;
  font-family: "Playfair", serif;
  margin-right: 20px;
}
.ac-blog-details-post-author a i {
  display: inline-block;
  font-size: 18px;
  color: var(--font_gray);
  margin-right: 10px;
}
.ac-blog-details-post-author a:hover {
  color: var(--theme_color);
}
.ac-blog-details-post-author a:hover i {
  color: var(--theme_color);
}

.ac-blog-details-title {
  font-family: "Playfair", serif;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-details-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .ac-blog-details-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-title {
    font-size: 35px;
  }
}

.ac-blog-details-tag-title {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .ac-blog-details-tag-link {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-tag-link {
    margin-bottom: 0px;
  }
}
.ac-blog-details-tag-link a {
  display: inline-block;
  /*text-transform: capitalize;*/
  font-weight: 700;
  font-size: 16px;
  color: var(--font_gray);
  margin-right: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-tag-link a {
    margin-right: 5px;
  }
}
.ac-blog-details-tag-link a:hover {
  color: var(--theme_color);
}

.ac-blog-details-share-link {
  text-align: right;
}
@media (max-width: 767px) {
  .ac-blog-details-share-link {
    text-align: left;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-share-link {
    text-align: right;
  }
}
.ac-blog-details-share-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--font_gray);
  background-color: #ccc;
  border-radius: 50%;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .ac-blog-details-share-link a {
    margin-left: 0;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-share-link a {
    margin-left: 10px;
    margin-right: 0px;
  }
}
.ac-blog-details-share-link a:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}
.blog-details-author-name {
  display: block;
  font-size: 22px;
  font-weight: 700;
  font-family: "Playfair", serif;
  margin-bottom: 10px;
}
.blog-details-author-name:hover {
  color: var(--hover-color-2);
}


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

.ac-blog-sidebar-posts {
  background-color: #F6F6E8;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 26px;
  padding-bottom: 13px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ac-blog-sidebar-posts {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.ac-blog-sidebar-posts h3 {
  margin-bottom: 30px;
}

.ac-blog-sidebar-posts ul li {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-blog-sidebar-posts ul li:hover {
  background-color: var(--white-color);
}

.ac-blog-sidebar-post-img {
  margin-right: 15px;
}
.ac-blog-sidebar-post-img a {
  width: 90px;
  height: 90px;
  display: inline-block;
  border-radius: 5px;
}
.ac-blog-sidebar-post-img a img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.ac-blog-sidebar-post-comment {
  display: block;
  font-size: 14px;
  color: var(--font_gray);
}
.ac-blog-sidebar-post-comment i {
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  color: var(--font_gray);
}

.ac-sidebar-post-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme_color);
  display: block;
}
.ac-sidebar-post-title:hover {
  color: var(--hover-color-2);
}

.blog-sidebar-categories {
  background-color: #F6F6E8;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 26px;
  padding-bottom: 35px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .blog-sidebar-categories {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog-sidebar-categories h3 {
  margin-bottom: 30px;
}

.blog-sidebar-categories ul li {
  list-style: none;
}
.blog-sidebar-categories ul li a {
  font-size: 18px;
  font-weight: 700;
  font-family: "Playfair", serif;
  color: var(--theme_color);
  display: block;
  padding: 10px 0;
}
.blog-sidebar-categories ul li a:hover {
  color: var(--hover-color-2);
  background-color: var(--white-color);
}
.blog-sidebar-categories ul li a i {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
}

.ac-faq-section-title-wrapper .ac-section-subtitle-2 {
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-faq-section-title-wrapper p br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-faq-right {
    margin-bottom: 60px;
  }
}

.ac-faq-right-text-box {
  border: 1px solid var(--yellow-deep);
  border-radius: 5px;
  margin-bottom: 30px;
}
.ac-faq-right-text-box .ac-faq-right-text-title .accordion-button {
  color: var(--yellow-deep);
  border: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.41;
  font-family: "Playfair", serif;
  background-color: transparent;
  box-shadow: none;
  padding: 20px 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-faq-right-text-box .ac-faq-right-text-title .accordion-button {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .ac-faq-right-text-box .ac-faq-right-text-title .accordion-button {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-faq-right-text-box .ac-faq-right-text-title .accordion-button {
    font-size: 24px;
  }
}
.ac-faq-right-text-box .ac-faq-right-text-title .accordion-button::after {
  flex-shrink: 0;
  margin-left: auto;
  height: 100%;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  background-image: unset;
  font-weight: 300;
  background-size: unset;
  transition: transform 0.2s ease-in-out;
}
.ac-faq-right-text-box .ac-faq-right-text-title .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.ac-faq-right-text-box .ac-faq-right-text {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 22px;
  margin-top: -8px;
  font-size: 16px;
  line-height: 26px;
  color: var(--font_gray);
}

.ac-faq-page .ac-faq-right-text-box {
  border: 1px solid var(--theme_color);
}

/* Yhteystiedot */
.ac-contact-page-social-link ul li {
  display: inline-block;
  margin-right: 10px;
}
.ac-contact-page-social-link ul li a {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  background: #f6f4ec;
  color: var(--theme_color);
  line-height: 45px;
}
.ac-contact-page-social-link ul li a:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}
/* Lomake */
.ac-contact-form input {
  height: 70px;
  width: 100%;
  border: none;
  background: #f6f4ec;
  padding: 0 30px;
  margin-bottom: 20px;
  border-radius: 5px;
  outline: none;
  font-size: 16px;
  color: #111;
  font-weight: 400;
  font-family: "Nunito", serif;
}
.ac-contact-form input::placeholder {
  color: #111;
  font-size: 16;
  font-weight: 400;
  font-family: "Nunito", serif;
}
.ac-contact-form textarea {
  font-size: 16px;
  color: #111;
  height: 190px;
  width: 100%;
  background: #f6f4ec;
  padding: 18px 30px 30px;
  border: none;
  border-radius: 5px;
  outline: none;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: "Nunito", serif;
}
.ac-contact-form textarea::placeholder {
  color: #111;
  font-size: 16;
  font-weight: 400;
  font-family: "Nunito", serif;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-contact-page-left .section-title-wrapper:is(.pr-60) {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ac-contact-page-left .section-title-wrapper:is(.pr-60) {
    padding-right: 0px;
  }
}
.ac-contact-page-left .section-title-wrapper .richtext h2 {
  font-size: 26px;
}
.ac-contact-page-left .section-title-wrapper .richtext h3,  .ac-contact-page-left .section-title-wrapper .richtext h4 {
  font-size: 22px;
}
.ac-contact-map {
  width: 100%;
  height: 400px;
}
.ac-contact-map iframe {
  width: 100%;
  height: 100%;
}

.ac-contact-address {
  background-color: #F6F6E8;
}

.ac-contact-address-wrapper {
  display: flex;
  align-items: center;
  color:#111;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-contact-address-wrapper {
    margin-bottom: 30px;
  }
}
.ac-contact-address-wrapper .icon {
  width: 60px;
  height: 60px;
  background-color: var(--theme_color);
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 20px;
  color: var(--white-color);
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
  margin-right: 20px;
}
.ac-contact-address-wrapper .title span {
  font-size: 18px;
  font-weight: 700;
  font-family: "Playfair", serif;
  color: var(--theme_color);
}
.ac-contact-address-wrapper .title p {
  margin: 0;
  color:#111;
}
.ac-contact-address-wrapper .title p a {
  color:blue;
}
/* Brandit */
.ac-brand-area {
  border-top: 1px solid #e9e9e9;
}
.ac-brand-slide-item-wrapper {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  overflow: hidden;
}
.ac-brand-slide-item-wrapper img {
  display: inline-block;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  max-height: 50px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
}
.ac-brand-slide-item-wrapper:hover img {
  filter: saturate(0%);
}
/* Footer */
.ac-footer-area {
  background-color: var(--theme_color);
  color:#fff;
}
.ac-footer-wrapper {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-footer-address-area {
    margin-bottom: 60px;
  }
}
.ac-footer-address-area ul {
  text-align: center;
}
.ac-footer-address-area ul li {
  list-style: none;
  font-size: 16;
  line-height: 26px;
  color: #fff;
  display: inline-block;
  margin-right: 15px;
  margin-left: 5px;
}
.ac-footer-address-area ul li:not(:last-child) {
  margin-bottom: 10px;
}
.ac-footer-address-area ul li img {
  margin-right: 10px;
  margin-top: -5px;
}
.ac-footer-widget-title {
  color: var(--white-color);
  margin-bottom: 15px;
}
.ac-footer-link {
  list-style: none;
}
.ac-footer-link li a {
  line-height: 26px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 6px 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-footer-link li a.active {
  font-weight: 700;
  color: #fff;
}
.ac-footer-link li a:hover {
  color: var(--hover-color-2);
}
.ac-footer-link li a i {
  margin-right: 10px;
  font-size: 26px;
}
.ac-footer-input-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.ac-footer-input-btn input {
  height: 60px;
  width: 100%;
  padding: 0 25px;
  border: 0;
  padding-right: 60px;
  border-radius: 3px;
}
.ac-footer-input-btn input::placeholder {
  font-size: 14px;
  color: var(--font-gray);
}
.ac-footer-input-btn i {
  height: 60px;
  width: 60px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  line-height: 60px;
  color: var(--font-gray);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-footer-input-btn:hover i {
  color: var(--hover-color-2);
}
.ac-footer-copyright-text p {
  font-size: 16px;
  color: #fff;
}
.ac-footer-copyright-text a {
  font-weight: 700;
}
.ac-footer-copyright-text a:hover {
  color: #FC0;
}
.ac-copyright-menu {
  list-style: none;
}
.ac-copyright-menu li {
  display: inline-block;
}
.ac-copyright-menu li:not(:first-child) a {
  padding-left: 20px;
}
@media (max-width: 767px) {
  .ac-copyright-menu li:not(:first-child) a {
    padding-left: 9px;
  }
}
.ac-copyright-menu li a {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  color: var(--white-color);
  position: relative;
}
.ac-copyright-menu li a:hover {
  color: #FC0;
}
.ac-footer-copyright-area {
  border-top: 1px solid #416422;
  padding-bottom: 10px!important;
}
@media (max-width: 767px) {
  .ac-footer-copyright-text {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-footer-copyright-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .ac-footer-copyright-link {
    text-align: center;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-footer-copyright-link {
    text-align: center;
    width: 100%;
  }
}
.ac-footer-widget p {
  color: #cccccc;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-footer-widget.mb-50.pr-70 {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .ac-footer-widget.mb-50.pr-70 {
    padding-right: 0;
  }
}
.ac-footer-2-area {
  background-color: #784D10;
}
.ac-footer-2-widget .ac-footer-logo {
  border-bottom: none;
  padding-bottom: 33px;
}
.ac-footer-2-widget .ac-footer-logo p {
  color: var(--white-color);
}
.ac-footer-2-btn-area .form-btn {
  color: #fff;
}
.ac-footer-2-widget .ac-footer-link li a {
  color: #DBD8D8;
}
.ac-footer-2-widget .ac-footer-link li a:hover {
  color: var(--white-color);
}
.ac-footer-2-single-blog {
  display: flex;
  align-items: center;
}
.ac-footer-2-single-blog-img {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border-radius: 5px;
  margin-right: 20px;
}
.ac-footer-2-single-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.ac-footer-2-single-blog-title {
  font-size: 18px;
  font-weight: 400;
  font-family: "Playfair", serif;
  line-height: 28px;
  color: var(--white-color);
  display: block;
}
.ac-footer-2-single-blog-title:hover {
  color: var(--white-color);
}
.ac-footer-2-single-blog-text span {
  display: block;
  color: #DBD8D8;
  font-size: 14px;
  line-height: 24px;
}
.ac-footer-2-copyright-area {
  border-top: 1px solid #8B6228;
}
@media (max-width: 767px) {
  .ac-footer-2-widget:is(.ml-35) {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-footer-2-widget:is(.ml-35) {
    margin-left: 35px;
  }
}
.ac-footer-btn-area .form-btn:hover {
  background-color: var(--white-color);
  color: var(--theme_color);
}
/* Sivun alkuun */
.progress-wrap {
  position: fixed;
  right: -100px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--theme_color);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background-color: #fff;
}
.progress-wrap::after {
  position: absolute;
  content: "\f176";
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--theme_color);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--yellow_color);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.progress-wrap:is(.progress-wrap-dark) {
  box-shadow: inset 0 0 0 2px #f6f8fa;
  background-color: transparent;
}
.progress-wrap:is(.progress-wrap-dark)::after {
  color: #f6f8fa;
}
.progress-wrap:is(.progress-wrap-dark) svg.progress-circle path {
  stroke: #1a1a1a;
}
.progress-wrap:hover {
  background-color: var(--theme_color);
}
.progress-wrap:hover::after {
  color: var(--white-color);
}

.progress-wrap.active-progress {
  opacity: 1;
  right: 50px;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .progress-wrap.active-progress {
    right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .progress-wrap.active-progress {
    right: 30px;
  }
}
/* Sisältökuvat */
.module-kuvia {
	margin-top:1em;
	margin-bottom:1em;
	padding:0.5em;
}
.size-large {
	clear:both!important;
	width:100%;
	margin-top:1em;
	margin-bottom:1em;
	float:left;
}
.size-large img {
	width:100%;
	height:auto;
}
.size-small {
	clear:right!important;
	width:50%;
	float:left!important;
	margin-top:1em;
	margin-bottom:1em;
}
.size-small img {
	width:100%;
	height:auto;
}
.size-large .img-content, .size-small .img-content {
	margin:0.5em;
}
.kuvateksti {
  margin-top: 3px;
  margin-bottom: 5px;
}
.kuvateksti span {
  font-style: italic;
  font-size: 13px;
}
@media screen and (max-width: 576px) {
	.module-youtube, .size-large, .size-small {
		width:100%;
	}
}
/* Takaisin */
.back-btn {
  margin-top: 50px;
  margin-bottom: 25px;
}
.back-btn .witr_btn {
  color: darkgreen;
  font-style: italic;
  font-weight: 600;
}
/* Captcha */
.captcha-box {
  margin-bottom: 30px;
}
.captcha {
	font-size:14px;
	padding-top:5px;
	padding-bottom:10px;
	margin-bottom:0em!important;
	width:100%;
  color:#000;
}
.captcha-input {
	font-size:14px;
	padding:0em;
	padding-bottom:20px;
}
.captcha-input img {
  border-radius: 5px;
}
.captcha-input input{
	float:left;
	clear:right;
	margin-right:10px;
  height: 28px;
  width: 46px;
  padding: 4px!important;
  text-align: center;
  font-size: 13px!important;
  background: white!important;
  color:#000!important;
  border:1px solid #333;
  border-radius: 5px;
}
.captcha-input img{
	float:left;
	clear:right;
	margin-right:10px;
	margin-top:0em;
}
.map-placeholder {
    width: 100%;
    height: 400px;
    background: #f2f2f2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.map-placeholder button {
    padding: 10px 20px;
    cursor: pointer;
}
/*# sourceMappingURL=main.css.map */
