/*-----------------------------------------------------------------------------------
	Digital menu FR
	About: A shiny new Blocs website.
	Author: Alex
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FEFFFF;
    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;}
.preloader-complete{animation-delay:0.1s;}
@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 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;
}


/* Sizes */

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

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}

/* = 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;
}
.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);
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}


/* Video Background Styles */

.video-bg-container, .bloc-video{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: -50%;
	overflow: hidden;
	transform: translateX(-50%);
	-webkit-transform:translateX(-50%);
}
.bloc-video, .video-bg-container iframe{
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-darken::before{
	background: rgba(0,0,0,0.5);
}


/* 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);
}

/* Row Margin Offsets */

.voffset{
	margin-top:30px;
}


/* = 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-clear{
	margin:0;
}
.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;
}

.btn-sq{
	border-radius: 0px;
}
.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}
.icon-spacer{
	margin-right:5px;
}

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


/* = Text & Icon Styles
-------------------------------------------------------------- */
.blockquote{
	padding:0 20px;
	border-left:2px solid;
}
.blockquote.text-right{
	border-left:0;
	border-right:2px solid;
}
/* = Text Widths
-------------------------------------------------------------- */
.text-w-md{
	max-width:300px;
}
.text-center.text-w-sm, .text-center.text-w-md, .text-center.text-w-lg, .text-center.text-w-90, .text-center.text-w-80, .text-center.text-w-70, .text-center.text-w-60, .text-center.text-w-50{
	margin-left: auto;
	margin-right: auto;
}

/* = Lists
-------------------------------------------------------------- */
.list-sp-md li{
	padding-bottom:10px;
}
.list-horizontal-layout li{
	display:inline-block;
	margin:0 10px;
}
.list-sp-md li:last-child,.list-sp-lg li:last-child,.list-sp-xl li:last-child{
	padding-bottom:0;
}

/* = 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;
}

/* = Dividers
-------------------------------------------------------------- */
.divider-h{
	padding:20px 0;
	width:100%;
	display:inline-block;
}
.divider-h span{
	display: block;
	border-top:1px solid transparent;
}
.divider-half{
	width: 50%;
	margin: 0 auto;
}
.dropdown-menu .divider-h,.dropdown-menu .divider-half{
	padding:0;
}

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

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


.carousel-nav-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

.carousel-caption-center{
	top: 50%;
	bottom: initial;
	transform: translateY(-50%);
}


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

/* Hide Object */
.object-hidden{
	display:none;
}

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Montserrat";
}
.container{
	max-width:1140px;
}
.img-style{
	width:329px;
	height:231px;
}
.title{
	font-weight:normal;
	font-size:20px;
	color:#000000!important;
}
.title:hover{
	color:#000000!important;
	font-family:"Montserrat";
	font-weight:normal;
	text-decoration:underline!important;
}
.menutitle{
	text-decoration:underline!important;
}
.icon-style{
	opacity:0.1;
}
.text{
	color:#008F51!important;
	text-transform:none;
	font-weight:bold;
}
.image{
	opacity:0.8;
}
.bloc-divider-b-fill{
	fill:#008F51;
	width:100%;
	height:50px;
}
.bloc-divider-t-style{
	height:190px;
	fill:#008F51;
}
.bloc-divider-t-fill{
	fill:#FEFFFF;
}
.bloc-divider-b-bloc-3-fill{
	fill:#FEFFFF;
}
.bloc-divider-b-bloc-6-fill{
	fill:#FEFFFF;
}
.bloc-divider-t-bloc-6-fill{
	fill:#FEFFFF;
	height:100px;
}
.bloc-divider-t-bloc-7-fill{
	fill:#FEFFFF;
}
.bloc-divider-b-bloc-7-fill{
	fill:#FEFFFF;
}
.bloc-divider-t-bloc-13-fill{
	fill:#FEFFFF;
	width:100%;
	height:100px;
}
.bloc-divider-b-bloc-13-fill{
	fill:#FEFFFF;
}
.bloc-divider-t-bloc-11-fill{
	fill:#FEFFFF;
}
.bloc-divider-b-bloc-11-fill{
	fill:#FEFFFF;
}
.bloc-divider-b-0-fill{
	fill:#FEFFFF;
}
.bloc-divider-t-bloc-3-fill{
	fill:#FEFFFF;
}
.title-info{
	background-color:#008F51;
	border-style:solid;
	border-radius:10px 10px 10px 10px;
	border-width:10px 10px 10px 10px;
}
.button-create{
	color:#008F51!important;
	font-family:"Montserrat";
	background-color:#FEFFFF;
}
.button-create:hover{
	color:#FEFFFF!important;
	border-color:#FEFFFF!important;
	background-color:#008F51;
}
.bloc-divider-b-bloc-0-fill{
	fill:#FEFFFF;
}
.bloc-divider-t-bloc-1-fill{
	fill:#008F51;
	height:50px;
}
.select{
	background-color:#FEFFFF;
}
.space-between-column{
	margin-top:100px;
}
.space-between-column-main{
	margin-top:100px;
}
.space-column-main-page{
	margin-top:100px;
}
.divider{
	border-color:#008F51!important;
	margin-bottom:40px;
}
.title-space{
	margin-bottom:100px;
}
.paraf-space{
	margin-bottom:42px;
}
.title-space-up{
	margin-top:80px;
	margin-bottom:30px;
}
.create-acount{
	position:fixed;
	z-index:100000;
	top:0px;
	right:0px;
	bottom:0px;
	display:block;
	align-items:center;
	left:0px;
	overflow:scroll;
}
.close-icon{
	position:fixed;
	top:30px;
	right:30px;
}
.link-support{
	font-family:"Montserrat";
}
.link-support:hover{
	text-decoration:underline!important;
}
.payment{
	display:block;
	position:relative;
}
.quote-up{
	margin-bottom:250px;
}
.quote-down{
	padding-bottom:0px;
	margin-top:250px;
}
label{
	text-decoration:underline!important;
}
.btn-style-1{
	background-color:#008F51;
	color:#FEFFFF!important;
	width:300px;
	margin-right:50px;
	margin-left:50px;
	margin-bottom:50px;
}
.btn-style-1:hover{
	background-color:#FEFFFF;
	color:#008F51!important;
	border-color:#008F51!important;
}
.bloc-style{
	width:98.6%;
	text-align:center;
	border-color:#FEFFFF!important;
	border-width:1px 1px 1px 1px;
}
.title-duo{
	margin-top:0px;
	text-decoration:underline!important;
	color:#008F51!important;
}
.remove-border{
	border-color:#FEFFFF!important;
}
.digicash{
	color:#FF2F92!important;
	text-decoration:none;
}
.digicash:hover{
	color:#FF2F92!important;
	text-decoration:underline!important;
}
.btn-form{
	margin-top:30px;
}
.contact{
	margin-bottom:50px;
}
.email{
	color:#008F51!important;
}
.email:hover{
	text-decoration:underline!important;
	color:#008F51!important;
}
.label-style{
	width:100%;
}
.copyright{
	margin-top:100px;
}
.title-duo-2{
	margin-bottom:80px;
}
.tiquest{
	text-decoration:none;
}
.tiquest:hover{
	color:#FEFFFF!important;
	background-color:#008F51;
}
.graph{
	background-color:#008F51;
	background-size:100px auto;
}
.text-span-color{
	color:#ffffff;
}
.cross{
	position:fixed;
	display:block;
	overflow:scroll;
	top:30px;
	right:30px;
}
.scrollToTop{
	margin-right:15px;
}
.bloc-divider-t-bloc-40-fill{
	fill:#008F51;
	height:75px;
}
.text-support{
	text-align:justify;
}
.h3-style{
	font-size:32px;
}
.btn-green{
	background-color:#008F51;
	color:#FEFFFF!important;
}
.btn-green:hover{
	color:#008F51!important;
	background-color:#FEFFFF;
	border-color:#008F51!important;
}
.title-trio{
	margin-top:0px;
	margin-bottom:100px;
}
.space{
	margin-bottom:60px;
}
.paragraph{
	font-size:20px;
	margin-bottom:40px;
}
.bloc-divider-t-bloc-15-fill{
	fill:#008F51;
	height:150px;
}
.label-tarifs-style{
	width:100%;
}
.label-10-style{
	width:100%;
}
.pricing-title{
	margin-bottom:35px;
}
.label-pour-toujours-style{
	width:100%;
}
.bloc-divider-t-intro-tarifs-style{
	height:150px;
	fill:#008F51;
}
.h1-pricing{
	margin-top:150px;
	margin-bottom:40px;
}
.intro{
	margin-bottom:0px;
	padding-bottom:80px;
}

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

/* Background colour styles */

.bgc-shamrock-green{
	background-color:#008F51;
}
.bgc-white{
	background-color:#FEFFFF;
}

/* Text colour styles */

.tc-black{
	color:#000000!important;
}
.tc-shamrock-green{
	color:#008F51!important;
}
.tc-white{
	color:#FEFFFF!important;
}

/* Button colour styles */

.btn-shamrock-green{
	background:#008F51;
	color:#FFFFFF!important;
}
.btn-shamrock-green:hover{
	background:#007241!important;
	color:#FFFFFF!important;
}

/* Link colour styles */

.ltc-white{
	color:#FEFFFF!important;
}
.ltc-white:hover{
	color:#cbcccc!important;
}
.ltc-shamrock-green{
	color:#008F51!important;
}
.ltc-shamrock-green:hover{
	color:#007241!important;
}

/* Icon colour styles */

.icon-white{
	color:#FEFFFF!important;
	border-color:#FEFFFF!important;
}
.icon-shamrock-green{
	color:#008F51!important;
	border-color:#008F51!important;
}

/* Bloc image backgrounds */


/* = Custom Bric Data
-------------------------------------------------------------- */



/* = 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){
	.space-between-column{
		margin-top:100px;
	}
	.space-column-main-page{
		margin-top:60px;
	}
	.paraf-space{
		margin-bottom:15px;
	}
	.icon-space{
		margin-top:90px;
	}
	.icon{
	}
	.carousel-nav-controls{
		stroke:#008F51;
	}
	.scrollToTop{
	}
	.carousel-nav-icon{
		stroke:#008F51;
		stroke-width:5;
		stroke-linecap:square;
	}
	.create-acount{
		overflow:scroll;
		display:block;
		z-index:100000;
	}
	.title-info{
		border-radius:0px 0px 0px 0px;
		border-width:0px 0px 0px 0px;
	}
	.quote-up{
		margin-bottom:0px;
	}
	.quote-down{
		margin-top:0px;
	}
	.text-support{
		text-align:left;
	}
	
	/* MD Text Margin Offsets */
	.mg-md-md{
		margin-top:10px;
		margin-bottom:20px;
	}
	
}

@media (max-width: 767px){
	.space-between-column{
		margin:80px 0px 0px 0px;
	}
	.space-between-column-main{
	}
	.space-iphone{
		margin-top:60px;
	}
	.create-acount{
		z-index:100000;
		position:fixed;
		display:block;
	}
	.text-right{
	}
	.text-left{
	}
	.text-center{
	}
	.text-support{
		text-align:justify;
	}
	.text{
		font-weight:normal;
	}
	.h1-pricing{
		margin-bottom:50px;
	}
	
	/* Small Text Margin Offsets */
	.mg-md-sm{
		margin-top:10px;
		margin-bottom:20px;
	}
	
}

@media (max-width: 575px){
	.footer-link{
		text-align:center;
	}
	.space-between-column{
		margin-top:100px;
	}
	.space-between-column-main{
		margin-top:0px;
	}
	.btn-style-1{
		margin-right:0px;
		margin-left:0px;
		text-align:center;
	}
	.bloc-style{
		width:0%;
	}
	.title-info{
		border-width:0px 0px 0px 0px;
	}
	.quote-up{
		margin-bottom:30px;
	}
	.quote-down{
		margin-top:100px;
		margin-bottom:30px;
	}
	.text-support{
		text-align:left;
	}
	.togle{
		border-color:#FEFFFF!important;
	}
	
	/* Mobile Text Margin Offsets */
	.mg-md-xs{
		margin-top:10px;
		margin-bottom:20px;
	}
	
}

