@font-face {
  font-family: "Avenir-Small";
  src: url("../fonts/AvenirLTStd-Book.otf") format("opentype");
}

@font-face {
  font-family: "Avenir-Medium";
  src: url("../fonts/AvenirLTStd-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Avenir-Bold";
  src: url("../fonts/AvenirLTStd-Black.otf") format("opentype");
}

h1 {
  font-size: 50px;
  font-family: "Avenir-Bold", sans-serif;
}

h2,
h3,
h4,
h5,
h6,
strong {
  font-family: "Avenir-Medium", sans-serif;
}

p,
span,
strong,
a,
li {
  font-size: 14px;
}

:root {
  --primary: #004AAD;
  --secondary: #117533;
  --black: #000000;
  --light-primary: #e3edff;
  --gray: #5f5f5f;
  --light-gray: #dadada;
  --orange: #ff5000;
  --red: #e61111;
  --white: #ffffff;
  --darkish: linear-gradient(var(--gray), #696969);
  --background: linear-gradient(var(--primary), #46badd);
  --secondry-background: linear-gradient(var(--secondary), #70c08b);
}

.orange {
  color: var(--orange);
}

.background {
  background-image: var(--background);
}

i,
:before,
:after {
  font-family: "FontAwesome";
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-image: var(--background);
}

::-webkit-scrollbar-track {
  background: var(--light-primary);
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
}

input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input:focus-visible {
  outline: none;
}

* {
  transition-duration: 0.3s;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding-top: 70px;
  font-family: "Avenir-Small", sans-serif;
}

.containerboss {
  width: 90%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: var(--primary);
  cursor: pointer;
}

img {
  max-width: 100%;
  max-height: 100%;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

button {
  outline: none;
}

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

label {
  cursor: pointer;
}

.color {
  color: var(--primary);
}

.form-control {
  border-radius: 3px !important;
  position: relative;
}

.form-select:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
}

form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(100%);
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 2;
}

.proper-background {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.heading {
  position: relative;
  padding-bottom: 15px !important;
  display: flex;
  justify-content: center;
}


.heading:before {
  content: "";
  position: absolute;
  width: 60px;
  bottom: 5px;
  border-radius: 4px;
  border: 2px solid;
}

button.primary-button {
  padding: 8px 40px;
  border: none;
  border-radius: 3px;
  position: relative;
  background-color: transparent;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

button.primary-button:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  z-index: -2;
}

button.primary-button:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-radius: 100px;
  background-color: rgb(0, 0, 0);
  z-index: -1;
  transition-duration: .3s;
}

button.primary-button:hover {
  color: white;
}

button.primary-button:hover:after {
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition-duration: .3s;
}
.sticky-button{
  position: sticky;
  top: 100px;
}
/* ***************carosol******************* */
.owl-carousel {
  z-index: 0;
}

.owl-dots {
  display: none;
}

.show-dots {
  padding-bottom: 30px;
}

.show-dots .owl-dots {
  display: flex;
  justify-content: center;
  padding: 10px;
  bottom: 0;
  position: absolute;
  width: 100%;
}

.owl-dots button {
  width: 10px;
  height: 10px;
  margin: 0px 4px;
  background-color: var(--primary) !important;
  border-radius: 10px;
  opacity: 0.5;
}

.owl-dots button.active {
  width: 20px;
  opacity: 1;
}

.show-nav {
  display: flex !important;
  align-items: center;
}

.show-nav .owl-nav {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  left: 0;
}

.show-nav .owl-nav button {
  width: 50px;
  height: 50px;
  background-image: var(--background) !important;
  color: var(--white) !important;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-nav .owl-nav button:hover {
  opacity: 1;
}

.show-nav .owl-nav button.owl-prev {
  border-radius: 52px;
  border-bottom-left-radius: 0;
  left: -50px;
  position: absolute;
  transform: rotate(45deg);
}

.show-nav .owl-nav button.owl-prev span {
  transform: rotate(-45deg);
}

.show-nav .owl-nav button.owl-next {
  border-radius: 52px;
  border-bottom-right-radius: 0;
  right: -50px;
  position: absolute;
  transform: rotate(-45deg);
}

.show-nav .owl-nav button.owl-next span {
  transform: rotate(45deg);
}

.show-nav .owl-nav button span {
  font-size: 40px;
  position: relative;
  bottom: 2px;
}

/* ***************carosol******************* */
/* ***************popup******************* */
.popup {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
}

.popup form {
  max-height: 80vh;
  overflow-x: hidden;
}

.popup.open {
  display: flex;
}

.popup .popupcard {
  background-color: var(--white);
  z-index: 4;
}

.popup .close-button {
  position: absolute;
  right: -11px;
  top: -13px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: var(--white);
  background-color: var(--bs-danger);
  border-radius: 4px;
}

.popup .popupbg {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #000000af;
}

.popup h5 {
  font-family: "Avenir-Bold", sans-serif;
}

.popup .fs-5 {
  font-family: "Avenir-Bold", sans-serif;
}

.popup small {
  color: var(--gray);
  font-size: 12px;
}

/* ***************popup******************* */
/* ***************content******************* */
.content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  font-family: 'Segoe UI', sans-serif;
  margin: 10px 0;
  padding: 5px;
}

.content p {
  font-size: 16px;
  margin-bottom: 15px;
  padding: 5px;
}

.content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
}

.content ul,
.content ol {
  padding: 5px;
}

.content li {
  margin-bottom: 5px;
  position: relative;
  display: flex;
  padding-left: 30px;
}

.content li:before {
  content: "\f101";
  position: absolute;
  width: 30px;
  text-align: center;
  left: 0;
  color: var(--primary);
}

.content img {
   width: 100%;
  height: auto;
  margin: 15px 0;
  padding: 5px;
  border-radius: 20px;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  max-width: 100%;
  padding-bottom: 10px;
}



.content th,
.content td {
  padding: 10px;
  text-align: left;
  white-space: nowrap;
  font-size: 15px;
  border: 1px solid #bdc3c7;
}

/* ***************content******************* */
/* ***************faq******************* */
.faqs label {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}

.faqs label strong {
  padding: 10px 40px 10px 40px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #bac6d982;
  overflow: hidden;
}

.faqs label strong:before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  left: -51px;
  top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #012b72;
  transform: rotate(45deg);
}

.faqs label input:checked~strong:before {
  display: none;
}

.faqs label input:checked~strong {
  padding: 10px 40px 10px 20px;
}

.faqs label strong:after {
  content: "\2b";
  position: absolute;
  width: 40px;
  height: 100%;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faqs label .ans {
  display: none;
  padding: 15px;
  box-shadow: 0px 0px 22px 0px var(--light-gray) inset;
}

.faqs label input:checked~strong {
  background-color: #012b72;
  color: var(--white);
}

.faqs label input:checked~strong:after {
  content: "\f068";
}

.faqs label input:checked~.ans {
  display: block;
}

@media (max-width: 768px) {
  .faqs label strong {
    padding: 10px 40px 10px 10px;
  }

  .faqs label strong:before {
    display: none;
  }
}

/* ***************faq******************* */