/* Style for the container columns with padding between blocks */
.col-xs-6, .col-sm-6, .col-md-3, .col-lg-3 {
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 15px; /* Add bottom margin to provide spacing between rows on mobile */
}
 .social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: right;
    flex-wrap: nowrap;
    gap: 10px; /* Adds space between icons */
  }

.modern-label {
  display: inline-block;
  background: linear-gradient(to right, #111827, #1f2937); /* blackish gradient */
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  width: fit-content;
}
.label-underline {
  margin: 0;
  border: none;
  border-top: 2px solid #1f2937; /* dark gray/blackish tone */
  width: 100%;
}
.modern-label:hover {
  background: linear-gradient(to right, #1f2937, #374151); /* slightly lighter on hover */
  transform: scale(1.03);
}

.panel.panel-default-parent {
    width: 100%;  /* Take up full width on mobile */
    box-sizing: border-box;  /* Include padding and borders in the width calculation */
    margin-bottom: 10px;  /* Reduce bottom margin for better spacing on mobile */
}
/* Custom class for bold blue text */
.bold-blue {
  font-weight: bold;
  color: #007BFF; /* A nice shade of blue */
  transition: color 0.3s ease;
}

.bold-blue:hover {
  color: #0056b3; /* Darker blue when hovered */
}

.highlight-text {
    font-weight: 600; /* Slightly bold but not overpowering */
    color: #d35400;  /* Warm orange color for distinction */
   
    padding: 0 6px; /* Adds space around the highlighted text */
   
    transition: all 0.3s ease; /* Smooth transition effect when hovering */
}

.highlight-text:hover {
    background-color: #f5b041; /* Slightly darker shade of yellow on hover */
    color: #ffffff; /* White text when hovered to stand out */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover for more focus */
}
/* Style for the panels with shadows, rounded corners */
.panel.panel-default {
  width: 100%;  /* Ensure panels take full width of their container */
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;  /* Margin for spacing between panels */
}
.square-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* On small screens (e.g., max width 768px), reduce the height */
@media (max-width: 480px) {
  .square-image {
    height: 140px;
  }
}
/* Ensures the image covers the space */
/* Style for the panel body */
.panel-body {
  padding: 10px;
  text-align: center;
}

/* Style for the images with rounded corners and transition effect */
.panel-body img {
  border-radius: 0px;
  transition: transform 0.3s ease;
}

.panel-body img:hover {
  transform: scale(1.05);
}

/* Style for the text inside the panel */
.link-text {
  font-size: 16px;  /* Default font size for larger screens */
  margin: 10px 0;
  color: #333;
  font-weight: bold;
}

/* Style for the Read More button */
.btn.btn-danger.btn-xs {
  border-radius: 20px;
  padding: 5px 10px;
  transition: background-color 0.3s ease;
}



.panel.panel-default {
  width: 100%;  /* Ensure panels take full width of their container */
  /* Limit max-width */
  height: 270px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;  /* Margin for spacing between panels */
}
/* Hover effect for the button */
.btn.btn-danger.btn-xs:hover {
  background-color: #c82333;
}
.row {
  display: flex;
  flex-wrap: wrap;
}

.col-md-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}


/* Mobile view adjustments */
@media (max-width: 767px) {
  .col-xs-6 {
    padding-right: 10px; /* Less padding between mobile columns */
    padding-left: 10px;
  }
  
  
  /* Adjust the font size for smaller screens */
  .link-text {
    font-size: 14px;  /* Slightly smaller font size for tablets */
  }
}

/* Extra Small (Mobile) Adjustments */
@media (max-width: 480px) {
  .link-text {
    font-size: 12px;  /* Further reduce font size for mobile devices */
  }
}


.my-navbar,
.my-navbar .navbar-toggle {
	border-color: #425766
}

.fa,
.topnav a {
	text-align: center;
	text-decoration: none
}

.fa,
.pagination a,
.topnav a {
	text-decoration: none
}

.fa {
	padding: 15px;
	font-size: 24px;
	width: 50px;
	margin: 4px 2px;
	border-radius: 50%
}

.center,
.centerImg {
	display: block;
	margin: 15px auto
}

body {
	overflow-x: hidden
}

.center {
	max-width: 100%;
	height: 330px
}

h2
{
font-size: 16px;
}
	
h3 {
	color: green
}
h3:before {
    content: "💡";
    margin-right: 10px;
    font-size: 22px;
    color: #4CAF50 !important;
}
 .divider {
    margin-top: 10px;
    border-bottom: 2px solid #007bff;
    width: 100%;
  }
.centerImg {
	width: 70%
}

.pagination {
	display: inline-block
}
.label-custom {
  
    color: #b05800;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .label-custom:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
  }

  .label-custom:active {
    background-color: #004085;
    transform: translateY(0);
  }
#grad1 {
	height: auto;
	padding-top:15px;
	background: #002147;
	background: linear-gradient(#002147, #00f)
}

.fa:hover {
	opacity: .7
}

.fa-facebook {
	background: #3b5998;
	color: #fff
}

.fa-twitter {
	background: #55acee;
	color: #fff
}

.fa-google {
	background: #dd4b39;
	color: #fff
}

.fa-linkedin {
	background: #007bb5;
	color: #fff
}

.fa-youtube {
	background: #b00;
	color: #fff
}

.my-navbar {
	background-color: #004080
}

.my-navbar .navbar-brand,
.my-navbar .navbar-nav>li>a {
	color: #fff
}

.my-navbar .navbar-brand:focus,
.my-navbar .navbar-brand:hover {
	color: #aad5ff
}

.my-navbar .navbar-link,
.my-navbar .navbar-nav>li>.dropdown-menu>li>a,
.my-navbar .navbar-text {
	color: #d7e2e9
}

.my-navbar .navbar-nav>li>a:focus,
.my-navbar .navbar-nav>li>a:hover {
	color: #fff;
	background-color: #b05800
}

.my-navbar .navbar-nav>li>.dropdown-menu {
	background-color: #2894ff
}

.my-navbar .navbar-nav>li>.dropdown-menu>li>a:focus,
.my-navbar .navbar-nav>li>.dropdown-menu>li>a:hover {
	color: #fff;
	background-color: #004182
}

.my-navbar .navbar-nav>li>.dropdown-menu>li>.divider {
	background-color: #69899f
}

.my-navbar .navbar-nav>.active>a,
.my-navbar .navbar-nav>.active>a:focus,
.my-navbar .navbar-nav>.active>a:hover {
	color: #e5dbdb;
	background-color: #b05800
}

.my-navbar .navbar-nav>.open>a,
.my-navbar .navbar-nav>.open>a:focus,
.my-navbar .navbar-nav>.open>a:hover {
	color: #e5dbdb;
	background-color: #425766
}

.my-navbar .navbar-toggle:focus,
.my-navbar .navbar-toggle:hover {
	background-color: #425766
}

.my-navbar .navbar-toggle .icon-bar {
	background-color: #d7e2e9
}

.my-navbar .navbar-collapse,
.my-navbar .navbar-form {
	border-color: #d7e2e9
}

.my-navbar .navbar-link:hover {
	color: #e5dbdb
}

.pagination a {
	color: #000;
	float: left;
	padding: 8px 16px;
	border: 1px solid #ddd
}

.pagination a.active {
	background-color: #4caf50;
	color: #fff;
	border: 1px solid #4caf50
}

.pagination a:hover:not(.active),
.topnav a:hover {
	background-color: #ddd
}

.pagination a:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px
}

.pagination a:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px
}
 h2 {
        font-size: 24px; /* Adjust this value to match the desired font size */
       color: #000000;
		font-weight: bold;
		
       
    }

.post-style-simple {
	color: #444444; /* Choose the preferred color */
    font-size: 15px;
	text-align: justify;
	 word-wrap: break-word;
  width: 100%;
    line-height: 1.5;
	
	font-family: Verdana, Arial, Times, serif;
	
}
.post-style-simple-list {
	color: #000;
	font-size: 14px;
	font-family: Verdana, Arial, Times, serif;
	text-align: justify;
	list-style: none;
	
	
}

.post-style {
	color: #000;
	font-size: 17px;
	font-family: Verdana, Arial, Times, serif;
	text-align: justify;
	text-justify: auto
}

.blockquote-level-1 {
	color: #000;
	font-size: 24px;
	font-family: serif;
	text-align: justify
}

.link-text {
	color: #000;
	font-size: 15px;
	text-style: bold;
	padding: 5px
}

.fond {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #00506b
}

.style_prevu_kit {
	border: 0
}

.style_prevu_kit:hover {
	opacity: .6
}

.centered-quote {
	position: absolute;
	top: 120%;
	left: 100%;
	transform: translate(-50%, -50%)
}

div.wrapper {
	float: left;
	position: relative
}

div.description {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #000;
	color: #fff;
	opacity: .6
}

p.description_content {
	padding: 10px;
	margin: 0;
	font-size: 30px
}

#upper-style {
	margin-bottom: 180px;
	background-color: #fff
}

#top-text {
	color: #641e16;
	font-size: 44px;
	text-align: left;
	text-style: bold;
	text-shadow: 3px 2px 3px green
}

#topy-text {
	color: #483d8b;
	font-size: 19px;
	text-align: left;
	font-family: Georgia, serif;
	margin-left: auto
}

#glowing-image:hover {
	z-index: 2;
	-webkit-transition: .4s ease-in;
	-webkit-transform: scale(1.05);
	-ms-transition: .4s ease-in;
	-ms-transform: scale(1.05);
	-moz-transition: .4s ease-in;
	-moz-transform: scale(1.05);
	transition: .4s ease-in;
	transform: scale(1.05)
}

li {
	font-size: 18px
}

#upper-section {
	height: 40px;
	background-color: #f5b041
}
.topnav {
  overflow: hidden;
  background-color: #002147;
  transition: max-height 0.7s ease, padding 0.7s ease;
  max-height: 60px; /* initial height for desktop */
}

.topnav a {
  float: left;
  color: #f2f2f2;
  padding: 14px 16px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.topnav a:hover {
  color: #000;
}

.topnav a.active {
  background-color: #4caf50;
  color: #fff;
}

.topnav .icon {
  display: none;
}

/* Responsive menu */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
  }

  .topnav.responsive {
    max-height: 500px; /* allow full expansion for links */
    transition: max-height 0.4s ease;
  }

  .topnav.responsive a {
    display: block;
    text-align: left;
    float: none;
  }
}

.logo-style {
    margin-left: 60px;
    float: left;
    width: 70px;
    height: 60px;
}
.span-para-point {
    color: #8B0000;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 19px;
}
@media screen and (max-width:600px) {
	.topnav a:not(:first-child) {
		display: none
	}

	.topnav a.icon {
		float: right;
		display: block
	}

	.topnav.responsive {
		position: relative
	}

	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0
	}

	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left
	}
	
}

