@font-face {
    font-family: 'Founders Grotesk';
    src: url('../fonts/FoundersGrotesk-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Founders Grotesk';
    src: url('../fonts/FoundersGrotesk-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

 :root {
    --green-dark: #275C3D;
    --green-light: #6db657;
    --gray: #858796;
    --white: #fff;
    --black: #000;
    --white-light: rgba(255, 255, 255, 0.295);
    --bs-primary: #275C3D;
    --bs-secondary: #6db657;
    --bs-success: #28a745;
    --bs-info: #17a2b8;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #343a40;
    --bs-font-family-sans-serif: "Founders Grotesk", Roboto, sans-serif, Montserrat;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: inherit;
}

html {
    font-family: Montserrat;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    max-width: 100%;
    overflow-x: hidden;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
    padding: 50px 100px;
    margin: 20px 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    text-align: left;
    background-color: #FAFAFA;
    max-width: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Founders Grotesk', 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.green-dark {
    color: var(--green-dark);
}

.green-light {
    color: var(--green-light);
}

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

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

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

.bg-p-green-white {
    background-color: #6cc04a;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.6;
}

.bg-p-green {
    background-color: #285D3E;
    color: #6cc04a;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    font-size: 2.5rem;
    font-weight: bold;
}

.line-green {
    border: none;
    height: 5px;
    background-color: #6cc04a;
}

.line-gray {
    border: none;
    height: 3px;
    background-color: #343a40;
}

.white-light {
    color: var(--white-light);
}

.text-justify {
    text-align: justify !important;
}

.full-width-banner {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    z-index: 0;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-primary {
    color: #fff;
    background-color: #275C3D;
    border-color: #275C3D;
    border-radius: 30px;
    position: relative;
    text-align: center;
    height: 2.3em;
}

.btn-primary:hover {
    color: #fff;
    background-color: #2a7e4d;
    border-color: #2a7e4d;
}

.btn-primary.focus,
.btn-primary:focus {
    color: #fff;
    background-color: #2a7e4d;
    border-color: #2a7e4d;
    box-shadow: 0 0 0 0.2rem rgba(59, 133, 49, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #275C3D;
    border-color: #275C3D;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #2a7e4d;
    border-color: #2a7e4d;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(59, 133, 49, 0.5);
}

.btn-secondary {
    color: #fff;
    background-color: #6db657;
    border-color: #6db657;
    border-radius: 30px;
    text-align: center;
    height: 2.3em;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #82c96d;
    border-color: #82c96d;
}

.btn-secondary.focus,
.btn-secondary:focus {
    color: #fff;
    background-color: #82c96d;
    border-color: #82c96d;
    box-shadow: 0 0 0 0.2rem rgba(96, 209, 106, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #6db657;
    border-color: #6db657;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #82c96d;
    border-color: #82c96d;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(96, 209, 106, 0.5);
}

.btn-light {
    color: #6db657;
    background-color: #f8f9fc;
    border-color: #f8f9fc;
    border-radius: 30px;
    text-align: center;
    height: 2.3em;
}

.btn-light:hover {
    color: #6db657;
    background-color: #dde2f1;
    border-color: #d4daed;
}

.btn-light.focus,
.btn-light:focus {
    color: #6db657;
    background-color: #dde2f1;
    border-color: #d4daed;
    box-shadow: 0 0 0 0.2rem rgba(220, 221, 225, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
    color: #6db657;
    background-color: #f8f9fc;
    border-color: #f8f9fc;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
    color: #6db657;
    background-color: #d4daed;
    border-color: #cbd3e9;
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(221, 225, 220, 0.5);
}

.btn-outline-light {
    color: #f8f9fc;
    border-color: #f8f9fc;
    border-radius: 30px;
    text-align: center;
    height: 2.3em;
}

.btn-outline-light:hover {
    color: #3a3b45;
    background-color: #f8f9fc;
    border-color: #f8f9fc;
}

.btn-outline-light.focus,
.btn-outline-light:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 252, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #f8f9fc;
    background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show>.btn-outline-light.dropdown-toggle {
    color: #3a3b45;
    background-color: #f8f9fc;
    border-color: #f8f9fc;
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 252, 0.5);
}

.btn-outline-dark {
    color: #5a5c69;
    border-color: #5a5c69;
    border-radius: 30px;
    text-align: center;
    height: 2.3em;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #5a5c69;
    border-color: #5a5c69;
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
    box-shadow: 0 0 0 0.2rem rgba(90, 92, 105, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #5a5c69;
    background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #5a5c69;
    border-color: #5a5c69;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(90, 92, 105, 0.5);
}

.btn-outline-green-dark {
    color: #275C3D;
    border-color: #275C3D;
    border-radius: 30px;
    text-align: center;
    height: 2.3em;
}

.btn-outline-green-dark:hover {
    color: #275C3D;
    background-color: #3881428a;
    border-color: #275C3D;
}

.btn-outline-green-dark.focus,
.btn-outline-green-dark:focus {
    box-shadow: 0 0 0 0.2rem rgba(17, 94, 30, 0.5);
}

.btn-outline-green-dark.disabled,
.btn-outline-green-dark:disabled {
    color: #275C3D;
    background-color: transparent;
}

.btn-outline-green-dark:not(:disabled):not(.disabled).active,
.btn-outline-green-dark:not(:disabled):not(.disabled):active,
.show>.btn-outline-green-dark.dropdown-toggle {
    color: #f8f9fa;
    background-color: #275C3D;
    border-color: #275C3D;
}

.btn-outline-green-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-green-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-green-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(17, 94, 30, 0.5);
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[data-original-title],
abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: #275C3D;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #4edf55;
    text-decoration: none;
}

a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

code,
kbd,
pre,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #858796;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

 ::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.h1,
h1 {
    font-size: 2.5rem;
}

.h2,
h2 {
    font-size: 2rem;
}

.h3,
h3 {
    font-size: 1.75rem;
}

.h4,
h4 {
    font-size: 1.5rem;
}

.h5,
h5 {
    font-size: 1.25rem;
}

.h6,
h6 {
    font-size: 1rem;
}

.icon-sm {
    font-size: 5px;
}

.icon-md {
    font-size: 24px;
}

.icon-lg {
    font-size: 40px;
}

.icon-xl {
    font-size: 60px;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-4 {
    font-size: 3.75rem;
    font-weight: 600;
    line-height: 1.2;
}

.display-5 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
    font-size: 80%;
    font-weight: 400;
}

mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #858796;
}

.blockquote-footer::before {
    content: "\2014\00A0";
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dddfeb;
    border-radius: 0.35rem;
    max-width: 100%;
    height: auto;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 90%;
    color: #858796;
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-wrap: break-word;
}

a>code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #3a3b45;
    border-radius: 0.2rem;
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
}

pre {
    display: block;
    font-size: 87.5%;
    color: #3a3b45;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    width: 100%;
    padding-right: 1rem;
    padding-left: 0.5rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container,
    .container-sm,
    .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.row-cols-1>* {
    flex: 0 0 100%;
    max-width: 100%;
}

.row-cols-2>* {
    flex: 0 0 50%;
    max-width: 50%;
}

.row-cols-3>* {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.row-cols-4>* {
    flex: 0 0 25%;
    max-width: 25%;
}

.row-cols-5>* {
    flex: 0 0 20%;
    max-width: 20%;
}

.row-cols-6>* {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    order: -1;
}

.order-last {
    order: 13;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.order-12 {
    order: 12;
}

.offset-1 {
    margin-left: 8.33333%;
}

.offset-2 {
    margin-left: 16.66667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333%;
}

.offset-5 {
    margin-left: 41.66667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333%;
}

.offset-8 {
    margin-left: 66.66667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333%;
}

.offset-11 {
    margin-left: 91.66667%;
}

@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .row-cols-sm-1>* {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-sm-2>* {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .row-cols-sm-3>* {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .row-cols-sm-4>* {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .row-cols-sm-5>* {
        flex: 0 0 20%;
        max-width: 20%;
    }
    .row-cols-sm-6>* {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-sm-first {
        order: -1;
    }
    .order-sm-last {
        order: 13;
    }
    .order-sm-0 {
        order: 0;
    }
    .order-sm-1 {
        order: 1;
    }
    .order-sm-2 {
        order: 2;
    }
    .order-sm-3 {
        order: 3;
    }
    .order-sm-4 {
        order: 4;
    }
    .order-sm-5 {
        order: 5;
    }
    .order-sm-6 {
        order: 6;
    }
    .order-sm-7 {
        order: 7;
    }
    .order-sm-8 {
        order: 8;
    }
    .order-sm-9 {
        order: 9;
    }
    .order-sm-10 {
        order: 10;
    }
    .order-sm-11 {
        order: 11;
    }
    .order-sm-12 {
        order: 12;
    }
    .offset-sm-0 {
        margin-left: 0;
    }
    .offset-sm-1 {
        margin-left: 8.33333%;
    }
    .offset-sm-2 {
        margin-left: 16.66667%;
    }
    .offset-sm-3 {
        margin-left: 25%;
    }
    .offset-sm-4 {
        margin-left: 33.33333%;
    }
    .offset-sm-5 {
        margin-left: 41.66667%;
    }
    .offset-sm-6 {
        margin-left: 50%;
    }
    .offset-sm-7 {
        margin-left: 58.33333%;
    }
    .offset-sm-8 {
        margin-left: 66.66667%;
    }
    .offset-sm-9 {
        margin-left: 75%;
    }
    .offset-sm-10 {
        margin-left: 83.33333%;
    }
    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .row-cols-md-1>* {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-md-2>* {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .row-cols-md-3>* {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .row-cols-md-4>* {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .row-cols-md-5>* {
        flex: 0 0 20%;
        max-width: 20%;
    }
    .row-cols-md-6>* {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-md-first {
        order: -1;
    }
    .order-md-last {
        order: 13;
    }
    .order-md-0 {
        order: 0;
    }
    .order-md-1 {
        order: 1;
    }
    .order-md-2 {
        order: 2;
    }
    .order-md-3 {
        order: 3;
    }
    .order-md-4 {
        order: 4;
    }
    .order-md-5 {
        order: 5;
    }
    .order-md-6 {
        order: 6;
    }
    .order-md-7 {
        order: 7;
    }
    .order-md-8 {
        order: 8;
    }
    .order-md-9 {
        order: 9;
    }
    .order-md-10 {
        order: 10;
    }
    .order-md-11 {
        order: 11;
    }
    .order-md-12 {
        order: 12;
    }
    .offset-md-0 {
        margin-left: 0;
    }
    .offset-md-1 {
        margin-left: 8.33333%;
    }
    .offset-md-2 {
        margin-left: 16.66667%;
    }
    .offset-md-3 {
        margin-left: 25%;
    }
    .offset-md-4 {
        margin-left: 33.33333%;
    }
    .offset-md-5 {
        margin-left: 41.66667%;
    }
    .offset-md-6 {
        margin-left: 50%;
    }
    .offset-md-7 {
        margin-left: 58.33333%;
    }
    .offset-md-8 {
        margin-left: 66.66667%;
    }
    .offset-md-9 {
        margin-left: 75%;
    }
    .offset-md-10 {
        margin-left: 83.33333%;
    }
    .offset-md-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .row-cols-lg-1>* {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-lg-2>* {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .row-cols-lg-3>* {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .row-cols-lg-4>* {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .row-cols-lg-5>* {
        flex: 0 0 20%;
        max-width: 20%;
    }
    .row-cols-lg-6>* {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-lg-first {
        order: -1;
    }
    .order-lg-last {
        order: 13;
    }
    .order-lg-0 {
        order: 0;
    }
    .order-lg-1 {
        order: 1;
    }
    .order-lg-2 {
        order: 2;
    }
    .order-lg-3 {
        order: 3;
    }
    .order-lg-4 {
        order: 4;
    }
    .order-lg-5 {
        order: 5;
    }
    .order-lg-6 {
        order: 6;
    }
    .order-lg-7 {
        order: 7;
    }
    .order-lg-8 {
        order: 8;
    }
    .order-lg-9 {
        order: 9;
    }
    .order-lg-10 {
        order: 10;
    }
    .order-lg-11 {
        order: 11;
    }
    .order-lg-12 {
        order: 12;
    }
    .offset-lg-0 {
        margin-left: 0;
    }
    .offset-lg-1 {
        margin-left: 8.33333%;
    }
    .offset-lg-2 {
        margin-left: 16.66667%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
    .offset-lg-4 {
        margin-left: 33.33333%;
    }
    .offset-lg-5 {
        margin-left: 41.66667%;
    }
    .offset-lg-6 {
        margin-left: 50%;
    }
    .offset-lg-7 {
        margin-left: 58.33333%;
    }
    .offset-lg-8 {
        margin-left: 66.66667%;
    }
    .offset-lg-9 {
        margin-left: 75%;
    }
    .offset-lg-10 {
        margin-left: 83.33333%;
    }
    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .row-cols-xl-1>* {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-xl-2>* {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .row-cols-xl-3>* {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .row-cols-xl-4>* {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .row-cols-xl-5>* {
        flex: 0 0 20%;
        max-width: 20%;
    }
    .row-cols-xl-6>* {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-xl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-xl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-xl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-xl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-xl-first {
        order: -1;
    }
    .order-xl-last {
        order: 13;
    }
    .order-xl-0 {
        order: 0;
    }
    .order-xl-1 {
        order: 1;
    }
    .order-xl-2 {
        order: 2;
    }
    .order-xl-3 {
        order: 3;
    }
    .order-xl-4 {
        order: 4;
    }
    .order-xl-5 {
        order: 5;
    }
    .order-xl-6 {
        order: 6;
    }
    .order-xl-7 {
        order: 7;
    }
    .order-xl-8 {
        order: 8;
    }
    .order-xl-9 {
        order: 9;
    }
    .order-xl-10 {
        order: 10;
    }
    .order-xl-11 {
        order: 11;
    }
    .order-xl-12 {
        order: 12;
    }
    .offset-xl-0 {
        margin-left: 0;
    }
    .offset-xl-1 {
        margin-left: 8.33333%;
    }
    .offset-xl-2 {
        margin-left: 16.66667%;
    }
    .offset-xl-3 {
        margin-left: 25%;
    }
    .offset-xl-4 {
        margin-left: 33.33333%;
    }
    .offset-xl-5 {
        margin-left: 41.66667%;
    }
    .offset-xl-6 {
        margin-left: 50%;
    }
    .offset-xl-7 {
        margin-left: 58.33333%;
    }
    .offset-xl-8 {
        margin-left: 66.66667%;
    }
    .offset-xl-9 {
        margin-left: 75%;
    }
    .offset-xl-10 {
        margin-left: 83.33333%;
    }
    .offset-xl-11 {
        margin-left: 91.66667%;
    }
}

a {
    text-decoration: none;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d3e2;
    border-radius: 0.35rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #6e707e;
}

.form-control:focus {
    color: #6e707e;
    background-color: #fff;
    border-color: #0c5522;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(30, 116, 27, 0.25);
}

.form-control::-webkit-input-placeholder {
    color: #858796;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #858796;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #858796;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #858796;
    opacity: 1;
}

.form-control::placeholder {
    color: #858796;
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #eaecf4;
    opacity: 1;
}

input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.form-control:focus::-ms-value {
    color: #6e707e;
    background-color: #fff;
}

.form-control-file,
.form-control-range {
    display: block;
    width: 100%;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group>.custom-file,
.input-group>.custom-select,
.input-group>.form-control,
.input-group>.form-control-plaintext {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}

.input-group>.custom-file+.custom-file,
.input-group>.custom-file+.custom-select,
.input-group>.custom-file+.form-control,
.input-group>.custom-select+.custom-file,
.input-group>.custom-select+.custom-select,
.input-group>.custom-select+.form-control,
.input-group>.form-control+.custom-file,
.input-group>.form-control+.custom-select,
.input-group>.form-control+.form-control,
.input-group>.form-control-plaintext+.custom-file,
.input-group>.form-control-plaintext+.custom-select,
.input-group>.form-control-plaintext+.form-control {
    margin-left: -1px;
}

.input-group>.custom-file .custom-file-input:focus~.custom-file-label,
.input-group>.custom-select:focus,
.input-group>.form-control:focus {
    z-index: 3;
}

.input-group>.custom-file .custom-file-input:focus {
    z-index: 4;
}

.input-group>.custom-select:not(:first-child),
.input-group>.form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group>.custom-file {
    display: flex;
    align-items: center;
}

.input-group>.custom-file:not(:first-child) .custom-file-label,
.input-group>.custom-file:not(:last-child) .custom-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after,
.input-group:not(.has-validation)>.custom-select:not(:last-child),
.input-group:not(.has-validation)>.form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after,
.input-group.has-validation>.custom-select:nth-last-child(n+3),
.input-group.has-validation>.form-control:nth-last-child(n+3) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-append,
.input-group-prepend {
    display: flex;
}

.input-group-append .btn,
.input-group-prepend .btn {
    position: relative;
    z-index: 2;
}

.input-group-append .btn:focus,
.input-group-prepend .btn:focus {
    z-index: 3;
}

.input-group-append .btn+.btn,
.input-group-append .btn+.input-group-text,
.input-group-append .input-group-text+.btn,
.input-group-append .input-group-text+.input-group-text,
.input-group-prepend .btn+.btn,
.input-group-prepend .btn+.input-group-text,
.input-group-prepend .input-group-text+.btn,
.input-group-prepend .input-group-text+.input-group-text {
    margin-left: -1px;
}

.input-group-prepend {
    margin-right: -1px;
}

.input-group-append {
    margin-left: -1px;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    text-align: center;
    white-space: nowrap;
    background-color: #eaecf4;
    border: 1px solid #d1d3e2;
    border-radius: 0.35rem;
}

.input-group-text input[type="checkbox"],
.input-group-text input[type="radio"] {
    margin-top: 0;
}

.input-group-lg>.custom-select,
.input-group-lg>.form-control:not(textarea) {
    height: calc(1.5em + 1rem + 2px);
}

.input-group-lg>.custom-select,
.input-group-lg>.form-control,
.input-group-lg>.input-group-append>.btn,
.input-group-lg>.input-group-append>.input-group-text,
.input-group-lg>.input-group-prepend>.btn,
.input-group-lg>.input-group-prepend>.input-group-text {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.input-group-sm>.custom-select,
.input-group-sm>.form-control:not(textarea) {
    height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm>.custom-select,
.input-group-sm>.form-control,
.input-group-sm>.input-group-append>.btn,
.input-group-sm>.input-group-append>.input-group-text,
.input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-prepend>.input-group-text {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.input-group-lg>.custom-select,
.input-group-sm>.custom-select {
    padding-right: 1.75rem;
}

.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,
.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,
.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,
.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,
.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),
.input-group>.input-group-prepend>.btn,
.input-group>.input-group-prepend>.input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.input-group-append>.btn,
.input-group>.input-group-append>.input-group-text,
.input-group>.input-group-prepend:first-child>.btn:not(:first-child),
.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),
.input-group>.input-group-prepend:not(:first-child)>.btn,
.input-group>.input-group-prepend:not(:first-child)>.input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.custom-control-inline {
    display: inline-flex;
    margin-right: 1rem;
}

.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #275C3D;
    background-color: #275C3D;
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #bac8f3;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: #e5ebfa;
    border-color: #e5ebfa;
}

.custom-control-input:disabled~.custom-control-label,
.custom-control-input[disabled]~.custom-control-label {
    color: #858796;
}

.custom-control-input:disabled~.custom-control-label::before,
.custom-control-input[disabled]~.custom-control-label::before {
    background-color: #eaecf4;
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}

.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #b7b9cc solid 1px;
}

.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0.35rem;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
    border-color: #275C3D;
    background-color: #275C3D;
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(78, 115, 223, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: rgba(78, 115, 223, 0.5);
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(78, 115, 223, 0.5);
}

.custom-switch {
    padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
    top: calc(0.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #b7b9cc;
    border-radius: 0.5rem;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .custom-switch .custom-control-label::after {
        transition: none;
    }
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    background-color: #fff;
    transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(78, 115, 223, 0.5);
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%235a5c69' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
    border: 1px solid #d1d3e2;
    border-radius: 0.35rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select:focus {
    border-color: #bac8f3;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.custom-select:focus::-ms-value {
    color: #6e707e;
    background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}

.custom-select:disabled {
    color: #858796;
    background-color: #eaecf4;
}

.custom-select::-ms-expand {
    display: none;
}

.custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #6e707e;
}

.custom-select-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
}

.custom-select-lg {
    height: calc(1.5em + 1rem + 2px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0;
}

.custom-file-input:focus~.custom-file-label {
    border-color: #bac8f3;
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.custom-file-input:disabled~.custom-file-label,
.custom-file-input[disabled]~.custom-file-label {
    background-color: #eaecf4;
}

.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Browse";
}

.custom-file-input~.custom-file-label[data-browse]::after {
    content: attr(data-browse);
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    background-color: #fff;
    border: 1px solid #d1d3e2;
    border-radius: 0.35rem;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + 0.75rem);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #6e707e;
    content: "Browse";
    background-color: #eaecf4;
    border-left: inherit;
    border-radius: 0 0.35rem 0.35rem 0;
}

.custom-range {
    width: 100%;
    height: 1.4rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-range:focus {
    outline: 0;
}

.custom-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.custom-range::-moz-focus-outer {
    border: 0;
}

.custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #275C3D;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .custom-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none;
    }
}

.custom-range::-webkit-slider-thumb:active {
    background-color: #e5ebfa;
}

.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dddfeb;
    border-color: transparent;
    border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #275C3D;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .custom-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none;
    }
}

.custom-range::-moz-range-thumb:active {
    background-color: #e5ebfa;
}

.custom-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dddfeb;
    border-color: transparent;
    border-radius: 1rem;
}

.custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    background-color: #275C3D;
    border: 0;
    border-radius: 1rem;
    -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .custom-range::-ms-thumb {
        -ms-transition: none;
        transition: none;
    }
}

.custom-range::-ms-thumb:active {
    background-color: #e5ebfa;
}

.custom-range::-ms-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
    background-color: #dddfeb;
    border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #dddfeb;
    border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
    background-color: #b7b9cc;
}

.custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
    background-color: #b7b9cc;
}

.custom-range:disabled::-moz-range-track {
    cursor: default;
}

.custom-range:disabled::-ms-thumb {
    background-color: #b7b9cc;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .custom-control-label::before,
    .custom-file-label,
    .custom-select {
        transition: none;
    }
}

.navbar-position {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    color: black;
    z-index: 9999;
    padding: 12px 24px;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
    position: fixed;
    display: flex;
    align-items: center;
}

.nav-link.active {
    color: #216939;
    font-weight: 600;
    /* background-color: #ccc;
    color: #000;
    border-radius: 20px; */
}

.nav-link.hover {
    color: #216939;
    font-weight: 600;
    /* background-color: #ddd;
    color: #000;
    border-radius: 20px; */
}

.navbar-nav .nav-item {
    white-space: nowrap;
}

.navbar-nav .nav-item a {
    display: inline-block;
}

.navbar-toggler {
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: auto;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:hover {
    background-color: #f8f9fa;
    color: #216939;
}

.offcanvas-body .nav-link {
    transition: color 0.3s ease, background-color 0.3s ease;
}

.offcanvas-body .nav-link:hover {
    color: #216939;
    font-weight: 600;
    /* text-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.466);
    background-color: rgb(99, 129, 99);
    border-radius: 20px; */
}

.w-600 {
    font-weight: 600;
}

.half-screen {
    width: 50% !important;
    background-color: rgb(131, 161, 131);
}

.offcanvas-start {
    transform: translateX(-100%);
}

.offcanvas-start.show {
    transform: translateX(0%);
}

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

.w3-animate-opacity {
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animated-element {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.animated-element.visible {
    opacity: 1;
}


/* batas */


/*landingpage*/


/* .img-home-container {

background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
padding: 50px 50px;
position: relative;
background-color: #ffff;

}
.img-home-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 0 0 50px 50px;
}
.img-home-container .container {
    position: relative;
    z-index: 2;
}
*/


/* Services */

.services-section {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    /* margin-right: auto;
            margin-left: auto; */
}


/* about us value*/

.grid-container-value {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 50px;
}

.grid-container-value .grid-item {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.grid-container-value-x {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
}


/* about us team*/

.column-team {
    float: left;
    width: 33.3%;
    margin-bottom: 16px;
    padding: 0 8px;
}

.card-team {
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); */
    background-color: rgba(238, 238, 238, 0.863);
    border-radius: 15px;
    padding: 10px 20px;
}

.title-team {
    color: grey;
}

.scroll-container-team {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    scroll-behavior: smooth;
}

.scroll-container-team::-webkit-scrollbar {
    display: none;
}

.row-team {
    display: flex;
    flex-wrap: nowrap;
}

.border-radius-15 {
    border-radius: 15px;
}

img.filter-grayscale {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

img.filter-grayscale:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}


/* about us certification*/

.certification-section {
    padding: 40px 30px;
    background-color: rgba(238, 238, 238, 0.863);
}

.grid-container-certification {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px;
}

.grid-container-certification .grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-certification img {
    width: 150px;
    height: 150px;
    background-color: #8a8a8a;
    border-radius: 50%;
}

.circle-certification {
    width: 200px;
    height: 200px;
    background-color: #c7c7c7;
    border-radius: 50%;
}


/*services*/

.section-services2 {
    background-color: #275C3D;
    color: white;
    padding: 50px;
}

.grid-container-services2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-color: #6db657;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
}

.section-steps {
    background-color: #fff;
    padding: 50px;
}

.grid-container-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* background-color: #6db657; */
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
}


/*project*/

.carousel-inner {
    display: flex;
}

.carousel-item {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 20px;
    margin-right: auto;
    /* Berikan ruang antara kartu */
}

.card-project-carousel {
    background-color: #fff;
    border: none;
    margin: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.card-project-carousel img {
    height: 200px;
    width: 100%;
    padding-bottom: 10px;
    /* object-fit: cover; */
}

.card-body {
    text-align: center;
}

.carousel-pagination {
    justify-content: center;
    position: absolute;
    bottom: -40px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.carousel-pagination .page-item {
    margin: 0 5px;
}

.carousel-pagination .page-link {
    border: none;
    background-color: #275C3D;
    color: white;
    padding: 8px 12px;
    border-radius: 20%;
    text-decoration: none;
}

.carousel-pagination .page-link.active {
    background-color: #1f4f2f;
}

.ellipsis-single-line {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .card-project-carousel {
        margin: 2px;
        margin-bottom: 20px;
    }
    .carousel-pagination .page-link {
        padding: 6px 10px;
    }
}

@media (max-width: 576px) {
    .card-project-carousel {
        margin: 2px;
        margin-bottom: 20px;
    }
    .carousel-pagination .page-link {
        padding: 4px 8px;
    }
}

.header-project-detail {
    position: relative;
    text-align: center;
    /* margin: 5%; */
}

.section-project-detail {
    position: relative;
    margin: 5% 10% 2% 10%;
}

.column-projects {
    width: 30%;
    margin-bottom: 16px;
    padding: 0 8px;
}

.card-projects {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.container-projects {
    padding: 0 16px;
}

.container-projects::after,
.row::after {
    content: "";
    clear: both;
    display: table;
}

.row-team {
    display: flex;
    flex-wrap: nowrap;
}

.section-project-testimoni {
    background-color: #fff;
    padding: 20px 10px;
}

.grid-container-project-testimoni {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    background-color: #6db657;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
}

.column-projects-testimoni {
    float: left;
    width: 35%;
    /* margin-bottom: 16px; */
    padding: 0 0px;
}

.card-projects-testimoni {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    /* background-color: #275C3D; */
}

.container-projects-testimoni {
    padding: 0 16px;
}

.container-projects-testimoni ::after,
.row::after {
    content: "";
    clear: both;
    display: table;
}

.row-projects-testimoni {
    display: flex;
    flex-wrap: nowrap;
}

.testimonial-container {
    background-color: #5ca539;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    /* overflow: hidden; */
}

.testimonial-header {
    color: rgba(255, 255, 255, 0.644);
    margin-top: 50px;
    position: relative;
}

.testimonial-header .quote-icon {
    position: absolute;
    top: -170px;
    left: -5px;
    font-size: 300px;
    color: #275C3D !important;
}


/* .testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.testimonial-card {
    background-color: #f8efe5;
    width: 280px;
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    position: relative;
}

.testimonial-card p {
    color: #054f35;
    font-size: 14px;
    line-height: 1.5;
}

*/

.testimonial-card .quote-icon {
    position: absolute;
    top: 150px;
    left: 10px;
    font-size: 150px;
    color: #6db657;
    z-index: 9999;
}

.testimonial-card-img {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px
}

.testimonial-controls {
    margin-top: 20px;
}


/*sustainbility*/

.section-sustainbilty {
    position: relative;
    text-align: center;
    color: white;
}

.centered-sustainbilty {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 100%;
    z-index: 2;
}

.gradient-button {
    background: linear-gradient(to right, #00C853, #64DD17);
    color: white;
    border: none;
}

.gradient-button:hover {
    background: linear-gradient(to right, #64DD17, #00C853);
}


/*about us timeline*/

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #275C3D;
    top: 0;
    bottom: 0;
    left: 31px;
    margin-left: -3px;
}

.container-timeline {
    padding-left: 70px;
    padding-right: 30px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.container-timeline::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #FF9F55;
    top: 0px;
    border-radius: 50%;
    z-index: 1;
}

.container-timeline::before {
    left: 50px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.left::after {
    left: 18px;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    /* top: 22px; */
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #275C3D;
}

.content-timeline {
    padding: 0 20px;
    /* background-color: rgb(239, 253, 239); */
    position: relative;
    border-radius: 6px;
}

@media screen and (max-width: 1200px) {
    .navbar-brand {
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 820px) {
    .column-team {
        width: 20%;
        display: block;
    }
    .name-team {
        font-size: 1.1rem;
    }
    .h2 {
        font-size: 1.60rem;
    }
    .h1 {
        font-size: 1.85rem;
    }
    .h3 {
        font-size: 1.40rem;
    }
    .h4 {
        font-size: 1rem;
    }
    .h5 {
        font-size: 1.25rem;
    }
    .h6 {
        font-size: 1rem;
    }
    .lead {
        font-size: 1.25rem;
        font-weight: 300;
    }
    .display-1 {
        font-size: 6rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .display-2 {
        font-size: 5.5rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .display-3 {
        font-size: 4.5rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .display-4 {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.2;
    }
    .display-5 {
        font-size: 3.5rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .img-bg-about-us img {
        height: 250px;
    }
    .grid-container-value {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    .grid-container-value-x {
        grid-template-columns: 1fr;
    }
    .section-services2 {
        padding: 20px;
    }
    .grid-container-services2 {
        grid-template-columns: 1fr;
        /* text-align: justify; */
        margin: 10px;
    }
    .section-steps {
        padding: 20px;
    }
    .grid-container-steps {
        display: block;
        margin: 10px;
    }
    .column-projects {
        width: 80%;
        display: block;
    }
    .column-projects-testimoni {
        width: 20%;
        display: block;
    }
    .section-project-testimoni {
        padding: 15px 0px;
    }
    .grid-container-project-testimoni {
        grid-template-columns: 1fr;
        /* text-align: justify; */
        margin: 10px;
    }
    .testimonial-card .quote-icon {
        top: 100px;
    }
}

@media screen and (max-width: 650px) {
    .column-team {
        width: 30%;
        display: block;
    }
    .name-team {
        font-size: 1.1rem;
    }
    .h2 {
        font-size: 1.60rem;
    }
    .h1 {
        font-size: 1.85rem;
    }
    .h3 {
        font-size: 1.40rem;
    }
    .h4 {
        font-size: 1rem;
    }
    .h5 {
        font-size: 1.25rem;
    }
    .h6 {
        font-size: 1rem;
    }
    .lead {
        font-size: 1.25rem;
        font-weight: 300;
    }
    .display-1 {
        font-size: 6rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .display-2 {
        font-size: 5.5rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .display-3 {
        font-size: 3rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .display-4 {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.2;
    }
    .display-5 {
        font-size: 3.5rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .img-bg-about-us img {
        height: 250px;
    }
    .img-scr img {
        margin-top: 10px;
        height: 100px;
        width: 100%;
    }
    .grid-container-value {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    .grid-container-value-x {
        grid-template-columns: 1fr;
    }
    .section-services2 {
        padding: 20px;
    }
    .grid-container-services2 {
        grid-template-columns: 1fr;
        /* text-align: justify; */
        margin: 10px;
    }
    .section-steps {
        padding: 20px;
    }
    .grid-container-steps {
        grid-template-columns: 1fr;
        margin: 10px;
    }
    .column-projects {
        width: 80%;
        display: block;
    }
    .column-projects-testimoni {
        width: 20%;
        display: block;
    }
    .section-project-testimoni {
        padding: 15px 0px;
    }
    .grid-container-project-testimoni {
        grid-template-columns: 1fr;
        /* text-align: justify; */
        margin: 10px;
    }
    .testimonial-card .quote-icon {
        top: 100px;
    }
    .navbar-toggler {
        margin-left: auto;
    }
    .navbar-brand-icon img {
        max-height: 50px;
        height: auto;
        width: auto;
    }
}

height: 250px;

}
.img-scr img {
    margin-top: 10px;
    height: 100px;
    width: 100%;
}
.grid-container-value {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.grid-container-value-x {
    grid-template-columns: 1fr;
}
.section-services2 {
    padding: 20px;
}
.grid-container-services2 {
    grid-template-columns: 1fr;
    /* text-align: justify; */
    
    margin: 10px;
}
.section-steps {
    padding: 20px;
}
.grid-container-steps {
    grid-template-columns: 1fr;
    margin: 10px;
}
.column-projects {
    width: 80%;
    display: block;
}
.column-projects-testimoni {
    width: 20%;
    display: block;
}
.section-project-testimoni {
    padding: 15px 0px;
}
.grid-container-project-testimoni {
    grid-template-columns: 1fr;
    /* text-align: justify; */
    
    margin: 10px;
}
.testimonial-card .quote-icon {
    top: 100px;
}
.navbar-toggler {
    margin-left: auto;
}
.navbar-brand-icon img {
    max-height: 50px;
    height: auto;
    width: auto;
}

}
.column-projects-testimoni {
    width: 20%;
    display: block;
}
.section-project-testimoni {
    padding: 15px 0px;
}
.grid-container-project-testimoni {
    grid-template-columns: 1fr;
    /* text-align: justify; */
    margin: 10px;
}
.testimonial-card .quote-icon {
    top: 100px;
}
.navbar-toggler {
    margin-left: auto;
}
.navbar-brand-icon img {
    max-height: 50px;
    height: auto;
    width: auto;
}

}
left: 10%;
right: 10%;
height: 100%;
z-index: 2;

}
.gradient-button {
    background: linear-gradient(to right,
    #00C853,
    #64DD17);
    color: white;
    border: none;
}
.gradient-button:hover {
    background: linear-gradient(to right,
    #64DD17,
    #00C853);
}

/*about us timeline*/
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #275C3D;
    top: 0;
    bottom: 0;
    left: 31px;
    margin-left: -3px;
}
.container-timeline {
    padding-left: 70px;
    padding-right: 30px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}
.container-timeline::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #FF9F55;
    top: 0px;
    border-radius: 50%;
    z-index: 1;
}
.container-timeline::before {
    left: 50px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}
.left::after {
    left: 18px;
}
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    /* top: 22px; */
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #275C3D;
}
.content-timeline {
    padding: 0 20px;
    /* background-color: rgb(239, 253, 239); */
    position: relative;
    border-radius: 6px;
}
@media screen and (max-width: 1200px) {
    .navbar-brand {
        display: flex;
        align-items: center;
    }
}
@media screen and (max-width: 820px) {
    .column-team {
        width: 20%;
        display: block;
    }
    .name-team {
        font-size: 1.1rem;
    }
    .h2 {
        font-size: 1.60rem;
    }
    .h1 {
        font-size: 1.85rem;
    }
    .h3 {
        font-size: 1.40rem;
    }
    .h4 {
        font-size: 1rem;
    }
    .h5 {
        font-size: 1.25rem;
    }
    .h6 {
        font-size: 1rem;
    }
    .lead {
        font-size: 1.25rem;
        font-weight: 300;
    }
    .display-1 {
        font-size: 6rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .display-2 {
        font-size: 5.5rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .display-3 {
        font-size: 4.5rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .display-4 {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.2;
    }
    .display-5 {
        font-size: 3.5rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .img-bg-about-us img {
        height: 250px;
    }
    .grid-container-value {
        grid-template-columns: repeat(auto-fill,
        minmax(300px,
        1fr));
    }
    .grid-container-value-x {
        grid-template-columns: 1fr;
    }
    .section-services2 {
        padding: 20px;
    }
    .grid-container-services2 {
        grid-template-columns: 1fr;
        /* text-align: justify; */
        margin: 10px;
    }
    .section-steps {
        padding: 20px;
    }
    .grid-container-steps {
        display: block;
        margin: 10px;
    }
    .column-projects {
        width: 80%;
        display: block;
    }
    .column-projects-testimoni {
        width: 20%;
        display: block;
    }
    .section-project-testimoni {
        padding: 15px 0px;
    }
    .grid-container-project-testimoni {
        grid-template-columns: 1fr;
        /* text-align: justify; */
        margin: 10px;
    }
    .testimonial-card .quote-icon {
        top: 100px;
    }
}
@media screen and (max-width: 650px) {
    .column-team {
        width: 30%;
        display: block;
    }
    .name-team {
        font-size: 1.1rem;
    }
    .h2 {
        font-size: 1.60rem;
    }
    .h1 {
        font-size: 1.85rem;
    }
    .h3 {
        font-size: 1.40rem;
    }
    .h4 {
        font-size: 1rem;
    }
    .h5 {
        font-size: 1.25rem;
    }
    .h6 {
        font-size: 1rem;
    }
    .lead {
        font-size: 1.25rem;
        font-weight: 300;
    }
    .display-1 {
        font-size: 6rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .display-2 {
        font-size: 5.5rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .display-3 {
        font-size: 3rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .display-4 {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.2;
    }
    .display-5 {
        font-size: 3.5rem;
        font-weight: 300;
        line-height: 1.2;
    }
    .img-bg-about-us img {
        height: 250px;
    }
    .img-scr img {
        margin-top: 10px;
        height: 100px;
        width: 100%;
    }
    .grid-container-value {
        grid-template-columns: repeat(auto-fill,
        minmax(300px,
        1fr));
    }
    .grid-container-value-x {
        grid-template-columns: 1fr;
    }
    .section-services2 {
        padding: 20px;
    }
    .grid-container-services2 {
        grid-template-columns: 1fr;
        /* text-align: justify; */
        margin: 10px;
    }
    .section-steps {
        padding: 20px;
    }
    .grid-container-steps {
        grid-template-columns: 1fr;
        margin: 10px;
    }
    .column-projects {
        width: 80%;
        display: block;
    }
    .column-projects-testimoni {
        width: 20%;
        display: block;
    }
    .section-project-testimoni {
        padding: 15px 0px;
    }
    .grid-container-project-testimoni {
        grid-template-columns: 1fr;
        /* text-align: justify; */
        margin: 10px;
    }
    .testimonial-card .quote-icon {
        top: 100px;
    }
    .navbar-toggler {
        margin-left: auto;
    }
    .navbar-brand-icon img {
        max-height: 50px;
        height: auto;
        width: auto;
    }
}

/* height: 250px; */

}
.img-scr img {
    margin-top: 10px;
    height: 100px;
    width: 100%;
}
.grid-container-value {
    grid-template-columns: repeat(auto-fill,
    minmax(300px,
    1fr));
}
.grid-container-value-x {
    grid-template-columns: 1fr;
}
.section-services2 {
    padding: 20px;
}
.grid-container-services2 {
    grid-template-columns: 1fr;
    /* text-align: justify; */
    margin: 10px;
}
.section-steps {
    padding: 20px;
}
.grid-container-steps {
    grid-template-columns: 1fr;
    margin: 10px;
}
.column-projects {
    width: 80%;
    display: block;
}
.column-projects-testimoni {
    width: 20%;
    display: block;
}
.section-project-testimoni {
    padding: 15px 0px;
}
.grid-container-project-testimoni {
    grid-template-columns: 1fr;
    /* text-align: justify; */
    margin: 10px;
}
.testimonial-card .quote-icon {
    top: 100px;
}
.navbar-toggler {
    margin-left: auto;
}
.navbar-brand-icon img {
    max-height: 50px;
    height: auto;
    width: auto;
}

}
.column-projects-testimoni {
    width: 20%;
    display: block;
}
.section-project-testimoni {
    padding: 15px 0px;
}
.grid-container-project-testimoni {
    grid-template-columns: 1fr;
    /* text-align: justify; */
    margin: 10px;
}
.testimonial-card .quote-icon {
    top: 100px;
}
.navbar-toggler {
    margin-left: auto;
}
.navbar-brand-icon img {
    max-height: 50px;
    height: auto;
    width: auto;
}
.ls-2 {
    letter-spacing: 2px;
}
.ls-1 {
    letter-spacing: 1px;
}
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease,
    transform 0.9s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}