:root{
    --font-default: "Rubik-Regular";
    --font-primary: "Rubik-Medium";
    --font-secondary: "Rubik-SemiBold";
    --font-bold: "Rubik-Bold";
    --font-primary2: "Roboto-Medium";

    --color-default: rgba(0, 0, 0, 0.5);
    --color-primary: #08b3d1;
    --color-secondary: rgba(0, 0, 0, 0.85);

    scroll-behavior: smooth;


    --bs-blue: #0d6efd;
    --bs-darkblue: rgba(0, 0, 0, 0.73);
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #84BC42;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #07B3D2;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-white: #fff;
    --bs-dark: #212529;
}
body{
    font-family: var(--font-default);
    color: var(--color-secondary);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
a{
    color: var(--color-primary);
    text-decoration: none;
}
a:hover,a:focus {
    color: var(--bs-black);
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  margin: 0px;
}
p{
    margin: 0px;
}
ul{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
label{
    display: block;
    margin: 0px;
}
button,button:focus{
  outline: none;
}
.section-bg {
    background-color: #fff;
}
.section-header {
    text-align: center;
    padding-bottom: 30px;
}
.section-header h2 {
    font: 22/24px var(--font-secondary);
    color: #7f7f90;
}
.section-header p {
    font: 16/20px var(--font-primary);
}
.container-fluid{
    width: 95%;
    max-width: 1750px;
    margin-left: auto;
    margin-right: auto;
}
section{
  max-width: 1990px;
}
.block-box{
    display: block !important;
}
.full-height{
    height: 100vh;
}
.col-12{
  width: 100% !important;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  display: flex;
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  margin-top: 30px;
}
.breadcrumbs li{
  margin-right: 20px;
  position: relative;
}
.breadcrumbs li:after{
  content: '';
  position: absolute;
  top: 7px;
  right: -13px;
  width: 6px;
  height: 6px;
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: #7f7f7f;
  background: transparent;
  transform: rotate(312deg);
}
.breadcrumbs li:last-child::after{
  content: '';
  border: none;
}
.breadcrumbs li:last-child{
  margin-right: 0px;
}
.breadcrumbs li a{
  font: 22/24px var(--font-secondary);
  letter-spacing: -.5px;
  color: #7f7f7f;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
  }
  
  #loading:before,
  #loading:after {
    content: "";
    position: absolute;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  
  #loading:after {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      width: 10px;
      height: 10px;
      top: calc(50% - 5px);
      left: calc(50% - 5px);
      opacity: 1;
    }
  
    100% {
      width: 72px;
      height: 72px;
      top: calc(50% - 36px);
      left: calc(50% - 36px);
      opacity: 0;
    }
  }
  
  @keyframes animate-preloader {
    0% {
      width: 10px;
      height: 10px;
      top: calc(50% - 5px);
      left: calc(50% - 5px);
      opacity: 1;
    }
  
    100% {
      width: 72px;
      height: 72px;
      top: calc(50% - 36px);
      left: calc(50% - 36px);
      opacity: 0;
    }
  }
/* --------------------------- */
/* input */
/* --------------------------- */
  input{
    border: none;
    border-radius: 0px;
    padding: 0px;
    background-color: transparent;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
  }
  textarea{
    outline: none;
    appearance: none;
    border: none;
    resize: none;
  }
  /* Date */
  input[type="date"]::-webkit-inner-spin-button,
  input[type="date"]::-webkit-calendar-picker-indicator {
      display: none;
      -webkit-appearance: none;
  }
  /* Time */

  input[type="time"]::-webkit-inner-spin-button,
  input[type="time"]::-webkit-calendar-picker-indicator {
      display: none;
      -webkit-appearance: none;
  }
  /* animation */
  .input-animation{

  }
  .label-animation{
    position: absolute;
    transform: translateY(-17px);
    transition: .5s;
  }
  .input-animation:focus ~ label, 
  .input-animation:-webkit-autofill ~ label, 
  .input-animation:valid ~ label, 
  .input-animation:not(:placeholder-shown).input-animation:not(:focus) ~ label{
    transform: translateY(-33px);
  }
/* --------------------------- */
    /* Custom Button */
/* --------------------------- */
.cust-btn{
    font: 15px/18px var(--font-primary);
    border: 1px solid transparent;
    background-color: transparent;
    padding: 10px 50px;
    border-radius: 10px;
    white-space: nowrap;
}
.btn-green{
    background-color: var(--bs-green);
    color: var(--bs-white);
    height: 100%;
}
.btn-darkblue{
  font: 20px/26px var(--font-primary) !important;
  letter-spacing: -0.555556px;
  background-color: var(--bs-darkblue);
  color: var(--bs-white);
  height: 100%;
  padding: 16px 25px !important;
  margin-top: 20px;
}
.cust-btn-md{
  padding: 10px 35px;
  font: 16px/18px var(--font-primary);
}

/* --------------------------- */
/* drop down */
/* --------------------------- */
.drop-down-set{
    display: flex;
    flex-direction: column;
    position: relative;
}
.drop-down-set p{
    font: 14px/16px var(--font-default);
    letter-spacing: -0.4375px;
    color: var(--bs-white);
    position: relative;
    cursor: pointer;
}
.drop-down-set p:after{
    content: '';
    position: absolute;
    top: 2px;
    right: -12px;
    width: 6px;
    height: 6px;
    border-width: 0px 1px 1px 0px;
    border-style: solid;
    border-color: #fff;
    background: transparent;
    transform: rotate(45deg);
}
.drop-down-list{
    display: none;
}
.drop-down-list.active{
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #fff;
    width: 150px;
    height: auto;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0px -1px 14px #34343429;
    z-index: 2;
    margin-top: 35px;
}   
.drop-down-list ul li{
    border-bottom: 1px solid #f2f2f2;
    padding: 6px 0px;
} 
.drop-down-list ul li:last-child{
    border-bottom: none;
}
.drop-down-list ul li a{
    color: var(--bs-gray-800);
}
.payment-btn-set{
  width: 100%;
  text-align: center;
}
.payment-btn{
  width: 360px;
  height: 60px;
  background-color: #84BC42;
  white-space: nowrap;
  color: #fff;
  font: 20px/22px var(--font-primary);
  letter-spacing: -0.625px;
  border: 1px solid transparent;
  padding: 10px 50px;
  border-radius: 14px;
  margin-top: 40px;
}