#intro-video{
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}


.box {
  box-shadow: 0px 9px 42.32px 3.68px rgba(25, 38, 62, 0.11);
  border-radius: 1px;
  height: 200px;
  padding: 5%;
  margin: 2%;
}

.box-content {
  position: relative;
}

.box .box-header{
  height: 50px;
  margin-top: 10%;
  margin-bottom: 5%;
  top: 0;
}

.box .box-body {
  position: absolute;
  width: 100%;
  height: 100% !important;
}

.box,
.box a{
  color: #4d4d4d;
}

.box:hover
, .box:hover a{
  background-color: #b32b2b;
  color: #f4f4f4;
}


.menu-item {
  cursor: pointer;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* This will create columns with a minimum width of 200px, filling the available space */
  grid-gap: 2px; /* Optional: Add some gap between grid items */
  /*background-color: #2196F3;  */
  /*padding: 10px;*/
}
.grid-item {
  /*background-color: rgba(255, 255, 255, 0.8);*/
  /*border: 1px solid rgba(0, 0, 0, 0.8);*/
  /*padding: 20px;*/
  text-align: center;
}

/*Fonts*/
.text-black {
  color: #000000;
}

.text-white {
  color: #ffffff;
}

.text-default {
  color: #687693;
}

.text-dark-red {
  color: #b32b2b !important;
}

.tv-contact-info a{
  color: #b32b2b;
}

.tv-contact-info i{
  color: #878282;
}

.tv-contact-info-section h4{
  color: #b32b2b !important;
}


.list-with-bullets {
  list-style-type: inherit;
}

.icon {
  background-color: #b32b2b !important;
  box-shadow: 0 0 0 5px rgb(255 0 0 / 20%)!important;
}

.contact-info-heads {
  display: flex !important;
  align-items: center;
}



.tv-image-section {
  display: inherit;
}

@media (max-width: 991px) {
  .tv-image-section {
    display: none;
  }
}

hr.red-line{
  border: 1px #b32b2b solid;
}

.tv-cards {
  display: flex;
  flex-wrap: wrap;
  /*grid-template-columns: auto auto auto; !* This will create columns with a minimum width of 200px, filling the available space *!*/
  column-gap: 0.8rem;
  row-gap: 0.8rem;
  padding-left: 85px;
  justify-content: center;
  align-items: center;
  align-content: center;
}

@media (max-width: 991px){
  .tv-cards {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* This will create columns with a minimum width of 200px, filling the available space */
    padding-left: 0px;
  }
  
  .tv-card {
    width: 100%;
  }
}

.tv-card {
  border: 1px rgba(179, 43, 43, 0.2) solid;
  box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  padding: 2%;
  width: 280px;
  height: 350px;
}

.tv-card-header {
  text-align: center;
  border-bottom: #b32b2b 1px solid;
}

.tv-card-body {
  margin: 2%;
  text-align: center;
  font-size: 16px;
}


.mb-3 {
  margin-bottom: 3%;
}


.text-justify {
  text-align: justify;
}


/*Picture Caption Hover Begin*/
figure {
  width: 100%;
  /* height: 300px; */
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: top;
  border: 5px solid #fff;
  box-shadow: 0 0 5px #ddd;
  margin: 1em;
}

figcaption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  font-weight: bold;
  width: 100%;
  height: 100%;
  display: table;
}

figcaption div {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  top: 20px;
  opacity: 0;
  color: #b32b2b;
  text-transform: uppercase;
}

figcaption div:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 40%;
  text-align: center;
  margin: auto;
  width: 0%;
  height: 2px;
  background: #b32b2b;
}

figure img {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

figure:hover figcaption {
  background: rgba(255, 255, 255, 0.3);
}

figcaption:hover div {
  opacity: 1;
  top: 0;
}

figcaption:hover div:after {
  width: 50%;
}

figure:hover img {
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
}
/*Picture Caption Hover End*/

ul.reset {
  list-style-type: inherit;
  padding: inherit;
  margin-left: 5px;
  color: #687693
}

.text-bold {
  font-weight: bold;
}

.feature-grid:hover ul {
  color: black; 
}

.text-arial {
    font-family: Arial, Helvetica, sans-serif;
}