@charset "utf-8";
/* CSS Document */
/* Default to 30% viewport width */
.custom-img {
  width: 30vw;
  float: right;
  margin-left: 20px;
}
@media (min-width: 1400px) {
  .custom-img {
    width: 30vw;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .custom-img {
    width: 40vw;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .custom-img {
    width: 50vw;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .custom-img {
    width: 40vw;
  }
}
@media (max-width: 767px) {
  .custom-img {
    width: 30vw;
  }
}
.img-fluid-hover {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-fluid-hover:hover {
  transform: scale(0.9);
  opacity: 0.7;
  transition: opacity 0.8s, transform 0.8s;
}
.img-fluid-hover:not(:hover) {
  transform: scale(1.0);
  opacity: 1.0;
  transition: opacity 0.8s, transform 0.8s;
}
.column-title {
  margin-top: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #000000;
  margin-bottom: 10px;
  position: relative;
  color: rgba(108,29,0,1.00);
}
.column-title:after {
  content: " ";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40%;
  border-bottom: 1px solid #000000;
}
.btn {
  border-width: 0;
  border-bottom-width: 2px;
  border-radius: 2px;
}
.btn.btn-primary {
  background: rgba(0, 203, 200, 1.00);
  border-color: rgba(2, 239, 0, 1.00);
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: rgba(2, 239, 0, 1.00);
}
.text-overlay {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  padding: 10px 20px;
  width: 60%; /* Makes the text overlay take up 80% of the screen width */
  max-width: 1200px; /* Limits the maximum width to 1200px */
}
.text-overlay .drop-shadow {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}
.item {
  position: relative; /* Set position for the parent element */
}
.text-overlay .fa-3x {
  font-size: 2.5rem; /* Adjust to your preference */
  line-height: 1.2;
}
.text-overlay .h4 {
  font-size: 1.75rem; /* Adjust to your preference */
}
/* Styling for smaller screens */
@media (max-width: 768px) {
  .text-overlay .fa-3x {
    font-size: 1.5rem; /* Reduce the font size */
  }
  .text-overlay .h4 {
    font-size: 1.0rem; /* Reduce the font size */
  }
}
@media (min-width: 1px) {
  .carousel-margin {
    margin-top: 80px;
  }
}
@media (min-width: 992px) {
  .carousel-margin {
    margin-top: 90px;
  }
}
.de_light footer a {
  color: #010BB4;
}
.de_light footer a:hover {
  color: #AB0002;
}
.de_light footer {
  color: black;
  background: rgba(141, 203, 255, 1.00);
  background-image: url("../images/misc/bg_footer.jpg");
  background-size: cover;
  border: none;
}
.de_light footer strong {
  color: rgba(0, 0, 0, 1.00);
}
.de_light footer .subfooter {
  color: rgba(245, 233, 184, 1.00);
}
.de_light footer .subfooter a {
  color: rgba(59, 98, 244, 1.00);
}
.de_light footer .subfooter a:hover {
  color: rgba(255, 86, 86, 1.00);
}
.color-red {
  color: rgba(171, 0, 0, 1.00);
  font-weight: 600;
}
.color-green {
  color: rgba(0, 98, 0, 1.00);
  font-weight: 600;
}
.color-blue {
  color: rgba(1, 1, 185, 1.00);
  font-weight: 600;
}
.color-yellow {
  color: rgba(58, 43, 0, 1.00);
  font-weight: 600;
}
.color-coral {
  color: rgba(122, 32, 0, 1.00);
  font-weight: 600;
}
.font-12px {
  font-size: 12px;
}
.font-14px {
  font-size: 14px;
}
.font-16px {
  font-size: 16px;
}
.font-18px {
  font-size: 18px;
}
.font-24px {
  font-size: 24px;
}
.font-30px {
  font-size: 30px;
}
.fa-icons-footer {
  transition: 0.8s;
  color: coral;
}
.fa-icons-footer:hover {
  color: deepskyblue;
}
.font-bold {
  font-weight: 800;
}
strong {
  font-weight: 600;
}
.footer-icon {
    width: 2.5rem;
    height: 2.5rem;
	stroke:  rgba(1,11,180,1.00);
    stroke-width: 25px;
    fill: rgba(1,11,180,1.00); /* Default color */
    transition: fill 0.3s ease; /* Smooth transition */
	transform: translate(0px, -10px); /* Moves the SVG */
}

.footer-icon:hover {
    fill: darkred; /* Change color on hover */
	stroke: darkred;
}
.nav-icon {
    width: 1.5rem;
    height: 1.5rem;
	stroke:  rgba(1,11,180,1.00);
    stroke-width: 15px;
    fill: rgba(1,11,180,1.00); /* Default color */
    transition: fill 0.3s ease; /* Smooth transition */
/*	transform: translate(0px, -5px);*/
}

.nav-icon:hover {
    fill: darkred; /* Change color on hover */
	stroke: darkred;
}