 
/*-------------------------------------------------------------- # General --------------------------------------------------------------*/
:root {
    --gray-color: #808080;
    --black-color: #000;
    --white-color: #fff;
    --white-color-1: #eee;
    --primary-color: #D92127;
    --secondary-color: #18509E;
    --secondary-light-color: #eaf3ff;
    --light-blue: #64748b;
    --box-shadow: #36c5f011;
    --text-color: #242424;
    --form-bg: #F0F5F7;
    --title-font: 'Saira', sans-serif;
    --body-font: 'Poppins', sans-serif;
    --transition-figure: all 0.5s cubic-bezier(0.23, 0.03, 0, 1.08);
    --white-light-bg: #f8f9fa;
    --form-border: #cde5fe;
}
*{
    padding: 0;
    margin: 0;
}
html{
    overflow-x: hidden;
}
body{
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    overflow-x: hidden;
    color: var(--text-color);
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}
h1, h2, h3, h4, h5{
    font-family: var(--title-font);
}
a, a:hover, a:focus, a:visited {
    text-decoration: none;
    box-shadow: none !important;
}

/* ===== Scrollbar CSS ===== */

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #D92127 #F5F5F5;
}


/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
  height: 5px;
}

*::-webkit-scrollbar-track {
  background: #F5F5F5;
}

*::-webkit-scrollbar-thumb {
  background-color: #D92127;
  border-radius: 10px;
  border: 3px solid #F5F5F5;
}



::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}
::-moz-placeholder {
    color: inherit;
    opacity: 1;
}
:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}
::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}
::placeholder {
    color: inherit;
    opacity: 1;
}
p{
    color: var(--gray-color);
}
dl, ol, ul {
    margin-top: 0;
    padding: 0;
}
li{
    list-style: none;
}
input, button{
    outline: 0 !important;
    box-shadow: none !important;
    border: 0;
}
.list-inline {
    padding-left: 0;
    list-style: none;
}
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #8f8f8f #8f8f8f;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
*::-webkit-scrollbar-track {
    background: var(--white-color)fff0a;
}
*::-webkit-scrollbar-thumb {
    background-color: var(--gray-color);
    border-radius: 10px;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
   /* Edge */
    color: var(--gray-color);
    font-weight: 400;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
   /* Internet Explorer 10-11 */
    color: var(--gray-color);
    font-weight: 400;
}
input::placeholder, textarea::placeholder {
    color: var(--gray-color);
    font-weight: 400;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.light-white-bg{
    background-color: var( --white-light-bg);
}
.form-label {
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
    color: var(--label-color);
}
.form-input-1{
    font-size: 16px;
    width: 100%;
    padding: 10px 15px;
    border: 1.5px solid var(--form-border) !important;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    color: var(--black-color) !important;
    background-color: var(--form-bg) !important;
    background: var(--form-bg) !important;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-weight: 500;
    height: 48px;
}
.dark-bg-form .form-input-1{
    background-color: var(--white-color) !important;
    border-color: var(--white-color) !important;
    color: var(--dark-color) !important;
}
textarea {
    font-size: 16px;
    width: 100%;
    padding: 10px 20px;
    border: 1.5px solid var(--form-bg);
    border-radius: 6px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    min-height: 100px;
    color: var(--black-color);
    resize: none;
    background-color: var(--form-bg) !important;
    background: var(--form-bg) !important;
}
.form-input-1:focus, textarea:focus {
    outline: 0;
    border-color: var(--secondary-color) !important;
    background-color: var(--white-color) !important;
    background: var(--white-color) !important;
}


.btn1 {
    padding: 0.5rem 2rem;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    border: 0px;
    font-weight: 600;
    box-shadow: 0px 0px 14px -7px var(--secondary-color);
    background-image: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color)  51%, var(--primary-color)  100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
  }
  
  .btn1:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: var(--white-color);
    text-decoration: none;
  }
  
  /* .btn1:active {
    transform: scale(0.95);
  }
   */
  .btn-1 {
    padding: 0.5rem 2rem;
    text-align: center;
    border-radius: 50rem;
    display: inline-block;
    font-family: var(--body-font);
    background: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    color: var(--white-color);
    transition: all 0.3s;
    overflow: hidden;
    z-index: 1;
  }
  .btn-1::after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--black-color);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: -3;
  }
  .btn-1 svg {
    fill: var(--white-color);
    transition: all 0.5s;
  }
  .btn-1 span {
    margin-left: 8px;
    font-size: 1.5rem;
    width: 100%;
    z-index: 1;
    transition: all 0.4s ease-in-out;
  }
  .btn-1:hover {
    color: var(--white-color);
    background-color: var(--secondary-color);
  }
  .btn-1:hover::after {
    right: auto;
    left: 0;
    width: 100%;
  }
  .btn-1:hover svg {
    fill: currentColor;
    fill: var(--white-color);
    transform: translate(5px);
  }
  .btn-1:hover span {
    color: var(--white-color);
  }
  .btn-2 {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    padding: 0.5rem 2rem;
    border-radius: 100px;
    background: var(--secondary-color) !important;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 15px;
    width: fit-content;
    color: var(--white-color) !important;
  }
  
  .btn-2:hover {
    background: var(--primary-color) !important;
  }
  
  .btn-2 > svg {
    width: 34px;
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
  }
  
  .btn-2:hover svg {
    transform: translateX(5px);
  }
/*   
  .btn-2:active {
    transform: scale(0.95);
  } */
  


  .primary-color{
    color: var(--primary-color) !important;
  }




  .select2-container{
    width: 100% !important;
  }
  
  .select2-container--default .select2-selection--single{
    height: 34px;
  }

  .form-check-input:checked{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }