
    .section_padding12 {

        margin-top: -50px;

	padding: 0px 0;

	padding-bottom: 10px;

}

.section_heading {

	margin-bottom: 30px;

}

.section_heading h2 {

	color: #222;

	font-size: 40px;

	font-weight: 700;

	margin-bottom: 25px;

	line-height: 30px;

	text-transform: uppercase;

}

.section_heading h2 span {

	color: #207178;

}

.section_heading p {

	font-size: 16px;

	margin: 10px 0 5px;

}



.single-blog {

	transition: all 0.30s ease 0s;

}

.single-blog:hover {

	transform: translateY(-10px);

}

.single-blog .post-img {

	position: relative;

}

.single-blog .post-img img {

	max-width: 100%;

	height: auto;

}

.single-blog .post-img:after {

	content: "";

	position: absolute;

	width: 100%;

	height: 100%;

	top: 0;

	left: 0;

	opacity: 0;

	background: rgba(255, 69, 0, 0.6);

	transition: all 0.30s ease 0s;

}

.single-blog:hover .post-img:after {

	opacity: 1;

}

.single-blog .single_blog {

	border-top: none;

	padding: 25px 20px 25px;

	background: #fff;

	position: relative;

}

.single-blog .post-title {

	margin: 0 0 15px 0px;

	font-size: 20px;

	color: #333;

	display: inline-block;

	text-transform: capitalize;

	transition: all 0.3s ease 0s;

}

.single-blog .blog-text {

	font-size: 15px;

	line-height: 23px;

	margin: 7px 0 10px;

}

.icon-area {

	list-style: none;

	font-size: 14px;

	padding: 0;

}

.icon-area>li {

	display: inline-block;

	margin-right: 5px;

	color: #555;

	font-style: italic;

}

.icon-area>li i {

	color: orangered;

	margin-right: 5px;

	font-size: 14px;

}

.btn-area a {

	background: #207178;

	font-size: 14px;

	letter-spacing: 0.5px;

	padding: 11px 22px;

	margin: 10px 0px 10px;

	border: none;

	font-weight: 500;

	color: #fff;

	text-transform: capitalize;

	transition: all 0.2s ease-in-out 0s;

}


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    border-bottom: 3px solid #ededed;
    background-color: #ffffff;
    min-height: 15px;
    display: flex;
}

.hidden {
  display: none;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


@-webkit-keyframes slideInDown {
  0% {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
  }
  @keyframes slideInDown {
  0% {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
}


.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes slideInUp {
  0% {
  -webkit-transform: translateY(15%);
  transform: translateY(15%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
  }
  @keyframes slideInUp {
  0% {
  -webkit-transform: translateY(15%);
  transform: translateY(15%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
  }

.header .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

/* Mobile menu styles */
.header .header-row .mobile-menu {
  position: absolute;
  background-color: #2376ad;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 3px solid #e9900a;
}

.header .header-row .mobile-menu {
  background-color: #fff;
  padding: 15px 20px;
  box-shadow: 0 5px 8px rgb(0 0 0 / 15%);
}

.header .header-row .mobile-menu ul {
  list-style: none;
}

.header .header-row .mobile-menu ul li {
  margin-bottom: 10px;
}

.header .header-row .mobile-menu ul li:hover {
  background-color: rgba(222, 225, 226, 0.466);
}


/* Mega menu styles */
.header .header-row .mobile-menu ul li.mega-menu {
  position: relative;
}

.header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper {
  display: none;
}

.header .header-row .mobile-menu ul li a {
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgb(128, 131, 131);
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
}

.header .header-row .mobile-menu ul li.mega-menu:hover .mega-menu-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
}

.header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper .mega-menu-col {
  margin-bottom: 20px;
}

.header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper .mega-menu-col h5 {
  font-weight: 800;
  text-transform: uppercase;
}

.header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper .mega-menu-col ul li a {
  font-weight: 400;
}



/* Simple drop down menu */
.header .header-row .mobile-menu ul li.dropdown {
  position: relative;
}

.header .header-row .mobile-menu ul li.dropdown .sub-menu-wrapper {
  display: none;
}

.header .header-row .mobile-menu ul li.dropdown .sub-menu-wrapper ul li a {
  font-weight: 400;
  padding-left: 15px;
}

.header .header-row .mobile-menu ul li.dropdown:hover .sub-menu-wrapper {
  display: block;
}


/* Hide desktop menu on mobile up to 48em */
@media (max-width: 48em) {
  .header .header-row .header-right .main-menu {
    display: none;
  }
}


/* Show menu on desktop 48em and above */
@media (min-width: 48em) {

  .header {
    border-bottom: 3px solid #ededed;
    background-color: #ffffff;
  }

  .header .header-row {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      position: relative;
  }

  .header .mobile-toggler {
    display: none;
  }

  .header .header-row .header-right .main-menu {
    display: flex;
  }

  .header .header-row .header-right .main-menu li.menu-item {
    display: block;
  }

  .header .header-row .header-right .main-menu li.dropdown {
    position: relative;
  }

  .header .header-row .header-right .main-menu li.menu-item:not(:last-child) {
    margin: 0 20px 0 0;
  }

  .header .header-row .header-right .main-menu li.menu-item > a {
    font-size: 11px;
    font-weight: 600;
    line-height: 20px;
    color: #444444;
    padding: 25px 14px 20px 14px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
  }

  .header .header-row .header-right .main-menu li.menu-item a.active {
    color: #e9900a;
  }

  .header .header-row .header-right .main-menu .sub-menu-wrapper {
    position: absolute;
    text-align: left;
    margin: 0;
    z-index: 111;
    min-width: 100%;
    line-height: 20px;
    display: none;
  }

  /* Show dropdown menu on hover */
  .header .header-row .header-right .main-menu > li.menu-item:hover .sub-menu-wrapper {
    display: block;
  }

  .header .header-row .header-right .main-menu .dropdown ul.sub-menu {
    background-color: #ffffff;
    border-top: 3px solid #e9900a;
    min-width: 200px;
    padding: 0px 0;
    box-shadow: 0 5px 8px rgb(0 0 0 / 15%);
    text-transform: none;
  }

  .header .header-row .header-right .main-menu li.menu-item:hover .sub-menu-wrapper li.menu-item {
    padding: 0;
    margin-right: 0;
  }

  .header .header-row .header-right .main-menu li.menu-item:hover .sub-menu-wrapper li.menu-item > a {
    padding: 8px;
    display: block;
    text-transform: none;
    color: #6d6c6c;
    font-size: 14px;
    font-weight: 400;
  }

  .header .header-row .header-right .main-menu .sub-menu-wrapper ul li:not(:last-child) {
    border-bottom: 1px solid rgba(204, 204, 204, 0.432);
  }
  .header .header-row .header-right .main-menu .sub-menu-wrapper ul li:hover {
    background-color: #ededed;
  }

  /* Mega menu styles */
  .header .header-row .header-right .main-menu .mega-menu .mega-menu-wrapper {
    position: absolute;
    left: 0px;
    display: none;
    padding: 20px 25px;
    background-color: #ffffff;
    border-top: 3px solid #e9900a;
    width: 100%;
    box-shadow: 0 5px 8px rgb(0 0 0 / 15%);

  }
  /* Show mega menu on hover */
  .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
  }
  .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper .mega-menu-col h5 {
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-left: 8px;
    font-size:11px;
  }
  .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper .mega-menu-col ul {
    list-style: none;
    margin-left: 0px;
    margin-right: 20px;
  }
  .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper .mega-menu-col ul li a {
    text-decoration: none;
    padding: 8px;
    display: block;
    font-size: 10px;
    color: rgba(149, 151, 151, 1);
  }

  .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper .mega-menu-col ul li:hover a {
    background-color: rgba(222, 225, 226, 0.466);
  }

}

.header .mobile-toggler {
    color: #ffffff;
    background-color: #0088cc;
    cursor: pointer;
    padding: 7px 13px;
    text-align: center;
    font-size: 13px;
    vertical-align: middle;
    margin: 8px 0 8px 1em;
    line-height: 20px;
}

.hero {
  background: rgb(5,146,200);
  background: linear-gradient(107deg, rgba(5,146,200,1) 0%, rgba(15,113,117,1) 100%);
  padding: 50px 20px;
  min-height: 80vh;
  color: #fff;
  display: flex;
  text-align: center;
  align-items: center;
  font-size: 40px;
}

@media (min-width: 48em) {
  .hero {
    font-size: 60px;
  }
}

/* Container styles */
.container {
    margin-right: auto;
    margin-left: auto;
  }

  @media (max-width: 36em) {
    .container {
      max-width: 540px;
    }
  }

  @media (min-width: 36em) {
    .container {
      max-width: 540px;
    }
  }

  @media (min-width: 48em) {
    .container {
      max-width: 720px;
    }
  }

  @media (min-width: 62em) {
    .container {
      max-width: 960px;
    }
  }

  @media (min-width: 75em) {
    .container {
      max-width: 1140px;
    }
  }
  @media (min-width: 87.5em) {
    .container {
      max-width: 1380px;
    }
  }
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-left {
    flex: 0;
}

.header-right {
    display: flex;
    align-items: center;
}
.icon {
    margin-left: 15px; /* Space between icons */
    font-size: 20px; /* Adjust icon size as needed */
    color: black; /* Change color to black */
    cursor: pointer; /* Change cursor to pointer on hover */
}
/* Ensure the menu is displayed as flex */
.header .main-menu {
    display: flex;
    list-style: none;
    padding: 0;
}
.header .main-menu li {
    margin: 0 15px; /* Adjust spacing between menu items */
}
/* Additional styles for icons on hover, if desired */
.icon:hover {
    color: #e9900a; /* Change color on hover */
}

.search-container {
    position: absolute; /* Positioning to allow sliding */
    top: 0;
    right: -300px; /* Start hidden outside of view on the right */
    transition: right 0.3s ease; /* Transition effect for sliding */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center the input vertically */
    background: white; /* Background color for search bar */
    padding: 10px; /* Some padding around the input */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for depth */
    z-index: 11111;
}

.search-container.hidden {
    right: -300px; /* Hide it off screen on the right */
}

.search-container.visible {
    right: 0; /* Show it in view */
}

.search-container input {
    border: 1px solid #ccc; /* Border style for the input */
    padding: 5px; /* Padding for the input */
    margin-right: 10px; /* Space between input and button */
}

.search-container.hidden {
    display: none; /* Hide it completely */
}



#close-search {
    background: transparent; /* Transparent background */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor */
}
