/********** Template CSS **********/
:root {
  --primary: #015fc9;
  --secondary: #0dd3f1;
  --light: #f6f7fc;
  --dark: #15233c;
  --color-primary: #333; /* Your color code */
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.pad30k {
  padding: 1rem 3rem 1rem 3rem !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #ffffff;
  background: #ff8b00;
}

.btn.btn-primary:hover {
  background: #ff8b00;
  border-color: #ff8b00;
}

.btn.btn-secondary:hover {
  background: #ff8b00;
  border-color: #ff8b00;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand img {
  max-height: 60px;
}

.navbar .navbar-nav .nav-link {
  margin-left: 25px;
  padding: 10px 0;
  color: #fff;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #ff8b00;
}

.navbar-light .navbar-nav .nav-link:focus {
  color: #ff8b00 !important;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    max-height: 45px;
  }

  .navbar .navbar-nav {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .navbar .nav-item .dropdown-menu {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
  border-radius: 50px;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.carousel-item .slider-1 {
  height: 90vh;
}

.page-header {
  background: url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
  width: 100% !important;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #696e77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: #ff8b00;
}

/*** Facts ***/
@media (min-width: 992px) {
  .container.facts {
    max-width: 100% !important;
  }

  .container.facts .facts-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.container.facts .facts-text {
  background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)), url(../img/carousel-1.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-counter {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel-2.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-icon img {
  max-width: 60px;
  max-height: 60px;
}

.service-item a.btn {
  color: var(--primary);
}

.service-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Appointment ***/
.appointment {
  background: linear-gradient(rgb(201 103 1), rgb(231 118 34 / 90%)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

/*** Team ***/
.team-item {
  position: relative;
  border: 1px solid rgb(255, 139, 0);
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  bottom: 0;
  opacity: 1;
}

.team-item a.btn {
  color: var(--primary);
}

.team-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Testimonial ***/
.animated.pulse {
  animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-left img,
.testimonial-right img {
  position: absolute;
  padding: 5px;
  border: 1px dashed var(--primary);
  border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 10px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

/*** Footer ***/
.footer {
  color: #a7a8b4;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #a7a8b4;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #a7a8b4;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: #a7a8b4;
  border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: #ffffff;
}

.oriental-dark {
  background: #f78320;
  background: -moz-linear-gradient(left, #f78320 0%, #23258a 100%);
  background: -webkit-linear-gradient(left, #f78320 0%, #23258a 100%);
  background: linear-gradient(to right, #f78320 0%, #23258a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f78320', endColorstr='#23258a',GradientType=1 );
  box-shadow: 0 4px 11px -5px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 9;
  width: 100% !important;
}

.text-white-502 {
  color: #ffffff;
}

.btn-primary2 {
  background-color: #ff8b00;
}
.bg-primary1 {
  background-color: #01245e;
}

#btn2 {
  color: #fff;
}
.btn2 {
  color: #fff;
}

.display-3a {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 700;
  line-height: 1.1;
}

.text-body2 {
  color: #ff8b00;
  font-weight: bold;
}

.text-orange {
  color: #fff;
  font-weight: bold;
}

.financial-text {
  color: #ff8b00 !important;
}
.text-orange a {
  color: #ff8b00 !important;
  font-weight: bold;
}

#text-orange a {
  color: #ff8b00 !important;
  font-weight: bold;
}

.text-blue {
  color: #000;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.bg-dark3 {
  background-color: #e88b14;
}

.bg-light-offwhite {
  background-color: #f7f7f7;
}
.bgwhite {
  background-color: fff;
}

.bg-dark2 {
  background-color: #01245e;
}

.rounded-area {
  border-radius: 25px !important;
}
.rounded {
  border-radius: 25px !important;
}

.tr-header {
  background-color: #01245e;
  color: #fff;
}

.mx-auto2 {
  margin-right: auto !important;
  /* margin-left: auto !important; */
}

.text-dark2 {
  color: #fff;
}

.font13 {
  font-size: 11px !important;
}
.fontteam {
  font-size: 17px !important;
  color: #ff8b00;
}
.table-link {
  font-size: 17px !important;
  color: #01245e;
  font-weight: bold;
}
.black {
  color: #000;
}
.profileblock {
  color: #fff;
  font-size: 25px;
}
.white {
  color: #fff;
}
.white a {
  color: #fff !important;
}

@media (max-width: 767px) {
  .timeline {
    max-width: 98%;
    padding: 25px;
  }
}

.timeline h1 {
  font-weight: 300;
  font-size: 1.4em;
}

.timeline h2,
.timeline h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

.timeline .event {
  border-bottom: 1px dashed #e8ebf1;
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}

@media (max-width: 767px) {
  .timeline .event {
    padding-top: 30px;
  }
}

.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline .event:before {
  left: -207px;
  content: attr(data-date);
  text-align: right;
  font-weight: 100;
  font-size: 0.9em;
  min-width: 120px;
}

@media (max-width: 767px) {
  .timeline .event:before {
    left: 0px;
    text-align: left;
  }
}

.timeline .event:after {
  -webkit-box-shadow: 0 0 0 3px #727cf5;
  box-shadow: 0 0 0 3px #727cf5;
  left: -55.8px;
  background: #fff;
  border-radius: 50%;
  height: 9px;
  width: 9px;
  content: "";
  top: 5px;
}

@media (max-width: 767px) {
  .timeline .event:after {
    left: -31.8px;
  }
}

.rtl .timeline {
  border-left: 0;
  text-align: right;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  border-right: 3px solid #727cf5;
}

.rtl .timeline .event::before {
  left: 0;
  right: -170px;
}

.rtl .timeline .event::after {
  left: 0;
  right: -55.8px;
}

.main-timeline {
  position: relative;
}

.main-timeline:before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #c6c6c6;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.main-timeline .timeline {
  margin-bottom: 40px;
  position: relative;
}

.main-timeline .timeline:after {
  content: "";
  display: block;
  clear: both;
}

.main-timeline .icon {
  width: 18px;
  height: 18px;
  line-height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.main-timeline .icon:before,
.main-timeline .icon:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.33s ease-out 0s;
}

.main-timeline .icon:before {
  background: #fff;
  border: 2px solid #232323;
  left: -3px;
}

.main-timeline .icon:after {
  border: 2px solid #c6c6c6;
  left: 3px;
}

.main-timeline .timeline:hover .icon:before {
  left: 3px;
}

.main-timeline .timeline:hover .icon:after {
  left: -3px;
}

.main-timeline .date-content {
  width: 50%;
  float: left;
  margin-top: 22px;
  position: relative;
}

.main-timeline .date-content:before {
  content: "";
  width: 36.5%;
  height: 2px;
  background: #c6c6c6;
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
}

.main-timeline .date-outer {
  width: 125px;
  height: 125px;
  font-size: 16px;
  text-align: center;
  margin: auto;
  z-index: 1;
}

.main-timeline .date-outer:before,
.main-timeline .date-outer:after {
  content: "";
  width: 125px;
  height: 125px;
  margin: 0 auto;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.33s ease-out 0s;
}

.main-timeline .date-outer:before {
  background: #01245e;
  color: #fff;
  border: 2px solid #232323;
  left: -6px;
}

.main-timeline .date-outer:after {
  border: 2px solid #c6c6c6;
  left: 6px;
}

.main-timeline .timeline:hover .date-outer:before {
  left: 6px;
}

.main-timeline .timeline:hover .date-outer:after {
  left: -6px;
}

.main-timeline .date {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 27%;
  left: 0;
  color: #fff;
}

.main-timeline .month {
  font-size: 18px;
  font-weight: 700;
}

.main-timeline .year {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #232323;
  line-height: 36px;
  color: #fff;
}

.main-timeline .timeline-content {
  width: 50%;
  padding: 20px 0 20px 50px;
  float: right;
}

.main-timeline .title {
  font-size: 19px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 15px 0;
}

.main-timeline .description {
  margin-bottom: 0;
  text-align: left;
}

.main-timeline .timeline:nth-child(2n) .date-content {
  float: right;
}

.main-timeline .timeline:nth-child(2n) .date-content:before {
  left: 10px;
}

.main-timeline .timeline:nth-child(2n) .timeline-content {
  padding: 20px 50px 20px 0;
  text-align: right;
}

@media only screen and (max-width: 991px) {
  .main-timeline .date-content {
    margin-top: 35px;
  }
  .main-timeline .date-content:before {
    width: 22.5%;
  }
  .main-timeline .timeline-content {
    padding: 10px 0 10px 30px;
  }
  .main-timeline .title {
    font-size: 17px;
  }
  .main-timeline .timeline:nth-child(2n) .timeline-content {
    padding: 10px 30px 10px 0;
  }
}

@media only screen and (max-width: 767px) {
  .main-timeline:before {
    margin: 0;
    left: 7px;
  }
  .main-timeline .timeline {
    margin-bottom: 20px;
  }
  .main-timeline .timeline:last-child {
    margin-bottom: 0;
  }
  .main-timeline .icon {
    margin: auto 0;
  }
  .main-timeline .date-content {
    width: 95%;
    float: right;
    margin-top: 0;
  }
  .main-timeline .date-content:before {
    display: none;
  }
  .main-timeline .date-outer {
    width: 110px;
    height: 110px;
  }
  .main-timeline .date-outer:before,
  .main-timeline .date-outer:after {
    width: 110px;
    height: 110px;
  }
  .main-timeline .date {
    top: 30%;
  }
  .main-timeline .year {
    font-size: 24px;
  }
  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(2n) .timeline-content {
    width: 95%;
    text-align: center;
    padding: 10px 0;
  }
  .main-timeline .title {
    margin-bottom: 10px;
  }

  .fill {
    fill: #fff !important;
  }

  ul,
  li {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  ul {
    margin: 2em 0;
  }

  li {
    margin: 1em;
    margin-left: 3em;
  }

  li:before {
    /* content: "\f006"; */
    /* font-family: "FontAwesome"; */
    float: left;
    margin-left: -1.5em;
    color: #0074d9;
  }
}

.form-floating > .form-select {
  padding-top: 0.625rem;
  cursor: pointer;
  height: 51px;
}

/* Request a call back */

.caret {
  caret-color: red;
}

.float-phone {
  position: fixed;
  width: 60px;
  cursor: pointer;
  height: 60px;
  bottom: calc(70% - 100px);
  right: 0;
  background-color: rgb(255, 139, 0);
  color: #fff;
  border-radius: 50% 0 0 50%;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float-phone .my-float {
  font-size: 30px !important;
  margin-top: 16px;
}

.my-float .arrow {
  display: none;
  width: 12px;
  height: 20px;
  overflow: hidden;
  /* position: fixed; */
  margin-left: 20px;
  margin-top: -30px;
  float: left;
  transform: rotate(270deg);
  top: 194px;
  right: 12px;
  transition: 0.2s ease-in-out;
}

.my-float .arrow .outer,
.my-float .arrow .inner {
  width: 0;
  height: 0;
  border-right: 20px solid rgba(0, 0, 0, 0.8);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  /* position: fixed; */
  top: 0;
  left: 0;
}

.my-float .arrow .inner {
  left: 2px;
}

.avenue-messenger {
  display: none; /* Hide the form by default */
  /* Add your styling here */
  opacity: 0; /* Start with 0 opacity */
  transition: opacity 0.3s ease-in-out; /* Add a smooth transition effect */
}

.avenue-messenger.active {
  display: block; /* Show the form */
  opacity: 1; /* Fully visible */
}

.avenue-messenger {
  opacity: 1;
  border-radius: 20px;
  height: calc(100% - 60px) !important;
  max-height: 375px;
  min-height: 220px !important;
  width: 320px;
  background: rgb(230, 230, 230);
  position: fixed;
  right: 30px;
  bottom: 40px;
  margin: auto;
  z-index: 10;
  box-shadow: 2px 10px 40px rgba(22, 20, 19, 0.4);
  /* transform: translateX(300px); */
  -webkit-transition: 0.3s all ease-out 0.1s, transform 0.2s ease-in;
  -moz-transition: 0.3s all ease-out 0.1s, transform 0.2s ease-in;
}

#box {
  padding: 5px;
  z-index: 10;
  position: relative;
  top: 130px;
  left: 5px;
}

#box form {
  background: linear-gradient(to right, #f78320 0%, #23258a 100%);
  padding: 5px;
  /* display: none; */
  width: 300px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 150px;
  position: absolute;
  bottom: 58px;
  opacity: 0.9;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
}

input[type="datetime-local"] {
  position: relative;
  padding: 10px;
}

.searchbox-wrap {
  display: flex;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.searchbox-wrap input {
  height: 50px;
  margin-left: 10px;
  padding-left: 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 10px;
  width: 225px;
  border: 1px solid #fff;
}

.searchbox-wrap button {
  width: 65px;
  border-radius: 10px;
  margin-left: -20px;
  border: none;
  background-color: #fff;
}

.searchbox-wrap button img {
  max-width: 60%;
}

.request-call {
  display: flex;
}

.request-call {
  width: 300px;
  background: linear-gradient(to right, #f78320 0%, #23258a 100%);
  color: #fff;
  border-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 60px;
  padding: 3px 10px;
  border: none;
  margin-top: 30px;
  margin-bottom: 0px;
  cursor: pointer;
  opacity: 0.9;
  filter: alpha(opacity=10);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
}

.request-call .lni-whatsapp {
  margin-top: 10px;
  width: 30px;
}

.request-call-back {
  font-size: 22px;
  padding-left: 25px;
  padding-top: 7px;
  font-weight: 600;
  font-family: "Source sans pro";
}

.quotes-request button {
  position: relative;
  top: 10px;
  width: 300px;
  color: rgb(255, 139, 0);
  border-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 60px;
  padding: 3px 10px;
  border: 1px solid #fff;
  font-weight: 600;
  margin-bottom: 0px;
  cursor: pointer;
  opacity: 0.9;
  font-size: 22px;
  font-family: "Source Sans Pro";
  border-color: #00aa3b;
  border-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.date {
  height: 50px;
  margin-left: 10px;
  padding-left: 10px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  width: 270px;
  /* border: 1px solid #fff; */
}

.fa-times {
  padding-left: 10px;
  padding-top: 10px;
  cursor: pointer;
}

.media-body a:hover {
  transition: all 0.3s cubic-bezier(0, 0, 0.23, 1);
  background-position: 0%;
}

.float-phone i[data-tooltip]::after {
  content: attr(data-tooltip);
  width: max-content;
  font-family: "Source Sans Pro";
  position: absolute;
  right: 10px;
  font-size: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 70px;
  padding: 4px 8px;
  border-radius: 4px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
  color: white;
  transform: scale(0);
  transition: 0.2s ease-in-out;
}

.float-phone i[data-tooltip]:hover::after {
  transform: scale(1);
}

.my-float:hover .arrow {
  display: block; /* Show arrow on hover */
}

/* Online Service section */

.insurance_sec {
  width: 100%;
  float: left;
  background: linear-gradient(rgba(243, 241, 240), rgba(243, 241, 240, 0.9)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.insurance_sec .main {
  max-width: 1158px;
  margin: 0 auto;
}

.insurance_sec .container {
  width: 100%;
  float: left;
}

.leftinsu {
  float: left;
  width: 41%;
}
.leftinsuimg {
  margin-top: 46px;
}

.rightinsu {
  float: left;
  width: 55%;
}

@media screen and (max-width: 800px) {
  .rightinsu {
    box-sizing: border-box;
    float: left;
    padding: 20px;
    width: 100%;
  }
}

.contentsec {
  background: #fff none repeat scroll 0 0;
  float: left;
  margin-left: 100px;
  margin-top: 46px;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add your desired box shadow values */
}

/* .renew-policy-image {
  width: 660px;
  margin-left: -110px;
  height: 660px;
  border-radius: 30px;
  margin-bottom: 20px;
} */

.renew-textarea {
  border: 2px solid #000;
}

.conttabs {
  float: left;
  margin-top: 50px;
  width: 100%;
}
.conttabs li {
  float: left;
}

.conttabs li a {
  color: #ff8b00;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
  padding: 5px 100px;
  border-bottom: #ff8b00 2px solid;
}

.activetab {
  border-bottom: transparent 2px solid; /* Set initial border color to transparent */
  transition: border-bottom 0.3s ease; /* Add a smooth transition effect */
}

.activetab:hover {
  border-bottom: #000 2px solid !important;
}

.contentbox {
  float: left;
  width: 100%;
  /* margin-bottom: -445px; */
}

.contentbox h1 {
  line-height: 1.1;
  color: #ff8b00;
  font-size: 33px;
  font-weight: 300;
  margin: 27px 30px;
}

.formbox > li {
  float: left;
  margin: 7.6px 0;
  width: 100%;
}

.formbox label {
  color: #ff8b00;
  float: left;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
  width: 100%;
}

.formbox select {
  background: #fff url("../img/icon/dropdown-2.svg") no-repeat right center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-size: 50px;
  background-position: right top; /* Replace with your desired position */
}

.formbox select,
.formbox input {
  border: 2px solid #000;
  color: #6d6d6d;
  float: left;
  margin-right: 35px;
  border-radius: 10px;
  padding: 15px;
  width: 42%;
  box-sizing: border-box;
}

#ddlview {
  width: 90%;
}

.formbox select,
option {
  font-weight: normal;
  display: block;
  white-space-collapse: collapse;
  text-wrap: nowrap;
  min-height: 3.6em;
  padding: 0px 10px 1px;
}

.formbox {
  position: relative;
}
.inpform {
  position: relative;
  float: left;
  width: 48%;
}

.inpform input[type="text"] {
  width: 88%;
  box-sizing: border-box;
}

ul,
ol {
  list-style-type: none;
}

.inpform textarea {
  border: medium none;
  box-sizing: border-box;
  padding: 18px;
  width: 88%;
  border: 2px solid #000;
  border-radius: 10px;
}

.submitbtn {
  color: #ffffff !important;
}

#get-quote-request {
  margin-top: -80px;
}

.quote-request-image {
  height: 655px;
  margin-bottom: 20px;
}
.intimate-claim-image {
  height: 755px;
  margin-bottom: 20px;
}

.date-icon {
  position: relative;
  left: 500px;
  top: 15px;
  float: right;
}

.date-icon-intimate {
  position: relative;
  left: 155px;
  top: 15px;
  float: right;
}

.renew-policy-image {
  width: 80%;
  border-radius: 20px;
  float: inline-end;
}

.inpform .renew-policy-textarea {
  width: 188%;
}

/*****toggle switch css ****************/

:root {
  --switches-bg-color: #01245e;
  --switches-label-color: white;
  --switch-bg-color: white;
  --switch-text-color: #01245e;
}

/* a container - decorative, not required */
.toogle-switch {
  width: 100%;
  padding: 1rem;
  /* margin-left: -25px; */
  margin-right: auto;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .switches-container {
    max-width: 480px;
  }
}

@media (max-width: 455px) {
  .switches-container {
    max-width: 370px;
  }
}

@media (max-width: 395px) {
  .switches-container {
    max-width: 320px;
  }
}

@media (max-width: 343px) {
  .switches-container {
    max-width: 300px;
  }
}

@media (max-width: 320px) {
  .switches-container {
    max-width: 280px;
  }
}

/* container for all of the switch elements 
  - adjust "width" to fit the content accordingly 
*/
.switches-container {
  width: 660px;
  position: relative;
  display: flex;
  padding: 0;
  border: 1px solid var(--switches-bg-color);
  position: relative;
  /* background: var(--switches-bg-color); */
  background: rgba(237, 234, 234, 0.8);
  line-height: 3rem;
  border-radius: 3rem;
  margin-left: auto;
  margin-right: auto;
}

/* input (radio) for toggling. hidden - use labels for clicking on */
.switches-container input {
  visibility: hidden;
  position: absolute;
  top: 0;
}

/* labels for the input (radio) boxes - something to click on */
.switches-container label {
  width: 50%;
  padding: 0;
  margin: 0;
  text-align: center;
  cursor: pointer;
  color: var(--switches-bg-color);
  transition: color 0.5s ease; /* Smooth transition effect for color change */
}

/* switch highlighters wrapper (sliding left / right) 
  - need wrapper to enable the even margins around the highlight box
*/
.switch-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 0.15rem;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  /* transition: transform 1s; */
}

/* switch box highlighter */
.switch {
  border-radius: 3rem;
  background: var(--switches-bg-color);
  height: 100%;
  animation: blinkAnimation 2s infinite alternate; /* 1s duration, infinite loop, alternate direction */
}

/* switch box labels
  - default setup
  - toggle afterwards based on radio:checked status 
*/
.switch div {
  width: 100%;
  text-align: center;
  opacity: 0;
  display: block;
  color: var(--switch-bg-color);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0.125s;
  will-change: opacity;
  position: absolute;
  top: 0;
  left: 0;
}

/* slide the switch box from right to left */
.switches-container input:nth-of-type(1):checked ~ .switch-wrapper {
  transform: translateX(0%);
}

/* slide the switch box from left to right */
.switches-container input:nth-of-type(2):checked ~ .switch-wrapper {
  transform: translateX(100%);
}

/* toggle the switch box labels - first checkbox:checked - show first switch div */
.switches-container input:nth-of-type(1):checked ~ .switch-wrapper .switch div:nth-of-type(1) {
  opacity: 1;
}

/* toggle the switch box labels - second checkbox:checked - show second switch div */
.switches-container input:nth-of-type(2):checked ~ .switch-wrapper .switch div:nth-of-type(2) {
  opacity: 1;
}

/* #menu2 {
  display: none;
} */

#upload-file {
  width: 525px;
}

/* .upload-document {
  position: absolute;
  width: 40px;
  height: 40px;
  margin-top: 10px;
} */

input[type="datetime-local"]:before {
  color: transparent;
  background: none;
  display: block;
  font-family: "FontAwesome";
  content: "\f073"; /* FontAwesome calendar icon */
  width: 15px;
  height: 20px;
  position: absolute;
  top: 12px;
  right: 6px;
  color: #999;
}

input[type="date"]:before {
  color: transparent;
  background: none;
  display: block;
  font-family: "FontAwesome";
  content: "\f073";
  width: 15px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 15px;
  color: #999;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
  cursor: pointer;
  z-index: 1;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
  z-index: 1;
  cursor: pointer;
}
input[type="file"] {
  cursor: pointer;
}

/* Add this to your CSS file or style section */
#items > .col-12 {
  margin-bottom: 15px; /* Adjust the value to control the spacing */
}

/* // Size can also be negative; see how it's smaller than the element */
.raise:hover,
.raise:focus {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transform: translateY(-0.25em);
}

/* Hide the number input spin buttons */
input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none; /* WebKit browsers like Safari and Chrome */
  margin: 0; /* Removes the default margin */
}

/* Style for the number input, you can adjust this as needed */
input[type="number"] {
  width: 100%;
  box-sizing: border-box;
}

.quote-request-image {
  width: 80% !important;
}

.form-control {
  line-height: 2.5rem;
  height: 51px;
}

#quote-request {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

/* Faq Section */

#faq-container {
  background-image: url(../img/faq-image.png);
  background-size: cover;
  padding: 0px 0 15px;
  position: relative;
  background-position: center;
  padding-bottom: 30px;
  margin-top: -10px;
}

#faq-container .text-light {
  font-family: "Source Sans Pro";
  margin-left: 0px;
  color: #000 !important;
  margin-top: 20px;
}

.about-area {
  padding-top: 80px;
  padding-bottom: 130px;
  position: relative;
  background-image: url();
}

#faq {
  /* background-image: url(../images/faq_background.png); */
  background-size: 100%;
  background-repeat: no-repeat;
  padding-bottom: 0px;
  background-position: center;
  padding-top: 30px;
}

.faq-content {
  display: none;
}

#searchResults {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 10px;
  margin-left: 100px;
  background-color: #f9f9f9;
}

.search-faq {
  display: block;
  max-width: 600px;
  width: 80%;
  margin: 10px auto;
  background: #fff;
  border-radius: 30px;
  padding: 14px 20px;
  border: 0 none;
  outline: 0;
  border: 1px solid #000000;
}

#faq-browse {
  color: #000;
  font-size: 17px;
  font-weight: bold;
}

.media:first-child {
  margin-top: -10px;
}

.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

.faq-list .media-heading {
  color: #01245e;
  font-weight: 100;
  font-family: "Source Sans Pro";
}

.media-heading {
  margin: 0 0 0px;
}

@media (min-width: 767px) {
  .media p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6;
  }
}

.faq-list .view-all {
  color: rgb(255, 139, 0);
  font-size: 13px;
  cursor: pointer;
  font-weight: 700;
}

/* Adjust styles for search results */
#searchResults {
  display: none; /* Hide by default */
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 10px;
  margin-left: 100px;
  background-color: #f9f9f9;
}

.faq-results {
  margin-top: 10px;
}

/* Style for the link container */
.hover-link {
  display: inline-block;
  position: relative;
  text-decoration: none; /* Remove default underline */
}

/* Style for the clickable span */
.view-all {
  color: black; /* Default color */
  position: relative;
  transition: color 0.3s; /* Smooth color transition */
}

/* Add underline to the text below */
.view-all::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 139, 0); /* Underline color */
  bottom: -3px; /* Adjust as needed */
  left: 0;
  transform: scaleX(0); /* Start with no width */
  transform-origin: left;
  transition: transform 0.3s, opacity 0.3s; /* Smooth transition for underline */
  opacity: 0; /* Start with no opacity */
}

/* Show underline and change text color on hover */
.hover-link:hover .view-all {
  color: rgb(255, 139, 0); /* New color on hover */
}

.hover-link:hover .view-all::before {
  transform: scaleX(1); /* Increase width on hover */
  opacity: 1; /* Show underline on hover */
}

.card-header {
  font-weight: bold;
}

/* #faqContent {
  width: 875px;
} */

/* .faq-section-alignment {
  width: 900px;
} */

@media (max-width: 515px) {
  .form-search input {
    width: 250px;
  }
  .no-result {
    margin-left: -60px;
  }
  .navbar-brand .almulla-img {
    margin-left: 10px;
  }
}
/* 
@media (max-width: 1500px) {
  .navbar-brand .almulla-img {
    position: relative;
    right: 130px;
    width: 300px;
  }
} */

@media (max-width: 370px) {
  .form-search input {
    width: 210px;
    font-size: 14px;
  }
}

.no-result {
  position: absolute;
  top: 70px;
  left: 120px;
}

.cat-back {
  width: 200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 40px;
  font-size: 25px;
  height: 40px;
  cursor: pointer;
  border-radius: 20px;
}

.faq-content {
  display: none;
}
.faq-content.show {
  display: block;
}


.cat-back {
  display: none;
}
.cat-back.show {
  display: block;
}

#contactform input.submit:focus,
#contactform input.submit:hover,
.cat-back {
  background: #ff8b00;
  color: #fff;
  margin-bottom: 50px;
}

.myimg1 {
  width: 25px;
  height: 25px;
}

.img2 {
  width: 20px;
  position: absolute;
  right: 0;
  /* left: 830px; */
  top: 20px;
  cursor: pointer;
}

.about-accordion {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 50px;
}

.about-area .about-accordion .accordion .card {
  background: none;
  width: 870px;
  border: 0;
  border-bottom: 1px solid #01245e;
}

.about-area .about-accordion .accordion .card .card-header {
  padding: 0;
  border: 0;
  display: flex;
  background: none;
  margin-top: 15px;
  margin-bottom: 5px;
}

@media (max-width: 960px) {
  .about-area .about-accordion .accordion .card {
    width: 800px;
  }
}

@media (max-width: 890px) {
  .about-area .about-accordion .accordion .card {
    width: 600px;
  }
}

@media (max-width: 691px) {
  .about-area .about-accordion .accordion .card {
    width: 500px;
  }
}

@media (max-width: 592px) {
  .about-area .about-accordion .accordion .card {
    width: 450px;
  }
}

@media (max-width: 540px) {
  .about-area .about-accordion .accordion .card {
    width: 400px;
  }
}

@media (max-width: 492px) {
  .about-area .about-accordion .accordion .card {
    width: 335px;
    margin-left: 60px;
  }
}

@media (max-width: 486px) {
  .about-area .about-accordion .accordion .card {
    width: 305px;
    margin-left: 40px;
  }
}

@media (max-width: 435px) {
  .about-area .about-accordion .accordion .card {
    width: 290px;
    margin-left: 40px;
  }
}

@media (max-width: 421px) {
  .about-area .about-accordion .accordion .card {
    width: 280px;
    margin-left: 40px;
  }
}

@media (max-width: 410px) {
  .about-area .about-accordion .accordion .card {
    width: 250px;
    margin-left: 40px;
  }
}

@media (max-width: 380px) {
  .about-area .about-accordion .accordion .card {
    width: 280px;
    margin-left: 0px;
  }
}

@media (max-width: 372px) {
  .about-area .about-accordion .accordion .card {
    width: 250px;
    margin-left: 0px;
  }
}

@media (max-width: 342px) {
  .about-area .about-accordion .accordion .card {
    width: 230px;
    margin-left: 0px;
  }
}

.use-application {
  margin: auto;
  color: #01245e;
  margin-left: 10px;
  font-weight: 700;
  font-size: 13px;
}

.faq-insure-text {
  color: #01245e;
  margin: auto;
  margin-left: 10px;
  font-size: 13px;
  font-weight: 700;
}

.faq-paragraph {
  font-size: 13px !important;
  line-height: 20px !important;
  text-align: justify;
  color: #000;
}

.card-body {
  overflow-y: auto;
  /* height: 100px; */
}

/* Scrollbar Styling */
.card-body::-webkit-scrollbar {
  width: 10px;
}

.card-body::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.card-body::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #6d6d6d;
}

.newsletter {
  height: 60px;
}

/****************************************************************************/

/* pop-up */
/* Define variables */
:root {
  --head-font: "Montserrat", sans-serif;
  --main-font: "Open Sans", sans-serif;
  --main-color: rgba(76, 175, 80, 1);
  --error-color: rgba(244, 67, 54, 1);
}

/* Define mixins */
/* Define keyframes */
@keyframes animated {
  0% {
    -webkit-transform: scale(3);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes borderRadius {
  0% {
    -webkit-border-radius: 3;
    -moz-border-radius: 3;
    border-radius: 3;
  }
  100% {
    -webkit-border-radius: 1;
    -moz-border-radius: 1;
    border-radius: 1;
  }
}

@keyframes transformation {
  0% {
    -ms-transform: scale(3, 3);
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3);
  }
  100% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes transitions {
  0% {
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
  }
  100% {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }
}

.element {
  animation: animated 1s;
}

.another-element {
  animation: borderRadius 1s;
}

.some-element {
  animation: transformation 1s;
}

.yet-another-element {
  animation: transitions 1s;
}

/* Define global styles */

.modalbox {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
  background: white;
  padding: 25px 25px 15px;
  text-align: center;
}

.modalbox.success,
.modalbox.error {
  &.animate {
    .icon {
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
  }
}

.modalbox h1 {
  font-family: var(--head-font);
}

.modalbox p {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  color: #000;
}

.modalbox button,
.modalbox button:active,
.modalbox button:focus {
  transitions: 0.1s;
  border-radius: 30px;
  margin-top: 15px;
  width: 80%;
  background: transparent;
  color: #ff8b00;
  border-color: #ff8b00;
  outline: none;
}

.modalbox button:hover {
  color: white;
  background: #ff8b00;
  border-color: transparent;
}

.modalbox.error button,
.modalbox.error button:active,
.modalbox.error button:focus {
  color: #ff8b00;
  border-color: #ff8b00;
}

.modalbox.error button:hover {
  color: white;
  background: #ff8b00;
}

.modalbox .icon {
  position: relative;
  margin: 0 auto;
  margin-top: -75px;
  background: var(--main-color);
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

.modalbox .icon span {
  position: absolute;
  left: 22px;
  font-size: 4em;
  color: white;
  text-align: center;
  padding-top: 20px;
}

.modalbox.error .icon {
  background: var(--error-color);
}

.modalbox.error .icon span {
  padding-top: 25px;
}

.center {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.center .change {
  clear: both;
  display: block;
  font-size: 10px;
  color: #ccc;
  margin-top: 10px;
}

/* Define keyframes */
@keyframes fall-in {
  0% {
    transform: scale(3);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Apply keyframes to different vendors */
@-webkit-keyframes fall-in {
  0% {
    -webkit-transform: scale(3);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes fall-in {
  0% {
    -moz-transform: scale(3);
    opacity: 0;
  }
  50% {
    -moz-transform: scale(1);
    opacity: 1;
  }
  60% {
    -moz-transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
  }
}

@-o-keyframes fall-in {
  0% {
    -o-transform: scale(3);
    opacity: 0;
  }
  50% {
    -o-transform: scale(1);
    opacity: 1;
  }
  60% {
    -o-transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
  }
}

/* Styles for the popup container */
.popup-container {
  display: none;
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  /* position: fixed;
  top: 50%;
  width: 30%;
  border-radius: 4px;
  font-family: "Quicksand", sans-serif;
  color: black;
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; */
}

/* Styles for showing the popup */
.popup-container.show {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Styles for the overlay background */
.overlay {
  display: none;
  position: fixed;
  top: -17px;
  left: 0;
  font-family: "Quicksand", sans-serif;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.overlay-ar {
  display: none;
  position: fixed;
  top: -17px;
  left: 0;
  font-family: "Quicksand", sans-serif;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Styles for the close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* Add your custom styles here */
.btn {
  cursor: pointer;
}

.succes-icon {
  position: relative;
  bottom: 20px;
  left: 10px;
  width: 40px;
}

.ast-place {
  position: relative;
}

.asterisk {
  position: absolute;
  left: 130px;
  top: 12px;
  color: red;
}

.asterisk2 {
  position: absolute;
  left: 120px;
  top: 12px;
  color: red;
}

.asterisk3 {
  position: absolute;
  left: 200px;
  top: 12px;
  color: red;
}

.asterisk4 {
  position: absolute;
  left: 160px;
  top: 12px;
  color: red;
}

.asteriskar {
  position: absolute;
  right: 80px;
  top: 12px;
  color: red;
}

.asteriskar2 {
  position: absolute;
  right: 60px;
  top: 12px;
  color: red;
}

.asterisk5 {
  position: absolute;
  left: 60px;
  top: 12px;
  color: red;
}

.asterisk6 {
  position: absolute;
  left: 110px;
  top: 12px;
  color: red;
}

.asterisk7 {
  position: absolute;
  left: 130px;
  top: 12px;
  color: red;
}

.asterisk8 {
  position: absolute;
  left: 90px;
  top: 8px;
  color: red;
}

.asterisk9 {
  position: absolute;
  left: 100px;
  top: 12px;
  color: red;
}

.asterisk10 {
  position: absolute;
  left: 130px;
  top: 12px;
  color: red;
}

.asterisk11 {
  position: absolute;
  left: 60px;
  top: 12px;
  color: red;
}

.validation-failure::placeholder {
  color: red;
}

.validation-failure-ar::placeholder {
  color: red;
}
/*********************For Products Section ***********************************/

.insurancesec {
  width: 100%;
  float: left;
  background: url(../img/img2.jpg) center top;
  padding: 50px 0;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

.insurancesec .main {
  max-width: 1158px;
  margin: 0 auto;
}

.iconfont {
  width: 100%;
  float: left;
  text-align: center;
  color: #fff;
  font-size: 35px;
  margin-bottom: 10px;
}

.insurancesec h3 {
  line-height: 1.1;
  font-size: 40px;
  font-weight: 600;
  margin: 25px 0;
  color: #fff;
}

.insurancesec h3 span {
  color: orange;
}

.insurancesec p {
  font-size: 16px;
  padding: 0 10%;
}

.plansinsu {
  float: left;
  margin-top: 40px;
  text-align: center;
  width: 100%;
}

.plansinsu li div {
  background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0;
  border: 3px solid rgba(255, 139, 0, 0.5);
  border-radius: 50%;
  display: inline-block;
  height: 120px;
  padding: 20px;
  width: 120px;
}

.plansinsu li {
  margin: 15px;
  width: 37%;
}

.plansinsu li::before {
  content: none !important;
}

@media screen and (max-width: 640px) {
  .plansinsu li {
    margin-bottom: 15px;
    width: 37%;
  }
}

.plansinsu li {
  display: inline-block;
  width: 20%;
  vertical-align: top;
}

.plansinsu h4 {
  margin-top: 10px;
}

.plansinsu h4 a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

@media screen and (max-width: 580px) {
  .plansinsu li {
    margin: 15px;
    width: 37%;
  }
}

.insurancebtn {
  margin-top: 20px;
  width: 100%;
  float: left;
}

.insurancebtn > a {
  background: #ff8b00;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 9px 30px;
  text-decoration: none;
}

.plansinsu img {
  margin: -6px;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Our Presence section */

.presence-wrapper {
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  z-index: 3;
  overflow: hidden;
}

.presence-wrapper .container-fluid {
  position: absolute;
  top: 5.208vw /* 100/19.2 */;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.presence-wrapper .presence-icon {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.presence-wrapper .presence-icon img {
  width: 2.8125vw /* 54/19.2 */;
  max-width: 100%;
}

.presence-wrapper .presence-title {
  display: block;
  font-family: var(--head-font);
  font-weight: normal;
  font-size: 3.167vw /* 80/19.2 */;
  line-height: 3.854vw /* 74/19.2 */;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 1.875vw /* 36/19.2 */;
}

.presence-wrapper .presence-text {
  display: block;
  font-weight: 500;
  font-size: 1.315vw /* 31/19.2 */;
  margin-bottom: 0;
  color: var(--primary);
}

.presence-wrapper .presence-countries {
  display: block;
  font-weight: normal;
  font-size: 2.49vw /* 67/19.2 */;
  color: var(--color-primary);
}
.bg-img {
  position: relative;
  width: 90%;
  left: 90px;
  margin-top: 10px;
  /* z-index: -3; */
}

.bg-img svg {
  overflow: hidden;
  vertical-align: middle;
}

.bg-img img {
  width: 160px;
  filter: drop-shadow(3px 5px 2px rgb(20, 19, 19));
}

.portlet-journal-content .journal-content-article:after {
  clear: both;
  content: "";
  display: block;
}

#originalPathGroup:hover + #hoverPathGroup {
  display: block;
}

/* Contact Us form Section */

.locate-wrapper {
  position: relative;
  display: block;
  background: var(--white);
  z-index: 9;
  margin-bottom: 100px;
  margin-top: 100px;
}

.locate-wrapper .locate-title {
  display: none;
  font-weight: normal;
  font-size: 4.167vw /* 80/19.2 */;
  line-height: 3.854vw /* 74/19.2 */;
  letter-spacing: -0.02em;
  margin: 2.604vw /* 50/19.2 */ auto;
  text-align: center;
  color: var(--color-primary);
}

.locate-wrapper .locate-map {
  position: relative;
  display: none;
  margin: 0 auto;
  width: 100%;
  height: 55.208vw /* 1060/19.2 */;
}

.locate-wrapper .locate-map img,
.locate-wrapper .locate-map svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#contactus {
  width: 85% !important;
  margin-left: auto;
  margin-right: auto;
  margin-top: -40px;
}

.locate-wrapper .contact-wrapper {
  margin: 0 auto;
}

.home-page-contact {
  margin-top: 20px;
}

.contact-wrapper {
  position: relative;
  display: block;
  border-radius: 7.375vw;
  background: #01245e;
  color: var(--white);
  padding: 1.208vw /* 100/19.2 */ 6.51vw /* 125/19.2 */;
  margin: 0 auto;
  z-index: 1;
}

.contact-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url("/o/gig-kw-theme-newdesign/css/../images/Mask Group 63.svg") center repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.section-header {
  text-transform: uppercase;
  font-family: "Freight-SansBold";
  color: #101257;
  padding-top: 60px;
  letter-spacing: 1.5px;
}

.form-style .contact-title {
  display: block;
  font-family: "Source sans pro";
  font-weight: normal;
  font-size: 1.71875vw /* 33/19.2 */;
  color: #ffffff;
}

.form-style .contact-text {
  display: block;
  font-weight: normal;
  font-size: 1.458vw /* 28/19.2 */;
  color: #ffffff;
  margin-bottom: 1.5625vw /* 30/19.2 */;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

@media screen and (max-width: 991px) {
  .form-style .form-group {
    margin-bottom: 20px;
  }
}

.form-style .form-group {
  position: relative;
  margin-bottom: 1.354vw /* 26/19.2 */;
}

.address-title,
.call-title,
.working-hour {
  color: #ffffff;
}

@media only screen and (max-width: 600px) {
  .address-title, .call-title {
    font-size: 16px; /* Decreased font size for mobile */
  }
}    


.address-title,
.call-title {
  font-size: 20px;
}

.address-block a,
.call-title a {
  font-size: 15px;
  margin-left: -13px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .locate-wrapper .contact-info > div img {
    width: 28px;
    height: 28px;
    margin-right: 20px;
  }
}

.buttonCustomClass {
  color: #000 !important;
}

.locate-wrapper .contact-info > div img {
  width: 1.875vw /* 36/19.2 */;
  height: 3vw;
  margin-left: -35px;
  object-fit: contain;
  margin-right: 1.458vw /* 28/19.2 */;
}

.contact-infro-section {
  padding-top: 120px;
}

.contact-text-complaint{
  margin-top: -120px;
  color: #fff;
  margin-left: -30px;
}
@media (max-width: 767.98px){
  #location-img{
    width: 38px;
    margin-left: -26px;
  }
  .address-title, .call-title{
    font-size: 12px;
  }
  .address-block a, .call-title a{
    font-size: 12px;
  }
  .contact-infro-section{
    padding-top: 50px;
    padding-bottom: 20px;
  }
  #timing-img{
    position: relative;
    top: 25px;
    margin-left: -26px;
  }
  .form-style .contact-title{
    font-size: 20px;
  }
  .form-style .contact-text{
    font-size: 20px;
  }
}
#location-img {
  margin-top: -40px;
  width: 28px;
}

#timing-img {
  margin-top: -90px;
  width: 28px;
}

#mail-img {
  margin-top: -55px;
  width: 28px;
}

.product_list {
  width: 100%;
  float: left;
}

.product_list li {
  float: left;
  position: relative;
  width: 50%;
}

.product_txt {
  position: absolute;
  padding: 30px;
}

.product_txt h2 {
  margin-bottom: 20px;
}

.product_txt h2 a:hover {
  color: #000;
}

.product_txt h2 a {
  font-size: 39px;
  color: #fff;
  font-weight: 300;
}

.policies_list li {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 15px;
  line-height: 32px;
  background: url(/img/arrow-list.png) no-repeat left 10px;
}

@media screen and (max-width: 1024px) {
  .policies_list li {
    width: 30%;
  }
}

.policies_list li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
}

.policies_list li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

@media screen and (max-width: 1024px) {
  .personal-img img {
    width: 100%;
  }
}

.personal-img img {
  width: 550px;
  margin-left: -10px;
}

.policies_list li a:hover {
  color: #000;
}

ul.services_box {
  margin: 30px 0;
  width: 100%;
  float: left;
}

.services_box > li:first-child {
  border-left: none;
}

.services_box > li {
  width: 33%;
  float: left;
  text-align: center;
  border-left: #ccc 1px solid;
  min-height: 260px;
}

.pagewrap {
  width: 100%;
  float: left;
  position: relative;
}

.personal_list li {
  width: 33.3%;
  float: left;
  text-align: center;
}

.personal_list li:nth-child(1) a,
.personal_list li:nth-child(6) a,
.personal_list li:nth-child(11) a,
.personal_list li:nth-child(16) a {
  background: #ffebba;
}

@media screen and (max-width: 1024px) {
  .personal_list a {
    font-size: 13px;
  }
}

.personal_list a {
  display: block;
  color: #000;
  font-size: 16px;
  padding: 8px 0;
}

.personal_list li:nth-child(2) a,
.personal_list li:nth-child(7) a,
.personal_list li:nth-child(12) a {
  background: #ffd0b5;
}

.personal_list li:nth-child(3) a,
.personal_list li:nth-child(8) a,
.personal_list li:nth-child(13) a {
  background: #ffb2b2;
}

.personal_list {
  margin-left: -32px;
}

.personal_list li a:hover {
  color: #000;
}

.venturesec {
  float: left;
  padding: 25px 0;
  width: 100%;
  border-top: 2px #ccc solid;
}

@media screen and (max-width: 1024px) {
  .txtsec {
    float: left;
    margin-left: 13px;
    width: 36%;
  }
}

.txtsec {
  float: left;
  margin-left: 35px;
  width: 52%;
}

@media screen and (max-width: 1024px) {
  .txtsec > h1 {
    font-size: 26px;
    margin-bottom: 0;
    margin-top: 0;
  }
}

.txtsec > h1 {
  color: #ff8b00;
  font-size: 31px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 35px;
}

.subtxt {
  color: #090909;
  font-size: 19px;
  margin-top: 15px;
}

.ventureimg {
  width: 44%;
  float: left;
}

@media screen and (max-width: 1024px) {
  .ventureimg {
    float: left;
    width: 56%;
  }
}

@media screen and (max-width: 1024px) {
  .ventureimg li {
    margin: 0 2px;
  }
}

.ventureimg li {
  float: right;
  margin: 0 13px;
  width: 43%;
}

.ventureimg img {
  max-width: 229px;
}

.motor-details-products {
  width: 100% !important;
}

.features-area {
  background-color: #f4f6f7;
  margin-top: 100px;
}

.about-us-container {
  margin-top: -150px;
}

.section-title .title {
  font-size: 44px;
  font-weight: 900 !important;
  color: #121212;
  padding-top: 90px;
  line-height: 50px;
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
    line-height: 35px;
  }
}

.easy-steps {
  font-weight: 900;
  color: #121212;
  font-family: "Source Sans Pro", sans-serif;
}

.single-features {
  padding: 20px 0 25px;
  /* background-color: #fff; */
}

#rcorners1 {
  border-radius: 25px;
  background: #01245e;
  padding: 0;
  height: 440px;
  box-shadow: 0 10px 15px #bebebe;
  text-align: center;
}

.fastest-policy-insurance {
  border-top-left-radius: 25px;
  width: 100%;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.competitive-insurance {
  color: #fff;
  padding-left: 10px;
  text-align: left;
  font-size: 0px;
  margin-top: 50px;
  margin-bottom: 70px;
}

.testimonaila-text {
  text-align: justify;
  padding-top: 20px;
}

.premium-insurance {
  font-size: 28px;
  line-height: 25px;
  margin-bottom: 10px;
}

.premium-insurance-details {
  line-height: 18px;
}

.premium-insurance-container {
  margin-bottom: 10px; /* Adjust the value as needed */
}

/* Optional: Adjusting margin for the span */
.premium-insurance-details-container {
  margin-top: -60px;
  text-align: left;
  margin-bottom: 50px;
  padding: 0px 10px;
  font-size: 15px;
  color: white;
}

/* Adding space between b and span */
.premium-insurance b {
  margin-bottom: 5px; /* Adjust the value as needed */
}

.image-container {
  position: relative;
  display: inline-block;
}
.image-container .svg-img {
  cursor: pointer;
  width: 180px;
}

.image-text {
  position: absolute;
  bottom: 100%;
  left: 60%;
  transform: translateX(-50%);
  background-color: #01245e;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-text-dubai {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #01245e;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-text-dubai {
  bottom: calc(77% + 10px);
  left: 70%;
  opacity: 1;
}

.image-container:hover .image-text {
  bottom: calc(88% + 10px); /* Move the text below the image */
  opacity: 1; /* Show the text on hover */
}

.marine-cargo-corporate_header{
  margin-bottom: 20px;
}

.marine-cargo h3{
  margin: 10px 0 !important;
} 

.arrow-dubai {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #01245e;
}

.arrow-india {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #01245e;
}

.india-text{
padding-top: 20px;
}

.our-presence{
  margin-bottom: 4rem !important;
}

.management-image{
  width: 70%;
  margin-left: 40px;
}

.intimate-contact-section{
  margin: auto;
  margin-top: 20px;
  margin-bottom: 100px;
}

canvas {
  max-width: 100%;
}

#refresh-icon {
  transition: transform 0.5s ease-in-out;
}

#refresh-icon.rotating {
  transform: rotate(360deg);
}


.captcha-alternative {
  margin-top: 20px;
  position: relative;
  h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgba(0,0,0,0.8);
  }



.submit-generated-alt {
  display: inline-block;
}

.submit-generated-alt span {
  display: inline-block;
  width: 100px;
  height: 35px;
  vertical-align: center;
  background-color: #e9ecef;
  line-height: 35px;
  font-weight: bold;
  font-size: 16px;
  color: rgba(0,0,0,0.9);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 4px;
}

.submit-generated-alt.valid:after,
.submit-generated-alt.unvalid:after {
  font-family: FontAwesome;
  font-size: 18px;
  margin-left: 10px;
}

.submit-generated-alt.valid:after {
  content: "\f00c";
  color: #2ecc71;
}

.submit-generated-alt.valid .submit-input-alt {
  border: 1px solid #2ecc71;
  color: #2ecc71 !important;
}

.submit-generated-alt.unvalid:after {
  content: "\f00d";
  color: #e74c3c;
}

.submit-generated-alt.unvalid .submit-input-alt {
  border: 1px solid #e74c3c;
  color: #e74c3c;
}

.submit-input-alt {
  position: relative;
  outline: 0;
  height: 35px;
  width: 100px;
  border-radius: 4px;
  border: 1px solid #42A0DD;
  color: #42A0DD;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  top: -2px;
}

i.fa-refresh {
  margin: 0px 5px 15px 35px;
  padding: 5px;
  font-size: 18px;
  color: rgba(0,0,0,0.2);
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
}

i.fa-refresh:hover {
  color: rgba(0,0,0,0.4);
  transform: rotate(180deg);
}

span.submit-error-alt,
span.submit-error-empty-alt {
  color: #e74c3c;
  position: absolute;
  margin-top: 5px;
  margin-left: 20px;
}

.submit-alt {
  display: block;
  margin: 50px 0;
  padding: 7px 15px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  outline: none;
  border: 0;
  background-color: #42A0DD;
  background-clip: padding-box;
  border-radius: 3px;
  box-shadow: 0 4px 0 #2C81BA;
  opacity: 1;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.submit-alt:hover {
  background-color: #3498db;
}

.submit-alt:active,
.submit-alt.enter-press,
.submit-alt.overlay {
  margin: 55px 0 46px 0;
  box-shadow: none;
}

.submit-overlay-alt {
  width: 110px;
  background-color: rgba(255,255,255,0.8);
  position: absolute;
  margin-top: -90px;
  margin-left: -5px;
}

.low-opa { opacity: 0.4; }
.fadeOut { opacity: 0; transform: translateY(10px); }
.fadeIn { opacity: 1 !important; transform: translateY(0px) !important; }
.form-fields, .form-success { transition: all 0.2s ease-out; }
.form-success { opacity: 0; transform: translateY(-10px); margin-top: 20px; }

}

/* .submit-grievance{
  cursor: not-allowed;
  opacity: 0.5;
}

.submit-grievance:disabled {
  cursor: not-allowed;
  opacity: 0.5;
} */

.switch-toggle{
  display: flex;
  justify-content: end;
  
  .toggle-english{
    margin-right: 15px;
    color: #000;
  }

  .toggle-arabic{
    margin-left: 15px;
    color: #000;
  }
  input[type="checkbox"] {
    position: relative;
    width: 43px;
    height: 25px;
    -webkit-appearance: none;
    appearance: none;
    background: #ff8b00;
    outline: none;
    border-radius: 2rem;
    cursor: pointer;
    box-shadow: inset 0 0 5px rgb(0 0 0 / 50%);
  }
  
  input[type="checkbox"]::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 2px;
    left: 0;
    transition: 0.5s;
  }
  
  input[type="checkbox"]:checked::before {
    transform: translateX(100%);
    background: #fff;
  }
  
  input[type="checkbox"]:checked {
    background: #01245E;
  }
  
}

#arabicForm{
.form-floating > label {
    position: absolute;
    top: 0;
    right: 0 !important;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
}


.section-border{
  width: 840px;
}

@media (max-width: 992px){
  .section-border{
    width: 0px;
  }
  .contact-text-complaint{
   margin-left: 0px;
  }
}

@media (max-width: 390px){
  .contact-text-complaint{
    margin-top: -40px;
  }
}


.error-toast {
  top: 50% !important; /* Vertically center the toast */
  transform: translateY(-50%) !important; /* Adjust for proper centering */
}

.toast-center {
  top: 50% !important; /* Vertically center the toast */
  transform: translateY(-50%) !important; /* Adjust for proper centering */
  z-index: 9999; /* Ensure high z-index to stack properly */
}

:root {
  --bg: #ffffff; /* Replace with your actual background color */
  --fill: #ff8b00; /* Replace with your actual fill color */
}

.hourglass {
  display: block;
  background: var(--bg);
  margin: 3em auto;
  width: 2em;
  height: 4em;
  animation: hourglass 1s linear infinite;
}

.outer {
  fill: var(--fill);
}

.middle {
  fill: var(--bg);
}

@keyframes hourglass {
  0% {
      transform: rotate(0deg);
      box-shadow:
          inset 0 0 0 0 var(--fill),
          inset 0 -2em 0 0 var(--bg),
          inset 0 -4em 0 0 var(--fill);
  }
  80% {
      transform: rotate(0deg);
      box-shadow:
          inset 0 -2em 0 0 var(--fill),
          inset 0 -2em 0 0 var(--bg),
          inset 0 -2em 0 0 var(--fill);
  }
  100% {
      transform: rotate(180deg);
      box-shadow:
          inset 0 -2em 0 0 var(--fill),
          inset 0 -2em 0 0 var(--bg),
          inset 0 -2em 0 0 var(--fill);
  }
}


.custom-loader {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: relative;
  overflow: hidden;
 
  &::after {
    content: "";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #e74c3c;
    border-color: #e74c3c transparent #e74c3c transparent;
    animation: loader-spin 1.2s linear infinite;
  }
}
 
@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
 
.spinner-class {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
 

.error-input {
  border: 1px solid #ff0000; /* Red border */
}
