/*-----------------------------------------------------------------------------------
	Rod Lopez
	About: Some info about my work!
	Author: Rod Lopez
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:var(--swatch-var-970);
    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;}}

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


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






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



/* 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:"Helvetica";
}
.container{
	max-width:1140px;
}
.bento-box{
	background-color:var(--swatch-var-3849);
	width:100%;
	position:relative;
	padding:40px 40px 40px 40px;
	border-radius:30px 30px 30px 30px;
	background-position:center center;
}
.mini-heading{
	font-size:20px;
	font-weight:600;
	text-transform:uppercase;
}
.box-info{
	font-size:22px;
}
.section-heading{
	font-size:40px;
	font-weight:600;
}
.avatar{
	width:150px;
	border-radius:100px 100px 100px 100px;
}
.primary-gradient{
	background:linear-gradient(335deg, var(--swatch-var-3726)  0%, var(--swatch-var-5341) 100%);
}
.brand{
	font-weight:600;
}
.primary-text{
	background-clip:text!important;
	-webkit-background-clip:text!important;
	background:linear-gradient(90deg, var(--swatch-var-5341) 0%, var(--swatch-var-3726) 100%);
	color:transparent!important;
	display:inline-block;
}
.box-heading{
	font-size:36px;
	font-weight:600;
	backdrop-filter:blur(11px);
	-webkit-backdrop-filter:blur(11px);
}
.arrow-btn{
	width:40px;
	position:absolute;
	right:20px;
	bottom:20px;
	height:40px;
	opacity:1;
	color:#FF0000!important;
	border-color:#000000!important;
	border-style:solid;
	border-width:0px 0px 0px 0px;
}
.orange-gradient{
	background:linear-gradient(168deg, #FA7A01 0%, #BA2E0A 100%);
}
.md-box-img{
	max-width:100px;
}
.blue-gradient{
	background:linear-gradient(309deg, #0CADF4 0%, #1970EC 100%);
}
.sm-box-img{
	max-width:60px;
}
.alt-bottom-padding{
	padding-bottom:25px;
}
.sm-box-heading{
	font-size:18px;
}
.md-box-heading{
	font-weight:600;
}
.sm-arrow{
	max-width:30px;
	bottom:15px;
	right:20px;
}
.box-bg-1{
	background-image:url("img/Copy%20of%20Copy%20of%201P2A9218.JPG");
	background-image: -webkit-image-set(url("img/Copy%20of%20Copy%20of%201P2A9218.webp") 1x,
url("img/Copy%20of%20Copy%20of%201P2A9218.webp") 2x);background-image: image-set(url("img/Copy%20of%20Copy%20of%201P2A9218.JPG") 1x,
url("img/Copy%20of%20Copy%20of%201P2A9218.JPG") 2x,url("img/Copy%20of%20Copy%20of%201P2A9218.webp") 1x,
url("img/Copy%20of%20Copy%20of%201P2A9218.webp") 2x);
}
.box-bg-3{
	background-image:url("img/samsung.jpg");
	background-image: -webkit-image-set(url("img/samsung.webp") 1x,
url("img/samsung.webp") 2x);background-image: image-set(url("img/samsung.jpg") 1x,
url("img/samsung.jpg") 2x,url("img/samsung.webp") 1x,
url("img/samsung.webp") 2x);
}
.bg-img-box{
	height:500px;
	background-size:cover;
}
.box-bg-4{
	background-image:url("img/Screenshot%202025-08-29%20at%204.22.05 AM.png");
	background-image: -webkit-image-set(url("img/Screenshot%202025-08-29%20at%204.22.05 AM.webp") 1x,
url("img/Screenshot%202025-08-29%20at%204.22.05 AM.webp") 2x);background-image: image-set(url("img/Screenshot%202025-08-29%20at%204.22.05 AM.png") 1x,
url("img/Screenshot%202025-08-29%20at%204.22.05 AM.png") 2x,url("img/Screenshot%202025-08-29%20at%204.22.05 AM.webp") 1x,
url("img/Screenshot%202025-08-29%20at%204.22.05 AM.webp") 2x);
}
.box-bg-2{
	background-image:url("img/Best%20One%20-%20IO22_121_Rod_4kmaster_take06_thumbnails-poster%20%281%29.jpg");
	background-image: -webkit-image-set(url("img/Best%20One%20-%20IO22_121_Rod_4kmaster_take06_thumbnails-poster%20%281%29.webp") 1x,
url("img/Best%20One%20-%20IO22_121_Rod_4kmaster_take06_thumbnails-poster%20%281%29.webp") 2x);background-image: image-set(url("img/Best%20One%20-%20IO22_121_Rod_4kmaster_take06_thumbnails-poster%20%281%29.jpg") 1x,
url("img/Best%20One%20-%20IO22_121_Rod_4kmaster_take06_thumbnails-poster%20%281%29.jpg") 2x,url("img/Best%20One%20-%20IO22_121_Rod_4kmaster_take06_thumbnails-poster%20%281%29.webp") 1x,
url("img/Best%20One%20-%20IO22_121_Rod_4kmaster_take06_thumbnails-poster%20%281%29.webp") 2x);
	background-size:length;
	background-position:center top;
}
.gradient-heading{
	background-clip:text!important;
	-webkit-background-clip:text!important;
	color:transparent!important;
	display:inline-block;
	background-color:var(--swatch-var-970);
}
.token-link{
	font-weight:400;
	text-decoration:none;
	font-size:18px;
	background-color:rgba(0,0,0,0.03);
	color:var(--swatch-var-2190)!important;
	background-size:auto auto;
	display:inline-block;
	margin-right:10px;
	padding:5px 20px 5px 20px;
	border-radius:30px 30px 30px 30px;
}
.arrow-btn:hover{
	opacity:1;
}
.token-link:hover{
	background-color:var(--swatch-var-3726);
	color:var(--swatch-var-3849)!important;
	background:linear-gradient(314deg, var(--swatch-var-3726)  0%, var(--swatch-var-5341) 100%);
}
.navbar-nav li a{
	font-size:18px;
	font-weight:600;
}
.box-btn{
	padding-left:30px;
	padding-right:30px;
	font-weight:600;
	border-width:0px 0px 0px 0px;
}
.overlay-heading{
	position:absolute;
	z-index:100;
	left:60px;
	top:60px;
}
.primary-btn{
	background:linear-gradient(335deg, var(--swatch-var-3726) 0%, var(--swatch-var-5341) 100%);
}
.primary-btn:hover{
	background:linear-gradient(128deg, var(--swatch-var-3726)  0%, var(--swatch-var-5341) 100%);
	color:var(--swatch-var-3849)!important;
}
.active-token{
	background:linear-gradient(314deg, var(--swatch-var-3726)  0%, var(--swatch-var-5341) 100%);
	color:var(--swatch-var-3849)!important;
}
.scrollToTop{
	background:linear-gradient(335deg, var(--swatch-var-3726) 0%, var(--swatch-var-5341) 100%);
	border-radius:8px 8px 8px 8px;
	border-width:0px 0px 0px 0px;
}
.scrollToTop:hover{
	background:linear-gradient(0deg, var(--swatch-var-3726) 0%, var(--swatch-var-5341) 100%);
}
.sticky.sticky-nav{
	backdrop-filter:blur(30px);
	-webkit-backdrop-filter:blur(30px);
	background-color:rgba(255,255,255,0.30);
}
.img-style{
	border-radius:30px 30px 30px 30px;
	width:600px;
}
.h2-style{
	font-family:"Lato";
	font-weight:300;
	font-size:31px;
}
.img-purep-style{
	height:150px;
	width:125px;
}
.img-google-g-lo-style{
	width:150px;
	height:150px;
}
.img-2-style{
	height:200px;
	width:290px;
}
.h3-style{
	font-family:"Montserrat";
	font-weight:900;
	font-size:29px;
}
.h3-ces-2023-style{
	font-family:"Montserrat";
	font-weight:900;
	font-size:29px;
}
.h3-bloc-0-style{
	font-family:"Montserrat";
	font-weight:900;
	font-size:29px;
}
.box-bg-5{
	background-size:length;
	background-position:left top;
	background-image:url("img/ryse_smartglass2.webp");
}
.box-bg-6{
	background-size:length;
	background-position:center center;
	background-image:url("img/ryse3.png");
	background-image: -webkit-image-set(url("img/ryse3.webp") 1x,
url("img/ryse3.webp") 2x);background-image: image-set(url("img/ryse3.png") 1x,
url("img/ryse3.png") 2x,url("img/ryse3.webp") 1x,
url("img/ryse3.webp") 2x);
}
.h1-style{
	font-size:30px;
}
.h3-6-style{
	font-size:29px;
	font-family:"Montserrat";
}
.h3-6-bloc-0-style{
	font-size:29px;
	font-family:"Montserrat";
}
.box-bg-7{
	background-size:length;
	background-image:url("img/rod_whiteboarding.jpg");
	background-image: -webkit-image-set(url("img/rod_whiteboarding.webp") 1x,
url("img/rod_whiteboarding.webp") 2x);background-image: image-set(url("img/rod_whiteboarding.jpg") 1x,
url("img/rod_whiteboarding.jpg") 2x,url("img/rod_whiteboarding.webp") 1x,
url("img/rod_whiteboarding.webp") 2x);
	background-position:center top;
}
.h3-4-style{
	font-family:"Montserrat";
	font-size:29px;
}
.h3-5-style{
	font-family:"Montserrat";
	font-size:36px;
}
.arrow-btn2{
	width:40px;
	position:absolute;
	right:20px;
	bottom:20px;
	height:40px;
	opacity:1;
	color:#FF0000!important;
	border-color:#000000!important;
	border-style:solid;
	border-width:0px 0px 0px 0px;
	filter:invert(45%);
}
.arrow-btn2:hover{
	opacity:1;
}
.scroll-qoute-container{
	width:100%;
}
.quote-text{
	font-size:26px;
	font-style:italic;
}
.h1-2-style{
	font-family:"Lato";
	font-weight:300;
}
.p-2-style{
	font-size:30px;
	font-family:"Lato";
	font-weight:300;
}
.p-9-style{
	font-size:25px;
	font-family:"Lato";
	font-weight:300;
}
.p-16-style{
	font-size:25px;
	font-family:"Lato";
	font-weight:300;
}
.p-23-style{
	font-size:25px;
	font-family:"Lato";
	font-weight:300;
}
.p-30-style{
	font-family:"Lato";
	font-weight:300;
	font-size:25px;
}
.p-37-style{
	font-size:25px;
	font-family:"Lato";
	font-weight:300;
}
.p-44-style{
	font-size:25px;
	font-family:"Lato";
	font-weight:300;
}
.p-51-style{
	font-family:"Lato";
	font-weight:300;
	font-size:25px;
}
.p-58-style{
	font-family:"Lato";
	font-weight:300;
	font-size:25px;
}
.p-65-style{
	font-size:25px;
	font-family:"Lato";
	font-weight:300;
}
.p-72-style{
	font-size:25px;
	font-family:"Lato";
	font-weight:300;
}
.p-79-style{
	font-family:"Lato";
	font-weight:300;
	font-size:25px;
}
.p-86-style{
	font-size:25px;
	font-family:"Lato";
	font-weight:300;
}
.p-style{
	font-family:"Lato";
	font-weight:300;
}
.p-37704-style{
	font-family:"Lato";
	font-weight:300;
	font-size:15px;
}
.box-bg-8{
	background-size:length;
	background-position:center top;
	background-image:url("img/gemini3.jpg");
	background-image: -webkit-image-set(url("img/gemini3.webp") 1x,
url("img/gemini3.webp") 2x);background-image: image-set(url("img/gemini3.jpg") 1x,
url("img/gemini3.jpg") 2x,url("img/gemini3.webp") 1x,
url("img/gemini3.webp") 2x);
}
.card-body-style{
	height:446px;
}
.h3-8-style{
	font-family:"Montserrat";
	font-weight:300;
	font-size:29px;
}
.p-bloc-0-style{
	font-family:"Lato";
	font-weight:300;
	font-size:18px;
}
.h3-6558-style{
	font-size:29px;
}

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

/* Swatch Variables */
:root{
	
	--swatch-var-3849:rgba(255,255,255,1.00);
	
	--swatch-var-970:rgba(245,245,247,1.00);
	
	--swatch-var-2190:rgba(0,0,0,1.00);
	
	--swatch-var-6153:rgba(0,0,0,0.40);
	
	--swatch-var-3726:rgba(56,127,57,1.00);
	
	--swatch-var-5341:rgba(162,202,113,1.00);
	
}



/* Text colour styles */

.tc-6153{
	color:var(--swatch-var-6153)!important;
}
.tc-2190{
	color:var(--swatch-var-2190)!important;
}

/* Bloc image backgrounds */




/* = 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){
	.avatar{
		width:120px;
	}
	.token-link{
		margin-bottom:10px;
	}
	.bg-img-box{
		height:350px;
	}
	.bento-box{
		padding:30px 30px 30px 30px;
	}
	
}

@media (max-width: 767px){
	.token-link{
		font-size:16px;
	}
	.bento-box{
		padding:30px 30px 30px 30px;
	}
	.box-heading{
		font-size:30px;
	}
	.box-info{
		font-size:20px;
	}
	.bg-img-box{
		height:250px;
	}
	.overlay-heading{
		top:50px;
		left:50px;
	}
	.quote-text{
		font-size:22px;
	}
	
}

@media (max-width: 575px){
	.token-link{
		font-size:14px;
		padding-right:15px;
		padding-left:15px;
	}
	.bento-box{
		padding:20px 20px 20px 20px;
	}
	.box-info{
		font-size:18px;
	}
	.section-heading{
		font-size:30px;
	}
	.bg-img-box{
		height:300px;
	}
	.sm-arrow{
		bottom:10px;
		right:15px;
	}
	.overlay-heading{
		left:30px;
		top:30px;
	}
	.fill-mob-btn{
		width:100%;
	}
	.primary-btn{
	}
	.quote-text{
		font-size:18px;
	}
	.h3-ces-2023-style{
		font-size:20px;
	}
	.h3-style{
		font-size:20px;
	}
	.h3-bloc-0-style{
		font-size:20px;
	}
	.h3-4-style{
		font-size:20px;
	}
	.h3-6558-style{
		font-size:20px;
	}
	.h3-6-bloc-0-style{
		font-size:20px;
	}
	.h3-8-style{
		font-size:29px;
	}
	.card-body-style{
		height:567px;
	}
	.h3-6-style{
		font-size:20px;
	}
	.h2-style{
		font-size:25px;
	}
	.p-37704-style{
		font-size:6px;
	}
	
}

