@import url(https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@media (prefers-reduced-motion: no-preference) {
    :root {
      scroll-behavior: smooth;
    --bs-blue: #033c73;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #e83e8c;
    --bs-red: #c71c22;
    --bs-orange: #fd7e14;
    --bs-yellow: #dd5600;
    --bs-green: #73a839;
    --bs-teal: #20c997;
    --bs-cyan: #2fa4e7;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #868e96;
    --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: #868e96;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: rgb(26, 153, 206);
    --bs-secondary: #e9ecef;
    --bs-success: #73a839;
    --bs-info: #033c73;
    --bs-warning: #dd5600;
    --bs-danger: #c71c22;
    --bs-light: #f8f9fa;
    --bs-dark: #343a40;
    --bs-primary-rgb: 47, 164, 231;
    --bs-secondary-rgb: 233, 236, 239;
    --bs-success-rgb: 115, 168, 57;
    --bs-info-rgb: 3, 60, 115;
    --bs-warning-rgb: 221, 86, 0;
    --bs-danger-rgb: 199, 28, 34;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 52, 58, 64;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 73, 80, 87;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, 'Segoe UI', Roboto,
        'Helvetica Neue', 'Noto Sans', 'Liberation Sans', Arial, sans-serif,
        'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
        'Noto Color Emoji';
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        'Liberation Mono', 'Courier New', monospace;
    --bs-gradient: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0)
    );
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #495057;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #2fa4e7;
    --bs-link-hover-color: #2683b9;
    --bs-code-color: #e83e8c;
    --bs-highlight-bg: #f8ddcc;
}
}

/* Container */
body { margin: 0; }

.web-layout h2{
      margin-top: 20px;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    width: 540px;
  }
}
@media (min-width: 768px) {
    .container {
        width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1140px;
    }
}
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before{
 display: table;
    clear: both;
    content: ' ';
}
/* Row */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* Navbar Container */
.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}




.flex-wrap {
    flex-wrap: wrap !important;
}
.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.fw-light {
    font-weight: 300 !important;
}
.fw-lighter {
    font-weight: lighter !important;
}
.fw-normal {
    font-weight: 400 !important;
}
.fw-bold {
    font-weight: 700 !important;
}
.fw-semibold {
    font-weight: 600 !important;
}
.fw-bolder {
    font-weight: bolder !important;
}
.d-none {
    display: none !important;
}
.w-100 {
    width: 100% !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.pt-5 {
    padding-top: 3rem !important;
}
.pb-1 {
    padding-bottom: 0.25rem !important;
}
.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
.rounded {
    border-radius: var(--bs-border-radius) !important;
}

.text-right {
    text-align: right;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(
        var(--bs-light-rgb),
        var(--bs-bg-opacity)
    ) !important;
}


.col-xs-6 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    float: left;
    width: 50%;
    padding-left: 15px;
}


/* Column Widths */

    .col-1 {flex: 0 0 auto;width: 8.33333333%;}
    .col-2 {flex: 0 0 auto;width: 16.66666667%;}
    .col-3 {flex: 0 0 auto;width: 25%;}
    .col-4 {flex: 0 0 auto;width: 33.33333333%;}
    .col-5 {flex: 0 0 auto;width: 41.66666667%;}
    .col-6 {flex: 0 0 auto;width: 50%;}
    .col-7 {flex: 0 0 auto;width: 58.33333333%;}
    .col-8 {flex: 0 0 auto;width: 66.66666667%;}
    .col-9 {flex: 0 0 auto;width: 75%;}
    .col-10 {flex: 0 0 auto;width: 83.33333333%;}
    .col-11 {flex: 0 0 auto;width: 91.66666667%;}
    .col-12 {flex: 0 0 auto;width: 100%;}
@media (min-width: 576px) {
    .d-sm-block { display: block !important; }
    .col-sm-1 {flex: 0 0 auto;width: 8.33333333%;}
    .col-sm-2 {flex: 0 0 auto;width: 16.66666667%;}
    .col-sm-3 {flex: 0 0 auto;width: 25%;}
    .col-sm-4 {flex: 0 0 auto;width: 33.33333333%;}
    .col-sm-5 {flex: 0 0 auto;width: 41.66666667%;}
    .col-sm-6 {flex: 0 0 auto;width: 50%;}
    .col-sm-7 {flex: 0 0 auto;width: 58.33333333%;}
    .col-sm-8 {flex: 0 0 auto;width: 66.66666667%;}
    .col-sm-9 {flex: 0 0 auto;width: 75%;}
    .col-sm-10 {flex: 0 0 auto;width: 83.33333333%;}
    .col-sm-11 {flex: 0 0 auto;width: 91.66666667%;}
    .col-sm-12 {flex: 0 0 auto;width: 100%;}
}
@media (min-width: 768px) {
    .d-md-none { display: none !important;}
    .d-md-block { display: block !important; }
    .col-md-1 {flex: 0 0 auto;width: 8.33333333%;}
    .col-md-2 {flex: 0 0 auto;width: 16.66666667%;}
    .col-md-3 {flex: 0 0 auto;width: 25%;}
    .col-md-4 {flex: 0 0 auto;width: 33.33333333%;}
    .col-md-5 {flex: 0 0 auto;width: 41.66666667%;}
    .col-md-6 {flex: 0 0 auto;width: 50%;}
    .col-md-7 {flex: 0 0 auto;width: 58.33333333%;}
    .col-md-8 {flex: 0 0 auto;width: 66.66666667%;}
    .col-md-9 {flex: 0 0 auto;width: 75%;}
    .col-md-10 {flex: 0 0 auto;width: 83.33333333%;}
    .col-md-11 {flex: 0 0 auto;width: 91.66666667%;}
    .col-md-12 {flex: 0 0 auto;width: 100%;}
}
@media (min-width: 992px) {
    .col-lg-1 {flex: 0 0 auto;width: 8.33333333%;}
    .col-lg-2 {flex: 0 0 auto;width: 16.66666667%;}
    .col-lg-3 {flex: 0 0 auto;width: 25%;}
    .col-lg-4 {flex: 0 0 auto;width: 33.33333333%;}
    .col-lg-5 {flex: 0 0 auto;width: 41.66666667%;}
    .col-lg-6 {flex: 0 0 auto;width: 50%;}
    .col-lg-7 {flex: 0 0 auto;width: 58.33333333%;}
    .col-lg-8 {flex: 0 0 auto;width: 66.66666667%;}
    .col-lg-9 {flex: 0 0 auto;width: 75%;}
    .col-lg-10 {flex: 0 0 auto;width: 83.33333333%;}
    .col-lg-11 {flex: 0 0 auto;width: 91.66666667%;}
    .col-lg-12 {flex: 0 0 auto;width: 100%;}
}

/* Text alignment */
.text-center { text-align: center !important; }

/* Gutters */
.g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

/* Cursor */
.cursor-pointer { cursor: pointer !important; }

/* Spacing */
.mb-0 { margin-bottom: 0 !important; }
.mb40 { margin-bottom: 40px !important; }
.mt-2 { margin-top: 0.5rem !important; }
.m-b5 { margin-bottom: 5px !important; }
.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
.py-8 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Flex and alignment */
.d-flex { display: flex !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
/* Body Reset */



.p-tb20 { padding-top: 20px; padding-bottom: 20px; }
.p-t80 { padding-top: 80px; }
.p-b70 { padding-bottom: 70px; }
.p-t50 { padding-top: 50px; }
.p-b60 { padding-bottom: 60px; }
.p-tb100 { padding-top: 100px; padding-bottom: 100px; }
.m-lr70 { margin-left: 70px; margin-right: 70px; }
.m-b10 { margin-bottom: 10px; }
.m-b0 { margin-bottom: 0; }
.m-b5 { margin-bottom: 5px; }
.m-b30p { margin-bottom: 30%; }
.m-b5p { margin-bottom: 5%; }
.m-b30 { margin-bottom: 30px; }
.m-t3 { margin-top: 3px; }
.m-t10 { margin-top: 10px; }
.m-t20 { margin-top: 20px; }
.my-16 { margin-top: 4rem; margin-bottom: 4rem; }
.mx-md-7 { @media (min-width: 768px) { margin-left: 3rem; margin-right: 3rem; } }

.font-40 { font-size: 40px; }
.font-30 { font-size: 30px; }

.site-button { /* your custom button styles */ }
.gray { background: #eee; }
.radius-xl { border-radius: 1.5rem; }
.black { color: #000; }

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s,
        -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #999;
}
.form-control::-webkit-input-placeholder {
    color: #999;
}
.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
    cursor: not-allowed;
}
textarea.form-control {
    height: auto;
}
input[type='search'] {
    -webkit-appearance: none;
}