::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 0px;
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #f9f9f9;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #000;
}

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

::selection {
    color: #fff;
    background: #000;
}

body {
    display: block;
    overflow-x: hidden;
    margin: 0;
    background-color: #fff;
    height: 100%;
    width: 100%;
}

body * {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.3px;
    color: #000;
}

a {
    color: #b03600;
}

a:hover,
a:focus,
button:hover,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    text-decoration: none;
}

.custom_btn.active.focus,
.custom_btn.active:focus,
.custom_btn.focus,
.custom_btn:active.focus,
.custom_btn:active:focus,
.custom_btn:focus,
.custom_link.active.focus,
.custom_link.active:focus,
.custom_link.focus,
.custom_link:active.focus,
.custom_link:active:focus,
.custom_link:focus {
    outline: none;
}

option:disabled {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    margin: 0;
    padding: 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.custom_btn {
    position: relative;
    display: table;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 5px;
    line-height: 45px;
    text-align: center;
    min-width: 135px;
    padding: 0 25px;
    border: 1px solid !important;
    overflow: hidden;
    transition: 0.3s;
}

.custom_btn:not(.solid) {
    background-color: #fff;
}

.custom_btn.white {
    border-color: #fff !important;
    background-color: #fff !important;
    color: #b03600 !important;
}

.custom_btn.orange {
    border-color: #b03600 !important;
    background-color: #b03600 !important;
    color: #fff !important;
}

.custom_btn:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 200px;
    top: -80px;
    left: -40px;
    transform: scale(0);
    opacity: .5;
    border-radius: 50%;
    z-index: 10;
}

.custom_btn:hover {
    box-shadow: -5px 5px 7.5px 0px #00000025;
    transition: 0.3s;
}

.custom_btn:not(.solid):hover {
    border-color: #b03600;
    color: #b03600;
    background-color: #b03600;
    color: #fff;
}

.custom_btn.white:hover {
    border-color: #fff;
}

.custom_btn.orange:hover {
    border-color: #b03600;
}

.custom_btn:hover:before {
    animation: button_ripple 1.5s;
}

.custom_btn.white:before {
    background-color: #b03600;
}

.custom_btn.orange:before {
    background-color: #fff;
}

.custom_btn.small {
    min-width: unset;
    line-height: 35px;
}

.custom_link {
    position: relative;
    display: inline-block;
    width: auto;
    font-size: 16px;
    color: #b03600;
    font-weight: 500;
    line-height: 1;
    padding-right: 17.5px;
    line-height: 25px;
    white-space: nowrap;
}

.custom_link:after {
    content: "\f061";
    font-family: "Fontawesome";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    line-height: 25px;
}

.custom_link:hover {
    color: #e69a05;
}

@keyframes button_ripple {
    0% {
        transform: scale(0);
    }

    20% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

::placeholder {
    color: #343434;
}

.remove_padding {
    padding: 0 !important;
}

.remove_padding_left {
    padding-left: 0 !important;
}

.remove_padding_right {
    padding-right: 0 !important;
}

.remove_padding_top {
    padding-top: 0 !important;
}

.remove_padding_bottom {
    padding-bottom: 0 !important;
}

.remove_margin {
    margin: 0 !important;
}

.remove_margin_left {
    margin-left: 0 !important;
}

.remove_margin_right {
    margin-right: 0 !important;
}

.remove_margin_top {
    margin-top: 0 !important;
}

.remove_margin_bottom {
    margin-bottom: 0 !important;
}

@media (min-width: 801px) {
    .remove_desk_padding {
        padding: 0 !important;
    }

    .remove_desk_padding_left {
        padding-left: 0 !important;
    }

    .remove_desk_padding_right {
        padding-right: 0 !important;
    }

    .remove_desk_padding_top {
        padding-top: 0 !important;
    }

    .remove_desk_padding_bottom {
        padding-bottom: 0 !important;
    }

    .remove_desk_margin {
        margin: 0 !important;
    }

    .remove_desk_margin_left {
        margin-left: 0 !important;
    }

    .remove_desk_margin_right {
        margin-right: 0 !important;
    }

    .remove_desk_margin_top {
        margin-top: 0 !important;
    }

    .remove_desk_margin_bottom {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 600px) {
    .remove_mob_padding {
        padding: 0 !important;
    }

    .remove_mob_padding_left {
        padding-left: 0 !important;
    }

    .remove_mob_padding_right {
        padding-right: 0 !important;
    }

    .remove_mob_padding_top {
        padding-top: 0 !important;
    }

    .remove_mob_padding_bottom {
        padding-bottom: 0 !important;
    }

    .remove_mob_margin {
        margin: 0 !important;
    }

    .remove_mob_margin_left {
        margin-left: 0 !important;
    }

    .remove_mob_margin_right {
        margin-right: 0 !important;
    }

    .remove_mob_margin_top {
        margin-top: 0 !important;
    }

    .remove_mob_margin_bottom {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 601px) and (max-width: 800px) {
    .remove_tab_padding {
        padding: 0 !important;
    }

    .remove_tab_padding_left {
        padding-left: 0 !important;
    }

    .remove_tab_padding_right {
        padding-right: 0 !important;
    }

    .remove_tab_padding_top {
        padding-top: 0 !important;
    }

    .remove_tab_padding_bottom {
        padding-bottom: 0 !important;
    }

    .remove_tab_margin {
        margin: 0 !important;
    }

    .remove_tab_margin_left {
        margin-left: 0 !important;
    }

    .remove_tab_margin_right {
        margin-right: 0 !important;
    }

    .remove_tab_margin_top {
        margin-top: 0 !important;
    }

    .remove_tab_margin_bottom {
        margin-bottom: 0 !important;
    }
}

.flex {
    display: flex;
}

main {
    position: relative;
    display: block;
    width: 100%;
    min-height: calc(100vh - 540px);
    padding-bottom: 200px;
    background-image: url('../img/background.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

main:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 180px;
    bottom: 0;
    left: 0;
    background-image: url('../img/body_bg_bottom.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section {
    position: relative;
    display: block;
    width: 100%;
    padding: 50px 75px;
}

.section_title {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.section_title h1,
.section_title h2,
.section_title h3,
.section_title h4,
.section_title h5,
.section_title h6 {
    position: relative;
    display: inline-block;
    width: auto;
    color: #000;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    padding-left: 30px;
}

.section_title h1:before,
.section_title h2:before,
.section_title h3:before,
.section_title h4:before,
.section_title h5:before,
.section_title h6:before {
    content: '';
    position: absolute;
    display: block;
    width: 20px;
    height: 5px;
    left: 0;
    top: 50%;
    background-color: #b03600;
    background: linear-gradient(to left, #e69a05 0%, #d76900 100%);
}

.sub_title {
    position: relative;
    display: contents;
    width: 100%;
    font-size: 17px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin-top: -5px;
    margin-bottom: 25px;
}

@media (min-width: 801px) and (max-width: 1024px) {
    .section {
        padding: 50px;
    }
}

@media (max-width: 800px) {
    .section {
        padding: 50px 0;
    }
}

@media (max-width: 600px) {
    .section_title {
        flex-direction: column;
        align-items: flex-start;
    }

    .section_title h1+*,
    .section_title h2+*,
    .section_title h3+*,
    .section_title h4+*,
    .section_title h5+*,
    .section_title h6+* {
        margin-top: 10px;
        right: 0;
        width: 100%;
        text-align: right;
    }
}

#page_banner {
    background-image: url('../img/page_banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 175px;
    display: table;
}

#page_banner>div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background-color: #00000085;
}

#page_banner h1 {
    position: relative;
    display: block;
    width: 100%;
    line-height: 1.5;
    font-size: 35px;
    color: #fff;
}

#updates {
    background-color: #b03600;
}

#updates p {
    position: relative;
    display: block;
    width: auto;
    white-space: nowrap;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin: 20px 0;
    padding-right: 10px;
    border-right: 2px solid #fff;
}

#updates marquee p {
    position: relative;
    padding: 0;
    margin: 0;
    border: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    grid-gap: 100px;
}

#updates marquee p a {
    position: relative;
    display: block;
    width: auto;
    color: #fff;
    font-size: 15px;
    line-height: 70px;
    white-space: nowrap;
}

ul.organization_members {
    position: relative;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

ul.organization_members li {
    position: relative;
    display: block;
    width: calc((100%/4) - 30px);
    margin: 15px;
}

.member_card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.member_card .member_img {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.member_card .member_info {
    position: relative;
    display: block;
    width: 100%;
    padding: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid #eee;
    border-top: none;
    background-color: #fff;
}

.member_card .member_info p {
    position: relative;
    display: block;
    width: 100%;
    line-height: 1.5;
    margin: 0;
}

.member_card .member_info p+p {
    margin-top: 2px;
}

.member_card .member_info .name {
    color: #000;
    font-size: 17px;
    font-weight: 500;
}

.member_card .member_info .position {
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.member_card .member_info .place {
    color: #555;
    font-size: 13px;
    font-weight: 400;
    margin-top: -1px;
}

@media (max-width: 1200px) {
    ul.organization_members li {
        width: calc((100%/3) - 30px);
    }
}

@media (max-width: 1024px) {
    ul.organization_members li {
        width: calc((100%/3) - 30px);
    }
}

@media (max-width: 800px) {
    ul.organization_members li {
        width: calc((100%/2) - 30px);
    }
}

@media (max-width: 600px) {
    ul.organization_members li {
        width: calc((100%/2) - 30px);
    }
}

.input_div {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.input_div input {
    height: 45px;
    line-height: 45px;
    position: relative;
    display: block;
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
    border: none;
    border-radius: 0;
    color: #343434;
    border: 1px solid transparent;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.5rem -0.25rem #1f1b2d1f, 0 0.25rem 1rem #1f1b2d1f;
    border: 1px solid #eee;
}

.input_div input:focus {
    background-color: #fff;
    border-color: #b03600;
}

.input_div select {
    height: 45px;
    line-height: 45px;
    position: relative;
    display: block;
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
    border: none;
    border-radius: 0;
    color: #343434;
    box-shadow: 0 0.125rem 0.5rem -0.25rem #1f1b2d1f, 0 0.25rem 1rem #1f1b2d1f;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.input_div select:focus {
    background-color: #fff;
    border-color: #b03600;
}

.input_div textarea {
    position: relative;
    display: block;
    width: 100%;
    padding: 5px 15px;
    font-size: 14px;
    color: #343434;
    box-shadow: 0 0.125rem 0.5rem -0.25rem #1f1b2d1f, 0 0.25rem 1rem #1f1b2d1f;
    border-radius: 5px;
    background-color: #fff;
    resize: vertical;
    border: 1px solid #eee;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.input_div textarea:focus {
    background-color: #fff;
    border: 1px solid #b03600;
}

.input_div.with_border input {
    border: 1px solid #ccc;
    background-color: #fff;
}

.input_div.with_border input:focus {
    border-color: #b03600;
}

.input_div.with_border textarea {
    border: 1px solid #ccc;
    background-color: #fff;
}

.input_div.with_border textarea:focus {
    border-color: #b03600;
}

.input_div.with_border select {
    border: 1px solid #ccc;
    background-color: #fff;
}

.input_div.with_border select:focus {
    border-color: #b03600;
}

.input_div.with_label label {
    position: absolute;
    display: inline-block;
    width: auto;
    color: #555;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 3px;
    margin-left: 10px;
    white-space: nowrap;
    z-index: 1;
    top: -7px;
    padding: 0 3px;
    background-color: #fff;
    border-radius: 3px;
}

.input_div.with_label input:focus+label {
    color: #b03600;
}

.input_div.with_label select:focus+label {
    color: #b03600;
}

.input_div.with_label textarea:focus+label {
    color: #b03600;
}

.input_div.with_icon input {
    padding-left: 40px;
}

.input_div.with_icon input:focus+i {
    color: #b03600;
}

.input_div.with_icon select {
    padding-left: 40px;
}

.input_div.with_icon select:focus+i {
    color: #b03600;
}

.input_div.with_icon textarea {
    padding-left: 40px;
}

.input_div.with_icon textarea:focus+i {
    color: #b03600;
}

.input_div.with_icon i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    z-index: 1;
    pointer-events: none;
    color: #999;
    font-size: 15px;
}

.input_div.with_error .field_error {
    position: absolute;
    display: none;
    width: auto;
    max-width: 75%;
    right: 0;
    bottom: 40px;
    background-color: #b03600;
    border-radius: 7.5px;
    padding: 7.5px;
}

.input_div.with_error .field_error p {
    position: relative;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 0;
}

.input_div.with_error .field_error:after {
    content: '';
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    bottom: -2.5px;
    transform: rotate(45deg);
    right: 10px;
    background-color: #b03600;
}

.input_div.with_error.show_error .field_error {
    display: block;
}

.input_div.with_help .help_link {
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 1;
    cursor: pointer;
}

.input_div.with_help .help_link a {
    position: relative;
    display: block;
    color: #b03600;
    font-size: 10px;
    letter-spacing: 0.5px;
    font-weight: 500;
    line-height: 45px;
    text-decoration: none;
    cursor: help;
}

.input_div.with_help .help_link a:hover+.custom_tooltip {
    display: block;
}

.input_div.with_help .help_link a+.custom_tooltip {
    position: absolute;
    right: -10px;
    bottom: 80%;
    width: 200px;
    height: auto;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0px 0px 5px 0px #eee;
    border-radius: 10px;
    z-index: 1;
    padding: 10px;
    display: none;
}

.input_div.with_help .help_link a+.custom_tooltip:after {
    content: '';
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    background-color: #fff;
    z-index: 1;
    box-shadow: 2px 2px 5px 0px #eee;
    bottom: -4px;
    right: 20px;
}

.input_div.with_help .help_link a+.custom_tooltip p {
    position: relative;
    display: block;
    width: 100%;
    line-height: 1.3;
    font-size: 12px;
    font-weight: 400;
    color: var(--theme-blue);
    margin: 0;
}

.input_div.with_help input {
    padding-right: 45px;
}

.input_div.with_help select {
    padding-right: 45px;
}

.input_div.with_help textarea {
    padding-right: 45px;
}

.input_div.file_input input[type=file] {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
}

.input_div.file_input input[type=file]:focus+input[type=text] {
    border-color: #b03600;
}

.input_div.file_input input[type=text] {
    pointer-events: none;
}

.input_div.password input {
    padding-right: 30px;
}

.input_div.password .ptoggle {
    position: absolute;
    right: 0;
    top: 0;
    line-height: 45px;
    font-size: 14px;
    width: 30px;
    text-align: center;
    cursor: pointer;
}

.input_div.password .ptoggle:before {
    font-family: 'bootstrap-icons';
    color: #000;
    opacity: 0.5;
}

.input_div.password .ptoggle:hover:before {
    opacity: 1;
}

.input_div.password .ptoggle.hide_password:before {
    content: "\f340";
}

.input_div.password .ptoggle.show_password:before {
    content: "\f341";
}

.input_div.radio {
    display: table;
}

.input_div.radio input[type=radio] {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    opacity: 0;
}

.input_div.radio input[type=radio]+.radio_style {
    position: absolute;
    left: 0;
    top: 2px;
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #999;
    border-radius: 50%;
    pointer-events: none;
}

.input_div.radio input[type=radio]+.radio_style+p {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 25px;
    line-height: 23px;
    white-space: nowrap;
    margin: 0;
    opacity: 0.7;
    color: #000;
    pointer-events: none;
}

.input_div.radio input[type=radio]:hover+.radio_style,
.input_div.radio input[type=radio]:checked+.radio_style {
    border-color: #000;
}

.input_div.radio input[type=radio]:hover+.radio_style+p,
.input_div.radio input[type=radio]:checked+.radio_style+p {
    opacity: 1;
}

.input_div.radio input[type=radio]:checked+.radio_style:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #b03600;
    position: absolute;
    top: 4.3px;
    left: 4.5px;
}

.input_div.checkbox {
    display: table;
}

.input_div.checkbox input[type=checkbox] {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    opacity: 0;
}

.input_div.checkbox input[type=checkbox]+.checkbox_style {
    position: absolute;
    left: 0;
    top: 2px;
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #999;
    border-radius: 3px;
    pointer-events: none;
}

.input_div.checkbox input[type=checkbox]+.checkbox_style+p {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 25px;
    line-height: 23px;
    white-space: nowrap;
    margin: 0;
    opacity: 0.7;
    color: #000;
    pointer-events: none;
}

.input_div.checkbox input[type=checkbox]:hover+.checkbox_style,
.input_div.checkbox input[type=checkbox]:checked+.checkbox_style {
    border-color: #000;
}

.input_div.checkbox input[type=checkbox]:hover+.checkbox_style+p,
.input_div.checkbox input[type=checkbox]:checked+.checkbox_style+p {
    opacity: 1;
}

.input_div.checkbox input[type=checkbox]:checked+.checkbox_style:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    border-radius: 50%;
    color: #b03600;
    position: absolute;
    top: 3px;
    left: 2px;
    line-height: 1;
}

.slick-list.draggable {
    height: auto !important;
}