@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");

/* ---------- THEME ---------- */

.thin-text {
  font-weight: lighter !important;
}

h1 {
  font-family: "Montserrat", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
}

.text-theme-orange {
  color: #f84644;
}

.bg-theme-orange {
  background-color: #f86244;
}

.bg-theme-grey {
  background-color: #ccc;
}

.font-weight-bold {
  font-weight: 700;
}

.text-right {
  text-align: right;
}

.position-relative {
  position: relative;
}

.container {
  max-width: 1170px !important;
}

/* ---------- POPUP ---------- */

/* Styles for the popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.popup-content {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem;
}

.close {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}

.popup-responsive {
  width: 50%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .popup-responsive {
    width: 80%;
  }
}

.text-responsive {
  text-align: right;
}

@media (max-width: 768px) {
  .text-responsive {
    text-align: left;
  }
}

select:required:invalid {
  color: rgb(99, 99, 99);
}

option[value=""][disabled] {
  display: none;
}

option {
  color: black;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Some browsers will not display the caret when using calc, so we put the fallback first */
  background: url("../image/header/dropdown-arrow.png") white no-repeat 98.5% !important;
  /* !important used for overriding all other customisations */
  background: url("../image/header/dropdown-arrow.png") white no-repeat
    calc(100% - 10px) !important;
  /* Better placement regardless of input width */
}

/*For IE*/
select::-ms-expand {
  display: none;
}

input.custom-input:required:invalid {
  color: rgb(99, 99, 99);
}

input.custom-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../image/header/dropdown-arrow.png") white no-repeat 98.5% !important;
  background: url("../image/header/dropdown-arrow.png") white no-repeat
    calc(100% - 10px) !important;
}

/* For IE */
input.custom-input::-ms-expand {
  display: none;
}
/* ---------- HEADER ---------- */

.theme-button {
  /* padding: 5px;
  border-left-width: 15px;
  border-right-width: 15px;
  background-color: #f84644;
  color: white; */
  border-radius: 4px;
  border: 1px solid #f84644;
  color: white;
  background-color: #f84644;
}

.nav-link:hover {
  color: #f84644;
}

/* .banner-heading {
  color: #2D2C32 !important;
  font-family: Montserrat!important;
  font-size: 44px!important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 120% !important; 
} */

/* ---------- HEADER ---------- */

.theme-button:hover {
  background-color: black;
  color: white;
  transition: 0.3s ease-in-out;
}

/* CSS for video container */
.video-container {
  position: relative;
  width: 50%;
  max-width: 100%;
  overflow: hidden;
  background: black;
  /* Optional background color */
}

/* CSS to hide default video controls */
#video::-webkit-media-controls {
  display: none !important;
}

/* CSS for centered play button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  /* Adjust the size as needed */
  height: 64px;
  /* Adjust the size as needed */
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.play-button::before {
  content: "";
  /* Unicode for a play icon (you may need to use a different icon \25B6) */
  font-family: FontAwesome;
  /* You can change the font and icon as needed */
  font-size: 24px;
  /* Adjust the icon size as needed */
  color: red;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.submit-button {
  width: 100%;
  border-color: #f84644;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- BANNER ---------- */

.m-p-left {
  margin-left: -85px;
  padding-left: 8.5rem;
}

@media (max-width: 768px) {
  .m-p-left {
    margin-left: -130px;
    padding-left: 11rem;
  }
}

@media (max-width: 768px) {
  .m-left {
    margin-left: 45px;
  }
}

.theme-button1 {
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #2d2c32;
}

.banner-responsive {
  position: relative;
  top: 110px;
}

@media (max-width: 768px) {
  .banner-responsive {
    position: relative;
    top: 0rem;
  }
}

.button-one {
  margin-right: 10px;
  border-radius: 5px;
  padding: 7px;
  color: whitesmoke;
  background-color: black;
}

.button-two {
  margin-bottom: 50px;
  border-radius: 5px;
  padding: 6px;
  background-color: #ccc;
  color: black;
}

.theme-button1:hover {
  background-color: black;
  color: #ccc;
  transition: 0.3s ease-in-out;
}

.border-bottom-right-radius {
  border-bottom-right-radius: 7rem;
}

.background-gradient {
  background: var(--L1, linear-gradient(251deg, #f84644ad, #f86f44 114.33%));
  backdrop-filter: blur(0px);
}

.p-12 {
  padding-left: 9.5rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .p-12 {
    padding-left: 0;
  }
}

/* Default position and size for larger screens */
.custom-img {
  position: absolute;
  left: 35%;
  top: 160px;
}

/* Media query for screens wider than 1000px */
@media (min-width: 1000px) {
  .custom-img {
    position: absolute;
    left: 35%;
    /* Adjust the left position as needed */
    top: 160px;
    /* Adjust the top position as needed */
  }
}

/* play-pause-icon */
#play-pause-icon {
  color: red;
  fill: red;
  font-size: 2rem;
}

/* ---------- PAGE NAVIGATE ---------- */

/* Remove the underline and change the color for links within the custom-section */
.custom-link a {
  text-decoration: none;
  color: #000;
}

/* Reduce the font thickness for the span */
.thin-text {
  font-weight: lighter;
}

/* Style the <h1> element when the link is hovered */
/* a:hover h1 {
    font-weight: bold;
  } */

/* Style the <h1> element when the link is active (clicked) */
/* a:active h1 {
    font-weight: bold;
  } */

@media (max-width: 768px) {
  .mbl-display {
    display: none;
  }
}

.vertical-line-anim {
  border-left: 1px solid #ccc;
  padding-left: 90px !important;
}

@media (max-width: 768px) {
  .vertical-line-anim {
    border-left: 1px solid #ccc;
    padding-left: 10px !important;
  }
}

/* ---------- GRID ---------- */

.bg-grid {
  background-color: #f5efee;
}

.tb-grid {
  padding: 115px 0px;
}

.grid-heading {
  padding-top: 8px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .grid-para {
    font-size: 14px;
  }
}

.grid-padding {
  padding-left: 3rem;
}

@media (max-width: 768px) {
  .grid-padding {
    padding-left: 0.7rem !important;
  }
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.grid-item {
  flex: 0 0 calc(25% - 1rem);
  margin: 0.5rem;
  padding: 1rem;
  background-color: #fff;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.grid-item:hover {
  box-shadow: 0px 2px 15px rgba(255, 93, 93, 0.51);
  border-bottom: 3px solid red;
}

/* Adjust the styling for responsiveness as needed */
@media (max-width: 768px) {
  .grid-item {
    flex: 0 0 calc(50% - 1rem);
    /* For 2 columns on smaller screens */
  }
}

.grid-item:hover .icon-container {
  background-color: #eae1dc;
}

.grid-item:hover .circle-icon svg path {
  fill: #000000 !important;
}

.grid-item:hover .circle-icon svg.stroke-fill path {
  fill: transparent !important;
  stroke: #000;
}

.grid-item:hover .circle-icon svg.stroke-fill circle {
  fill: #000 !important;
}

/* Style for the circular icon container */
.icon-container {
  width: 60px;
  height: 60px;
  background-color: #fededa;
  border-radius: 50%;
  text-align: center;
}

.circle-icon {
  line-height: 60px;
}

.bottom-radius {
  border-bottom-right-radius: 40px;
}

/* ---------- GET IN TOUCH ---------- */

.textbox {
  flex-grow: 1;
}

.button {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Media query for mobile screens */
@media (max-width: 768px) {
  .responsive-image {
    position: static;
    margin-top: 1rem;
    margin-left: 1rem;
    width: 40%;
    max-width: 100%;
    transform: none;
  }
}

/* Media query for tablet screens */
@media (min-width: 769px) and (max-width: 1024px) {
  .responsive-image {
    position: absolute;
    width: 40%;
    left: 55%;
    top: 50px;
  }
}

/* ---------- ACCORDION ---------- */

.custom-accordion {
  background-color: #e0e0e0;
  border-radius: 20px !important;
  margin-top: 20px;
  margin-bottom: 20px;
}

.accordion-item {
  border: 20px !important;
  background-color: #efefef;
}

.custom-accordion .accordion-button {
  background-color: #efefef;
  border: none !important;
  border-radius: 20px !important;
  color: #333;
  margin-bottom: -10px;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none !important;
}

.custom-accordion .accordion-body {
  background-color: #efefef;
  border-radius: 20px;
  padding: 10px 10px 10px 25px;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

/*----Mobile Responsive-----*/
.mbl-responsive {
  margin-bottom: 8rem;
  border-bottom-right-radius: 7rem;
  padding-left: 50px;
}

@media (max-width: 768px) {
  .mbl-responsive {
    margin-bottom: 8rem;
    border-bottom-right-radius: 7rem;
    padding: 0px 20px 0px 20px;
  }
}

.accor-padding {
  padding-left: 3rem;
}

@media (max-width: 768px) {
  .accor-padding {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ---------- FOOTER ---------- */

.bg-footer {
  background-color: #f3f3f3;
}

.footer-img {
  position: relative;
  width: 15%;
  left: 43%;
  transform: translateY(-75%);
}

.vertical-line {
  border-left: 1px solid #ccc;
  padding-left: 30px;
  margin-top: 45px;
}

@media (max-width: 768px) {
  .vertical-line {
    border-left: 1px solid #ccc;
    padding-left: 10px;
    margin-top: 0px;
  }
}

.arrows {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.arrows.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  position: relative;
  top: 2px;
  /* right: 3px; */
}

.social-icon {
  font-size: 2rem;
  color: black;
}

.copy-rights {
  color: #9b9b9b;
  font-size: 0.9rem;
}

.copy-rights-1 {
  padding-left: 35px;
}

@media (max-width: 768px) {
  .copy-rights-1 {
    padding-left: 0px;
  }
}

.left-footer {
  margin-top: 30px;
  padding-left: 50px;
}

@media (max-width: 768px) {
  .left-footer {
    margin-top: 30px;
    padding-left: 10px;
  }
}

@media (max-width: 768px) {
  .footer-img {
    position: relative;
    width: 15%;
    left: 43%;
    transform: translateY(-75%);
    padding-bottom: 40px;
  }
}
.arrows.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: relative;
  bottom: 2px;
  /* right: 3px; */
}

.up-button {
  border: 1px solid white;
  margin-right: 100px;
  margin-top: 30px;
  background-color: #ffffff00;
  width: 25px;
  height: 25px;
  line-height: 0;
  opacity: 0.7;
}

.down-button {
  border: 1px solid white;
  margin-right: 100px;
  margin-top: 10px;
  background-color: #ffffff00;
  width: 25px;
  height: 25px;
  line-height: 0;
  opacity: 0.4;
}

.up-button:hover {
  background-color: #f84644;
  border: 1px solid #f84644;
  transition: 0.5s ease-in-out;
  color: white;
  opacity: 1;
}

.down-button:hover {
  background-color: #f84644;
  border: 1px solid #f84644;
  transition: 0.5s ease-in-out;
  color: white;
  opacity: 1;
}

.social-icon {
  font-size: 2rem;
  color: black;
}

.copy-rights {
  color: #9b9b9b;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .mbl-align {
    text-align: left;
  }
}

/* ---------- OTHERS ---------- */

/* Create a two-column layout */
.column {
  float: left;
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

/* .left {
  background-color: #f2f2f2;
} */

/* .right {
  background-color: #e6e6e6;
} */

/* Style links in the left column */
.left a {
  text-decoration: none;
  display: block;
  padding: 5px 10px;
  color: #333;
}

/* Style links when clicked (targeted) */
.left a:target {
  font-weight: bold;
}

/* Initially hide all content in the right column */
.right div {
  display: none;
}

/* Show the targeted content when a link is clicked */
.right div:target {
  display: block;
}

/* CSS transitions for animation */
.header {
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

.header.hidden {
  opacity: 0;
  transform: translateY(-20px);
  /* Adjust the distance as needed */
}

.image {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

.image.hidden {
  opacity: 0;
}

.link {
  cursor: pointer;
}

.custom-banner {
  background-image: url(../image/banner/banner-02.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.move-ttb {
  -webkit-animation: movettb 2s;
  animation: movettb 2s;
}

@keyframes movettb {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  background-color: #333;
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50%;
  /* Center the snackbar */
  bottom: 30px;
  /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

.custom-video {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  /* background-color: #00808097; */
}

.custom-video__container {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  /* margin: 1em; */
  font-family: "Oswald", sans-serif;
}

.custom-video__video {
  border-radius: 0.2em;
  cursor: pointer;
}

.custom-video__control {
  position: absolute;
  top: 48%;
  left: 48%;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: red;
  font-size: 1em;
  font-weight: 400;
  width: 3em;
  height: 3em;
  white-space: nowrap;
  line-height: 0;
}

video::-webkit-media-controls {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .custom-video__control {
    position: absolute;
    top: 40%;
    left: 45%;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: red;
    font-size: 1em;
    font-weight: 400;
    width: 1em;
    height: 1em;
    white-space: nowrap;
    line-height: 0;
  }

  .custom-video__container {
    height: auto;
  }
}

/*Bootstrap Carousel - Vertical Start by Patrick*/
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
  }

  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  filter: alpha(opacity=50);
  opacity: 1;
}

.carousel-control.left {
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0.0001) 100%
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0.0001) 100%
  );
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0.0001))
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0.0001) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.0001) 0,
    rgba(0, 0, 0, 0.5) 100%
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.0001) 0,
    rgba(0, 0, 0, 0.5) 100%
  );
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.0001)),
    to(rgba(0, 0, 0, 0.5))
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.0001) 0,
    rgba(0, 0, 0, 0.5) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: 0.9;
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
}

.carousel-control .icon-prev:before {
  content: "\2039";
}

.carousel-control .icon-next:before {
  content: "\203a";
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }

  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }

  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}

.ticker-headline {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 16px 0;
  margin: 0;
  font-size: 18px;
}

.carousel.vertical .carousel-inner {
  height: 100%;
  width: auto;
}

.carousel.vertical .carousel-inner > .item {
  width: auto;
  padding-right: 50px;
  transition: 0.6s ease-in-out top;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel.vertical .carousel-inner > .item {
    transition: 0.6s ease-in-out;
  }

  .carousel.vertical .carousel-inner > .item.next,
  .carousel.vertical .carousel-inner > .item.active.right {
    transform: translate3d(0, 100%, 0);
    top: 0;
  }

  .carousel.vertical .carousel-inner > .item.prev,
  .carousel.vertical .carousel-inner > .item.active.left {
    transform: translate3d(0, -100%, 0);
    top: 0;
  }

  .carousel.vertical .carousel-inner > .item.next.left,
  .carousel.vertical .carousel-inner > .item.prev.right,
  .carousel.vertical .carousel-inner > .item.active {
    transform: translate3d(0, 0, 0);
    top: 0;
  }
}

.carousel.vertical .carousel-inner > .active,
.carousel.vertical .carousel-inner > .next,
.carousel.vertical .carousel-inner > .prev {
  display: block;
}

.carousel.vertical .carousel-inner > .active {
  top: 0;
}

.carousel.vertical .carousel-inner > .next,
.carousel.vertical .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel.vertical .carousel-inner > .next {
  top: 100%;
}

.carousel.vertical .carousel-inner > .prev {
  top: -100%;
}

.carousel.vertical .carousel-inner > .next.left,
.carousel.vertical .carousel-inner > .prev.right {
  top: 0;
}

.carousel.vertical .carousel-inner > .active.left {
  top: -100%;
}

.carousel.vertical .carousel-inner > .active.right {
  top: 100%;
}

.carousel.vertical .carousel-control {
  left: auto;
  width: 50px;
}

.carousel.vertical .carousel-control.up {
  top: 0;
  right: 0;
  bottom: 50%;
}

.carousel.vertical .carousel-control.down {
  top: 50%;
  right: 0;
  bottom: 0;
}

.carousel.vertical .carousel-control .icon-prev,
.carousel.vertical .carousel-control .icon-next,
.carousel.vertical .carousel-control .glyphicon-chevron-up,
.carousel.vertical .carousel-control .glyphicon-chevron-down {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}

.carousel.vertical .carousel-control .icon-prev,
.carousel.vertical .carousel-control .glyphicon-chevron-up {
  left: 50%;
  margin-left: -10px;
  top: 50%;
  margin-top: -10px;
}

.carousel.vertical .carousel-control .icon-next,
.carousel.vertical .carousel-control .glyphicon-chevron-down {
  left: 50%;
  margin-left: -10px;
  top: 50%;
  margin-top: -10px;
}

.carousel.vertical .carousel-control .icon-up,
.carousel.vertical .carousel-control .icon-down {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}

.carousel.vertical .carousel-control .icon-prev:before {
  content: "‹";
}

.carousel.vertical .carousel-control .icon-next:before {
  content: "›";
}

/*Bootstrap Carousel - Vertical End by Patrick*/

/*Custom CSS */

.play-icon-container {
  position: absolute;
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
  cursor: pointer;
}

.play-icon-container:hover {
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
  opacity: 0.7;
}

.play-icon-container img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.play-icon {
  position: absolute;
  top: 34%;
  left: 40%;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: red;
  font-size: 1em;
  font-weight: 400;
  width: 3em;
  height: 3em;
  white-space: nowrap;
  line-height: 0;
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  margin: -7px 0 0 -4px;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #f84644;
}

.circleImage {
  position: relative;
  top: 30px;
  /* bottom: 23px; */
  width: 250px;
  margin-right: 95px;
  margin-bottom: -34px;
}

/*Added today 12.10.2023*/

body.modal-open {
  overflow: hidden;
}

#VideoModal,
#VideoModal-1 {
  overflow: hidden;
}

#VideoModal .modal-dialog,
#VideoModal-1 .modal-dialog,
#VideoModal-1 .modal-dialog,
#VideoModal-1 .modal-dialog {
  width: 95%;
  max-width: 95%;
  margin: 0 auto;
}

#VideoModal .modal-dialog .modal-content,
#VideoModal-1 .modal-dialog .modal-content {
  background: transparent;
  border: 0;
  margin: 0 auto;
  width: auto;
}

#VideoModal .modal-dialog .modal-content .modal-header,
#VideoModal-1 .modal-dialog .modal-content .modal-header {
  border: 0;
}

#VideoModal .modal-dialog .modal-content .modal-header .close,
#VideoModal-1 .modal-dialog .modal-content .modal-header .close {
  background: transparent;
  border: 0;
  color: #fff;
  right: -30px;
}

#VideoModal .modal-dialog .modal-content .modal-body,
#VideoModal-1 .modal-dialog .modal-content .modal-body {
  height: 93vh;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .img-hide img {
    visibility: hidden;
  }

  #VideoModal .modal-dialog .modal-content .modal-body,
  #VideoModal-1 .modal-dialog .modal-content .modal-body {
    height: auto;
  }

  #VideoModal .modal-dialog .modal-content .modal-header .close,
  #VideoModal-1 .modal-dialog .modal-content .modal-header .close {
    right: -8px;
    top: -10px;
  }
}

#whatsapp-icon {
  color: #25d366;
}

.vertical-line-ph-no {
  border-left: 1px solid #ccc;
  padding-left: 1.5rem;
}

.custom-placeholder::placeholder {
  color: #BABABB;
}