/*-----------------------------------------------------------------------------------
	CCI4Change
	About: A shiny new Blocs website.
	Author: Alina Viontsek
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'PTSerif-Regular';
	src: url('./fonts/PTSerif-Regular/pt-serif.woff2');
	src: url('./fonts/PTSerif-Regular/pt-serif.woff2') format('woff2'),
	url('./fonts/PTSerif-Regular/pt-serif.eot?#iefix') format('embedded-opentype'),
	url('./fonts/PTSerif-Regular/pt-serif.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* Flip Edge Divider */

.bloc-divider-flip-x svg{
	transform:scale(-1,1);
}
.bloc-divider-flip-y svg{
	transform:scale(1,-1);
}
.bloc-divider-flip-x.bloc-divider-flip-y svg{
	transform:scale(-1,-1);
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* = NavBar
-------------------------------------------------------------- */

/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-clear{
	margin:0;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}
.dropdown a .caret{
	margin:0 0 0 5px}.btn-dropdown .dropdown-menu .dropdown{
	padding: 3px 20px;
}

/* = Icons
-------------------------------------------------------------- */
blocsicon{
	display:inline-block;
	width:100%;
}
blocsicon svg {
	width: 100%;
	 height: auto;
	 display: block;
}
.btn blocsicon,.text-nested-icon{
	width:20px;
}
.text-nested-icon svg{
	display:inline-block;
}




/* = Cards
-------------------------------------------------------------- */
.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}

/* Additional Aspect Ratios */

.ratio-4x4::before{
	padding-top:100%}.ratio-9x16::before{
	padding-top:106.25%}
.carousel-nav-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

.carousel-indicators li::marker{
	font-size:0;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"PTSerif-Regular";
}
.container{
	max-width:1140px;
}
.navbar-brand img{
	width:250px;
}
.link-style{
	font-weight:bold;
}
.link-toolkit-style{
	font-weight:bold;
}
.link-case-studies-style{
	font-weight:bold;
}
.link-0-style{
	font-weight:bold;
}
.link-downloads-style{
	font-weight:bold;
}
.img-style{
	width:450px;
	height:282px;
}
.img-3-style{
	width:450px;
	height:282px;
}
.row-style{
	width:100%;
}
.h5-bloc-1-style{
	width:93.55%;
	font-family:"PT Serif";
	font-size:15px;
}
.row-4-style{
	width:100%;
}
.img-4-style{
	width:450px;
	height:282px;
}
.img-5-style{
	width:450px;
	height:282px;
}
.img-6-style{
	width:450px;
	height:282px;
}
.btn-style{
	font-weight:bold;
	font-style:normal;
}
.btn-read-more-style{
	font-weight:bold;
}
.btn-4-style{
	font-weight:bold;
}
.btn-5-style{
	font-weight:bold;
}
.btn-6-style{
	font-weight:bold;
}
.p-style{
	font-size:16px;
	width:94.37%;
}
.p-bloc-4-style{
	font-size:16px;
	width:92.82%;
}
.p-bloc-5-style{
	font-size:16px;
	width:93.98%;
}
.p-bloc-6-style{
	font-size:16px;
}
.p-bloc-7-style{
	font-size:16px;
	width:91.26%;
}
.h1-style{
	font-family:"PTSerif-Regular";
	font-size:35px;
	line-height:100px;
}
.card-body-style{
	height:401px;
}
.card-body-bloc-2-style{
	height:373px;
}
.card-header-style{
	height:96px;
}
.p-1-style{
	font-family:"PT Serif";
	width:87.76%;
	font-size:16px;
}
.card-header-bloc-2-style{
	height:97px;
}
.img-2-style{
	border-radius:95px 95px 95px 95px;
	width:333px;
}
.h2-style{
	width:93.2%;
	font-family:"PTSerif-Regular";
	font-size:35px;
}
.p-2-style{
	width:89.18%;
	font-size:16px;
}
.p-1-bloc-2-style{
	width:94.17%;
	font-size:16px;
}
.row-5-style{
	width:89.37%;
}
.p-bloc-3-style{
	font-size:16px;
}
.p-3-style{
	font-size:16px;
}
.p-4-style{
	font-size:16px;
}
.p-5-style{
	font-size:16px;
}
.p-6-style{
	font-size:16px;
}
.h3-bloc-2-style{
	font-family:"Lato";
}
.h3-6-style{
	font-family:"Lato";
}
.h1-bloc-4-style{
	font-family:"Lato";
}
.h3-7-style{
	font-family:"PTSerif-Regular";
}
.h3-bloc-4-style{
	font-family:"PTSerif-Regular";
}
.h3-bloc-5-style{
	font-family:"PTSerif-Regular";
}
.h3-bloc-6-style{
	font-family:"PTSerif-Regular";
	width:100%;
}
.h3-bloc-7-style{
	font-family:"PTSerif-Regular";
}
.p-11-style{
	width:84.91%;
}
.img-9-style{
	width:839px;
}
.h1-how--style{
	font-family:"PTSerif-Regular";
	font-size:35px;
}
.img-38181-style{
	width:461px;
}
.h1-4-style{
	font-family:"PTSerif-Regular";
	font-size:35px;
}
.bloc-divider-t-fill{
	fill:transparent;
}
.bloc-divider-b-fill{
	fill:transparent;
}
.bloc-divider-b-bloc-4-fill{
	fill:transparent;
}
.h3-1-style{
	width:84.91%;
	font-size:35px;
}
.h1-bloc-2-style{
	font-size:45px;
}
.h1-the-toolkit-style{
	font-size:50px;
}
.svg-icon-style{
	width:60px!important;
}
.svg-icon-fill-type{
	width:60px!important;
}
.h3-2-style{
	font-size:16px;
}
.h3-3-style{
	font-size:16px;
}
.h3-city-of-kotka-style{
	font-size:16px;
}
.h3-5-style{
	font-size:16px;
}
.h3-6-bloc-6-style{
	font-size:16px;
}
.h3-stpln-style{
	font-size:16px;
}
.h3-8-style{
	font-size:16px;
}
.img-bloc-3-style{
	width:283px;
}
.img-6-bloc-3-style{
	width:353px;
}
.list-style{
	width:100%;
}
.h1-8-style{
	font-family:"PTSerif-Regular";
	font-size:35px;
}
.p-5048-style{
	width:92.41%;
}
.row-13-style{
	width:60.25%;
}
.img-37105-style{
	width:316px;
}
.h1-bloc-1-style{
	width:79.04%;
	line-height:20px;
}
.img-7-style{
	width:295px;
}
.bloc-divider-b-bloc-1-fill{
	fill:var(--swatch-var-4498);
}
.img-bloc-10-style{
	width:650px;
}
.bloc-fill{
	fill:var(--swatch-var-1488);
}
.h3-bloc-10-style{
	font-size:80px;
	font-family:"Lato";
	width:100%;
}
.p-bloc-10-style{
	width:94.52%;
}
.h3-bloc-14-style{
	font-family:"PTSerif-Regular";
}
.h3-bloc-15-style{
	font-family:"PTSerif-Regular";
	font-size:20px;
}
.card-body-bloc-15-style{
	height:402px;
}
.p-8-style{
	width:100%;
}
.p-9-style{
	width:100%;
}
.svg-icon-bloc-13-style{
	width:54px;
	stroke:transparent!important;
	fill:var(--swatch-var-1125)!important;
}
.svg-icon-0-bloc-13-style{
	width:50px!important;
	fill:var(--swatch-var-1125)!important;
}
.svg-icon-24246-style{
	width:50px!important;
	fill:var(--swatch-var-1125)!important;
}
.svg-icon-31934-style{
	width:50px!important;
	fill:var(--swatch-var-1125)!important;
}
.svg-icon-6834-style{
	width:50px!important;
	fill:var(--swatch-var-1125)!important;
}
.h1-bloc-12-style{
	font-size:35px;
}
.img-1294-style{
	width:239px;
}
.img-8-style{
	width:313px;
}
.card-hero{
	background-color:var(--swatch-var-4498);
	border-radius:10px 10px 10px 10px;
	border-color:var(--swatch-var-3181)!important;
}
.icon-size{
	width:80px;
}
.card{
	border-radius:10px 10px 10px 10px;
}
.card-header{
	border-width:0px 0px 0px 0px;
	background-color:var(--swatch-var-1125);
	color:var(--swatch-var-1603)!important;
}
.card-green{
	background-color:var(--swatch-var-162);
	text-align:center;
}
.svg-icon-48750-style{
	width:51px;
}
.card-white{
	background-color:var(--swatch-var-1603);
}
.card-header-green{
	background-color:transparent;
	color:var(--swatch-var-531)!important;
}
.icon-green{
	fill:var(--swatch-var-1125);
}
.hero-image{
	margin-top:70px;
	margin-bottom:70px;
}
.svg-icon-bloc-15-style{
	width:64px!important;
	fill:var(--swatch-var-1125)!important;
}
.img-kartta-1-style{
	width:1054px;
}
.img-19-style{
	width:166px;
}
.img-20-style{
	width:133px;
}
.img-21-style{
	width:153px;
}
.img-22-style{
	width:145px;
}
.img-23-style{
	width:167px;
}
.img-24-style{
	width:235px;
}
.img-25-style{
	width:166px;
}
.bloc-style{
	width:97.15%;
}
.link-bloc-0-style{
	font-weight:bold;
}
.link-0-bloc-0-style{
	font-weight:bold;
}
.link-43391-style{
	font-weight:bold;
}
.link-28038-style{
	font-weight:bold;
}
.link-13781-style{
	font-weight:bold;
}
.btn-button-style{
	width:35.44%;
}
.btn-6-button-style{
	width:35.44%;
}
.btn-8-style{
	width:35.44%;
}
.container-div-min-height{
	min-height:57px;
}
.container-div-bloc-16-min-height{
	min-height:57px;
}
.container-div-0-min-height{
	min-height:57px;
}
.p-bloc-21-style{
	width:84.25%;
	font-size:16px;
}
.h5-style{
	width:84.44%;
}
.carousel-style{
	width:79.51%;
}
.label-style{
	width:88.21%;
}
.carousel-2-style{
	width:77.99%;
}
.carousel-bloc-55-style{
	width:78.75%;
}
.carousel-bloc-63-style{
	width:78.65%;
}
.carousel-bloc-64-style{
	width:78.08%;
}
.img-bloc-45-style{
	width:211px;
}
.img-bloc-54-style{
	width:214px;
}
.img-bloc-62-style{
	width:243px;
}
.p-bloc-34-style{
	width:91.46%;
}
.h3-19-style{
	width:71.55%;
}
.h6-style{
	width:67.65%;
}
.link-bloc-40-style{
	width:0px;
}
.link-0-bloc-40-style{
	width:66px;
}
.btn-8-button-style{
	width:25.15%;
}
.btn-10-style{
	width:42.04%;
}
.btn-12-style{
	width:25.34%;
}
.img-39-style{
	width:359px;
}
.h3-58-style{
	width:60.19%;
}
.p-77-style{
	width:85.24%;
}
.p-30315-style{
	width:92.1%;
}
.img-33013-style{
	width:338px;
}
.img-40-style{
	width:367px;
}
.img-bloc-11-style{
	width:310px;
}
.p-29-style{
	width:85.97%;
}
.img-bloc-13-style{
	width:488px;
}
.h3-style{
	width:98.82%;
	font-size:35px;
}
.h3-bloc-17-style{
	font-size:35px;
}
.h1-12-style{
	font-size:35px;
}
.h1-13-style{
	font-size:35px;
}
.p-80-style{
	width:87.95%;
}
.h2-bloc-51-style{
	width:100%;
	font-size:27px;
}
.h2-bloc-52-style{
	font-size:27px;
}
.h2-bloc-53-style{
	font-size:27px;
	width:100%;
}
.img-bloc-51-style{
	width:352px;
}
.img-bloc-52-style{
	width:392px;
}
.h3-bloc-53-style{
	font-size:20px;
}
.link-bloc-51-style{
	font-weight:bold;
}
.link-download-pdf-style{
	font-weight:bold;
}
.link-bloc-52-style{
	font-weight:bold;
}
.link-0-download-pdf-style{
	font-weight:bold;
}
.link-bloc-53-style{
	font-weight:bold;
}
.link-45561-style{
	font-weight:bold;
}
.link-46743-style{
	font-weight:bold;
}
.link-49076-style{
	font-weight:bold;
}
.link-22326-style{
	font-weight:bold;
}
.link-bloc-66-style{
	font-weight:bold;
}
.link-20408-style{
	font-weight:bold;
}
.link-download-pdf--style{
	font-weight:bold;
}
.h3-bloc-62-style{
	width:100%;
	font-size:16px;
}
.h3-69-style{
	font-size:16px;
}
.h3-70-style{
	font-size:16px;
}
.h3-71-style{
	font-size:16px;
}
.h3-72-style{
	font-size:16px;
}
.link-bloc-73-style{
	text-decoration:underline;
	font-style:italic;
}
.link-bloc-63-style{
	font-weight:bold;
	font-style:italic;
}
.link-12630-style{
	font-weight:bold;
	font-style:italic;
}
.link-watch-more-style{
	font-weight:bold;
	font-style:italic;
}
.img-bloc-59-style{
	width:466px;
}
.link-10913-style{
	font-weight:bold;
}
.link-0-download-pdf--style{
	font-weight:bold;
}
.link-42131-style{
	font-weight:bold;
}
.link-47186-style{
	font-weight:bold;
}
.link-2277-style{
	font-weight:bold;
}
.link-13791-style{
	font-weight:bold;
}
.link-bloc-91-style{
	font-weight:bold;
}
.link-download-here--style{
	font-weight:bold;
}
.link-35255-style{
	font-weight:bold;
}
.link-12415-style{
	font-weight:bold;
}
.link-bloc-65-style{
	font-style:italic;
	font-weight:bold;
}
.link-0-bloc-65-style{
	font-weight:bold;
}
.link-11556-style{
	font-weight:bold;
}
.link-bloc-57-style{
	font-weight:bold;
}
.link-16004-style{
	font-weight:bold;
}
.link-here-style{
	font-weight:bold;
	font-style:italic;
}
.p-bloc-91-style{
	width:91.94%;
}
.p-124-style{
	width:93.17%;
}
.p-bloc-89-style{
	width:90.8%;
	font-size:16px;
}
.p-bloc-83-style{
	width:91.56%;
	font-size:16px;
}
.p-110-style{
	width:91.94%;
}
.img-32-energiasyöpp-style{
	width:872px;
}
.link-0-here-style{
	font-weight:bold;
	font-style:italic;
}
.img-icon-1-style{
	width:92px;
}
.img-32-style{
	width:1054px;
}
.h3-tools--style{
	font-size:35px;
}
.h3-56-style{
	font-size:35px;
}
.h3-62-style{
	font-size:35px;
}
.h3-83-style{
	font-size:35px;
}
.img-32672-style{
	width:1054px;
}
.img-43460-style{
	width:515px;
}
.img-24819-style{
	width:957px;
}
.h2-bloc-71-style{
	font-size:35px;
}
.h3-82-style{
	font-size:35px;
}
.p-bloc-53-style{
	font-size:16px;
}
.p-bloc-59-style{
	font-size:16px;
}
.p-bloc-64-style{
	font-size:16px;
}
.p-bloc-67-style{
	font-size:16px;
}
.p-bloc-80-style{
	font-size:16px;
}
.h3-steps--style{
	font-size:px;
}
.h3-36-style{
	font-size:20px;
}
.link-partners-style{
	font-style:italic;
}
.img-44-style{
	width:68px;
}
.img-45-style{
	width:346px;
}
.img-42-style{
	width:325px;
}
.img-bloc-91-style{
	width:324px;
}
.img-bloc-93-style{
	width:325px;
}
.img-46-style{
	width:97px;
}
.img-bloc-92-style{
	width:925px;
}
.link-20819-style{
	font-style:italic;
	font-weight:bold;
}
.link-46815-style{
	font-style:italic;
	font-weight:bold;
}
.link-bloc-30-style{
	font-weight:bold;
	font-style:italic;
}
.link-48619-style{
	font-weight:bold;
	font-style:italic;
}
.link-bloc-77-style{
	font-weight:bold;
}
.link-13813-style{
	font-weight:bold;
}
.link-19171-style{
	font-weight:bold;
}
.img-bloc-30-style{
	width:945px;
}
.link-bloc-101-style{
	font-style:italic;
	font-weight:bold;
}
.img-asset-20-style{
	width:59px;
}
.img-asset-19-style{
	width:56px;
}
.img-asset-18-style{
	width:69px;
}
.img-asset-12-style{
	width:85px;
}
.img-asset-17-style{
	width:70px;
}
.img-25-icon-3-style{
	width:111px;
}
.img-asset-15-style{
	width:95px;
}
.img-27-style{
	width:92px;
}
.img-43-style{
	width:85px;
}
.img-asset-13-style{
	width:96px;
}
.img-asset-16-style{
	width:72px;
}
.link-21489-style{
	font-weight:bold;
}
.link-25493-style{
	font-style:italic;
	font-weight:bold;
}
.img-bloc-108-style{
	width:400px;
}
.link-12804-style{
	font-weight:bold;
}
.link-bloc-109-style{
	font-weight:bold;
}
.link-5183-style{
	font-weight:bold;
}
.link-42522-style{
	font-weight:bold;
}
.link-30121-style{
	font-weight:bold;
}
.link-19032-style{
	font-weight:bold;
	font-style:italic;
}
.h5-bloc-61-style{
	font-size:35px;
}
.link-861-style{
	font-weight:bold;
}
.img-bloc-128-style{
	width:455px;
}
.link-35043-style{
	font-weight:bold;
	font-style:italic;
}
.h2-tools--style{
	font-size:50px;
}
.link-27071-style{
	font-weight:bold;
	font-style:italic;
}
.h3-56-tools--style{
	font-size:35px;
}
.link-pilot-projects-style{
	font-style:italic;
}
.h3-bloc-89-style{
	font-size:16px;
	width:89.75%;
}
.p-19-style{
	width:92.24%;
}
.img-11918-style{
	width:349px;
}
.h3-bloc-16-style{
	font-size:35px;
	width:100%;
}
.img-bloc-60-style{
	width:173px;
}
.link-bloc-38-style{
	font-style:italic;
}
.link-download-here-style{
	font-style:italic;
}
.link-0-download-here-style{
	font-style:italic;
}
.link-46883-style{
	font-style:italic;
}
.link-40296-style{
	font-style:italic;
}
.link-17101-style{
	font-style:italic;
}
.link-30348-style{
	font-style:italic;
}
.link-14759-style{
	font-style:italic;
}
.h3-bloc-37-style{
	font-size:35px;
}
.link-30062-style{
	font-style:italic;
}
.h1-bloc-13-style{
	font-size:35px;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-3181:rgba(214,214,214,0.23);
	
	--swatch-var-1125:rgba(55,109,73,1.00);
	
	--swatch-var-7182:rgba(254,243,103,0.46);
	
	--swatch-var-531:rgba(0,0,0,1.00);
	
	--swatch-var-6611:rgba(0,111,171,1.00);
	
	--swatch-var-7562:rgba(134,161,16,0.22);
	
	--swatch-var-4498:rgba(55,109,73,0.74);
	
	--swatch-var-7231:rgba(212,226,6,0.60);
	
	--swatch-var-1488:rgba(214,214,214,0.75);
	
	--swatch-var-1603:rgba(255,255,255,1.00);
	
	--swatch-var-5940:rgba(212,226,6,0.32);
	
	--swatch-var-162:rgba(134,161,16,0.33);
	
	--swatch-var-3994:rgba(55,109,73,0.24);
	
	--swatch-var-7876:rgba(212,226,6,0.34);
	
	--swatch-var-4220:rgba(254,243,103,0.63);
	
	--swatch-var-1126:rgba(134,161,16,0.40);
	
	--swatch-var-5949:rgba(55,109,73,0.30);
	
	--swatch-var-6539:rgba(0,111,171,0.22);
	
	--swatch-var-7967:rgba(254,243,103,1.00);
	
}


/* Background colour styles */

.bgc-3181{
	background-color:var(--swatch-var-3181);
}
.bgc-162{
	background-color:var(--swatch-var-162);
}
.bgc-7231{
	background-color:var(--swatch-var-7231);
}
.bgc-4220{
	background-color:var(--swatch-var-4220);
}
.bgc-1126{
	background-color:var(--swatch-var-1126);
}
.bgc-5949{
	background-color:var(--swatch-var-5949);
}
.bgc-6539{
	background-color:var(--swatch-var-6539);
}
.bgc-1488{
	background-color:var(--swatch-var-1488);
}

/* Text colour styles */

.tc-531{
	color:var(--swatch-var-531)!important;
}
.tc-1125{
	color:var(--swatch-var-1125)!important;
}
.tc-6611{
	color:var(--swatch-var-6611)!important;
}
.tc-1603{
	color:var(--swatch-var-1603)!important;
}

/* Button colour styles */

.btn-c-1125{
	background:var(--swatch-var-1125);
	color:#FFFFFF!important;
}
.btn-c-1125:hover{
	background:#043A16!important;
	color:#FFFFFF!important;
}

/* Link colour styles */

.ltc-1125{
	color:var(--swatch-var-1125)!important;
}
.ltc-1125:hover{
	color:#043A16!important;
}
.ltc-531{
	color:var(--swatch-var-531)!important;
}
.ltc-531:hover{
	color:#000000!important;
}
.ltc-6611{
	color:var(--swatch-var-6611)!important;
}
.ltc-6611:hover{
	color:#003B78!important;
}

/* Bloc image backgrounds */

.bg-UTF-8CCI4Change-website-v2{
	background-image:url("img/UTF-8CCI4Change_website_v2.png");
	background-image: -webkit-image-set(url("img/UTF-8CCI4Change_website_v2.webp") 1x,
url("img/UTF-8CCI4Change_website_v2.webp") 2x);background-image: image-set(url("img/UTF-8CCI4Change_website_v2.png") 1x,
url("img/UTF-8CCI4Change_website_v2.png") 2x,url("img/UTF-8CCI4Change_website_v2.webp") 1x,
url("img/UTF-8CCI4Change_website_v2.webp") 2x);
}
.bg-UTF-8CCI4Change-website-v3{
	background-image:url("img/UTF-8CCI4Change_website_v3.png");
	background-image: -webkit-image-set(url("img/UTF-8CCI4Change_website_v3.webp") 1x,
url("img/UTF-8CCI4Change_website_v3.webp") 2x);background-image: image-set(url("img/UTF-8CCI4Change_website_v3.png") 1x,
url("img/UTF-8CCI4Change_website_v3.png") 2x,url("img/UTF-8CCI4Change_website_v3.webp") 1x,
url("img/UTF-8CCI4Change_website_v3.webp") 2x);
}
.bg-banneri-20kristalta{
	background-image:url("img/banneri%20kristalta.jpg");
	background-image: -webkit-image-set(url("img/banneri%20kristalta.webp") 1x,
url("img/banneri%20kristalta.webp") 2x);background-image: image-set(url("img/banneri%20kristalta.jpg") 1x,
url("img/banneri%20kristalta.jpg") 2x,url("img/banneri%20kristalta.webp") 1x,
url("img/banneri%20kristalta.webp") 2x);
}
.bg-banneri-20kristalta-202{
	background-image:url("img/banneri%20kristalta%202.JPG");
	background-image: -webkit-image-set(url("img/banneri%20kristalta%202.webp") 1x,
url("img/banneri%20kristalta%202.webp") 2x);background-image: image-set(url("img/banneri%20kristalta%202.JPG") 1x,
url("img/banneri%20kristalta%202.JPG") 2x,url("img/banneri%20kristalta%202.webp") 1x,
url("img/banneri%20kristalta%202.webp") 2x);
}
.bg-Jurmala-event-10012024-3{
	background-image:url("img/Jurmala_event_10012024_3.jpg");
	background-image: -webkit-image-set(url("img/Jurmala_event_10012024_3.webp") 1x,
url("img/Jurmala_event_10012024_3.webp") 2x);background-image: image-set(url("img/Jurmala_event_10012024_3.jpg") 1x,
url("img/Jurmala_event_10012024_3.jpg") 2x,url("img/Jurmala_event_10012024_3.webp") 1x,
url("img/Jurmala_event_10012024_3.webp") 2x);
}
.bg-Blush-20Wave-20LinkedIn-20Banner-3{
	background-image:url("img/Blush%20Wave%20LinkedIn%20Banner-3.png");
	background-image: -webkit-image-set(url("img/Blush%20Wave%20LinkedIn%20Banner-3.webp") 1x,
url("img/Blush%20Wave%20LinkedIn%20Banner-3.webp") 2x);background-image: image-set(url("img/Blush%20Wave%20LinkedIn%20Banner-3.png") 1x,
url("img/Blush%20Wave%20LinkedIn%20Banner-3.png") 2x,url("img/Blush%20Wave%20LinkedIn%20Banner-3.webp") 1x,
url("img/Blush%20Wave%20LinkedIn%20Banner-3.webp") 2x);
}
.bg-b1{
	background-image:url("img/b1.png");
	background-image: -webkit-image-set(url("img/b1.webp") 1x,
url("img/b1.webp") 2x);background-image: image-set(url("img/b1.png") 1x,
url("img/b1.png") 2x,url("img/b1.webp") 1x,
url("img/b1.webp") 2x);
}
.bg-b2{
	background-image:url("img/b2.png");
	background-image: -webkit-image-set(url("img/b2.webp") 1x,
url("img/b2.webp") 2x);background-image: image-set(url("img/b2.png") 1x,
url("img/b2.png") 2x,url("img/b2.webp") 1x,
url("img/b2.webp") 2x);
}
.bg-b3{
	background-image:url("img/b3.png");
	background-image: -webkit-image-set(url("img/b3.webp") 1x,
url("img/b3.webp") 2x);background-image: image-set(url("img/b3.png") 1x,
url("img/b3.png") 2x,url("img/b3.webp") 1x,
url("img/b3.webp") 2x);
}
.bg-b4{
	background-image:url("img/b4.png");
	background-image: -webkit-image-set(url("img/b4.webp") 1x,
url("img/b4.webp") 2x);background-image: image-set(url("img/b4.png") 1x,
url("img/b4.png") 2x,url("img/b4.webp") 1x,
url("img/b4.webp") 2x);
}
.bg-b1la{
	background-image:url("img/b1la.png");
	background-image: -webkit-image-set(url("img/b1la.webp") 1x,
url("img/b1la.webp") 2x);background-image: image-set(url("img/b1la.png") 1x,
url("img/b1la.png") 2x,url("img/b1la.webp") 1x,
url("img/b1la.webp") 2x);
}
.bg-b2la{
	background-image:url("img/b2la.png");
	background-image: -webkit-image-set(url("img/b2la.webp") 1x,
url("img/b2la.webp") 2x);background-image: image-set(url("img/b2la.png") 1x,
url("img/b2la.png") 2x,url("img/b2la.webp") 1x,
url("img/b2la.webp") 2x);
}
.bg-b3la{
	background-image:url("img/b3la.png");
	background-image: -webkit-image-set(url("img/b3la.webp") 1x,
url("img/b3la.webp") 2x);background-image: image-set(url("img/b3la.png") 1x,
url("img/b3la.png") 2x,url("img/b3la.webp") 1x,
url("img/b3la.webp") 2x);
}
.bg-b4la{
	background-image:url("img/b4la.png");
	background-image: -webkit-image-set(url("img/b4la.webp") 1x,
url("img/b4la.webp") 2x);background-image: image-set(url("img/b4la.png") 1x,
url("img/b4la.png") 2x,url("img/b4la.webp") 1x,
url("img/b4la.webp") 2x);
}
.bg-uusi-20banneri-203{
	background-image:url("img/uusi%20banneri%203.png");
	background-image: -webkit-image-set(url("img/uusi%20banneri%203.webp") 1x,
url("img/uusi%20banneri%203.webp") 2x);background-image: image-set(url("img/uusi%20banneri%203.png") 1x,
url("img/uusi%20banneri%203.png") 2x,url("img/uusi%20banneri%203.webp") 1x,
url("img/uusi%20banneri%203.webp") 2x);
}
.bg-uusi-20banneri1{
	background-image:url("img/uusi%20banneri1.png");
	background-image: -webkit-image-set(url("img/uusi%20banneri1.webp") 1x,
url("img/uusi%20banneri1.webp") 2x);background-image: image-set(url("img/uusi%20banneri1.png") 1x,
url("img/uusi%20banneri1.png") 2x,url("img/uusi%20banneri1.webp") 1x,
url("img/uusi%20banneri1.webp") 2x);
}
.bg-uusi-20banneri-204{
	background-image:url("img/uusi%20banneri%204.png");
	background-image: -webkit-image-set(url("img/uusi%20banneri%204.webp") 1x,
url("img/uusi%20banneri%204.webp") 2x);background-image: image-set(url("img/uusi%20banneri%204.png") 1x,
url("img/uusi%20banneri%204.png") 2x,url("img/uusi%20banneri%204.webp") 1x,
url("img/uusi%20banneri%204.webp") 2x);
}
.bg-uusi-20banner-202{
	background-image:url("img/uusi%20banner%202.png");
	background-image: -webkit-image-set(url("img/uusi%20banner%202.webp") 1x,
url("img/uusi%20banner%202.webp") 2x);background-image: image-set(url("img/uusi%20banner%202.png") 1x,
url("img/uusi%20banner%202.png") 2x,url("img/uusi%20banner%202.webp") 1x,
url("img/uusi%20banner%202.webp") 2x);
}
.bg-CCI4Change-more-banners{
	background-image:url("img/CCI4Change_more_banners.png");
	background-image: -webkit-image-set(url("img/CCI4Change_more_banners.webp") 1x,
url("img/CCI4Change_more_banners.webp") 2x);background-image: image-set(url("img/CCI4Change_more_banners.png") 1x,
url("img/CCI4Change_more_banners.png") 2x,url("img/CCI4Change_more_banners.webp") 1x,
url("img/CCI4Change_more_banners.webp") 2x);
}



/* = Toggle Visibility
-------------------------------------------------------------- */

.toggled-item{transition: height 350ms ease-in-out, padding 350ms ease-in-out, opacity 350ms ease-in-out;overflow: hidden;}
.toggled-item-hidden{padding-top:0!important;padding-bottom:0!important;border-top:0!important;border-bottom:0!important;outline:0!important;opacity: 0;}
.object-hidden{display:none;}


/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.h3-33-style{
		font-size:16px;
	}
	.h3-34-style{
		font-size:16px;
	}
	.h3-35-style{
		font-size:16px;
	}
	.h2-style{
		font-size:50px;
		font-family:"Lato";
	}
	.h3-bloc-2-style{
		font-size:28px;
		font-family:"PT Serif";
	}
	.h3-38-style{
		font-size:28px;
		font-family:"PT Serif";
	}
	.img-96-style{
		width:164px;
	}
	.h3-bloc-40-style{
		font-size:28px;
		font-family:"PT Serif";
	}
	.h3-bloc-3-style{
		font-size:40px;
	}
	.img-13886-style{
		width:238px;
	}
	.h2-bloc-39-style{
		font-family:"PT Serif";
	}
	.h3-33-bloc-37-style{
		font-family:"PT Serif";
	}
	.h2-bloc-3-style{
		font-size:25px;
	}
	.img-banneri-9-style{
		width:337px;
	}
	.h3-bloc-47-style{
		font-family:"PT Serif";
		font-size:28px;
	}
	
}

@media (max-width: 767px){
	.card-hero{
		border-radius:10px 10px 10px 10px;
		background-color:var(--swatch-var-3181);
	}
	
}

@media (max-width: 575px){
	.footer-link{
		text-align:center;
	}
	
}

