/* Valikko */
.header-area {
    position: relative;
    z-index: 2;
}
.header-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    top: 0;
    opacity: 0.5;
    z-index: -1;
}
.header-area .container {
    padding-top: 1em;
    padding-bottom: 1em;
}
.header-menu {
    text-align: right;
}
.header-menu ul li {
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
}
.header-menu ul li a {
    display: inline-block;
    color: #ffff;
    padding:0.5;
    transition: 0.5s;
}
.header-menu ul li a.active {
    font-weight: 700;
}
.header-menu ul li a:hover{
    color:#c69524;
}
.header-menu ul li i {
    display: inline-block;
    position: relative;
    top: 1px;
    left: 0px;
    transition: 0.5s;
}
.header-menu ul li i:hover{
    color:#c69524;
}
.header-menu li.call{
    display:none;
}
/* Ota yhteyttä -painike */
.header-button {
    display: inline-block;
    margin-left: 15px;
}
.header-button a {
    display: inline-block;
    border-radius: 25px;
    background-color: #c69524;
    padding: 11px 46px;
    color: #000;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    text-transform: none;
}
.header-button a:hover{
    color: #000;
}
.header-button a:before{
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background:#fff;
    transform: scale(0);
    border-radius: 25px;
    z-index: -1;
    transition: 0.5s;
}
.header-button a:hover:before{
    transform: scale(1);
}
.header-button i {
    margin-left: 10px;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    transition: 0.5s;
}
.header-button a:hover i{
    color: #c69524;
}
/* Logo */
.header-logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
}
.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: #020202 !important;
    transition: .5s !important;
    z-index: 922;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    animation-name: slideInDown;
}
/* Dropdown */
.header-menu ul li.menu-item-has-children {
    position: relative;
}
.header-menu ul li .sub-menu {
    position: absolute;
    width: 200px;
    display: block;
    text-align: left;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    top: 150%;
    z-index: 2;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #c69524;
    border-radius: 3px 3px 0 0;
}
.header-menu ul li:hover .sub-menu{
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.header-menu ul li .sub-menu li a {
    display: block;
    padding: 6px 6px;
    color: #020202;
    width: 200px;
    font-weight: 400;
    margin-left: 0.5em!important;
    margin-right: 0.5em!important;
}
.header-menu ul li .sub-menu li a:hover {
    color: #000;
}
/* Hero */
.hero-section {
    background: url(assets/images/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 920px;
    position: relative;
    z-index:1;
    margin-top: -130px;
}
.hero-section::before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index:-1;
}
.hero-content {
    position: relative;
    z-index: 1;
    display: inline-block;
}
/*.hero-content:before {
    position: absolute;
    content: "";
    width: 65%;
    height: 39%;
    top: 65px;
    left: 0;
    background: #0F0D0E;
    z-index: -1;
    border-radius: 0 60px 0 60px;
}*/
.hero-content h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0em;
    color: #c69524;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 3px;
}
.hero-content h1 {
    font-size: 46px;
    line-height: 48px;
    color: #fff;
    font-weight: 700;
    position: relative;
}
.hero-content p {
    color: #fff;
    width: 95%;
    color: #fff;
    font-size: 16px;
    padding-bottom: 10px;
}
/* Hero painike */
.hero-section .spekar-button, .about-section .spekar-button {
  margin-top: 2em;
}
.spekar-button {
    margin-top: 0px;
    position: relative;
    display: inline-block;
}
.spekar-button a {
    background: #c69524;
    color: #000;
    padding: 15px 20px;
    border-radius: 35px;
    transition: 0.5s;
    border: 1px solid #c69524;
    font-size: 14px;
}
.spekar-button a:hover{
    background: #fff;
    color: #000;
    border: 1px solid #c69524;
}
.spekar-button i {
    display: inline-block;
    margin-left: 8px;
    color: #000;
    transition: 0.5s;
}
.spekar-button a:hover i{
    color:#000;
}
/* Otsikot */
.section-title {
    padding: 0 0 22px;
}
.section-title.tow {
    padding: 0 0 52px;
}
.section-title h4 {
    position: relative;
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 36px;
    color: #c69524;
    font-weight: 500;
}
.section-title h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
}
p.desc-one {
    width: 90%;
    padding: 26px 0 0;
}
p.desc-tow {
    width: 63%;
    margin: auto;
    padding: 27px 0 0;
}
/* Google arvostelut */
.reviews-section {
    padding: 125px 0 125px;
    background: #fff;
}
/* Sisältö */
.about-section {
    padding: 125px 0 125px;
    background: #F5F5F5;
}
.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 1em;
}
.about-thumb {
    margin-left: -26px;
    position: relative;
}
.successful-conference {
    background: #c69524;
    display: inline-block;
    padding: 17px 68px 14px;
    transform: skew(-15deg);
    position: absolute;
    left: -127px;
    top: 76px;
}
.successful-conference p {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    transform: skew(0);
}
.about-box-item {
    display: flex;
    align-items: center;
    margin-bottom: 19px;
}
.about-box-icon {
    margin-right: 21px;
    margin-top: -31px;
    width: 32px;
    height: 32px;
    text-align: center;
}
.about-box-icon i {
     background: #000;
     border-radius: 50px;
     background: #c69524;
     font-size: 16px;
     padding: 0.5em;
}
.about-content h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 46px;
}
.about-content p {
    width: 80%;
    line-height: 23px;
}
/* Palvelut */
.service-section {
    padding: 104px 0 104px;
}
.service-section.inner {
    padding: 125px 0 104px;
}
.single-service-box {
    margin-bottom: 20px;
}
.service-box-thumb{
    overflow: hidden;
}
.service-box-thumb img {
    width: 100%;
    transition: 0.5s;
}
.single-service-box:hover .service-box-thumb img{
    transform: scale(1.1);
}
.service-content {
    background-color: #181616;
    width: 100%;
    padding: 36px 0 39px 33px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
    z-index: 1;
}
.single-service-box:hover .service-content{
    padding-left: 80px;
}
.service-content:before{
    position: absolute;
    content:"";
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    background:#c69524;
    z-index: -1;
    transition: 0.5s;
    color: #000;
}
.single-service-box:hover .service-content:before{
   width: 100%;
}
.single-service-box:hover .service-content h4 a, .single-service-box:hover .service-content p a{
   color:#000;
}
.service-content h4, .service-content h4 a {
    font-size: 20px;
    line-height: 28px;
    margin-top: 0;
    color: #fff;
    font-weight: 700;
}
.service-content p, .service-content p a {
    color: #ffff;
    font-weight: 400;
}
.service-button {
    position: absolute;
    left: -122px;
    top: 33px;
    transition: 0.5s;
}
.single-service-box:hover .service-button {
    left: -54px;
}
.service-button a {
    background: #fff;
    display: inline-block;
    padding: 15px 49px;
    border-radius: 30px;
}
.service-button i {
    display: inline-block;
    font-size: 24px;
    position: relative;
    left: 25px;
    color: #222;
    top: 3px;
}
/* Hinnasto */
.pricing {
  margin-bottom: 30px;
}
.pricing-box {
    margin-bottom: 20px;
}
.pricing-content {
    background-color: #fff;
    width: 100%;
    padding: 30px;
    transition: 0.5s;
    border-radius: 15px 15px 0px 0px;
    height: 100%;
    border: 1px solid #222;
}
.pricing-content h4 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
    color: #222;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
}
.pricing-price {
    background-color: #222;
    width: 100%;
    padding: 20px;
    transition: 0.5s;
}
.pricing-price p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
/* Yhteystiedot */
.contact-section {
    background: url(assets/images/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 125px 0 124px;
}
.single-contact-box {
    background: #c69524;
    padding: 29px 35px 54px;
}
.contact-box-content h2 {
    font-size: 48px;
    color: #000;
}
.contact-box-content p {
    font-size: 16px;
    padding: 15px 0 19px;
    color: #000;
}
.contact-input-box input {
    background: transparent;
    border: transparent;
    width: 100%;
    height: 45px;
    border-bottom: 1px solid #000;
    margin-bottom: 24px;
    outline: 0;
    padding: 0 11px;
    color: #000;
}
.contact-input-box input::placeholder {
    color: #000;
}
.contact-massage-box textarea {
    background: transparent;
    border: transparent;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #000;
    outline: 0;
    padding: 0 11px;
    color: #000;
}
.contact-massage-box textarea::placeholder {
    color: #000;
}
.contact-submit-button button {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 13px 40px;
    border-radius: 30px;
    margin-top: 42px;
}
.contact-submit-button button i {
    color: #000;
    position: relative;
    display: inline-block;
    left: 8px;
    top: 2px;
}
/* Captcha */
.single-contact-box .captcha {
  	font-size:0.9em;
  	padding-top:0.5em;
  	padding-bottom:0em;
  	margin-bottom:0em!important;
  	width:100%;
    color:#000;
}
.single-contact-box .captcha-input {
  	font-size:0.9em;
  	padding-top:1em!important;
  	padding-bottom:1.5em;
}
.single-contact-box .captcha-input input{
  	clear:right;
  	margin-left:0.5em;
    padding: 0.2em!important;
    text-align: center;
    font-size: 0.9em!important;
    width: 46px!important;
    height: 30px!important;
    margin-top: 0.7em!important;
    border-color: #000!important;
}
.single-contact-box .captcha-input img{
  	clear:right;
  	margin-right:0.5em;
  	margin-top:0em;
}
/* Footer */
.footer-section {
    background: #181616;
    padding: 128px 0 18px;
}
.footer-logo a {
    font-size: 38px;
    color: #fff;
    font-weight: 700;
    line-height: 48px;
}
.footer-widget-desc p {
    font-size: 16px;
    color: #ffff;
    width: 60%;
    margin: auto;
    padding: 35px 0 33px;
}
.footer-social-icon ul.social-media {
    margin-top: 30px;
}
.footer-social-icon ul.social-media li {
    margin-right: 10px;
    margin-bottom: 15px;
}
.footer-social-icon ul.social-media li a {
    display: inline-block;
    color: #fff;
    font-weight: 700;
}
.footer-social-icon ul.social-media li i {
    display: inline-block;
    color: #000;
    font-size: 30px;
    margin-right: 0px;
    transition: 0.5s;
    position: relative;
    background: #fff;
    z-index: 1;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50px;
}
.footer-social-icon ul.social-media li i:hover{
    color:#fff;
}
.footer-social-icon ul.social-media li i:after {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
    background: #000;
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
    border-radius: 50px;
}
.footer-social-icon ul li i:hover:after{
    transform: scale(1);
}
.footer-social-icon ul li {
    display: inline-block;
    color: #fff;
}
.footer-social-icon ul li i {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    margin-right: 0px;
    transition: 0.5s;
    position: relative;
    background: #2A2E2F;
    z-index: 1;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
}
.footer-social-icon ul li i:hover{
    color:#000;
}
.footer-social-icon ul li i:after {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
    background: #c69524;
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}
.footer-social-icon ul li i:hover:after{
    transform: scale(1);
}
/* Copyright */
.copyright-area {
    border-top: 1px solid #c69524a8;
    margin-top: 99px;
}
.copyright-area p {
    font-size: 16px;
    line-height: 40px;
    color: #ffffff;
    margin-top: 24px;
}
.copyright-area p a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}
.copyright-area p a:hover {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}
/* Murupolku */
.breadcumb-section {
    background: url(assets/images/bg-breadcrump.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 186px 0 108px;
    text-align: center;
    margin-top: -99px;
    position: relative;
    z-index: 1;
}
.breadcumb-section:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index:-1;
}
.breadcrumb-section .breadcumb-content {
    text-align: center!important;
    width: 100%;
    align-items: center;
}
.breadcumb-title h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 8px;
}
.breadcumb-content ul {
   display: inline-flex;
   text-align: left;
}
.breadcumb-content ul li {
    display: inline-block;
    color: #fff;
    font-family: 'Poppins';
    margin-right: 10px;
    margin-left: 10px;
}
.breadcumb-content ul li a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 22px;
}
.breadcumb-content ul li i{
    display: inline-block;
    font-size: 15px;
}
.breadcumb-content ul li.active a{
    font-weight: 700;
}
/* Gallery */
.gallery-section {
    padding: 125px 0 110px;
}
.single-gallery-box {
    margin-bottom: 20px;
}
.gallery-thumb {
    position: relative;
    overflow: hidden;
}
.gallery-thumb img {
    width: 100%;
    transition: 0.5s;
}
.single-gallery-box:hover .gallery-thumb img{
    transform: scale(1.1);
}
.gallery-content {
    background: #c69524;
    padding: 10px 55px 40px;
    position: absolute;
    bottom: -207px;
    left: 0;
    border-radius: 0 0 10px 10px;
    width: 100%;
    transition: 0.5s;
}
.single-gallery-box:hover .gallery-content{
    bottom: 0;
    border-radius: 0;
}
.gallery-content h4 a {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 4px;
}

.gallery-content p{
    color:#fff;
}
/* Palvelu */
.service-details {
    background: #F5F5F5;
    padding: 123px 0 110px;
    position: relative;
}
.sidebar-widget {
    margin-bottom: 30px;
}
.sidebar-widget form {
    position: relative;
}
.sidebar-widget input {
    height: 60px;
    width: 100%;
    background: #ffffff;
    border: 2px solid rgba(6,36,97,0.10196078431372549);
    border-radius: 4px;
    padding: 0 20px 0;
    outline: 0;
}
.sidebar-widget button.subscribe-btn {
    height: 60px;
    width: 60px;
    border: 0;
    border-radius: 0 4px 4px 0;
    background: #c69524;
    color: #fff;
    position: absolute;
    right: 0;
}
.widget-sidebar-box {
    padding: 30px 30px 30px;
    background: #ffffff;
    margin-bottom: 30px;
    border-radius: 4px;
    filter: drop-shadow(0px 4px 3px rgba(0,0,0,0.2));
}
h4.sidebar-title {
    font-size: 22px;
    padding: 0 0 25px;
    position: relative;
    z-index: 1;
}
h4.sidebar-title:before {
    position: absolute;
    content: "";
    left: -29px;
    top: 0;
    width: 3px;
    height: 30px;
    background: #c69524;
    border-radius: 5px;
}
ul.sidebar-menu {
    border-top: 2px solid rgba(6,36,97,0.10196078431372549);
    padding: 30px 0 0;
}
ul.sidebar-menu li {
    padding: 13px 15px 13px;
    display: block;
    border: 1px solid rgba(19,17,37,0.1);
    margin-bottom: 10px;
    border-radius: 4px;
    transition: .5s;
}
ul.sidebar-menu li a {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    transition: .5s;
}
ul.sidebar-menu li a i {
    background: #E5E8EF;
    border-radius: 20px;
    font-size: 16px;
    padding: 0px 3px;
    margin-right: 5px;
    transition: .5s;
    color: #000;
}
ul.sidebar-menu li:hover {
    background: #F6F6F6;
    border: 1px solid #f6f6f6;
}
ul.sidebar-menu li:hover a i {
    background: #c69524;
    color: #fff;
}
ul.sidebar-menu li.is-in-active-path a.active {
    font-weight: 700;
}
ul.sidebar-menu li.is-in-active-path ul {
  margin-top: 15px;
  margin-bottom: 5px;
  margin-left: 15px;
  margin-right: 5px;
}
ul.sidebar-menu li.is-in-active-path ul li {
    color:#000;
    padding: 0px;
    border: none;
    margin-bottom: 5px;
}
ul.sidebar-menu li.is-in-active-path ul li a {
    color:#000;
}
.widget-download-box {
    padding: 30px 30px 15px;
    background: #ffffff;
    margin-bottom: 30px;
    border-radius: 4px;
}
.widget-download-box ul li a {
    background: #c69524;
    color: #fff;
    display: inline-block;
    padding: 14px 36px;
    font-size: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.widget-download-box ul li i {
    font-size: 15px;
    display: inline-block;
    margin-right: -4px;
    color: #fff;
}
/* Sivupalkki - Ota yhteyttä */
.widget-sidebar-quick-contact {
    background: url(assets/images/bg-sidebar.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 49px 0 49px;
    margin-bottom: 30px;
    border-radius: 5px;
    position: relative;
    z-index:1;
}
.widget-sidebar-quick-contact::before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index:-1;
}
.logo-thumb img {
    max-width: 100%;
    height: auto;
    max-width: 200px;
}
.widget-sidebar-quick-contact p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    padding-left: 2em;
    padding-right: 2em;
}
h2.widget-title2 {
    padding-left: 2em;
    padding-right: 2em;
    font-size: 26px;
    line-height: 30px;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0.5em;
}
.widget-button {
  margin-top: 2em;
}
.widget-button a {
    padding: 15px;
    background: #c69524;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    margin-left: 2em;
    margin-right: 2em;
}
.widget-button a:hover{
    color: #c69524;
}
.widget-button a:before {
    position: absolute;
    content: "";
    z-index: -1;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background:#fff;
    transition: .5s;
    border-radius: 4px;
}
.widget-button a:hover:before {
    width: 100%;
    left: 0;
}
h2.accordion-title {
    font-size: 30px;
    margin-bottom: 23px;
}
/*service details right */
.service-dtls-all-items {
    padding-left: 85px;
}
h2.service-title {
    font-size: 30px;
    line-height: 50px;
    padding: 10px 0 10px;
}
p.service-dtls-desc {
    margin-bottom: 23px;
    text-align: justify;
}
p.service-dtls-desc2 {
    padding: 0 0 31px;
}
/*service dtls box*/
.service-dtls-box {
    display: flex;
    align-items: center;
    background: #f6f6f6;
    border-radius: 5px;
}
.sevice-dtls-content {
    padding-left: 25px;
}
.sevice-dtls-content h4 {
    font-size: 20px;
    line-height: 44px;
}
/*service dtls panel*/
.service-dtls-itm-pannel {
    border-top: 1px solid rgba(6,36,98,0.10196078431372549);
    border-bottom: 1px solid rgba(6,36,98,0.10196078431372549);
    padding: 25px 0 37px;
    margin: 40px 0 20px 0;
}
.service-dtls-items ul li {
    display: block;
    list-style: none;
    padding: 12px 0 0;
    color: #062461;
    font-weight: 400;
}
.service-dtls-items ul li i {
    background: #E5E8EF;
    border-radius: 20px;
    color: #062461;
    font-size: 15px;
    padding: 0px 3px;
    line-height: 20px;
    margin-right: 5px;
    transition: .5s;
    display: inline-block;
}
.service-dtls-items ul li:hover i {
    background: #c69524;
    color: #fff;
}
.service-dtls-cont h5 {
    font-size: 16px;
    color: #c69524;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 22px;
}
.service-dtls-cont h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    padding: 6px 0 0;
}
/* Uutinen */
.blogs-section {
    padding: 121px 0 120px;
    background: #F8F8F8;
}
.blogs-section.style-two {
    background: #F5F5F5;
}
.blogs-section.style-two .blog-content{
    border:transparent;
}
.blog-content .back {
    margin-top: 20px;
    margin-bottom: 20px;
}
.blog-content .back a {
    font-weight: 600;
}
.row.blogs-pr {
    padding-right: 90px;
}
.blogs-section .blog-content {
    padding: 35px 35px 18px;
    transition: .5s;
    background: #fff;
    border-radius: 5px;
    border: 1px solid rgba(6,36,98,0.1);
    border-top: 0;
}
.blog-section .blog-content {
    margin-bottom: 50px;
}
.blogs-section h2.blog-title a {
    font-size: 28px;
    font-weight: 700;
}
.style-two.blogs-section h2.blog-title a {
    font-size: 22px;
    font-weight: 700;
}
p.blog-desc {
    padding: 15px 0 38px;
}
.blogs-section .widget-sidebar-box {
    padding: 13px 30px 30px;
}
.upp.widget-sidebar-box {
    padding: 13px 30px 15px;
}
.blogs-section h4.sidebar-title.upp {
    padding: 0 0 24px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(6,36,97,0.10196078431372549);
}
.widget-recent-post {
    border-bottom: 1px solid #E8E8E8;
    padding: 0 0 20px;
    margin-bottom: 20px;
}
.widget-recent-post.upper {
    border-bottom: 0;
    margin-bottom: 0;
    padding: 0;
}
.rpost-thumb {
    margin-right: 20px;
}
.rpost-thumb img {
    width: 100%;
    max-width: 100px;
    height: auto;
}
.rpost-content h4 a {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
    display: inline-block;
    transition: .5s;
    font-family: 'Inter';
}
.blogs-section .richtext ul, .blogs-section .richtext ol {
  padding-left: 15px;
  margin-left: 15px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.blogs-section .richtext ul li {
  list-style: disc;
}
.tag-item ul li {
    display: inline-block;
    list-style: none;
}
li.item1 {
    padding: 15px 0 0 !important;
}
.tag-item a {
    background: #f6f6f6;
    padding: 6px 20px;
    display: inline-block;
    margin: 0px 6px 15px 0;
    border: 0;
    font-weight: 400;
    color: #062461;
    transition: .5s;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}
.tag-item a:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #c69524;
    border-radius: 5px 30px 30px 30px;
    z-index: -1;
    transform: scale(0);
    transition: .5s;
}
.tag-item a:hover:before {
   transform: scale(1);
}
.tag-item a:hover {
   color: #fff;
}
.single-blog-dtls-box ul.blog-author {
    padding: 8px 0 0;
}
.single-blog-dtls-box .blog-thumb:hover:before {
    width: 100%;
    left: 0;
    visibility: visible;
}
.single-blog-dtls-box .meta-blog a:hover:before {
    transform: scale(1);
}
.blogs-section .single-blog-dtls-box .blog-content {
    padding: 35px 35px 25px;
}
.blog-content p.ingressi {
    margin-bottom: 2em;
}
p.blog-desc2 {
    padding: 15px 0 0px;
}
/* Quote */
.blog-quote {
    background: #f6f6f6;
    padding: 24px 35px 43px;
    border-left: 4px solid #c69524;
    border-radius: 2px;
    margin: 25px 0 47px;
}
img.qte-icon {
    float: left;
    margin-right: 20px;
}
.blog-quote p {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: #062462;
}
.blog-dtls-thumb {
    padding: 20px 0 15px;
}
/* Lomake */
.contact-form-box3 {
    padding: 33px 30px 50px;
    border: 1px solid rgba(6,36,98,0.1);
    margin: 30px 0 0;
    border-radius: 5px;
}
.contact-form-box3 .form-box input {
    background-color: #fff;
    border: 0;
    width: 70%;
    height: 50px;
    padding: 13px;
    outline: 0;
}
.contact-form-box3 .form-box textarea {
    background-color: #ffff;
    border: 0;
    width: 100%;
    outline: 0;
    padding: 20px 22px;
}

.contact-form.style-two button {
    background: #c69524;
    border: transparent;
    color: #fff;
    padding: 9px 21px;
    margin-top: 20px;
    border-radius: 5px;
}
.contact-form.style-two {
    padding: 0 0 0;
}
/* Yhteystiedot */
.contact-information {
    padding: 113px 0 130px;
    background: #F5F5F5;
}
.contact-information .section-title {
    padding: 0 0 65px;
}
.contact-infor-box {
    background: #fff;
    border-radius: 10px;
    padding: 39px 37px 24px;
}
.contact-infor-icon i {
    font-size: 38px;
    display: inline-block;
    color: #c69524;
}
.contact-infor-content h4 {
    font-size: 20px;
    font-weight: 500;
    font-family: Rubik;
    margin-top: 0;
}
.contact-infor-content p {
    font-size: 16px;
    line-height: 30px;
}
.map-holder {
  margin-top: 100px;
    border: 1px solid #ddd;
}
.map-holder .col-lg-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.map-holder iframe {

}
/* Arkisto */
.blog-section {
    padding: 80px 0 80px;
}
.blog-content {
    margin-top: 0em;
    margin-bottom: 2em
}
.single-blog-box .blog-content {
    border: 1px solid #eee;
    padding: 2em;
}
.single-blog-box .button {
    margin-top: 2em;
}
.single-blog-box .button a {
    background: #c69524;
    color:#000;
    display: inline-block;
    padding: 15px 49px;
    border-radius: 30px;
}
.single-blog-box .button i {
    display: inline-block;
    font-size: 24px;
    position: relative;
    left: 15px;
    color: #000;
    top: 3px;
}
.single-blog-box .button a:hover {
    background: #000;
    color:#fff;
}
.single-blog-box .button a:hover i {
    color:#fff;
}
.single-blog-box-3 {
    background: #fff;
    padding: 35px;
    border-radius: 5px;
    margin-bottom: 29px;
    filter: drop-shadow(0px 4px 3px rgba(0,0,0,0.1));
}
.single-blog-thumb-3{
    overflow: hidden;
}
.single-blog-thumb-3 img {
    width: 100%;
    transition: 0.5s;
}
.blog-thumb img {
    width: 100%;
    max-width: 900px;
    height: auto;
}
.single-blog-box-3:hover .single-blog-thumb-3 img {
    transform: scale(1.1);
}
.blog-content-3 {
    padding: 28px 0 0;
}
.meta-blog-3 span {
    font-size: 14px;
    margin-right: 10px;
    display: inline-block;
}
.meta-blog-3 span i {
    color: #c69524;
    font-size: 13px;
    display: inline-block;
    margin-right: 9px;
}
a.blog-title-3 {
    font-size: 36px;
    display: inline-block;
    color: #232323;
    font-weight: 600;
    font-family: 'Rubik';
    line-height: 45px;
    text-transform: unset;
    padding: 14px 0 11px;
    transition: 0.5s;
}
.single-blog-box-3:hover a.blog-title-3{
    color:#c69524;
}
p.blog-desc-3 {
    width: 92%;
    margin-bottom: 22px;
}
/* Sivun alkuun */
.prgoress_indicator {
    position: fixed;
    right: 50px;
    bottom: 20px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(241, 210, 65, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}
.prgoress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}
.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #c69524;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}
.prgoress_indicator::before {
  position: absolute;
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear !important;
}
.prgoress_indicator:hover ::after {
  color: #c69524;
}
.prgoress_indicator:hover ::before {
  opacity: 1;
}
.prgoress_indicator svg path {
  fill: none;
}
.prgoress_indicator svg.progress-circle path {
  stroke:#c69524;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
}
/* Sisältökuvat */
.module-kuvia {
	margin-top:1em;
	margin-bottom:1em;
	padding:0.5em;
	float:left;
	clear:both;
	width:100%;
}
.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;
	margin-top:1em;
	margin-bottom:1em;
}
.size-small img {
	width:100%;
	height:auto;
}
.size-large .img-content, .size-small .img-content {
	margin:0.5em;
}
@media screen and (max-width: 576px) {
  .size-large, .size-small {
  	width:100%;
  }
}
/* Whatsapp */
a.blantershow-chat {
  /*   background: #009688; */
  background: transparent;
  color: #404040;
  position: fixed;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  z-index: 98;
  bottom: 25px;
  right: 30px;
  font-size: 15px;
  padding: 10px 10px;
  border-radius: 30px;
  /*box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);*/
  display: none;
}
a.blantershow-chat svg {
  transform: scale(1.2);
  margin: 0;
}
@media screen and (max-width: 576px) {
  a.blantershow-chat  {
  	display:block;
  }
  .prgoress_indicator {
    display: none;
  }
  .breadcumb-content ul {
    display: none;
  }
  .breadcumb-section {
    padding: 160px 0 60px;
  }
  .blogs-section {
      padding: 80px 0 80px;
  }
}
