/*-----------------------------------------------------------------------------------
	    Rännit
        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 ugly blue glow on chrome and safari */
a:hover{text-decoration: none; cursor:pointer;}


/* 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;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

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

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 50px;
	-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;
}

/* Sizes */

.bloc-xxl{
	padding:200px 50px;
}
.bloc-lg{
	padding:100px 50px;
}
.bloc-md{
	padding:50px;
}
.bloc-sm{
	padding:20px 50px;
}



/* 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
-------------------------------------------------------------- */

.hero .hero-nav{
	padding-left:inherit;
	padding-right:inherit;
}
/* Handle Multi Level Navigation */.navbar-light .navbar-nav .nav-link {
	color: rgb(64, 64, 64);
}
.btco-menu li > a {
	padding: 10px 15px;
	color: #000;
}
.btco-menu .active a:focus,.btco-menu li a:focus ,.navbar > .show > a:focus{
	background: transparent;
	outline: 0;
}
.dropdown-menu .show > .dropdown-toggle::after{
	transform: rotate(-90deg);
}

/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}
.mg-lg{
	margin-top:10px;
	margin-bottom:40px;
}
img.mg-sm,img.mg-md,img.mg-lg{
	margin-top: 0;
}
img.mg-sm{
	margin-bottom:10px;
}
img.mg-md{
	margin-bottom:30px;
}
img.mg-lg{
	margin-bottom:50px;
}

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

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

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}


/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}




.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;
}


/* = Forms
-------------------------------------------------------------- */

.form-control{
	border-color:rgba(0,0,0,.1);
	box-shadow:none;
}



/* ScrollToTop button */

.scrollToTop{
	width:40px;
	height:40px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity: 0;
	z-index: 500;
	transition: all .3s ease-in-out;
}
.scrollToTop span{
	margin-top: 6px;
}
.showScrollTop{
	font-size: 14px;
	opacity: 1;
}

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
}
.container{
	max-width:1140px;
}
.h1-style{
	width:79.12%;
	font-size:28px;
	font-family:"PT Sans Narrow";
	font-weight:400;
}
.h3-style{
	font-family:"PT Sans Narrow";
	width:100%;
	font-weight:400;
	font-size:21px;
}
.btn-style{
	width:100%;
	padding-top:8px;
	padding-bottom:8px;
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:20px;
	border-style:none;
	border-color:rgba(0,0,0,0.0)!important;
	border-radius:0px 0px 0px 0px;
}
.btn-style:hover{
	width:48%;
	height:48px;
}
.h2-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	width:100%;
	font-size:40px;
}
.p-style{
	font-family:"Droid Sans";
	width:100%;
	font-size:16px;
}
.h3-bloc-1-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	width:100%;
	font-size:24px;
}
.row-style{
	width:100%;
}
.h2-2-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:36px;
	width:100%;
	color:transparent!important;
}
.h3-2-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:30px;
}
.label-style{
	font-size:15px;
	font-family:"Droid Sans";
	font-weight:400;
}
.label-email-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
}
.label-message-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
}
.form-style{
	width:88.8%;
}
.row-5-style{
	width:83.42%;
}
.btn-padding{
	padding-top:0px;
	padding-bottom:0px;
	font-family:"PT Sans Narrow";
	font-weight:300;
	background-color:transparent;
	color:transparent!important;
}
.field-style{
	height:53px;
}
.h4-bloc-0-style{
	width:92.93%;
	font-size:28px;
}
.h1-bloc-0-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:60px;
	width:100%;
	text-shadow:0px 0px 12px #000000;
}
.h4-style{
	font-family:"PT Sans Narrow";
	font-size:22px;
	width:100%;
	font-weight:400;
}
.h1-2-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:32px;
}
.navbar-brand img{
	width:180px;
}
.h1-bloc-1-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:32px;
}
.label-puhellinumero--style{
	font-family:"Droid Sans";
	font-size:14px;
}
.label-bloc-1-style{
	font-family:"Droid Sans";
	font-size:14px;
}
.label-postinumero--style{
	font-family:"Droid Sans";
	font-size:16px;
	text-shadow:0px 0px 0px #000000;
}
.container-div-bloc-1-style{
	width:100%;
}
.h4-3-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
}
.p-bloc-3-style{
	font-family:"Droid Sans";
	font-weight:400;
	width:100%;
	font-size:15px;
}
.img-style{
	width:720px;
	height:540px;
	border-radius:0px 0px 0px 0px;
}
.p-2-style{
	width:100%;
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:20px;
	line-height:25px;
}
.h3-bloc-3-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:42px;
}
.container-div-bloc-3-style{
	height:219px;
}
.img-sadex-pohjola-style{
	width:900px;
	height:250px;
}
.h1-bloc-3-style{
	width:100%;
	font-size:38px;
}
.h3-5-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:24px;
}
.h3-4-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:22px;
}
.h3-3-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:24px;
}
.team-card{
	min-height:350px;
}
.h3-rännit-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:26px;
}
.h3-feature-title-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:20px;
}
.img-bloc-3-style{
	height:175px;
}
.img-4-style{
	height:367px;
	width:367px;
}
.img-5-style{
	height:174px;
	width:163px;
}
.p-5-style{
	width:100%;
	font-size:16px;
	font-family:"Droid Sans";
}
.img-dsc003-style{
	height:500px;
	width:268px;
}
.p-4-style{
	font-family:"PT Sans Narrow";
	font-size:22px;
	font-weight:400;
}
.img-7-style{
	width:120px;
	height:120px;
}
.h3-bloc-4-style{
	font-size:20px;
	font-family:"PT Sans Narrow";
	font-weight:400;
}
.h3-aikataulutus-style{
	font-size:20px;
	font-family:"PT Sans Narrow";
	font-weight:400;
}
.p-10-style{
	font-family:"Droid Sans";
	font-size:14px;
}
.p-9-style{
	font-family:"Droid Sans";
	font-size:14px;
}
.p-8-style{
	font-family:"Droid Sans";
	font-size:14px;
}
.img-8-placeholder-us-style{
	width:150px;
	height:150px;
}
.img-406-style{
	width:150px;
	height:150px;
}
.h1-bloc-5-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
}
.p-1-style{
	width:100%;
	font-family:"Droid Sans";
	font-size:15px;
}
.link-style{
	font-weight:400;
	font-family:"PT Sans Narrow";
	text-decoration:underline;
}
.p-bloc-1-style{
	width:100%;
}
.h1-3-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
}
.btn-1-style{
	width:41.23%;
	font-weight:400;
	font-family:"PT Sans Narrow";
	background-color:transparent;
}
.h5-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:24px;
	width:78.86%;
}
.h3-6-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	width:100%;
	font-size:24px;
}
.btn-button-style{
	/* width:43.93%; */
	font-family:"PT Sans Narrow";
	font-weight:400;
	border-radius:7px 7px 7px 7px;
}
.btn-4-style{
	font-weight:400;
	font-family:"PT Sans Narrow";
}

.h3-1-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:32px;
}
.img-17-style{
	height:100px;
}
.label-bloc-2-style{
	font-family:"Droid Sans";
	font-size:15px;
}
.label-puhelinnumero--style{
	font-family:"Droid Sans";
	font-size:15px;
}
.btn-lähetä-style{
	font-weight:normal;
	font-family:"Droid Sans";
}
.p-bloc-2-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:20px;
}
.p-4-bloc-4-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:20px;
}
.p-bloc-7-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:20px;
}
.h1-bloc-4-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:40px;
	width:100%;
}
.h2-bloc-4-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:32px;
	width:100%;
}
.p-7-style{
	font-family:"Droid Sans";
	font-size:1px;
}
.h3-bloc-2-style{
	font-family:"Droid Sans";
	font-size:16px;
}
.container-div-style{
	width:100%;
}
.p-bloc-5-style{
	width:100%;
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:26px;
}
.h1-bloc-9-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
}
.p-bloc-9-style{
	font-size:13px;
	font-family:"Droid Sans";
	line-height:25px;
}
.h6-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:18px;
}
.h6-bloc-9-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:18px;
}
.h6-kanta-häme--style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:18px;
}
.h5-etelä-savo--style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:18px;
}
.h5-bloc-9-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:18px;
}
.h5-etelä-karjala--style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:18px;
}
.h3-bloc-7-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
}
.h4-jarno-moisio-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
}
.card-body-style{
	width:13.09%;
}
.btn-bloc-9-style{
	font-weight:400;
	font-family:"PT Sans Narrow";
	width:100%;
}
.p-15-style{
	font-family:"Droid Sans";
	font-size:16px;
	width:100%;
}
.btn-4-button-style{
	width:100%;
}
.h1-etelä-karjala-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:22px;
	width:100%;
}
.p-17-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	width:100%;
}
.divider-style{
	width:100%;
}
.h1-9-style{
	width:100%;
}
.h1-kanta-häme-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:22px;
	width:93.1%;
}
.row-bloc-12-style{
	width:88.25%;
}
.h1-bloc-15-style{
	font-size:22px;
	font-family:"PT Sans Narrow";
	font-weight:400;
	width:89.5%;
}
.h1-bloc-7-style{
	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:32px;
}
.img-wtn-94-style{
	height:800px;
}
h3{
}
.h5-bloc-1-style{
	font-family:"PT Sans Narrow";
	font-weight:700;
	font-size:26px;
	text-shadow:0px 0px 12px #000000;
}
.link-bloc-6-style{
	font-weight:700;
	font-family:"Droid Sans";
	font-size:16px;
}

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

/* Background colour styles */

.bgc-white{
	background-color:#FFFFFF;
}
.bgc-davys-grey{
	background-color:#5D5D5D;
}
.bgc-fire-engine-red{
	background-color:#D52724;
}
.bgc-davys-grey-2{
	background-color:#5D5D5D;
}

/* Text colour styles */

.tc-white{
	color:#FFFFFF!important;
}
.tc-fire-engine-red{
	color:#D52724!important;
}
.tc-white-2{
	color:#FFFFFF!important;
}
.tc-davys-grey{
	color:#5D5D5D!important;
}

/* Button colour styles */

.btn-fire-engine-red{
	background:#D52724;
	color:#FFFFFF!important;
}
.btn-fire-engine-red:hover{
	background:#aa1f1d!important;
	color:#FFFFFF!important;
}
.btn-fire-engine-red-2{
	background:#D52724;
	color:#FFFFFF!important;
}
.btn-fire-engine-red-2:hover{
	background:#aa1f1d!important;
	color:#FFFFFF!important;
}


.btn-ocean-boat-blue{
	background:#007EB7;
	color:#FFFFFF!important;
	width:100%;
}
.btn-ocean-boat-blue:hover{
	background:#006592!important;
	color:#FFFFFF!important;
	width:100%;
}

.btn-button-style1{

	font-family:"PT Sans Narrow";
	font-weight:400;
	font-size:15px;
	border-radius:7px 7px 7px 7px;
}
.btn-button-style2{
	width:100%;
	font-family:"PT Sans Narrow";
	font-weight:400;
	color:#ffffff;
	font-size:16px;
	border-radius:10px 10px 10px 10px;
}
/* Link colour styles */

.ltc-white{
	color:#FFFFFF!important;
}
.ltc-white:hover{
	color:#cccccc!important;
}

/* Icon colour styles */

.icon-fire-engine-red{
	color:#D52724!important;
	border-color:#D52724!important;
}
.icon-white{
	color:#FFFFFF!important;
	border-color:#FFFFFF!important;
}

/* Bloc image backgrounds */

.bg-WTN-9342{
	background-image:url("/images/landingPages/rannit/WTN_9342.jpg");
}
.bg-WTN-9393{
	background-image:url("/images/landingPages/rannit/WTN_9393.jpg");
}

.bg-Rannit-paikkakunnallasi{
	background-image:url("/images/landingPages/rannit/Rannit-paikkakunnallasi.jpg");
}

.bg-Palotikkaat-paikkakunnallasi{
	background-image:url("/images/landingPages/palotikkaat/Palotikkaat-paikkakunnallasi.jpg");
}

.bg-Seinatikkaat-paikkakunnallasi{
	background-image:url("/images/landingPages/seinatikkaat/seinatikkaat_landari_ylakuva.jpg");
}

.bg-Kattoturvatuotteet-asennettuna{
	background-image:url("/images/landingPages/kattoturva/Kattoturvatuotteet-asennettuna.jpg");
}

.bg-Lumiesteet-Sadexilta{
	background-image:url("/images/landingPages/kattoturva/Lumiesteet-Sadexilta.jpg");
}


.bg-Sadex-taloyhtioille{
	background-image:url("/images/landingPages/taloyhtio/Sadex-taloyhtioille.jpg");
}

a {
    color: #d42427;
    text-decoration: none;
}

/* Block quote */
blockquote {
	font-family: "PT Sans Narrow", sans-serif;
	border: 0;
	padding: 0 0 0 60px;
	margin: 30px auto;
	position: relative;
	line-height: 21px;
	}
                
blockquote .quote-mark {
	display: block;
	font-size: 120px;
	color: #d42427;
	border-right: 1px solid #d7d7d7;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	padding: 40px 10px 0 0;
	    
	    &.percentage {
	font-size: 50px;
	padding-top: 10px;
	    }
	}

blockquote .testimonial {
	color: #838383;
	font-weight: bold;
	font-size: 22px;
	padding: 10px 0;
	line-height: 30px;
	    
	    &::
	before {
	        content: "“";
	    }
	    
	    &::
	after {
	        content: "”";
	    }
	    
	    &.no-quote-marks {
	        &::
	before, &::after {
	            content: "";
	        }
	    }
	}

blockquote .testimonial-author {
	font-size: 20px;
	padding: 0 0 10px 30px;
	}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc{
        padding-left: 20px; 
        padding-right: 20px;  
    }
    .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%;}
    .page-container{overflow: hidden;position: relative;} /* Prevent unwanted side scroll on mobile */
    .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)
{
    .page-container{
        overflow: hidden;
        position:relative;
    }
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .a-block{
        padding:0 10px;
    }
    .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){
	.h1-bloc-0-style{
		width:100%;
	}
	.h4-bloc-0-style{
		width:100%;
	}
	.mt-md-0{
	}
	.mt-md-4{
	}
	
}

@media (max-width: 767px){
	.text-right{
	}
	.text-left{
	}
	.text-center{
	}
	
}

@media (max-width: 575px){
	.footer-link{
		text-align:center;
	}
	.mt-1{
	}
	.h1-bloc-0-style{
		font-size:42px;
	}
	
}

