/**
 * Page d'accueil — Le Périscope
 */


/* ——— Base page ——— */
.page-template-template-home-periscope header {
	margin-bottom: 0px;
}

.page-template-template-home-periscope main {
	padding-bottom: 0 !important;
	overflow-x:hidden;
}

.page-home-periscope {
	font-family: var(--font-family);
	color: var(--color-noir);
	background: var(--color-blanc);
	line-height: normal;
	position:relative;
}

.page-home-periscope img {
	width: 100%;
}

.page-home-periscope a {
	text-decoration: none;
}
@media screen and (max-width:2000px){
	.page-template-template-home-periscope header {
		margin-bottom: 46px;
	}
}


/* ——— Articles ——— */
.ph-card-article {
	display: flex;
	flex-direction: column;
}

.ph-article-title {
	font-size: var(--text-base);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 6px;
}

.ph-article-title--md {
	font-size: var(--title-md);
}

.ph-article-title a {
	color: var(--color-noir) !important;
}

.ph-article-excerpt {
	font-size: var(--text-base);
	margin: 0 0 12px;
	line-height: 1.6;
}

.ph-card-article .ph-media--card {
	margin: 0 0 16px;
}

.ph-link-more {
	display: flex;
	justify-content: end;
	font-size: var(--text-base);
	text-decoration: underline !important;
	color: black !important;
}

.ph-meta {
	font-size: var(--text-xs);
	color: var(--color-gris-meta);
	margin-bottom: 8px;
}

.ph-meta span+span::before {
	content: ' · ';
}
@media screen and (max-width:767px){
	.ph-card-article .ph-media--card{
		margin: 0px 0 8px;
	}
}


/* ——— Bloc coloré——— */

.ph-block--jaune {
	background: var(--color-jaune);
}

.ph-block--noir {
	background: var(--color-noir);
	color: var(--color-blanc);
}

.ph-block--bleu {
	background: var(--color-bleu);
	color: var(--color-blanc);
}

.ph-block--light-jaune {
	background: var(--color-light-jaune);
}


/* ═══════════════════════════════════════
	Apériscope (header)
	═══════════════════════════════════════ */
.ph-section--aperiscope {
	padding-top: 0;
	padding-bottom: 40px;
	position: relative;
	z-index: 1;

}
.ph-section--aperiscope:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(180deg, #E9E9E9 0%, rgba(233, 233, 233, 0.00) 20%);
    z-index: -1;
	pointer-events: none;
}

.ph-aperiscope-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	padding: 24px;
	border-radius: 0 0 72px 72px;
	background: var(--Blanc, #FAFAFA);
	box-shadow: 0 82px 23px 0 rgba(0, 0, 0, 0.00), 0 53px 21px 0 rgba(0, 0, 0, 0.01), 0 30px 18px 0 rgba(0, 0, 0, 0.05), 0 13px 13px 0 rgba(0, 0, 0, 0.09), 0 3px 7px 0 rgba(0, 0, 0, 0.10);
	z-index:3;
}

.ph-aperiscope-header__logo-img {
	width: 365px !important;
	height: auto;
	display: flex;
}

.organisation-inscription {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 20Px;
}

.organisation-aperiscope {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 10Px;
}
@media (max-width: 990px) {
	.ph-aperiscope-header {
		border-radius: 0 0 60px 60px;
	}
	.ph-aperiscope-header__logo-img{
		width: 300px !important;
	}
}
@media (max-width: 767px) {
	.ph-section--aperiscope{
		padding-bottom: 20px;
	}
	.ph-aperiscope-header {
		flex-direction: column;
		gap: 16px;
		text-align: center;
		border-radius: 0 0 40px 40px;
	}
	.ph-aperiscope-header__logo-img{
		width: 265px !important;
	}
}
	
/* ═══════════════════════════════════════
	Encart pubs 
	═══════════════════════════════════════ */
.ph-encart-pubs-desktop .slick-slide , .ph-encart-pubs-mobile .slick-slide {
	margin: 0 0px!important;
}
.ph-encart-pubs-desktop img{
	border-radius: 40px 0 0 40px !important;
}
.ph-encart-pubs-mobile img{
	border-radius: 40px !important;
}
.ph-encart-pubs-desktop{
	position: fixed;
	top:150px;
	right: 0;
	width: calc( (100vw - 1400px) / 2 + 40px);
	height: auto;
	max-width: 370px;
	z-index:9;
}
@media screen and (min-width:1800px){
	.ph-encart-pubs-desktop{
		display:flex;
	}
	.ph-encart-pubs-mobile{
		display:none;
	}	
}
@media screen and (max-width:1800px){
	.ph-encart-pubs-desktop{
		display:none;
	}
	.ph-encart-pubs-mobile {
        display: flex;
    }
	.ph-container-une-et-pub{
		display:flex;
		gap:50px;
	}
}

@media screen and (min-width:1400px) and (max-width:1800px){
	.ph-container-une-et-pub .ph-a-la-une__grid{
		width:calc(100% - 300px);
	}
	.ph-container-une-et-pub .ph-encart-pubs-mobile{
		width: 300px;
		align-self: center;
        padding-bottom: 70px;
	}	
}

@media screen and (min-width:991px) and (max-width:1400px){
	.ph-container-une-et-pub .ph-a-la-une__grid{
		grid-template-columns: 1fr;
	}
	.ph-container-une-et-pub .ph-a-la-une__grid{
		width:calc(100% - 400px);
	}
	.ph-container-une-et-pub .ph-encart-pubs-mobile{
		width: 400px;
	}	
}

@media screen and (max-width:990px) {
	.ph-container-une-et-pub{
		flex-direction:column;
	}
	.ph-encart-pubs-mobile img{
		border-radius: 40px 40px 0 0 !important;
	}
}
@media screen and (max-width:767px) {
	.ph-encart-pubs-mobile img{
		border-radius: 40px !important;
	}
}

/* ═══════════════════════════════════════
	à la une
	═══════════════════════════════════════ */
.ph-a-la-une{
	position: relative;
	z-index: 1;	
}

.a-la-une_tag {
	position: absolute;
	top: -40px;
	left: 0;
	z-index: 2;
}
.a-la-une_img {
	object-fit: cover;
	display: flex;
	height: 100%;
	filter: brightness(0.9);
}
.a-la-une_actions {
	margin-top: 20px;
}
.a-la-une_txt {
	padding-bottom: 110px;
}

@media screen and (max-width:767px){
	.a-la-une_tag {
		top: -28px;
	}
	.a-la-une_txt{
		padding-bottom:0;
	}
	.a-la-une_actions {
    	margin-top: 10px;
	}
}
	

/* ═══════════════════════════════════════
	Édito
	═══════════════════════════════════════ */
.ph-section--edito {
	padding-top: 0;
	padding-bottom: 0;
	margin-bottom: -145px;
	margin-top: -70px;
	z-index: 2;
	position: relative;
}

.ph-edito__block {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 30px;
	overflow: hidden;
	border-radius: 70px;
	box-shadow: 0 82px 23px 0 rgba(0, 0, 0, 0.00), 0 53px 21px 0 rgba(0, 0, 0, 0.01), 0 30px 18px 0 rgba(0, 0, 0, 0.05), 0 13px 13px 0 rgba(0, 0, 0, 0.09), 0 3px 7px 0 rgba(0, 0, 0, 0.10);
	Modes
}

.ph-edito__block .ph-block__title {
	font-size: var(--title-lg);
	font-weight: 600;
	margin: 0 0 24px;
}

.ph-edito__block .ph-block__text {
	font-size: var(--text-base);
	margin-bottom: 32px;
	line-height: 1.7;
}

.ph-edito__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.ph-edito__portrait {
	align-self: end;
	justify-self: end;
}

.ph-media--edito-portrait img {
	width: 100%;
	display: flex;
}
@media screen and (max-width:767px){
	.ph-section--edito{
		margin-bottom: -90px;
		margin-top: 50px;
	}
	.ph-edito__block{
		border-radius: 40px;
		grid-template-columns: 1fr;
		gap: 20px;
	}
}


/* ═══════════════════════════════════════
	Nouveauté
	═══════════════════════════════════════ */
.ph-nouveaute{
	position:relative;
	z-index:1;
}
.ph-nouveaute__block {
	display: flex;
	border-radius: 0 0 70px 70px;
	overflow: hidden;
	box-shadow: 0 82px 23px 0 rgba(0, 0, 0, 0.00), 0 53px 21px 0 rgba(0, 0, 0, 0.01), 0 30px 18px 0 rgba(0, 0, 0, 0.05), 0 13px 13px 0 rgba(0, 0, 0, 0.09), 0 3px 7px 0 rgba(0, 0, 0, 0.10);
}

.ph-nouveaute__block .ph-block__content {
	padding: 150px 0px 70px 60px;
	width: 40%;
}

.ph-nouveaute__block .ph-block__media {
	position: relative;
	height: auto;
	width: 60%;
}

.ph-nouveaute__block .ph-block__media:after {
	content: "";
	left: 0;
	right: 0;
	top: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--color-noir) 0, transparent 30%);
	z-index: 0;
	position: absolute;
}

.ph-media--nouveaute {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.ph-media--nouveaute img {
	object-fit: cover;
	object-position: bottom;
}

.ph-nouveaute__block .ph-block__title {
	font-size: var(--title-lg);
	font-weight: 600;
	margin: 16px 0;
}

.ph-nouveaute__block .ph-block__text {
	font-size: var(--text-base);
	margin-bottom: 32px;
	line-height: 1.6;
}

.ph-nouveaute__block .ph-block__btn {
	display: flex;
	justify-content: end;
}

.ph-nouveaute__block .ph-block__btn a {
	width: fit-content;
}
@media screen and (max-width:1200px){
	.ph-nouveaute__block .ph-block__content{
		width: 45%;
		padding:150px 0px 50px 40px;
	}
	.ph-nouveaute__block .ph-block__media{
		width: 55%;
	}
}
@media screen and (max-width:990px){
	.ph-nouveaute__block .ph-block__content{
		width: 50%;
		padding:150px 0px 40px 40px;
	}
	.ph-nouveaute__block .ph-block__media{
		width: 50%;
	}
}
@media screen and (max-width:767px){
	.ph-nouveaute__block{
		flex-wrap:wrap;
		    border-radius: 0 0 40px 40px;
	}
	.ph-nouveaute__block .ph-block__content {
        width: 100%;
        padding: 80px 20px 40px 20px;
    }
	.ph-nouveaute__block .ph-block__media {
        width: 100%;
    }

}
	
/* ═══════════════════════════════════════
	Dernier numéro
	═══════════════════════════════════════ */

.ph-title-dernier-num {
	text-align: center;
	line-height: 1em;
	font-size: var(--title-xxxl);
	margin-top: 20px;
	margin-bottom: 0px;
}

.ph-dernier-numero-last {
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
	position: relative;
}

.ph-dernier-numero_media {
	width: calc(66.6% + 30px);
}
.ph-dernier-numero_media img {
    height: 100%;
    object-fit: cover;
}
.ph-dernier-numero_content {
	width: calc(33% - 0px);
	align-self: center;
}

.dernier-numero-tag {
	position: absolute;
	top: -40px;
	left: 0;
	z-index: 2;
}

.ph-dernier-numero .ph-grid-articles .ph-card-article .ph-article-title {
	font-size: var(--text-base);
}


.ph-dernier-numero .ph-grid-articles .ph-card-article img {
	aspect-ratio: 5 / 3;
	object-fit: cover;
}

@media screen and (min-width:991px){
	.ph-dernier-numero .ph-grid-articles .ph-card-article:nth-child(4){
		display:none;
	}
}
@media screen and (max-width:1200px){
	.ph-title-dernier-num{
		margin-bottom: 40px;
	}
}
@media screen and (max-width:990px){
	.ph-dernier-numero-last .ph-dernier-numero_media, 
	.ph-dernier-numero-last .ph-dernier-numero_content{
		width:50%;
	}
}
@media screen and (max-width:767px){
	 .dernier-numero-tag {
		position: absolute;
		top: -25px;
		left: 50%;
		z-index: 2;
		transform: translateX(-50%);
		text-align: center;
		width: max-content;
	}
	.ph-dernier-numero-last{
		gap:20px;
		flex-direction: column;
	}	
	.ph-dernier-numero-last .ph-dernier-numero_media, .ph-dernier-numero-last .ph-dernier-numero_content {
        width: 100%;
    }
	.ph-title-dernier-num{
		margin-top: 0px;
	}
}


/* ═══════════════════════════════════════
	Périscope papier
	═══════════════════════════════════════ */
.ph-papier {
	margin: 120px 0;
}

.ph-papier__block {
	display: flex;
	box-shadow: 0 82px 23px 0 rgba(0, 0, 0, 0.00), 0 53px 21px 0 rgba(0, 0, 0, 0.01), 0 30px 18px 0 rgba(0, 0, 0, 0.05), 0 13px 13px 0 rgba(0, 0, 0, 0.09), 0 3px 7px 0 rgba(0, 0, 0, 0.10);
	border-radius: 70px;
	overflow: hidden;
}

.ph-papier__block .ph-block__content {
	width: 45%;
	padding: 70px 50px 70px 0px;
}

.ph-papier__block .ph-block__media {
	width: 55%;
	height: auto;
	min-height: 300px;
	position: relative;
}

.ph-papier__block .ph-block__media:after {
	content: "";
	left: 0;
	right: 0;
	top: 0;
	height: 100%;
	background: linear-gradient(-90deg, var(--color-bleu) 0, transparent 30%);
	z-index: 0;
	position: absolute;
}

.ph-media--papier {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.ph-media--papier img {
	object-fit: cover;
}

.ph-papier__block .ph-block__title {
	font-size: var(--title-lg);
	font-weight: 700;
	margin: 0 0 24px;
}

.ph-papier__block .ph-block__text {
	font-size: var(--text-base);
	margin-bottom: 32px;
	line-height: 1.6;
}

.ph-papier__block .ph-block__btn {
	display: flex;
	justify-content: end;
}

.ph-papier__block .ph-block__btn a {
	width: fit-content;
}
@media screen and (max-width:1200px){
	.ph-papier{
		margin:80px 0;
	}
}
@media screen and (max-width:990px){
	.ph-papier{
		margin:60px 0 70px;
	}
	.ph-papier__block .ph-block__media{
		width: 50%;
	}
	.ph-papier__block .ph-block__content {
		width: 50%;
		padding: 60px 40px 60px 0px;
	}
}
@media screen and (max-width:767px){
	.ph-papier{
		margin:50px 0 60px;
	}
	.ph-papier__block {
		flex-wrap: wrap;
		border-radius:40px;
	}
	.ph-papier__block .ph-block__content {
        width: 100%;
        padding:0px 20px 40px 20px;
    }
	.ph-papier__block .ph-block__media{
		width: 100%;
	}
	.ph-papier__block .ph-block__media:after{
		background: linear-gradient(0deg, var(--color-bleu) 0, transparent 30%);
	}
	.ph-papier__block .ph-block__text{
		margin-bottom: 16px;
	}
}


/* ═══════════════════════════════════════
	En profondeur (dossier)
	═══════════════════════════════════════ */
.ph-section--en-details {
	background: var(--color-light-jaune);
	padding: var(--section-gap) 0;
}

.ph-title-en-details {
	text-align: center;
	line-height: 1em;
	font-size: var(--title-xxxl);
}
.ph-media--dossier{
	height:100%;
}
.ph-tag-sm.dossier-du-mois-tag {
	margin-bottom: 20px;
}

.ph-media--dossier img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	height:100%;
}

.ph-en-details__grid .ph-article-excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 9;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media screen and (max-width:990px){

}
@media screen and (max-width:767px){
	.ph-en-details .dossier-du-mois-tag{
		margin: -46px auto 20px auto;
		display: flex;
	}
}

/* ═══════════════════════════════════════
	#actualites (radars)
	═══════════════════════════════════════ */
.page-template-template-home-periscope #dans-nos-radars{
	background-image:url("/wp-content/themes/periscope/assets/medias/news-bg.webp");
	background-repeat:no-repeat;
	background-size:cover;
	padding-top:100px;
	padding-bottom:100px;
}
.section-nos-radars .ph-section__title {
	text-align: center;
	line-height: 0.9em;
	margin-bottom: -25px;
	font-size: var(--title-xxxl);
}

.radar-sep {
    width: 100%;
    display: flex;
    height: 1px;
    background: black;
    margin: 65px 0;
}

.ph-radars-block__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 32px;
	text-align:center;
}

.ph-radars-block .ph-card-article {
	justify-content: space-between;
}

.ph-radars-block .ph-card-article img {
	aspect-ratio: 5 / 3;
	object-fit: cover;
}
@media screen and (max-width:1200px){
	.page-template-template-home-periscope #dans-nos-radars{
		padding-top:80px;
		padding-bottom:80px;
	}
	.section-nos-radars .ph-section__title{
		margin-bottom: 10px;
	}
	.ph-radars-block .ph-grid-articles--4 .ph-card-article:nth-child(7),
	.ph-radars-block .ph-grid-articles--4 .ph-card-article:nth-child(8){
		display:none;
	}
}
@media screen and (max-width:990px){
	.page-template-template-home-periscope #dans-nos-radars{
		padding-top:60px;
		padding-bottom:60px;
	}
	.section-nos-radars .ph-section__title{
		margin-bottom: 20px;
	}
	.ph-radars-block__head {
		flex-direction: column;
	}
	.radar-sep{
		margin: 55px 0;
	}
}
@media screen and (max-width: 767px) {
	.page-template-template-home-periscope #dans-nos-radars{
		padding-top:50px;
		padding-bottom:50px;
	}
    .radar-sep {
        margin: 40px 0;
    }
}


.ph-media--video{
	margin: 0 0 16px;
}
.ph-media--video iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
}


/* ═══════════════════════════════════════
	Communication
	═══════════════════════════════════════ */

.page-template-template-home-periscope .ph-communication{
	margin: 0px 0 120px 0;
}

@media screen and (max-width: 1200px) {
    .page-template-template-home-periscope .ph-communication {
        margin: 0px 0 80px 0;
    }
}
@media screen and (max-width:990px){
	.page-template-template-home-periscope .ph-communication {
        margin: 0px 0 60px 0;
    }
}
@media screen and (max-width:767px){
	.page-template-template-home-periscope .ph-communication {
        margin: 0px 0 50px 0;
    }
}


/* ═══════════════════════════════════════
	Newsletter
	═══════════════════════════════════════ */
.ph-newsletter{
	position:relative;
}
.ph-newsletter-card {
	background: var(--color-light-jaune);
	border-radius: 40px;
	padding: 40px;
	box-shadow: 141px 314px 96px 0 rgba(0, 0, 0, 0.00), 90px 201px 88px 0 rgba(0, 0, 0, 0.01), 51px 113px 74px 0 rgba(0, 0, 0, 0.05), 22px 50px 55px 0 rgba(0, 0, 0, 0.09), 6px 13px 30px 0 rgba(0, 0, 0, 0.10);
	    width: 500px;
    height: fit-content;
	max-width:100%;
	margin-bottom: 120px;
}
.ph-newsletter__wrap{
	display:flex;
	justify-content: center;
}
.ph-newsletter-card__title {
	font-size: var(--title-md);
	font-weight: 700;
	margin: 0 0 16px;
}
.ph-newsletter-card__text {
	font-size: var(--text-base);
	color: var(--color-gris-texte);
	margin-bottom: 24px;
}

.ph-newsletter-card form {
	display: flex;
	flex-direction: column;
    align-items: end;
	padding: 0px!important;
}
.ph-newsletter-card form .mailpoet_paragraph{
	margin-bottom: 15px!important;
	display: flex !important;
	width: 100%;
}
.ph-newsletter-card form .mailpoet_paragraph.last{
	margin-bottom: 0px!important;	
}
.ph-newsletter-card form  input[type="email"] {
	width:100%;
	padding: 10px 12px!important;
}
.ph-newsletter-card form .mailpoet_submit{
	padding: 10px 20px!important;
	background:black!important;
	color:white!important;
	width: fit-content !important;
	margin-right: 0 !important;
	margin-left: auto !important;
}

.ph-newsletter__media{
	width: calc(100% - 500px);
    height: auto;
}
.ph-media--newsletter{
    position: relative;
    width: 100%;
    height: 100%;
}
.ph-media--newsletter img {
    position: absolute;
    left: -10%;
    bottom: 0;
    width: calc(110% + (100vw - 1400px) / 2 + 60px);
    height: calc(100% + 200px);
    object-fit: contain;
    object-position: left bottom;
	pointer-events:none;
}
@media (max-width: 1400px) {
	.ph-media--newsletter img {
		width: calc(110% + 60px);
		left: -60px;
	}
}
@media (max-width: 1200px) {
	.ph-newsletter-card {
		margin-bottom:80px;
	}
	.ph-media--newsletter img {
		height: calc(100% + 130px);
	}
}
@media (max-width: 990px) {
	.ph-newsletter-card{
		width: 400px;
		margin-bottom:60px;
	}
	.ph-newsletter__media{
		width: calc(100% - 400px);
	}
}
@media (max-width: 767px) {
	.ph-newsletter__wrap {
		flex-direction: column;
	}
	.ph-newsletter-card {
        padding: 40px 20px;
		margin: 0 auto;
		border-radius: 30px;
    }
	.ph-newsletter__media{
		width:100%;
	}
	.ph-media--newsletter img {
		position: relative;
		left: unset;
		bottom: unset;
		width: 100%;
		height: fit-content;
		max-width: 300px;
        display: flex;
        margin: -50px 0 0 0;
	}
}





/* ——— Zigouigoui ——— */
.ph-zigouigoui {
	z-index: 0;
	position: absolute;
}
.ph-zigouigoui img {
	display: flex;
    width: 100%;
    height: auto;
	pointer-events:none;
}

#zig-ph-1 {
    top: -25px;
    left: calc((100vw - 1400px) / 2);
    width: 410px;
    transform: translateX(-70%);
}
#zig-ph-2 {
    top: 0;
	right:-100px;
	width:600px;
	transform:translatex(50%);
}
#zig-ph-3{
	bottom: 0;
    left: 0;
    width: 400px;
    transform: translatex(-25%);	
}
#zig-ph-4{
	bottom: 40px;
    left: 0;
    width: 35vw;
	max-width: 800px;
    transform: translate(-22%, 0%);	
}
#zig-ph-5{
	top: 350px;
    right: 100%;
    width: 650px;
    transform:translate(50px, 0%);
}
#zig-ph-6{
	top: 0px;
    right: 0%;
    width: 750px;
    transform: translate(50%, -65%);
    filter: sepia(1) brightness(0.97);
}
#zig-ph-7{
	bottom: 0px;
    left: 0%;
    width: 500px;
    transform: translate(-25%, 0) scaleX(-1);
    filter: opacity(0.7);
}

@media (max-width: 1400px) {
	#zig-ph-1 {
		left: 0px;
		width: 310px;
	}
	#zig-ph-2{
		width: 500px;
	}
	#zig-ph-3 {
		width: 350px;
		transform: translatex(-25%) translateY(100%);
	}
	#zig-ph-4{
		transform: translate(-22%, -50%);
	}
	#zig-ph-5{
		width: 550px;
	}
	#zig-ph-6{
		width: 450px;
	}
}
@media (max-width: 1200px) {
	#zig-ph-6{
		width: 400px;
	}
	#zig-ph-7 {
		width: 400px;
	}
}
@media (max-width: 990px) {
	#zig-ph-2 {
		width: 400px;
	}
	#zig-ph-4 {
		top: 40px;
		bottom:unset;
		transform: translate(-22%, 100%);
	}
	#zig-ph-5 {
		top: -50px;
		right: 100%;
		width: 450px;
		transform: translate(50px, 0%);
	}
	#zig-ph-6 {
		width: 300px;
	}
}
@media (max-width: 767px) {
	#zig-ph-1{
		display:none;
	}
	#zig-ph-2{
		width: 350px;
	}
	#zig-ph-5 {
		top: -30px;
		width: 300px;
	}
}
