/**** CUSTOM CSS BY NIIX ****/

/**** GLOBAL CSS ****/

html {
    overflow-x: hidden !important;
}
body h1, h2, h3, h4, h5, h6, h7 {
    padding: 0 !important;
    margin: 0 !important;
}
body a {
    text-decoration: none !important;
}
body {
    overflow-x: hidden important;
}
body p {
	margin: 0 !important;
}
body .title-color {
    display: block !important;
	color: #FFCC00 !important;
}
body .title-yellow {
	color: #FFCC00 !important;
}

/**** BTN CSS ****/
.elementor-widget-button a.elementor-button {
    position: relative !important;
    overflow: hidden !important;
    z-index: 0 !important;
}
.elementor-widget-button a.elementor-button:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #EC2127 !important;
    transition: all .4s !important;
    z-index: -1;
}
.elementor-widget-button a.elementor-button:hover:before {
	top: 0 !important;
}

/**** ICONE ANIMATION ****/
.icon-anim {
	 transition: all .4s ease-in-out;
}
.icon-anim img {
	 transition: all .4s ease-in-out;
}
.icon-anim:hover img {
	 animation: bounceIn 1s linear;
}

@keyframes bounceIn {
   0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
}
20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}
40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
}
60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
}
80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
}
100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
}

/**** IMG ANIMATION ****/
.img-hover {
    position: relative;
	overflow: hidden !important;
    transition: all .4s !important;
    border-radius: 15px !important;
}
.img-hover img {
    transition: all .4s !important;
}
.img-hover:hover img {
    transform: scale(1.1);
}
.resume-img-hover .elementor-image-box-img {
    position: relative;
	overflow: hidden !important;
    border-radius: 15px 15px 0 0 !important;
    transition: all .4s !important;
}
.resume-img-hover:hover .elementor-image-box-img {
	border-radius: 15px !important;
}
.resume-img-hover .elementor-image-box-img img {
	transition: all .4s !important;
}
.resume-img-hover:hover .elementor-image-box-img img {
	transform: scale(1.1);
}
.img-hover-anim {
    position: relative;
    overflow: hidden; /* évite que l'effet dépasse */
}
.img-hover-anim:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 100%
    );
    transform: skewX(-25deg);
    transition: left 1.5s ease;
    z-index: 1;
    pointer-events: none;
}
.img-hover-anim:hover:after {
    left: 125%;
}
.resume-img-hover-anim {
	 overflow: hidden !important;
}
.resume-img-hover-anim figure {
	  position: relative;
}
.resume-img-hover-anim figure:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
	transition: all 1s;
    z-index: 1;
    pointer-events: none !important;
}
.resume-img-hover-anim figure:hover:before {
	 -webkit-animation: shine 1s;
    animation: shine 1s;
}
@keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes opacityPulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

/**** HEADER CSS ****/
.header .btn-header a {
	color: #fff !important;
    width: max-content !important;
}
.header .btn-header p {
    display: inline-block !important;
	color: #fff !important;
    margin-left: 5px !important;
    margin-right: 5px !important;
}
.header .topbar {
	transition: all .4s !important;
}
.header.nav-scroll .col-logo-header {
	transition: all .4s !important;
}
.header.nav-scroll .col-logo-header {
    width: 10%;
}

/**** ACCUEIL CSS ****/
.section-solution {
	position: relative;
}
.section-solution:before {
    content: "";
    display: block;
    width: 240px;
    height: 390px;
    position: absolute;
    top: 22px;
    bottom: auto;
    left: -50px;
    background-image: url(/wp-content/uploads/2026/02/dots-top.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    animation: opacityPulse 3s infinite ease-in-out;
}
.section-solution:after {
    content: "";
    display: block;
    width: 380px;
    height: 380px;
    position: absolute;
    bottom: -160px;
    right: 0;
    background-image: url(/wp-content/uploads/2026/02/dots-bottom.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    animation: opacityPulse 5s infinite ease-in-out;
}
.section-besoin:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/wp-content/uploads/2026/02/line-section.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.solution-item h3 {
    margin-bottom: 15px !important;
}
.savoir-faire>.e-con-inner {
	position: relative;
}
.savoir-faire>.e-con-inner:before {
    content: "";
    display: block;
    width: 170px;
    height: 170px;
    position: absolute;
    bottom: -36px;
    left: -90px;
    background-image: url(/wp-content/uploads/2026/02/square-picto.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    animation: opacityPulse 5s infinite ease-in-out;
}
.besoin-item h3 {
    margin-bottom: 15px !important;
}
.besoin-item .elementor-image-box-content {
    padding: 0 25px 25px 25px;
}
.besoin-item figure img {
    border-radius: 15px 15px 0 0;
    height: 240px;
    object-fit: cover;
}
.section-cta {
	overflow: hidden !important;
}
.section-cta>.e-con-inner {
	position: relative;
}
.section-cta>.e-con-inner:before {
    content: "";
    display: block;
    width: 250px;
    height: 250px;
    position: absolute;
    bottom: -106px;
    left: -90px;
    background-image: url(/wp-content/uploads/2026/02/square-circle-picto.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    animation: opacityPulse 3s infinite ease-in-out;
}
.section-cta>.e-con-inner:after {
    content: "";
    display: block;
    width: 170px;
    height: 170px;
    position: absolute;
    top: -86px;
    right: -50px;
    background-image: url(/wp-content/uploads/2026/02/square-circle-top.svg);
    background-position: top right;
    animation: opacityPulse 5s infinite ease-in-out;
}
.section-cta.cta-2>.e-con-inner:before {
	content: "";
	display: block;
	width: 250px;
	height: 250px;
	position: absolute;
	bottom: -106px;
	left: -90px;
	background-image: url(/wp-content/uploads/2026/02/square-circle-picto.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom left;
	animation: opacityPulse 3s infinite ease-in-out;
	filter: brightness(0) invert(1);
	opacity: 0.5 !important;
}
.section-cta.cta-2>.e-con-inner:after {
	content: "";
	display: block;
	width: 170px;
	height: 170px;
	position: absolute;
	top: -86px;
	right: -50px;
	background-image: url(/wp-content/uploads/2026/02/square-circle-top.svg);
	background-position: top right;
	animation: opacityPulse 5s infinite ease-in-out;
	filter: brightness(0) invert(1);
	opacity: 0.5 !important;
}
.choisir-item h3 {
    margin-bottom: 5px !important;
}
body .cta-footer .title-color {
	display: inline-block !important;
}
.solution-item p.elementor-image-box-description {
    min-height: 81px !important;
}
.solution-item-3 {
	transition: all .4s !important;
}
.solution-item-3.is-sticky {
	margin-top: 60px !important;
}
.besoin-item .elementor-cta__bg.elementor-bg {
    background-size: 100% 100% !important;
    background-repeat: no-repeat;
    background-color: #949db2 !important;
}


/**** SERVICES CSS ****/
.chiffre-item {
    position: relative;
    overflow: hidden !important;
	z-index: 0;
	transition: all .4s !important;
}
.chiffre-item:hover {
	transform: translatey(-10px) !important;
}
.chiffre-item:before {
    content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: -1;
    background-color: #EC2127 !important;
    transition: all .4s !important;
}
.chiffre-item:hover:before {
	top: 0%;
}
.chiffre-item .elementor-image-box-description {
    transition: all .4s !important;
}
.chiffre-item:hover h3.elementor-image-box-title {
    color: #fff !important;
}
.chiffre-item:hover .elementor-image-box-description {
    color: #fff !important;
}
.chiffre-item h3.elementor-image-box-title {
    margin-bottom: 10px !important;
    transition: all .4s !important;
}
.protection-item .elementor-image-box-content {
	padding: 0 30px 30px 30px !important; 
    transition: all .4s !important;
}
.protection-item h3 {
    margin-bottom: 10px !important;
}
.protection-item img {
    border-radius: 20px 20px 0 0;
}
.confiance-item h3 {
	margin-bottom: 10px !important;
}

/**** FOOTER CSS ****/
.footer {
	position: relative;
}
.footer:before {
    content: "";
    display: block;
    width: 150px;
    height: 140px;
    position: absolute;
    top: auto;
    bottom: 40px;
    left: -23px;
    background-image: url(/wp-content/uploads/2026/02/square-footer.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}
.footer>.e-con-inner {
    border-top: 2px solid rgba(18, 28, 34, 0.12);
}
.coordonnee-footer b {
	font-family: "NeueKabel Black", Sans-serif;
}
body .copyright a {
    text-decoration: underline !important;
    transition: all .4s !important;
}

/**** BTN BACK TO TOP ****/
.back-to-top {
	display: none;
    cursor: pointer;
}
.back-to-top .elementor-icon-wrapper {
    height: 25px !important;
}

/**** MENTIONS LEGALES ****/
.mentions-legales h2 {
    font-size: 38px !important;
	margin-bottom: 20px !important;
}
.mentions-legales p:not(:last-child) {
    margin-bottom: 20px !important;
}
.mentions-legales ul {
    padding: 0 0 0 20px !important;
}
.mentions-legales ul li {
	margin-bottom: 20px !important;
}
.mentions-legales b {
	font-weight: 500 !important;
}

/**** PLAN DU SITE CUSTOM CSS ****/
.site-map h3 {
    display: none !important;
}
.site-map br {
    display: none !important;
}
.site-map ul {
	margin: 0 !important;
}
.site-map li {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    transition: all .4s;
}
.site-map li:hover {
    padding-left: 10px;
}
.site-map li:last-child {
    margin-bottom: 0px;
}
.site-map li:before {
    content:'';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/uploads/2026/02/point-circle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    margin-right: 10px;
}

/**** COOKIEYES CUSTOM CSS ****/
.cky-btn-revisit-wrapper {
    width: 30px !important;
    height: 30px !important;
    background-color: #EC2127 !important;
}
.cky-btn-revisit-wrapper .cky-btn-revisit img {
    height: 20px !important;
    width: 20px !important;
}
.cky-btn-accept {
    background: #EC2127 !important;
    color: #ffffff;
    border: 2px solid #EC2127 !important;
}
.cky-btn-reject {
    color: #EC2127 !important;
    background: transparent !important;
    border: 2px solid #EC2127 !important;
}
.cky-btn-customize {
    color: #EC2127 !important;
    background: transparent !important;
    border: 2px solid #EC2127 !important;
}
.cky-btn-preferences {
    color: #EC2127 !important;
    background: transparent !important;
    border: 2px solid #EC2127 !important;
}
.cky-preference-content-wrapper .cky-show-desc-btn {
	color: #EC2127 !important;
}
.cky-notice-btn-wrapper .cky-btn {
    padding: 5px 5px !important;
}

/**** RESPONSIVE SITE ****/

@media screen and (min-width: 1500px) {
	.solution-item img {
		height: 360px !important;
        object-fit: cover;
	}
	.section-solution:before {
		content: "";
		display: block;
		width: 550px;
		height: 550px;
		position: absolute;
		top: 32px;
		bottom: auto;
		left: 0;
		background-image: url(/wp-content/uploads/2026/02/dots-top.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom left;
        animation: opacityPulse 3s infinite ease-in-out;
	}
	.section-solution:after {
        content: "";
        display: block;
        width: 540px;
        height: 540px;
        position: absolute;
        bottom: -250px;
        right: 0;
        background-image: url(/wp-content/uploads/2026/02/dots-bottom.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom right;
        animation: opacityPulse 5s infinite ease-in-out;
    }
	.savoir-faire>.e-con-inner:before {
        content: "";
        display: block;
        width: 220px;
        height: 220px;
        position: absolute;
        bottom: -46px;
        left: -100px;
        background-image: url(/wp-content/uploads/2026/02/square-picto.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom left;
        animation: opacityPulse 5s infinite ease-in-out;
    }
	.section-cta>.e-con-inner:before {
		content: "";
		display: block;
		width: 450px;
		height: 450px;
		position: absolute;
		bottom: -246px;
		left: -170px;
		background-image: url(/wp-content/uploads/2026/02/square-circle-picto.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom left;
        animation: opacityPulse 3s infinite ease-in-out;
	}
	.section-cta>.e-con-inner:after {
		content: "";
		display: block;
		width: 240px;
		height: 240px;
		position: absolute;
		top: -147px;
		right: -90px;
		background-image: url(/wp-content/uploads/2026/02/square-circle-top.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: top right;
        animation: opacityPulse 5s infinite ease-in-out;
	}
	.section-cta.cta-2>.e-con-inner:before {
		content: "";
		display: block;
		width: 450px;
		height: 450px;
		position: absolute;
		bottom: -246px;
		left: -170px;
		background-image: url(/wp-content/uploads/2026/02/square-circle-picto.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom left;
		animation: opacityPulse 3s infinite ease-in-out;
		filter: brightness(0) invert(1);
		opacity: 0.5 !important;
	}
	.section-cta.cta-2>.e-con-inner:after {
		content: "";
		display: block;
		width: 240px;
		height: 240px;
		position: absolute;
		top: -147px;
		right: -90px;
		background-image: url(/wp-content/uploads/2026/02/square-circle-top.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: top right;
		animation: opacityPulse 5s infinite ease-in-out;
		filter: brightness(0) invert(1);
		opacity: 0.5 !important;
	}
	.footer:before {
		content: "";
		display: block;
		width: 180px;
		height: 180px;
		position: absolute;
		top: auto;
		bottom: 50px;
		left: -20px;
		background-image: url(/wp-content/uploads/2026/02/square-footer.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom right;
	}
}

@media screen and (min-width: 1500px) {
	.header.nav-scroll .logo-header img {
		width: 110px !important;
	}
}

@media screen and (min-width: 1025px) {
	.adresse-footer span.elementor-icon-list-text p {
    	margin-bottom: 13px !important;
	}
	.header.nav-scroll {
		transition: all .4s !important;
	}
	.header.nav-scroll {
		transition: all .4s !important;
	}
	.header.nav-scroll .topbar {
		padding-top: 6px !important;
		padding-bottom: 6px !important;
		transition: all .4s !important;
	}
	.social-logo a.elementor-icon {
		transition: all .4s !important;
	}
	.social-logo a.elementor-icon {
		width: 30px;
		height: 30px;
	}
	.social-logo svg {
		transition: all .4s !important;
	}
	.social-logo svg {
		width: 20px;
		height: 20px;
	}
	.header.nav-scroll img {
		transition: all .4s !important;
	}
	.header .logo-header-2 {
		transition: all .4s !important;
		width: 291.67px !important;
	}
	.header.nav-scroll .logo-header-2 {
		width: 291.67px !important;
	}
	.header .logo-header-2 img {
		transition: all .4s !important;
	}
	.header.nav-scroll .logo-header-2 {
		transition: all .4s !important;
	}
	.header.nav-scroll .logo-header-2 img {
		transition: all .4s !important;
	}
	.header.nav-scroll .logo-header-2 img {
		width: 260px !important;
		transition: all .4s !important;
	}
	.header.nav-scroll .navbar {
		transition: all .4s !important;
	}
	.header.nav-scroll .navbar {
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}
	.header.nav-scroll .menu-header ul>li>a {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
	.header.nav-scroll .coordonnee-header {
		padding-top: 3px !important;
		padding-bottom: 3px !important;
	}
	.header.nav-scroll .coordonnee-header {
		padding-top: 3px !important;
		padding-bottom: 3px !important;
		height: 32px;
		display: flex;
		align-items: center;
	}
    .header.nav-scroll .logo-header img {
		width: 100px !important;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1499px) {
	body .header .col-logo-header {
		width: 9% !important;
	}
    body .header.nav-scroll .col-logo-header {
		width: 9% !important;
	}
    body .header .logo-header-2 {
        width: 270px !important;
    }
    body .header.nav-scroll .logo-header-2 {
        width: 270px !important;
    }
    body .header .logo-header-2 img {
        width: 250px !important;
    }
    body .header.nav-scroll .logo-header-2 img {
        width: 250px !important;
    }
}

@media screen and (min-width: 768px ) {
	.desc-cta br {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.coordonnee-header .elementor-icon-list-text {
		display: none !important;
	}
	.coordonnee-header li>a:not(:first-child) {
		display: none !important;
	}
	.header .btn-header p {
		display: none !important;
	}
	body .title-color {
		display: inline-block !important;
		color: #FFCC00 !important;
	}
	.footer .col-item {
		width: 48% !important;
	}
    .footer .adresse-footer ul.elementor-icon-list-items li:not(:last-child) {
    	display: none !important;
	}
	.footer:before {
		display: none !important;
	}
	.footer .adresse-footer p {
		display: inline-block !important;
	}
}

@media screen and (max-width: 767px) {
	.topbar {
    	flex-wrap: nowrap;
	}
	body .footer .col-item {
		width: 100% !important;
	}
	body .item-footer {
		min-height: 210px !important;
		display: flex;
        justify-content: center;
		align-items: center;
	}
     body .title-color {
        display: inline !important;
        color: #FFCC00 !important;
    }
	.item-footer figure.elementor-image-box-img {
		margin-bottom: 10px !important;
	}
	.section-cta>.e-con-inner:before {
		content: "";
		display: block;
		width: 140px;
		height: 140px;
		position: absolute;
		bottom: -106px;
		left: -90px;
		background-image: url(/wp-content/uploads/2026/02/square-circle-picto.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom left;
		animation: opacityPulse 3s infinite ease-in-out;
	}
	.section-cta>.e-con-inner:after {
		content: "";
		display: block;
		width: 90px;
		height: 130px;
		position: absolute;
		top: -96px;
		right: -50px;
		background-image: url(/wp-content/uploads/2026/02/square-circle-top.svg);
		background-position: top right;
		animation: opacityPulse 5s infinite ease-in-out;
	}
    .section-cta.cta-2>.e-con-inner:before {
		content: "";
		display: block;
		width: 140px;
		height: 140px;
		position: absolute;
		bottom: -106px;
		left: -90px;
		background-image: url(/wp-content/uploads/2026/02/square-circle-picto.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom left;
		animation: opacityPulse 3s infinite ease-in-out;
        filter: brightness(0) invert(1);
        opacity: 0.5 !important;
	}
	.section-cta.cta-2>.e-con-inner:after {
		content: "";
		display: block;
		width: 90px;
		height: 130px;
		position: absolute;
		top: -96px;
		right: -50px;
		background-image: url(/wp-content/uploads/2026/02/square-circle-top.svg);
		background-position: top right;
		animation: opacityPulse 5s infinite ease-in-out;
        filter: brightness(0) invert(1);
        opacity: 0.5 !important;
	}
	.section-solution:before {
		content: "";
		display: block;
		width: 100px;
		height: 50px;
		position: absolute;
		top: 10px;
		bottom: auto;
		left: -50px;
		background-image: url(/wp-content/uploads/2026/02/dots-top.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom left;
		animation: opacityPulse 3s infinite ease-in-out;
	}
	.section-solution:after {
		content: "";
		display: block;
		width: 60px;
		height: 50px;
		position: absolute;
		bottom: 0;
		right: 0;
		background-image: url(/wp-content/uploads/2026/02/dots-bottom.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom right;
		animation: opacityPulse 5s infinite ease-in-out;
	}
	.savoir-faire>.e-con-inner:before {
		content: "";
		display: block;
		width: 100px;
		height: 130px;
		position: absolute;
		bottom: -46px;
		left: -50px;
		background-image: url(/wp-content/uploads/2026/02/square-picto.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom left;
		animation: opacityPulse 5s infinite ease-in-out;
	}
	.choisir-item figure.elementor-image-box-img {
		margin-bottom: 10px !important;
	}
	body h1 {
        font-size: 26px !important;
        line-height: 35px !important;
    }
	body h2 {
		font-size: 20px !important;
		line-height: 28px !important;
	}
	body .banner-desc br {
		display: none !important;
	}
	body .banner-desc {
		font-size: 13px;
	}
	body .confiance-item .elementor-image-box-wrapper {
		display: flex;
		justify-content: flex-start;
	}
	body .confiance-item .elementor-image-box-description {
		text-align: left;
	}
	body .confiance-item h3.elementor-image-box-title {
		text-align: left !important;
	}
	.confiance-item .elementor-image-box-content {
		padding-left: 14px !important;
	}
}

@media screen and (max-width: 500px) {
	body .captcha-ni .forminator-g-recaptcha {
    	width: 304px !important;
    	position: relative !important;
    	scale: 0.8 !important;
    	left: -30px !important;
	}
}

@media screen and (max-width: 414px) {
	 body h1 {
        font-size: 24px !important;
        line-height: 34px !important;
    }
}

@media screen and (max-width: 400px) {
	.btn-resume.btn-long span.elementor-icon-list-icon {
    	display: none !important;
	}
}

@media screen and (max-width: 380px) {
	body h1 {
        font-size: 23px !important;
        line-height: 33px !important;
    }
}

@media screen and (max-width: 379px) {
	body h1 {
        font-size: 20px !important;
        line-height: 30px !important;
    }
}