﻿@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
.sub_heading_primary {
  font-size: clamp(30px, 2.5vw, 3rem);
  color: #c22128;
  font-weight: bold;
  margin-bottom: 1.5em;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-style: normal;
}
.sub_heading_primary img {
  width: 100%;
  max-width: 60px;
}

.sub_heading_secondory {
  font-size: clamp(30px, 2.5vw, 3rem);
  color: #2f569c;
  font-weight: bold;
  margin-bottom: 1.5em;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-style: normal;
}
.sub_heading_secondory img {
  width: 100%;
  max-width: 60px;
}

.mini_text {
  color: #c22128;
}

.flex {
  display: flex;
  justify-content: space-between;
}
.flex .left_cont {
  border-radius: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  min-height: 500px;
  padding: 25px;
  width: 48%;
}
.flex .right_cont {
  width: 48%;
}
.flex .right_cont .img_cont {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-bottom: 25px;
}
.flex .right_cont .img_cont img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flex .right_cont .content_right {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 15px;
  border-radius: 15px;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background-color: transparent;
  color: #2f569c;
  font-size: 24px;
  border: 2px solid #2f569c;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  pointer-events: all;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background-color: #555;
}

.owl-carousel .owl-nav button.owl-prev {
  margin-left: -50px; /* pull to the left */
}

.owl-carousel .owl-nav button.owl-next {
  margin-right: -50px; /* pull to the right */
}

.owl-carousel .owl-nav.disabled {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.card {
  min-height: 180px;
  background-color: #2f569c;
  transition: all 0.3s;
  color: white;
}
.card .card-body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.card:hover {
  background-color: #c22128;
}

@media (max-width: 992px) {
  .owl-carousel .owl-nav.disabled, .owl-nav {
    display: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .flex {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .flex .left_cont {
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    min-height: 500px;
    padding: 25px;
    width: 100%;
  }
  .flex .right_cont {
    width: 100%;
  }
  .flex .right_cont .img_cont {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 25px;
  }
  .flex .right_cont .img_cont img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .flex .right_cont .content_right {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px;
    border-radius: 15px;
  }
}
