/* CSS Document */



#m-1fr {
	display: grid;
	grid-template-columns: 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 0px;
	max-width: 1600px;
	margin: 0px auto;
}

#m-1fr>div {
	background-color: #FFFFFF00;

	padding: 10px;
}

@media only screen and (max-width: 768px) {
	#m-1fr {
		display: grid;
		grid-template-columns: 1fr;
	}
}



#m-2fr {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 0px;
	max-width: 1600px;
	margin: 0px auto;
}

#m-2fr>div {
	background-color: #FFFFFF00;

	padding: 10px;
}

@media only screen and (max-width: 768px) {
	#m-2fr {
		display: grid;
		grid-template-columns: 1fr;
	}
}

#m-3fr {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 0px;
	max-width: 1600px;
	margin: 0px auto;
}

#m-3fr>div {
	background-color: #FFFFFF00;

	padding: 10px;
}

@media only screen and (max-width: 768px) {
	#m-3fr {
		display: grid;
		grid-template-columns: 1fr;
	}
}



#m-4fr {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 0px;
	max-width: 1600px;
	margin: 0px auto;
}

#m-4fr>div {
	background-color: #FFFFFF00;

	padding: 10px;
}

@media only screen and (max-width: 768px) {
	#m-4fr {
		display: grid;
		grid-template-columns: 1fr;
	}
}





img .gap {
	padding: 5px;
}

#m-17 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(5.882%, 1fr));
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	max-width: 100%;
	box-sizing: border-box;
}

#m-17>div {
	background-color: #ffffff00;
	padding: 0px;
}

@media only screen and (max-width: 768px) {
	#m-17 {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(11%, 1fr));
	}
}

input:focus {
	background-color: #878787;
}

/*----------------------------
    m1-3
-----------------------------*/

#m-photo {

	margin-top: 0px;
	height: 450px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (min-width: 1500px) .m-photo {
	height: 650px;
}

@media (min-width: 992px) .m-photo {
	height: 550px;
}

#m1-3 {
	display: grid;
	grid-template-columns: 30% 70%;
	grid-gap: 30px;
	max-width: 1600px;
	justify-content: center;
	align-items: center;
}

#m3-1 {
	display: grid;
	grid-template-columns: 70% 30%;
	grid-gap: 30px;
	max-width: 1600px;
}

#foreword {
	display: grid;
	grid-template-columns: 20% 80%;
	grid-gap: 30px;
	max-width: 1600px;
}

#m1-3>div {
	background-color: #ffffff00;
	font-size: 4vw;
	padding: 10px;
}

#m3-1>div {
	background-color: #ffffff00;
	font-size: 4vw;
	padding: 10px;
}

@media only screen and (max-width: 479px) {
	#foreword {
		display: grid;
		grid-template-columns: 1fr;
	}

	#foreword img {
		width: 40%;
	}

	#m1-3 {
		display: grid;
		grid-template-columns: 1fr !important;
		gap: 0px;
	}

	#m1-3 img {
		width: 60%;
		height: initial !important;
	}
}

img {
	max-width: 100%, padding: 0px;
}

/*----------------------------
    m1-3 -end
-----------------------------*/

/*----------------------------
    m-3-3-3-START
-----------------------------*/

#m-3-3-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 30px;
	max-width: 1600px;
	border-bottom: 1px solid rgba(127, 127, 127, 0.15);
}

#m-3-3-3>div {
	background-color: #fff;
	font-size: 4vw;
	padding: 10px;
	border-bottom: 1px solid rgba(127, 127, 127, 0.15);
}

@media only screen and (max-width: 768px) {
	#m-3-3-3 {
		display: grid;
		grid-template-columns: 1fr;
	}
}

p,
i,
{
color: #FF0004;
}

.grey {
	background-color: #2D2D2D;
}


/*----------------------------
    m-3-1-3-START
-----------------------------*/

#m-3-1-3 {
	display: grid;
	grid-template-columns: 3fr 0.5fr 1fr 3fr;
	grid-gap: 0px;
	max-width: 1600px;
	border-bottom: 1px solid rgba(127, 127, 127, 0.15);
}

#m-3-1-3>div {
	background-color: #fff;
	font-size: 4vw;
	padding: 10px;
	border-bottom: 1px solid rgba(127, 127, 127, 0.15);
}

@media only screen and (max-width: 768px) {
	#m-3-1-3 {
		display: grid;
		grid-template-columns: 1fr;
	}
}

p,
i,
{
color: #FF0004;
}

.grey {
	background-color: #2D2D2D;
}


/*----------------------------
   #auto-fit
-----------------------------*/
#auto-fit-550 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
	gap: 1rem;
	align-items: center;

}

/*#auto-fit-500 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 1rem;
	align-items: center;

}*/

#auto-fit-500 {
	display: flex;
	flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 30px;
    gap: 15px;
  }

   #auto-fit-500-cover {
          display: flex;
          flex-direction: row;
         /* height: 40vh;*/
          justify-content: space-between;
          align-items: stretch;
          margin-top: 30px;
          gap: 15px;
        }

  .report-cover.title-section {
		  flex: 1;
		  display: flex;
          flex-direction: column;
          justify-content: space-between;
          padding: 30px;
          background-color: #fafafa;
          align-items: flex-start;
          min-width: 0; /* Prevent flex overflow */
  }

 .report-cover.title-section img {
          max-width: 40%; 
          max-height: 150px; /* Add max-height to control flag size */
          width: auto;
          object-fit: contain;
          padding: 20px 0;
        }

		/* Video/Image Section */
        .report-cover.image-section {
          flex: 1;
          display: flex;
          justify-content: center;
          align-items: center;
          background-color: #fafafa;
          padding: 15px;
          aspect-ratio: 3/2; /* Adjust as needed */
        }

        .report-cover.image-section img {
          max-width: 100%;
          max-height: 100%;
          width: auto;
          height: auto;
          object-fit: contain;
        }


  /* Compare Card Section */
  .report-cover.compare-card {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
  }

  .report-cover.card-content {
	width: 100%;
	height: 100%;
	padding: 30px;
	background-color: #fff;
	border-radius: 0px;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  }

  .report-cover.compare-card:hover .report-cover.card-content {
	transform: scale(0.95);
	/* Shrinks the card slightly to simulate moving backward */
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
	/* Reduce shadow for a softer look */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	/* Smooth transition */
  }

  
        /* Mobile adjustments */
        @media (max-width: 768px) {
			#auto-fit-500 {
			  flex-direction: column;
			  height: auto;
			}

			 #auto-fit-500-cover {
            flex-direction: column;
            height: auto;
            
          }
  
			.report-cover.title-section {
			  padding-left: 0px;
			}
  
		  }

		  #social-protection-links-container {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          padding: 0px;
          background-color: #f7f7f7;
          width: 100%;
        }

        .social-protection-link {
          background-color: #ffffff;
          color: rgb(0, 0, 0);
          padding: 15px;
          margin: 0px;
          border: none;
          border-radius: 0px;
          text-align: center;
          text-decoration: none;
          font-size: 16px;
          flex: 1 1 calc(25% - 40px);
          /* Adjusted for margins */
          transition: background-color 0.3s ease;
          border: 1px solid black;
        }

        .social-protection-link:hover {
          background-color: #23233a;
          color: #ffffff;
        }

        .link-title {
          font-weight: bold;
        }

        .link-source {
          font-size: 12px;
          color: #F6B933;
        }

        @media (max-width: 1024px) {
          .social-protection-link {
            flex: 1 1 calc(33.333% - 40px);
            /* Adjusted for margins */
            font-size: 14px;
          }
        }

        @media (max-width: 768px) {
          .social-protection-link {
            flex: 1 1 calc(50% - 40px);
            /* Adjusted for margins */
            font-size: 14px;
          }
        }

        @media (max-width: 480px) {
          .social-protection-link {
            flex: 1 1 calc(100% - 40px);
            /* Adjusted for margins */
            font-size: 12px;
          }
        }


#auto-fit-450 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: 1rem;

}

#auto-fit-400 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 1rem;

}

#auto-fit-350 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 1rem;

}

#auto-fit-300 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1rem;

}

#auto-fit-250 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;

}

/*----------------------------
   #auto-fit
-----------------------------*/

#m-50-50 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 0px;
	max-width: 1600px;
	margin: 0px auto;
}

#m-50-50>div {
	/*background-color: #FFFFFF00;*/

	padding: 10px 0;
}

@media only screen and (max-width: 800px) {
	#m-50-50 {
		display: grid;
		grid-template-columns: 1fr;
	}
}

/*----------------------------
    button-note-to reader
-----------------------------*/

.m-button {
	width: 100%;
	height: auto;
	justify-content: center;
	align-items: center;
}

.grid {
	display: grid;
	grid-template-columns: 1fr;
	width: auto;
	gap: 5px;
}

.number {
	font-size: 20px;
	font-weight: bold;
}

.button {
	width: 30%;
	height: auto;
	padding: 10px;
	border: 2px solid #047ed8;
	margin: 1px auto;
	border-radius: 0px;
	background-color: #f17a7a;
	color: #008ffc;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0;
	cursor: pointer;
	background-color: #ffffff;
	box-sizing: border-box;
}

.button:focus {
	outline: 0;
}

.button--1 {
	background-color: #ffffff;
}

.button--1:hover {
	transition-duration: 0.3s, 0.1s;
	border: 2px solid #afafaf3d;
}

.button--1:active {
	transition-duration: 0.3s, 0.1s;
	transform: scale(0.99);
}




.i-grid-percent {
	background-color: #FFFFFF;
	margin: 0px auto;
	width: 100%;
	padding: 0px 0px;
}


.i-grid-percent {
	background-color: #FFFFFF;
	box-sizing: border-box;
	justify-content: center;
	display: grid;
	grid-template-columns: 44.5% 55.5%;
	grid-gap: 30px;
}

@media only screen and (max-width: 768px) {
	.i-grid-percent {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		padding: 20px;
	}

}





/*----------------------------
    m3-1-3 END
-----------------------------*/


#speakers-grid {
	display: grid;
	grid-template-columns: 20% 60% 20%;
	grid-gap: 0px;
	max-width: 1200px;
	align-items: center;
	justify-content: center;
	padding-left: 15px;
	padding-right: 15px;
	background-color: #f3f3f3;
	margin-bottom: 10px;
	border-radius: 0%;
}

@media only screen and (max-width: 768px) {
	#speakers-grid {
		display: grid;
		grid-template-columns: 1fr;
	}
}

#speakers-grid>div {
	background-color: #ffffff00;
	padding: 10px;
}

#speakers-grid img {
	width: 100%;
	border-radius: 50%;
}

img .gap {
	padding: 5px;
}

.moderator img {
	border: 10px solid #6672e5;
}