.header-1{
    background-color: #004990;
    box-shadow: 0 5px 5px 0 rgba(0,0,0,.2);
}

.header-logo{
    height: 60px;
    margin: 5px;
}

.logo-text{
    font-size:20px;
    color: white;
    font-weight: bold;
     font-family: "Roboto", sans-serif;
}

.logo-text-small{
    font-size:15px;
    color: white;
    font-weight: 400;
     font-family: "Roboto", sans-serif;
    line-height: 1.2;
}


.about-us-wrapper{
    background-color: #f7f4f4;
    padding: 5px;
    padding-top: 50px;

}


.akc-custom-h1{
    font-size: 26px;
    font-weight: bold;
     font-family: "Roboto", sans-serif;
}

.akc-custom-h2{
    font-size: 18px;
    font-weight: bold;
     font-family: "Roboto", sans-serif;
}


.akc-custom-h3{
    font-size: 18px;
    font-weight: bold;
     font-family: "Roboto", sans-serif;
}

.akc-custom-h4{
    font-size: 16px;
    font-weight: bold;
     font-family: "Roboto", sans-serif;
}

.color-primary-blue{
    color: #004990;
}

.color-black{
    color: black;
}

.color-light-black{
    color: #333;
}

.color-orange{
   color:#FC892A;
}

.bg-primary-blue{
    background-color: #E9F3FF;
    
}

.bg-light-success-2{
    background-color: #F1F7F5;
}

.akc-bg-dark{
    background-color: #333;
}

.akc-bg-light{
    background-color: #e5e5e5;
}


.border-primary-small{
    border: 1px solid #65a9ee !important;
    
}



.akc-shadow-md{
    /* box-shadow: 0 5px 5px 0 rgba(0,0,0,.1); */
    box-shadow: -20px 20px 100px -32px rgba(0, 0, 0, 0.08)
}


.akc-fs-0{
    font-size: 5px;
}

.akc-fs-1{
    font-size: 10px;
}

.akc-fs-2{
    font-size: 15px;
}

.akc-fs-3{
    font-size: 20px;
}

.akc-fs-4{
    font-size: 25px;
}

.akc-fs-5{
    font-size: 30px;
}

.akc-fs-6{
    font-size: 35px;
}

.akc-fs-7{
    font-size: 40px;
}

.akc-fs-8{
    font-size: 45px;
}

.akc-fs-9{
    font-size: 50px;
}

.akc-fs-10{
    font-size: 55px;
}


.akc-fw-1{
    font-weight: 100 !important;
}

.akc-fw-2{
    font-weight: 200 !important;
}

.akc-fw-3{
    font-weight: 300 !important;
}

.akc-fw-4{
    font-weight: 400 !important;
}

.akc-fw-5{
    font-weight: 500 !important;
}

.akc-fw-6{
    font-weight: 600 !important;
}

.akc-fw-7{
    font-weight: 700 !important;
}

.akc-fw-8{
    font-weight: 800 !important;
}

.akc-fw-9{
    font-weight: 900 !important;
}

.akc-custom-button{
    background-color: #004990;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
     font-family: "Roboto", sans-serif;
    transition: all 500ms ease;
}



.akc-required:after {
    content: "*";
    position: relative;
    font-size: inherit;
    color: #f1416c;
    padding-left: 0.25rem;
    font-weight: 600;
}





/* all inputs design */
.akc-custom-input {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid rgb(215, 216, 211);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 16px;
    color: #111111; /* Corrected the color code */
    transition: all 500ms ease;
   
}

/* focus and active */
.akc-custom-input:focus,
.akc-custom-input:active {
    border-color: #004990; /* Corrected the color code */
    box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
}

/* place holder change */
.akc-custom-input::placeholder {
    color: #909090; /* Corrected the color code */
}

.akc-custom-input-lg {
    height: 50px;
    font-size: 20px;
}


.akc-custom-input-circular {
    border-radius:10px;
}




/* Apply the class to all input types */
input[type="text"],
input[type="date"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea {
    @apply akc-custom-input; /* This will work with a preprocessor like Tailwind CSS */
}








  @supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .akc-custom-checkbox input[type=checkbox] {
      --active: #275EFE;
      --active-inner: #fff;
      --focus: 2px rgba(39, 94, 254, .3);
      --border: #BBC1E1;
      --border-hover: #275EFE;
      --background: #fff;
      --disabled: #F6F8FF;
      --disabled-inner: #E1E6F9;
      -webkit-appearance: none;
      -moz-appearance: none;
      height: 21px;
      outline: none;
      display: inline-block;
      vertical-align: top;
      position: relative;
      margin: 0;
      cursor: pointer;
      border: 1px solid var(--bc, var(--border));
      background: var(--b, var(--background));
      transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }
    .akc-custom-checkbox input[type=checkbox]:after {
      content: "";
      display: block;
      left: 0;
      top: 0;
      position: absolute;
      transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }
    .akc-custom-checkbox input[type=checkbox]:checked {
      --b: var(--active);
      --bc: var(--active);
      --d-o: .3s;
      --d-t: .6s;
      --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }
    .akc-custom-checkbox input[type=checkbox]:disabled {
      --b: var(--disabled);
      cursor: not-allowed;
      opacity: 0.9;
    }
    .akc-custom-checkbox input[type=checkbox]:disabled:checked {
      --b: var(--disabled-inner);
      --bc: var(--border);
    }
    .akc-custom-checkbox input[type=checkbox]:disabled + label {
      cursor: not-allowed;
    }
    .akc-custom-checkbox input[type=checkbox]:hover:not(:checked):not(:disabled) {
      --bc: var(--border-hover);
    }
    .akc-custom-checkbox input[type=checkbox]:focus {
      box-shadow: 0 0 0 var(--focus);
    }
    .akc-custom-checkbox input[type=checkbox]:not(.switch) {
      width: 21px;
    }
    .akc-custom-checkbox input[type=checkbox]:not(.switch):after {
      opacity: var(--o, 0);
    }
    .akc-custom-checkbox input[type=checkbox]:not(.switch):checked {
      --o: 1;
    }
    .akc-custom-checkbox input[type=checkbox] + label {
      display: inline-block;
      vertical-align: middle;
      cursor: pointer;
      margin-left: 4px;
    }

    .akc-custom-checkbox input[type=checkbox]:not(.switch) {
      border-radius: 7px;
    }
    .akc-custom-checkbox input[type=checkbox]:not(.switch):after {
      width: 5px;
      height: 9px;
      border: 2px solid var(--active-inner);
      border-top: 0;
      border-left: 0;
      left: 7px;
      top: 4px;
      transform: rotate(var(--r, 20deg));
    }
    .akc-custom-checkbox input[type=checkbox]:not(.switch):checked {
      --r: 43deg;
    }
  }

  .akc-custom-checkbox * {
    box-sizing: inherit;
  }
  .akc-custom-checkbox *:before,
  .akc-custom-checkbox *:after {
    box-sizing: inherit;
  }










/* Wrapper for select element */
.select-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

/* Styling the select element */
.akc-custom-select {
    display: block;
    width: 100%;
    /* height: 30px; */
    padding: 0px 5px;
    
    font-size: 13px;
    color: #111111;
    background-color: white;
    border: 1px solid rgba(237, 240, 230, 1);
    border-radius: 5px;
    appearance: none; /* Remove default select arrow */
    -webkit-appearance: none; /* Safari */
    -moz-appearance: none; /* Firefox */
    transition: all 500ms ease;
}

/* Add custom arrow as a background image */
.select-container::after {
    content: '\25BC'; /* Unicode for down arrow */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px; /* Adjust size as needed */
    color: #111111; /* Color for arrow */
    pointer-events: none; /* Prevent interaction with arrow */
}


.akc-justify-content-start{
    justify-content: start;
}

.akc-justify-content-sm-center{
    
}

/* // @media (min-width: 576px) { */

@media (max-width: 576px) {
    .akc-justify-content-sm-center{
        justify-content: center !important;
    }
}

.card{
    border: 0px solid rgba(0,0,0,.125);
    border-radius: 15px;
}



.akc-line-height-1{
    line-height: 1;
}


.justify-center-in-md-left-in-sm{
    justify-content: start !important;
}

@media (max-width: 576px) {
    .justify-center-in-md-left-in-sm{
        justify-content: center !important;
    }
}

.akc-rounded{
    border-radius: 10px;
}



@media (max-width: 576px) {
    .custom-flex-wrap {
      flex-wrap: wrap;
    }
  }