/*
============================================
*   [Table of contents]
* ==========================================
    Theme Default Css
	01.	Common CSS
    02.	Header
    03.	Navigation
    04.	Page Header
    05.	Slider
    06.	Info Section
    07.	Heading
    08.	Page Section
    09. Blog / Blog Single
    10. Footer
    11. Back To Top
    12. Shapes
    13. Breadcrumb
    14. 404 Page
    15. Gallery
    16. CTA

========================================== */

/*------ Theme Default Css
=======================================*/

/*===== 01. Common CSS =====*/

/* Accessibility */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

#content {
    overflow-x: hidden;
	overflow-y: hidden;
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

.hidden {
    visibility: hidden;
    width: 0px !important;
    height: 0px !important;
    margin: 0px !important;
    padding: 0px !important;
}

a.site-title,
.av-link,
.primary-color {
    background: var(--sp-gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary {
    background: var(--sp-gradient1);
}

.bg-primary-light {
    background: var(--sp-primary-light);
}

.av-my-default {
    margin: 50px 0;
}
.av-mt-default {
    margin-top: 50px;
}
.av-mb-default {
    margin-bottom: 50px;
}

.av-py-default {
    padding: 0;
}
.av-pt-default {
    padding-top: 50px;
}
.av-pb-default {
    padding-bottom: 50px;
}

.av-columns-area [class*='av-column-'] {
    margin-bottom: 30px;
}


/*===== // =====*/


/*===== 02. Header =====*/

#tphdr-info .av-columns-area .av-column-6 {
	margin-bottom: 0;
}

#tphdr-info {
	background-color: #f4f4f4;
	padding: 5px;
	border-bottom: 0px solid rgb(189 189 189 / 0.45);
}

#tphdr-info #tphdr-left ul#mega-menu-social li.mega-menu-item a.mega-menu-link {
    font-weight: 500;
}

.top-header {
	background-color:#e6e6e6;
	padding: 10px;
	text-align: center;
}
.top-header h6 {
	color:#000000;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: .1em;
}

/*===== // =====*/

/*===== 03. Navigation =====*/

.header-search-normal .search-form {
    border-radius: 8px;
}

.header-search-normal .search-form input[type="search"] {
    border-radius: 8px;
    max-height: 40px;
    padding: 10px 15px;
    background-color: #ffffff;
    border-color: rgb(189 189 189 / 0.45);
}

.header-search-normal .search-form input[type="search"]:focus {
    border-color: var(--sp-primary);
}

.header-search-normal .search-form .search-submit {
    padding: 0 12px;
    background: transparent;
    color: var(--sp-secondary-dark);
}

.header-search-normal .search-form .search-submit:hover i,
.header-search-normal .search-form .search-submit:focus i {
    background: var(--sp-gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header-search-close:after,
.header-search-close:before {
    background-color: var(--sp-white);
}


.arrow-down::after {
  content: '\25B8'; /* Symbole de flèche */
}


/*===== // =====*/

.content-area {
	display: block;
	border-top: 1px solid #eeeeee;
}

.site-main {
	padding-bottom: 40px;
}

/*===== 04. Bottom Header =====*/



/* ---//--- */

/*===== 06. Slider =====*/



/* ===== owl Nav ===== */



/*===== // =====*/

/*===== 07. Info Section =====*/



/*===== // =====*/

/*===== 08. Heading =====*/


/*===== // =====*/

/*===== 08. Page Section =====*/


.featured-img {
	position: relative;
	display: block;
	overflow: hidden;
	margin-bottom: 30px;
}


/*===== // =====*/

/*===== 16. Blog / Blog Single =====*/

.post-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 0;
}


.featured-image a.post-hover {
    position: relative;
    z-index: 0;
    display: block;
    overflow: hidden;
}

.wp-block-image {

}

/* Cachez la légende par défaut si elle apparaît en dessous */
.wp-block-image figcaption {

}

/* Créez un conteneur pour l'image et la légende superposée */
.img-copyright {
    position: relative; /* Permet de positionner les enfants à l'intérieur */
    display: inline-block; /* Ou block, selon le comportement souhaité */
}

/* Style pour le texte de copyright */
.img-copyright .wp-element-caption {
    position: absolute;
    bottom: 10px; /* Ajustez la distance du bas */
    right: 10px; /* Ajustez la distance du droite */
    color: white; /* Couleur du texte */
    background-color: rgba(0, 0, 0, 0.3); /* Fond semi-transparent pour une meilleure lisibilité */
    padding: 5px 10px;
    font-size: 11px;
    z-index: 10; /* Assurez-vous qu'il est au-dessus de l'image */
    pointer-events: none; /* Empêche le texte de gêner les interactions sur l'image */
}


.post-content {
    position: relative;
    width: 100%;
    padding-top: 0;
	margin-bottom: 40px;
    border-radius: inherit;
    z-index: 0;
}

.post-date {
	font-size: 14px;
	margin-bottom: 20px;
}

.single .post-date {
	font-size: 14px;
	margin-bottom: 20px;
	padding-left: 15px;
}

.post-date a {
    
}

.post-date span {
    
}

.post-content h1, .post-content h2, .post-content h3,
.post-content h4, .post-content h5, .post-content h6 {
    margin-bottom: 15px;
}

.post-content p+blockquote {
    margin-top: 10px;
}

.post-content blockquote+* {
    margin-top: 10px;
}

.post-content .post-title {
    margin-bottom: 15px;
}

.post-title a {
    text-decoration: none;
    color: inherit;
}

.page .post-title {
	font-weight: 600;
	margin-top: 15px;
	margin-bottom: 35px;
	text-align: center;
	color: #050066 !important;
}

.single .post-title {
	font-weight: 600;
	margin-top: 15px;
	margin-bottom: 35px;
}

.single .post-title-w {
	padding-left: 15px;
	width: 75%;
}

.post-footer {
	margin-top: 20px;
}

.accroche {
	font-family: "Ubuntu", sans-serif;
	font-size: 19px;
}

.author-details {
    position: relative;
    width: 100%;
    border-radius: 10px;
    padding: 30px;
    overflow: hidden;
    margin-top: 30px; 
    background: #ffffff;
    z-index: 0;
    -webkit-transition: all .3s cubic-bezier(.645,.045,.355,1);
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    box-shadow: 0px 0px 20px 0px rgb(33 68 98 / 19%);
}

.author-details .section-header {
    width: 100%;
    display: block;
    margin-bottom: 1.5rem;
}

.author-details .media {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.author-details .media .auth-mata {
    -ms-flex-item-align: start;
    align-self: flex-start;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-right: 1.5rem;
}

.author-details .media .auth-mata img {
    width: 100px;
    border-radius: 10px;
}

.author-details .media .media-body {
    flex-basis: 80%;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-positive: 0;
    flex-grow: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.author-details .media .media-body h4 {
    margin-bottom: .5rem;
}

.author-details .media .media-body h4 a {
    text-decoration: none;
    color: inherit;
}

.author-details .media .media-body h4 a:hover,
.author-details .media .media-body h4 a:focus {
    background: var(--sp-gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.media-body.author-meta-det .av-btn {
    display: table;
    margin: 6px 0 0 0;
    flex-shrink: 0;
}


#cancel-comment-reply-link {
    color: var(--sp-primary);
    text-decoration: underline;
}

#cancel-comment-reply-link:hover,
#cancel-comment-reply-link:focus {
    text-decoration: none;
}

/*===== // =====*/

/*===== 17. Footer =====*/

.site-footer {
    background-color: #323232;
	color: #ffffff;
}

.widget.widget_text { }
.widget.widget_text p { padding-bottom: 10px; }
.widget.widget_text a { color: #ffffff; }
.widget.widget_text a:hover { color: var(--sp-primary); text-decoration: none; }

/* Newsletter - footer */

form.mc4wp-form .mc4wp-form-fields {
    display: flex;
	flex-direction: row;
	-ms-flex-direction: row;
    flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	justify-content: center;
}

form.mc4wp-form .mc4wp-form-fields input[type="email"] {
	background-color: var(--sp-white);
	padding: 30px 15px;
	border-radius: 5px;
}

form.mc4wp-form .mc4wp-form-fields input[type="submit"] {
    color: var(--sp-white); 
	background-color: #f16d32;
	border-width: 0;
	font-size: 16px;
	border-radius: 10px;
	padding: 8px 12px;
}

form.mc4wp-form input[type="submit"]:hover {
    border-width: 0;
	background-color: #323232;
	outline-offset: 0;
    outline-style: none;
	padding: 8px 12px;
}


/* Links and social - footer */

.s-ftr-links { position: relative; padding: 60px 0 0 0; }
.s-ftr-links .ftr-list { padding-left: 0; }
.s-ftr-links .ftr-list li { list-style: none; padding-bottom: 8px; }
.s-ftr-links .ftr-list li a { color: #ffffff; }

.ftr-social-icons .widgettitle { margin-bottom: 20px; }
.ftr-social-icons ul { margin: 0; padding:0; }
.ftr-social-icons ul li a { font-size:1.2em; color:#d9d9d9; }
.ftr-social-icons ul li a:hover { color:#ed6715; }
.ftr-social-icons .social-btn { }
.ftr-social-icons .social-btn .icon { width: 2.0em; height: 2.0em; font-size: 1.5em; color:#ffffff; display:inline-block;  background:transparent; line-height:2.0; margin:0 0 0.2em 0.2em;}
.ftr-social-icons .social-btn .icon:hover {color:#ed6715; border-color:#ed6715;}
.ftr-social-icons .social-btn .icon:first-child { margin-left:0;}

/* Logo - footer */

.s-ftr-logo { background-color: #323232; border-top: 1px solid rgb(189 189 189 / 0.45); }
.s-ftr-logo .av-columns-area { padding: 20px 0; }
.s-ftr-logo .av-columns-area [class*='av-column-'] { margin-bottom: 0; }

/* Copyright - footer */

.s-ftr-copyright { background-color: #323232; border-top: 1px solid rgb(189 189 189 / 0.45); }
.s-ftr-copyright .av-columns-area { padding: 15px; }

/* Partners - footer */

.s-ftr-partners { background-color:#fff; padding:20px; }
.s-ftr-partners ul.footer_partners-links-list { display:table-cell; vertical-align:middle; }
.s-ftr-partners ul.footer_partners-links-list li { vertical-align:middle; display:inline-block ;padding:5px 25px; text-align:center; }
.s-ftr-partners ul.footer_partners-links-list li a {  }
.s-ftr-partners ul.footer_partners-links-list li img {  }

/*===== // =====*/

/*===== 18. Back To Top =====*/

.back-to-top { position:fixed !important; z-index:5000; right:-50px; bottom:30px; display:block; width:50px; height:50px; border: 0; border-radius:50%; cursor:pointer; background:#ed6715; text-align:center !important; line-height:40px; font-size:20px; visibility:hidden; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; color:#fff; -webkit-transition:right .5s ease; -moz-transition:right .5s ease; -ms-transition:right .5s ease; -o-transition:right .5s ease; transition:right .5s ease; padding: 0 !important;}
.back-to-top:hover { color:#fff;}
.back-to-top.show { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; visibility:visible; right:20px; }

/*===== // =====*/



/*===== 20. Breadcrumb =====*/

.breadcrumb {
	font-size: 13.5px;
	font-weight: 400;
	margin-bottom: 0;
	padding: 18px 15px;
	text-transform: uppercase;
}

.breadcrumb span a span {
	color: #000000;
	text-decoration: none !important;
}

.breadcrumb span a {
	text-decoration: none;
}

/*===== // =====*/


/*===== 27. 404 Page =====*/



/*===== // =====*/


/*===== 29. Gallery =====*/

.gallery-item {
    border-radius: 0;
    overflow: hidden;
}

[class^='av-column-'] figure.gallery-item {
    margin: 0;
}

.av-load-item {
    display: none;
}

.loadspinner i:before {
    display: inline-block;
    animation: 0.8s spin 0.4s linear forwards infinite;
}

@keyframes spin{from{transform:rotate(0deg) scale(1)}to{transform:rotate(360deg)}}

/*===== // =====*/

/*===== 30. CTA =====*/


/*---------------------------------------
    Blog Sticky Start
-----------------------------------------*/



/*===== // =====*/

.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

blockquote.wp-block-quote.has-text-color p,blockquote.wp-block-quote.has-text-color p var,blockquote.wp-block-quote.has-text-color p cite,blockquote.wp-block-quote.has-text-color cite {
	color: inherit;
}


.advgb-accordion-wrapper {
	
}

.advgb-accordion-wrapper .advgb-accordion-item {
	
}

.advgb-accordion-wrapper .advgb-accordion-item .advgb-accordion-header {
	
}

.advgb-accordion-wrapper .advgb-accordion-item .advgb-accordion-header h6.advgb-accordion-header-title {
	font-size: 14px;
	line-height: 18px;
	font-weight: 600 !important;
	margin: 8px;
}


.uagb-post__inner-wrap {
		
}

.uagb-post__inner-wrap .uagb-post__title {
		
}

.uagb-post__inner-wrap:hover .uagb-post__title a {
	color: #72BC05;	
}


.wpcf7
{
    
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea
{
    background-color: #fff;
    color: #000;
    width: 100%;
	padding: 10px 15px;
	border: 1px solid #cccccc;
	border-radius: 8px;
}

.wpcf7 p
{
 	font-weight: 600;   
}

.wpcf7 input[type="submit"]
{
	border: 1px solid #72BC05;
	color: #72BC05;
	font-weight: 600;
	font-size: 16px;
	border-radius: 8px;
}

.wpcf7 input[type="submit"]:hover
{
	border: 1px solid #72BC05;
	color: #ffffff;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ffb900; /* Yellow */
}

