.progress-tracker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    list-style: none;
}
.progress-step {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    margin: 0;
    padding: 0;
    min-width: 24px;
}
.progress-step:last-child {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}
.progress-step:last-child .progress-marker::after {
    display: none;
}
.progress-marker {
    display: block;
    position: relative;
}
.progress-marker_spot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    background-color: #efb81a;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.progress-marker_spot--underlay {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 198, 49, 0.3);
    top: -10px;
    left: -10px;
    z-index: 2;
    transition: ease-in-out;
}
.progress-step.is-complete .progress-marker_spot--underlay {
    animation: 4.5s infinite pulse;
    width: 40px;
    height: 40px;
}
.progress-marker::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 10px;
    right: -10px;
    width: 100%;
    height: 1px;
    -webkit-transition: background-color 0.6s, background-position 0.6s;
    transition: background-color 0.6s, background-position 0.6s;
}
.progress-step .progress-marker {
    color: #a9a9a9;
}
.progress-step .progress-marker::after,
.progress-step .progress-marker::before {
    background-color: #b6b6b6;
}
.progress-step .progress-text {
    color: #333;
}
.progress-step.is-active .progress-marker::before,
.progress-step.is-complete .progress-marker::after,
.progress-step.is-complete .progress-marker::before,
.progress-step.is-progress .progress-marker::after,
.progress-step.is-progress .progress-marker::before {
    background-color: #efb81a;
}
.progress-step.is-progress-10 .progress-marker::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #868686), color-stop(10%, #b6b6b6));
    background-image: linear-gradient(to right, #868686 10%, #b6b6b6 10%);
}
.progress-step.is-progress-20 .progress-marker::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(20%, #868686), color-stop(20%, #b6b6b6));
    background-image: linear-gradient(to right, #868686 20%, #b6b6b6 20%);
}
.progress-step.is-progress-30 .progress-marker::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #868686), color-stop(30%, #b6b6b6));
    background-image: linear-gradient(to right, #868686 30%, #b6b6b6 30%);
}
.progress-step.is-progress-40 .progress-marker::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #868686), color-stop(40%, #b6b6b6));
    background-image: linear-gradient(to right, #868686 40%, #b6b6b6 40%);
}
.progress-step.is-progress-50 .progress-marker::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #868686), color-stop(50%, #b6b6b6));
    background-image: linear-gradient(to right, #868686 50%, #b6b6b6 50%);
}
.progress-step.is-progress-60 .progress-marker::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(60%, #868686), color-stop(60%, #b6b6b6));
    background-image: linear-gradient(to right, #868686 60%, #b6b6b6 60%);
}
.progress-step.is-progress-70 .progress-marker::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(70%, #868686), color-stop(70%, #b6b6b6));
    background-image: linear-gradient(to right, #868686 70%, #b6b6b6 70%);
}
.progress-step.is-progress-80 .progress-marker::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(80%, #868686), color-stop(80%, #b6b6b6));
    background-image: linear-gradient(to right, #868686 80%, #b6b6b6 80%);
}
.progress-step.is-progress-90 .progress-marker::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(90%, #868686), color-stop(90%, #b6b6b6));
    background-image: linear-gradient(to right, #868686 90%, #b6b6b6 90%);
}
.progress-step:hover .progress-marker::before {
    background-color: #56adf5;
}
.progress-tracker--center .progress-step:last-child,
.progress-tracker--right .progress-step:last-child,
.progress-tracker--text .progress-step:last-child {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.progress-tracker--center {
    text-align: center;
}
.progress-tracker--center .progress-marker::before,
.progress-tracker--center .progress-text--dotted::before {
    margin-left: auto;
    margin-right: auto;
}
.progress-tracker--center .progress-marker::after {
    right: -50%;
}
.progress-tracker--right {
    text-align: right;
}
.progress-tracker--right .progress-marker::before,
.progress-tracker--right .progress-text--dotted::before {
    margin-left: auto;
}
.progress-tracker--right .progress-marker::after {
    right: calc(-100% + 12px);
}
.progress-tracker--spaced .progress-marker::after {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
}
.progress-tracker--border {
    padding: 4px;
    border: 2px solid #333;
    border-radius: 32px;
}
.progress-text--dotted::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin: 6px -2px;
    background-size: 12px 18px;
    background-image: repeating-radial-gradient(circle at center 6px, #b6b6b6, #b6b6b6 5px, rgba(182, 182, 182, 0.5) 5.5px, rgba(182, 182, 182, 0.01) 6px, transparent 100%);
}
.progress-text--dotted-1::before {
    height: 12px;
}
.progress-text--dotted-2::before {
    height: 30px;
}
.progress-text--dotted-3::before {
    height: 48px;
}
.progress-text--dotted-4::before {
    height: 66px;
}
.progress-text--dotted-5::before {
    height: 84px;
}
.progress-text--dotted-6::before {
    height: 102px;
}
.progress-text--dotted-7::before {
    height: 120px;
}
.progress-text--dotted-8::before {
    height: 138px;
}
.progress-text--dotted-9::before {
    height: 156px;
}
.progress-text--dotted-10::before {
    height: 174px;
}
.progress-text--dotted-11::before {
    height: 192px;
}
.progress-text--dotted-12::before {
    height: 210px;
}
.progress-tracker--text-top .progress-text {
    height: 100%;
}
.progress-tracker--text-top .progress-marker {
    top: -24px;
}
.progress-tracker--text-inline {
    overflow: hidden;
}
.progress-tracker--text-inline .progress-marker,
.progress-tracker--text-inline .progress-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.progress-tracker--text-inline .progress-marker {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.progress-tracker--text-inline .progress-marker::after {
    top: auto;
}
.progress-tracker--text-inline .progress-text {
    position: relative;
    z-index: 10;
    max-width: 70%;
    white-space: nowrap;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
}
.progress-tracker--text-inline .progress-marker .progress-text {
    display: inline-block;
}
.progress-tracker--text-inline .progress-title {
    margin: 0;
}
.progress-tracker--square .progress-marker::before {
    border-radius: 0;
}
.progress-tracker--square .progress-marker::after {
    top: auto;
    bottom: 0;
}
@media (max-width: 575px) {
    .progress-tracker-wrapper {
        overflow-x: auto;
        -ms-scroll-snap-type: x proximity;
        scroll-snap-type: x proximity;
    }
    .progress-tracker-wrapper .progress-step {
        min-width: 50%;
        scroll-snap-align: start;
    }
}
.progress-tracker--vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.progress-tracker--vertical .progress-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.progress-tracker--vertical.progress-tracker--right .progress-step {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.progress-tracker--vertical .progress-marker::after {
    right: auto;
    top: 0;
    left: 10px;
    width: 1px;
    height: 100%;
}
.progress-tracker--vertical .progress-text {
    padding: 0 12px 24px;
}
@-webkit-keyframes scale-up {
    from {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
}
@keyframes scale-up {
    from {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
}
.anim-ripple .progress-link::before,
.anim-ripple-large .progress-link::before,
.anim-ripple-splash .progress-link::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    visibility: hidden;
    -webkit-animation: 0.3s ease-out scale-up;
    animation: 0.3s ease-out scale-up;
}
.anim-ripple .progress-link:focus::before,
.anim-ripple-large .progress-link:focus::before,
.anim-ripple-splash .progress-link:focus::before {
    visibility: visible;
}
.anim-ripple-double.progress-tracker--center .progress-link::after,
.anim-ripple-double.progress-tracker--center .progress-link::before,
.anim-ripple-large.progress-tracker--center .progress-link::after,
.anim-ripple-large.progress-tracker--center .progress-link::before,
.anim-ripple-splash.progress-tracker--center .progress-link::after,
.anim-ripple-splash.progress-tracker--center .progress-link::before,
.anim-ripple.progress-tracker--center .progress-link::after,
.anim-ripple.progress-tracker--center .progress-link::before,
.progress-tracker--center .anim-ripple .progress-link::after,
.progress-tracker--center .anim-ripple .progress-link::before,
.progress-tracker--center .anim-ripple-double .progress-link::after,
.progress-tracker--center .anim-ripple-double .progress-link::before,
.progress-tracker--center .anim-ripple-large .progress-link::after,
.progress-tracker--center .anim-ripple-large .progress-link::before,
.progress-tracker--center .anim-ripple-splash .progress-link::after,
.progress-tracker--center .anim-ripple-splash .progress-link::before {
    left: 50%;
}
.anim-ripple-double.progress-tracker--right .progress-link::after,
.anim-ripple-double.progress-tracker--right .progress-link::before,
.anim-ripple-large.progress-tracker--right .progress-link::after,
.anim-ripple-large.progress-tracker--right .progress-link::before,
.anim-ripple-splash.progress-tracker--right .progress-link::after,
.anim-ripple-splash.progress-tracker--right .progress-link::before,
.anim-ripple.progress-tracker--right .progress-link::after,
.anim-ripple.progress-tracker--right .progress-link::before,
.progress-tracker--right .anim-ripple .progress-link::after,
.progress-tracker--right .anim-ripple .progress-link::before,
.progress-tracker--right .anim-ripple-double .progress-link::after,
.progress-tracker--right .anim-ripple-double .progress-link::before,
.progress-tracker--right .anim-ripple-large .progress-link::after,
.progress-tracker--right .anim-ripple-large .progress-link::before,
.progress-tracker--right .anim-ripple-splash .progress-link::after,
.progress-tracker--right .anim-ripple-splash .progress-link::before {
    left: calc(100% - 12px);
}
.anim-ripple-splash .progress-link::before {
    width: 48px;
    height: 48px;
    -webkit-box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.35);
}
.anim-ripple-double .progress-link::after,
.anim-ripple-double .progress-link::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: 0 0;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    visibility: hidden;
    border: 3px solid rgba(0, 0, 0, 0.3);
}
.anim-ripple-double .progress-link:not(:active)::after,
.anim-ripple-double .progress-link:not(:active)::before {
    -webkit-animation: 0.3s ease-out scale-up;
    animation: 0.3s ease-out scale-up;
}
.anim-ripple-double .progress-link:not(:active)::after {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}
.anim-ripple-double .progress-link:focus::after,
.anim-ripple-double .progress-link:focus::before {
    visibility: visible;
}
.anim--large .progress-link::after,
.anim--large .progress-link::before {
    width: 48px;
    height: 48px;
}
.anim--path .progress-marker::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #b6b6b6), color-stop(50%, #868686));
    background-image: linear-gradient(to right, #b6b6b6 50%, #868686 50%);
    background-size: 200% 100%;
    background-position: 0 100%;
    -webkit-transition: background-position 0.3s ease-out;
    transition: background-position 0.3s ease-out;
}
.anim--path .progress-step.is-complete .progress-marker::after,
.progress-step.is-complete .anim--path .progress-marker::after {
    background-position: -100% 100%;
}
[dir="rtl"] .progress-marker::after {
    right: auto;
    left: -12px;
}
[dir="rtl"] .progress-tracker--center .progress-marker::after {
    left: -50%;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}
html {
    scroll-behavior: smooth;
}
body,
html {
    overflow-x: hidden;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
a,
button,
input,
textarea {
    background: 0 0;
    color: inherit;
    font-family: inherit;
    border: none;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
textarea {
    resize: none;
}
a[href^="http://maps.google.com/maps"],a[href^="https://maps.google.com/maps"]
{
    display: none !important;
}
.gm-style-cc,
.gmnoprint a,
.gmnoprint span {
    display: none;
}
.gmnoprint div {
    background: 0 0 !important;
}
.sticky-spacer {
    display: none !important;
}
@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes pulse {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes pulse {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
:not(.header_nav-list) {
    scrollbar-width: auto;
    scrollbar-color: #a9a9a9 #e9e6e6;
}
:not(.header_nav-list)::-webkit-scrollbar {
    width: 8px;
}
:not(.header_nav-list)::-webkit-scrollbar-track {
    background: #e9e6e6;
}
:not(.header_nav-list)::-webkit-scrollbar-thumb {
    background-color: #a9a9a9;
    border-radius: 0;
    border: none;
}
html.fixed {
    position: fixed;
    width: 100%;
}
body {
    font-family: Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.5;
    position: relative;
    color: #ffffff;
}
body.swal2-shown {
    padding: 0 !important;
}
.page {
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}
.page .section_header {
    position: relative;
    z-index: 3;
    margin-bottom: 0;
}
.page .media {
    position: absolute;
    width: 50%;
    -webkit-transform: rotate(153deg);
    -ms-transform: rotate(153deg);
    transform: rotate(153deg);
    bottom: -15%;
    right: 10%;
    opacity: 0.8;
    z-index: 1;
    max-width: 700px;
}
.page .media img {
    height: 100%;
}
.page .breadcrumbs {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px 84px;
}
.page .breadcrumbs_item {
    position: relative;
}
.page .breadcrumbs_item a {
    font-weight: 500;
}
.page .breadcrumbs_item a:focus,
.page .breadcrumbs_item a:hover {
    color: #efb81a;
}
.page .breadcrumbs_item:hover:before {
    width: 100%;
}
.page .breadcrumbs_item:after,
.page .breadcrumbs_item:before {
    content: "";
    position: absolute;
}
.page .breadcrumbs_item:after {
    width: 30px;
    height: 2px;
    background: #fff;
    top: 50%;
    right: -58px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.page .breadcrumbs_item:before {
    width: 0;
    height: 2px;
    background-color: #efb81a;
    bottom: -6px;
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}
.page .breadcrumbs_item--current {
    font-weight: 400;
    padding: 0;
    margin: 0;
}
.page .breadcrumbs_item--current:after,
.page .breadcrumbs_item--current:before {
    display: none;
}
.container {
    max-width: 1290px;
    padding: 0 20px;
}
.section {
    padding: 80px 0;
}
.section-nopb {
    padding: 80px 0 0;
}
.section_header {
    margin-bottom: 30px;
}
.section_header .subtitle {
    color: #efb81a;
    text-transform: uppercase;
    padding-left: 60px;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 15px;
    font-family: Archivo, sans-serif;
    font-weight: 600;
}
.section_header .subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 2px;
    width: 40px;
    background: #efb81a;
}
.section_header .subtitle--extended {
    padding-left: 20px;
}
.section_header .subtitle--extended:before {
    width: 1000%;
    left: -1000%;
}
.section_header .text {
    margin: 20px 0 30px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Archivo, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
.h1,
h1 {
    font-size: 48px;
}
.h2,
h2 {
    font-size: 36px;
    line-height: 1.1;
}
.h3,
.h4,
h3,
h4 {
    font-size: 26px;
}
.h5,
h5 {
    font-size: 18px;
}
.h6,
h6 {
    font-size: 14px;
    line-height: 1.5;
}
.btn{
    height: 54px;
}
.field {
    background: #fff;
    border: 1px solid transparent;
    padding: 17px 19px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    color: #000810;
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 20px;
}
.field::-webkit-input-placeholder {
    color: #a9a9a9;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    font-size: 16px;
}
.field::-moz-placeholder {
    color: #a9a9a9;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    font-size: 16px;
}
.field:-ms-input-placeholder {
    color: #a9a9a9;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    font-size: 16px;
}
.field::-ms-input-placeholder {
    color: #a9a9a9;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    font-size: 16px;
}
.field::placeholder {
    color: #a9a9a9;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    font-size: 16px;
}
.field:focus::-webkit-input-placeholder {
    opacity: 0;
}
.field:focus::-moz-placeholder {
    opacity: 0;
}
.field:focus:-ms-input-placeholder {
    opacity: 0;
}
.field:focus::-ms-input-placeholder {
    opacity: 0;
}
.field:focus::placeholder {
    opacity: 0;
}
.field.error {
    border-color: red !important;
}
.btn {
    font-family: Archivo, sans-serif;
    font-weight: 700;
    padding: 0 30px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background: #efb81a;
    text-transform: uppercase;
    position: relative;
    bottom: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}
.btn:not(.btn--static):focus,
.btn:not(.btn--static):hover {
    bottom: 5px;
}
.metadata {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    color: #202c38;
    font-size: 14px;
}
.metadata .icon {
    font-size: 5px;
    color: #efb81a;
}
.metadata .category {
    color: #6a6a6a;
    font-family: Archivo, sans-serif;
    font-weight: 600;
}
.metadata .author .link:hover,
.metadata .category:hover {
    color: #efb81a;
}
.socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
.socials_item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6a6a6a;
    color: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    line-height: 30px;
    will-change: transform;
}
.socials_item-link:focus,
.socials_item-link:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    background-color: #efb81a;
}
input[type="checkbox"] {
    display: none;
}
input[type="checkbox"]:checked + label .icon {
    color: #006287;
}
input[type="checkbox"] + label {
    cursor: pointer;
}
input[type="checkbox"] + label .icon {
    color: transparent;
    width: 18px;
    height: 18px;
    border: 1px solid #c8c8c8;
    font-size: 12px;
    margin-right: 20px;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
#scrollTrigger {
    position: fixed;
    right: 12px;
    bottom: -100px;
    z-index: 30;
    width: 40px;
    height: 40px;
    opacity: 0.5;
    background: #ffffff;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
#scrollTrigger.active {
    bottom: 12px;
}
#scrollTrigger:hover {
    opacity: 1;
}
#scrollTrigger .icon {
    display: inline-block;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    color: #6a6a6a;
    font-size: 24px;
    line-height: 24px;
}
.rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    color: #efb81a;
    font-size: 18px;
}
.avatar {
    border-radius: 50%;
    width: 40px;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.avatar img {
    height: 100%;
}
.link-arrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1;
    color: #efb81a;
    letter-spacing: 1px;
    font-family: Archivo, sans-serif;
    font-weight: 600;
}
.link-arrow--alt {
    color: #efb81a;
}
.link-arrow .icon {
    margin: -2px 0 0 10px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    font-size: 16px;
}
.link-arrow:focus .icon,
.link-arrow:hover .icon {
    margin-left: 15px;
}
.brand {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: Archivo, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
}
.brand_logo {
    max-height: 50px;
}
.tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    text-transform: uppercase;
}
.tags_item {
    border: 1px solid #e9e6e6;
    padding: 10px 20px;
    will-change: transform;
}
.tags_item:focus,
.tags_item:hover {
    border-color: #6a6a6a;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}
.swiper-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
.swiper-controls .swiper-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #6a6a6a;
    color: #6a6a6a;
    font-size: 16px;
    border-radius: 50%;
    background-color: transparent;
    -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.swiper-controls .swiper-button:focus,
.swiper-controls .swiper-button:hover {
    background-color: #6a6a6a;
    color: #fff;
}
.swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    height: 24px;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #e9e6e6;
    display: block;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}
.swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    border-radius: 50%;
    border: 1px solid transparent;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.swiper-pagination-bullet-active {
    background: #6a6a6a;
}
.swiper-pagination-bullet-active:after {
    border-color: #6a6a6a;
}
.highlight {
    color: #efb81a;
}
.primary-bg {
    background: #3f3f3f;
    color: #fff;
}
.primary-bg-2 {
    background: #3f3f3f;
    color: #fff;
}
.primary-bg .checklist_item .icon {
    color: #efb81a;
}
.video {
    position: relative;
    overflow: hidden;
}
.video_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.video_cover img {
    height: 100%;
}
.video_btn {
    z-index: 2;
    width: 55px;
    height: 55px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    border: 2px solid #6a6a6a;
    border-radius: 50%;
    color: #6a6a6a;
    font-size: 24px;
}
.video_btn i {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}
.video_btn i.icon-pause {
    opacity: 0;
}
.video_btn:focus,
.video_btn:hover {
    border-color: #efb81a;
}
.video_btn:focus i,
.video_btn:hover i {
    color: #efb81a;
}
.video_btn,
.video_cover {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.video_btn.hidden,
.video_cover.hidden {
    opacity: 0;
    visibility: hidden;
}
.video video {
    height: 100%;
}
.presentation {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}
.presentation .gallery_item .media {
    display: block;
}
.projects_list {
    display: grid;
    gap: 40px;
}
.projects_list-item .media {
    aspect-ratio: 625/500;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.projects_list-item .media img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.projects_list-item .media:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.projects_list-item .main_title {
    margin-bottom: 15px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-bottom: 15px;
    position: relative;
}
.projects_list-item .main_title .divider--line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #a9a9a9;
    bottom: 0;
    left: 0;
}
.projects_list-item .main_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.projects_list-item .main_info .location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.projects_list-item .main_info .location .icon {
    color: #efb81a;
    font-size: 24px;
}
.blog_feed {
    display: grid;
    grid-gap: 40px;
}
.blog_feed-item .media {
    aspect-ratio: 410/320;
    overflow: hidden;
}
.blog_feed-item .media img {
    height: 100%;
}
.blog_feed-item .metadata {
    margin: 10px 0 5px;
}
.blog_feed-item .main_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}
.blog_feed-item .main_title .icon {
    margin-top: 5px;
    color: #006287;
}
.blog_feed-item .main_text {
    margin: 10px 0 20px;
    padding-bottom: 15px;
    color: #162739;
    border-bottom: 1px solid #c8c8c8;
}
.gallery_item {
    height: 260px;
    overflow: hidden;
	border: 1px solid #ffffff;
}
.gallery_item .media {
    position: relative;
    height: 100%;
}
.gallery_item .media img {
    height: 100%;
}
.gallery_item .media .overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    color: #fff;
    background: rgba(0, 31, 63, 0.5);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.gallery_item .media .overlay_header {
    margin-bottom: 0;
}
.gallery_item .media .overlay_caption {
    font-family: Archivo, sans-serif;
    font-weight: 700;
}
.gallery_item .media .overlay_label {
    text-transform: uppercase;
    color: #efb81a;
    margin-top: 20px;
    font-family: Archivo, sans-serif;
    font-weight: 600;
    font-size: 18px;
}
.gallery_item .media:hover .overlay {
    opacity: 1;
}
.checklist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
}
.checklist_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.checklist_item .icon {
    font-size: 18px;
    margin-top: -3px;
    color: #006287;
}
.achievements {
    max-width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-weight: 500;
    gap: 20px;
}
.achievements_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.achievements_item .label {
    width: calc(100% - 60px);
}
.numbers_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
}
.numbers_list-item .number {
    margin-bottom: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800;
}
.numbers_list-item .label {
    font-weight: 500;
}
@media screen and (min-width: 567.98px) {
    .btn {
        width: -webkit-fit-content !important;
        width: -moz-fit-content !important;
        width: fit-content !important;
    }
    .numbers_list {
        display: grid;
        grid-template-columns: repeat(2, auto);
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        grid-gap: 30px;
    }
    .gallery_item .media .overlay {
        padding: 30px;
    }
    .projects_list-item .main_info {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 10px;
    }
    .projects_list-item .main_info .location {
        margin: 0;
    }
}
@media screen and (min-width: 767.98px) {
    body {
        font-size: 18px;
    }
    h1 {
        font-size: 46px;
        line-height: 1.1;
    }
    h2 {
        font-size: 40px;
        line-height: 1.3;
    }
    h3,
    h4 {
        font-size: 26px;
        line-height: 1.2;
    }
    #scrollTrigger {
        right: 20px;
    }
    #scrollTrigger.active {
        bottom: 20px;
    }
	.footer {
        font-size: 16px !important;
    }
    .video_btn {
        width: 110px;
        height: 110px;
        font-size: 34px;
    }
    .page {
        padding: 100px 0 60px;
    }
    .page .media {
        bottom: -45%;
    }
    .section_header {
        margin-bottom: 40px;
    }
    .rating {
        font-size: 24px;
    }
    .avatar {
        width: 60px;
    }
    .gallery_item .media .overlay {
        padding: 40px;
    }
    .blog_feed {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px 30px;
    }
    .blog_feed-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .blog_feed-item .main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
    .blog_feed-item .main_text {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
    .projects_list {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects_list-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .projects_list-item .main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
    .projects_list-item .main_title {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
    .projects_list-item .main_info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .presentation {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .gallery_item {
        height: 280px;
    }
}
@media screen and (min-width: 1023.98px) {
    h1 {
        font-size: 48px;
        line-height: 1;
    }
    h2 {
        font-size: 40px;
        line-height: 1.1;
    }
    h3 {
        font-size: 28px;
        line-height: 1.2;
    }
    h4 {
        line-height: 1.1;
    }
    .section {
        padding: 180px 0;
    }
    .section-nopb {
        padding: 180px 0 0;
    }
    .page {
        padding: 210px 0 120px;
    }
    .page .media {
        bottom: -80%;
        right: -18%;
        width: 100%;
    }
    .avatar {
        width: 80px;
    }
    .blog .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 30px;
    }
    .projects_list {
        grid-gap: 60px 40px;
    }
    .projects_list-item .main_info {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .projects_list-item .main_title .text {
        display: block;
        max-width: 450px;
    }
}
@media screen and (min-width: 1279.98px) {
    .page .media {
        right: 200px;
    }
    .blog .container {
        gap: 60px;
    }
    .blog_feed-item .metadata {
        margin: 20px 0;
    }
    .blog_feed-item .main_text {
        margin: 20px 0 25px;
    }
    .achievements {
        gap: 30px;
        max-width: 320px;
    }
    .achievements_item {
        gap: 30px;
    }
    .achievements_item .label {
        width: calc(100% - 70px);
    }
    #scrollTrigger {
        right: 40px;
    }
    #scrollTrigger.active {
        bottom: 40px;
    }
    .presentation {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
    }
    .gallery_item {
        height: 300px;
    }
}
@media screen and (min-width: 1330px) {
    .projects_list-item .main_title .text {
        max-width: unset;
    }
    .container {
        padding: 0;
    }
}
@media screen and (min-width: 1365.98px) {
    #scrollTrigger {
        width: 58px;
        height: 58px;
        right: 30px;
    }
    #scrollTrigger.active {
        bottom: 30px;
    }
    .gallery_item {
        height: 300px;
    }
}



.about_aside {
    margin-top: 30px;
}
.about_aside .wrapper {
    height: 100%;
    padding: 30px;
}
.about_aside .wrapper--helper {
    width: 100%;
}
.about_info {
    margin-bottom: 30px;
}
.about_info .wrapper {
    border: 1px solid #c8c8c8;
    width: 100%;
}
.about_info-title {
    margin-bottom: 30px;
}
.about_info-table {
    width: 100%;
}
.about_info-table_row .property {
    color: #162739;
}
.about_info-table_row .value {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 23px;
    font-family: Archivo, sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}
.about_info-table_row .property,
.about_info-table_row .value {
    width: 100%;
    display: block;
    text-align: left;
}
.about_info .link {
    margin-top: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 600;
}
.about_contact {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}
.about_contact .contact-info,
.about_contact-title {
    margin-bottom: 30px;
}
.about_contact .socials_item-link {
    background-color: #ffc631;
    color: #001f3f;
}
@media screen and (min-width: 567.98px) {
    .about_aside .wrapper {
        padding: 40px;
    }
    .about_info-table_row {
        padding-bottom: 35px;
        display: table;
        width: 100%;
    }
    .about_info-table_row .property,
    .about_info-table_row .value {
        width: unset;
        display: table-cell;
        text-align: unset;
    }
    .about_info .link {
        margin-top: 10px;
        font-family: Archivo, sans-serif;
        font-weight: 600;
    }
    html[dir="rtl"] .about_info-table_row .value {
        text-align: left;
    }
}
@media screen and (min-width: 767.98px) {
    .about_article .media {
        height: 430px;
    }
    .about_aside {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        margin-top: 60px;
    }
    .about_aside-item {
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1023.98px) {
    .about_content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 40px;
    }
    .about_aside {
        grid-template-columns: 1fr;
        width: 55%;
        margin-top: 0;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        grid-gap: 60px;
    }
    .about_article {
        width: calc(45% - 40px);
    }
}
@media screen and (min-width: 1279.98px) {
    .about_content {
        gap: 60px;
    }
    .about_article-header {
        margin-bottom: 30px;
    }
}









.alert_popup {
    border-radius: 0;
    padding-bottom: 30px !important;
}
.alert_popup-close {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.alert_popup-title {
    font-family: Archivo, sans-serif;
    color: #6a6a6a !important;
    padding: 30px 30px 0;
}
.alert_popup-content .main {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}
.collapse:not(.show) {
    display: none;
}
.collapsing {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
}
.fade {
    -webkit-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
    opacity: 0;
}
.tab-content {
    position: relative;
    overflow: hidden;
}
.tab-content > .tab-pane {
    position: relative;
    width: 100%;
    top: 0;
    opacity: 1;
    z-index: 1;
}
.tab-content > .tab-pane:not(.active) {
    display: block;
    height: 0;
    opacity: 0;
    z-index: -1;
}
html[dir="rtl"] .page .breadcrumbs_item:after {
    left: -58px;
    right: unset;
}
html[dir="rtl"] .page .media {
    right: unset !important;
    left: -10%;
}
html[dir="rtl"] .section_header .subtitle {
    padding-left: 0;
    padding-right: 60px;
}
html[dir="rtl"] .section_header .subtitle:before {
    left: unset;
    right: 0;
}
html[dir="rtl"] .section_header .subtitle--extended:before {
    right: unset;
    left: calc(100% - 40px);
}
html[dir="rtl"] .link-arrow .icon {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    margin-left: 0 !important;
    margin-right: 10px;
}
html[dir="rtl"] .link-arrow:focus .icon,
html[dir="rtl"] .link-arrow:hover .icon {
    margin-right: 15px;
}
html[dir="rtl"] input[type="checkbox"] + label .icon {
    margin-right: 0;
    margin-left: 20px;
}
html[dir="rtl"] .swiper-controls .swiper-button .icon {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}
html[dir="rtl"] #scrollTrigger {
    right: unset;
    left: 12px;
}
@media screen and (min-width: 1023.98px) {
    html[dir="rtl"] .page .media {
        left: -18%;
    }
}
@media screen and (min-width: 1279.98px) {
    html[dir="rtl"] .page .media {
        left: 200px;
    }
    html[dir="rtl"] #scrollTrigger {
        right: auto;
        left: 40px;
    }
}
.header {
    will-change: transform;
    position: fixed;
    width: 100%;
    z-index: 40;
    top: 0;
    left: 0;
    background-color: transparent;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.header.opened {
    height: 100vh;
}
.header.opened,
.header.sticky {
    background-color: #3f3f3f;
}
.header--pinned {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.header--unpinned {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
.header .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 20px;
}
.header_trigger {
    width: 30px;
    height: 28px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.header_trigger .line {
    width: 100%;
    height: 3px;
    background: #fff;
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    border-radius: 3px;
}
.header_trigger .line--short {
    width: 50%;
}
.header_trigger.active .line--short {
    width: 100%;
}
.header_nav {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
.header_nav-list {
    max-height: calc(100vh - 100px);
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    overflow-y: auto;
}
.header_nav-list_item {
    text-transform: uppercase;
    font-size: 14px;
    font-family: Archivo, sans-serif;
    font-weight: 600;
    color: #fff;
}
.header_nav-list_item .nav-item.current,
.header_nav-list_item .nav-link.current {
    color: #efb81a;
}
.header_nav-list_item .dropdown-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin: 20px 15px 0 0;
}
.header_nav-list_item .dropdown-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.header_nav-list_item .dropdown-toggle .icon {
    will-change: transform;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    font-size: 12px;
    margin-bottom: 2px;
    color: #efb81a;
}
.header_nav-list_item .dropdown-toggle:hover .icon,
.header_nav-list_item .dropdown-toggle[aria-expanded="true"] .icon {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
@media screen and (min-width: 1023.98px) {
    .header {
        padding: 30px 0;
    }
    .header.sticky {
        padding: 20px 0;
    }
    .header .container {
        padding: 0 20px;
    }
    .header .brand_name,
    .header_trigger {
        display: none;
    }
    .header_nav {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        width: unset;
    }
    .header_nav .nav-link {
        position: relative;
    }
    .header_nav .nav-link:after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: #efb81a;
        bottom: -6px;
        left: 0;
        -webkit-transition: width 0.3s ease-in-out;
        -o-transition: width 0.3s ease-in-out;
        transition: width 0.3s ease-in-out;
    }
    .header_nav .nav-link:focus,
    .header_nav .nav-link:hover {
        color: #efb81a;
    }
    .header_nav .nav-link.current {
        color: #fff;
    }
    .header_nav .nav-link.current:after {
        width: 100%;
    }
    .header_nav-list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: unset;
        margin-top: 0;
        overflow-y: unset;
    }
    .header_nav-list .dropdown {
        position: relative;
    }
    .header_nav-list .dropdown:last-of-type .dropdown-menu {
        right: 0;
    }
    .header_nav-list .dropdown-menu {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        position: absolute;
        z-index: 20;
        opacity: 0;
        max-height: -webkit-fit-content;
        max-height: -moz-fit-content;
        max-height: fit-content;
        text-align: left;
        visibility: hidden;
        -webkit-transition: opacity 0.3s;
        -o-transition: opacity 0.3s;
        transition: opacity 0.3s;
        padding: 20px 0 0;
    }
    .header_nav-list .dropdown-menu.active {
        opacity: 1;
        visibility: visible;
    }
    .header_nav-list .dropdown-list {
        margin: 0;
        background-color: #6a6a6a;
        padding: 20px;
    }
    .header_nav-list .dropdown-item.current,
    .header_nav-list .dropdown-item:hover {
        color: #efb81a;
    }
    html[dir="rtl"] .header .container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    html[dir="rtl"] .header_nav-list .nav-link:after {
        left: auto;
        right: 0;
    }
    html[dir="rtl"] .header_nav-list .dropdown:last-of-type .dropdown-menu {
        right: unset;
        left: 0;
    }
}
@media screen and (min-width: 1169.98px) {
    .header {
        padding-top: 40px;
    }
    .header .brand_name {
        display: block;
    }
}
@media screen and (min-width: 1330px) {
    .header .container {
        padding: 0;
    }
}
.partners_grid {
    display: grid;
    grid-gap: 30px;
}
.partners_grid-card {
    border: 1px solid #c8c8c8;
    padding: 51px 0;
}
.partners_grid-card .media {
    max-height: 123px;
    width: auto;
    margin: auto;
}
.about_header {
    margin-bottom: 0;
}
.about_header .text {
    margin: 30px 0 40px;
}
.about_header .achievements_item .icon * {
    fill: #efb81a;
}
.about_header .btn {
    margin: 40px 0 50px;
}
@media screen and (min-width: 567.98px) {
    .advantages_header .numbers_list-item .label {
        max-width: 170px;
    }
}
@media screen and (min-width: 767.98px) {
    .header.opened {
        height: 50vh;
    }
    .header_nav-list {
        max-height: calc(50vh - 100px);
    }
    .partners_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about_header {
        max-width: 520px;
    }
    .gallery_item .media .overlay {
        padding: 20px;
    }
}
@media screen and (min-width: 1023.98px) {
    .partners_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 60px;
    }
    .about_header .title {
        width: 526px;
    }
    .about_header .btn {
        margin-top: 50px;
        margin-bottom: 0;
    }
    .about .secondary {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .about .secondary .media {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-top: 40px;
    }
    .about .secondary .numbers_list {
        grid-template-columns: 1fr;
        text-align: right;
    }
    .about .secondary .numbers_list .number {
        font-size: 80px;
        line-height: 80px;
    }
    html[dir="rtl"] .about .secondary .numbers_list {
        text-align: left;
    }
}
@media screen and (min-width: 1279.98px) {
    .about .container {
        gap: 140px;
    }
    .about .secondary .numbers_list {
        grid-template-columns: repeat(2, 200px);
        grid-gap: 60px;
    }
}
.advantages_header .numbers_list {
    margin: 30px 0 40px;
    padding: 40px;
    background: #f8f8f8;
    width: 100%;
}
.advantages_header .numbers_list-item .number {
    color: #006287;
}
.advantages_header .numbers_list-item .label {
    width: 100%;
    display: block;
    color: #202c38;
}
.advantages .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}
.advantages .main_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}
.advantages .main_list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
.advantages .main_list-item .number {
    color: #c8c8c8;
    font-family: Archivo, sans-serif;
    font-weight: 800;
}
.advantages .main_list-item .title {
    margin-bottom: 10px;
}
@media screen and (min-width: 1023.98px) {
    .advantages .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 60px;
    }
    .advantages_header {
        margin-bottom: 0;
        width: 520px;
    }
    .advantages_header .numbers_list {
        margin: 40px 0 0;
        padding: 60px;
    }
    .advantages .main {
        width: calc(100% - 580px);
    }
}
@media screen and (min-width: 1279.98px) {
    .advantages .container {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .advantages_header {
        width: 520px;
    }
    .advantages_header .numbers_list {
        padding: 80px;
    }
    .advantages .main {
        width: calc(100% - 580px);
    }
    .advantages .main_list {
        max-width: 515px;
        gap: 40px;
    }
    .advantages .main_list .title {
        margin-bottom: 20px;
    }
}
.gallery_item .overlay_label {
    display: none;
}
.gallery_grid {
    display: grid;
    grid-gap: 30px;
}
.gallery_grid-item {
    max-height: 470px;
}
@media screen and (min-width: 1023.98px) {
    .gallery_grid-item_trigger .overlay,
    .gallery_item .media .overlay {
        padding: 40px;
    }
}
.process_header {
    max-width: 376px;
}
.process_text {
    max-width: 520px;
    margin: 30px 0 40px;
    color: #e9e6e6;
}
.process_steps {
    padding-right: 15px;
}
.process_steps-step {
    position: relative;
}
.process_steps-step_wrapper {
    margin-left: 20px;
    padding-left: 20px;
}
.process_steps-step:last-of-type .description {
    padding-bottom: 0;
}
.process_steps-step .title {
    margin-bottom: 10px;
}
.process_steps-step .description {
    padding-bottom: 30px;
}
html[dir="rtl"] .process_steps {
    padding-left: 15px;
    padding-right: 0;
}
html[dir="rtl"] .process_steps-step .progress-marker_spot {
    left: auto;
    right: 0;
}
html[dir="rtl"] .process_steps-step .progress-marker_spot--underlay {
    left: auto;
    right: -10px;
}
html[dir="rtl"] .process_steps-step_wrapper {
    margin-right: 20px;
    padding-right: 20px;
}
@media screen and (min-width: 1023.98px) {
    .process_header,
    .process_text {
        margin: 0;
    }
    .process_container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .process_fluid {
        position: relative;
    }
    .process_fluid:before {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        top: 10px;
        background: #a9a9a9;
    }
    .process_steps {
        padding-right: 0;
        margin-top: 60px;
    }
    .process_steps-step {
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
    .process_steps-step_wrapper {
        margin-left: 0;
        padding-left: 10px;
        margin-top: 60px;
        max-width: 298px;
        margin-right: 32px;
    }
    .process_steps-step:last-of-type {
        margin-bottom: 0;
    }
    .process_steps-step .description {
        padding-bottom: 0;
    }
    html[dir="rtl"] .process_steps {
        padding-left: 0;
    }
    html[dir="rtl"] .process_steps-step_wrapper {
        margin-right: 0;
        padding-right: 10px;
        margin-left: 32px;
    }
}
.hero {
    position: relative;
    padding: 170px 0 50px;
    background-image: url(../img/slider/01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: 0.6s ease-in-out;
    -o-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}
.hero_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.6);
    top: 0;
    left: 0;
}
.hero .section_header {
    margin-bottom: 15px;
}
.hero .swiper-pagination-bullet-active {
    background: #efb81a;
}
.hero .swiper-pagination-bullet-active:after {
    border-color: #efb81a;
}
.hero_slider--main {
    margin-bottom: 40px;
}
.hero_slider--main .service .text {
    margin: 20px 0 30px;
}
.hero_slider--thumbs {
    margin-top: 70px;
}
.hero_slider--thumbs .thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 230px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.hero_slider--thumbs .thumb:after {
    content: "";
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.5);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.hero_slider--thumbs .thumb .title {
    position: absolute;
    z-index: 3;
    max-width: 213px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    bottom: 40px;
    left: 40px;
}
.hero_slider--thumbs .thumb .media {
    position: relative;
    z-index: 1;
    height: auto;
    width: 100%;
}
.hero_slider--thumbs .thumb .media img {
    height: 100%;
}
.hero_slider--thumbs .thumb.swiper-slide-thumb-active .title,
.hero_slider--thumbs .thumb:hover .title {
    color: #000810;
}
.hero_slider--thumbs .thumb.swiper-slide-thumb-active:after,
.hero_slider--thumbs .thumb:hover:after {
    background: rgba(255, 255, 255, 0.8);
}
html[dir="rtl"] .hero_slider--thumbs .thumb .title {
    right: 40px;
    left: auto;
}
@media screen and (min-width: 567.98px) {
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero .swiper-pagination {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
@media screen and (min-width: 767.98px) {
    .gallery_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero_main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 60px;
    }
    .hero_main .swiper-pagination {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .hero_slider--main {
        max-width: 680px;
    }
    .hero_slider--thumbs {
        margin-top: 100px;
    }
}
@media screen and (min-width: 1023.98px) {
    .hero {
        padding: 250px 0 30px;
    }
    .hero_slider--main .service .text {
        margin: 30px 0 50px;
    }
    .hero_slider--thumbs {
        margin-top: 100px;
    }
}
@media screen and (min-width: 1365.98px) {
    html[dir="rtl"] #scrollTrigger {
        right: auto;
        left: 30px;
    }
    .hero .container_thumbs {
        max-width: unset;
    }
    .hero_slider--thumbs .thumb {
        width: 410px;
    }
}
.feedback_header {
    color: #000810;
    margin-bottom: 40px;
}
.feedback_header .text {
    margin: 20px 0 30px;
    color: #202c38;
}
.feedback_slider {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}
.feedback_slider-slide {
    height: auto;
    border: 1px solid #c8c8c8;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}
.feedback_slider-slide .main {
    color: #000810;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.feedback_slider-slide .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.feedback_slider-slide .media .avatar {
    display: none;
}
.feedback_slider-slide .media_info {
    font-family: Archivo, sans-serif;
}
.feedback_slider-slide .media_info .name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 23px;
    color: #000810;
}
.feedback_slider-slide .media_info .company {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #202c38;
}
.feedback_slider-slide .media_info .company,
.feedback_slider-slide .media_info .name {
    display: block;
}
@media screen and (min-width: 767.98px) {
    .feedback_slider {
        gap: 30px;
    }
    .feedback_slider-slide {
        padding: 40px;
    }
}
@media screen and (min-width: 1023.98px) {
    .feedback .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 60px;
    }
    .feedback .container.reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .feedback_header {
        width: 490px;
    }
    .feedback_slider {
        width: calc(100% - 550px);
        gap: 50px;
        max-width: 630px;
    }
    .feedback_slider-slide {
        padding: 60px;
    }
    .feedback_slider .swiper-pagination {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-left: 11px;
    }
    .feedback_header,
    .feedback_slider {
        margin: 0;
    }
    html[dir="rtl"] .feedback_slider .swiper-pagination {
        margin-left: 0;
        margin-right: 11px;
    }
}
.contact-info {
    margin-bottom: 40px;
}
.contact-info_group {
    font-family: Archivo, sans-serif;
    margin-bottom: 30px;
}
.contact-info_group:last-of-type {
    margin-bottom: 0;
}
.contact-info_group span {
    display: block;
}
.contact-info_group .name {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px;
    color: #efb81a;
    font-weight: 500;
}
.contact-info_group .content {
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
}
.contact-info_group .content .link {
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.contact-info_group .content .link:focus,
.contact-info_group .content .link:hover {
    color: #efb81a;
}
@media screen and (min-width: 567.98px) {
    .feedback_slider-slide .media .avatar {
        display: block;
        width: 60px !important;
    }
    .contact .socials_item-link {
        width: 50px;
        height: 50px;
        font-size: 26px;
        line-height: 30px;
    }
}
.contact {
    padding-top: 0;
}
.contact_header .text {
    margin: 30px 0 40px;
}
.contact_map {
    margin-top: 40px;
    height: 350px;
}
.contact_map #map {
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 1023.98px) {
    .contact-info {
        margin-bottom: 87px;
    }
    .contact-info_group {
        margin-bottom: 40px;
    }
    .contact .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 60px;
    }
    .contact_wrapper {
        width: 500px;
    }
    .contact_map {
        margin-top: 0;
        width: calc(100% - 560px);
        height: auto;
    }
}
@media screen and (min-width: 1279.98px) {
    .contact .container {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        gap: 130px;
    }
    .contact_map {
        height: 540px;
        width: calc(100% - 630px);
    }
}
.footer {
    padding-top: 80px;
    padding-bottom: 60px;
}
.footer_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}
.footer_main-block .brand,
.footer_main-block_title {
    margin-bottom: 20px;
}
.footer_main-block_form {
    margin-top: 20px;
}
.footer_main-block_form .btn,
.footer_main-block_form .field {
    width: 100%;
}
.footer_main-block_form .field:focus {
    border-color: #efb81a;
}
.footer_main-block_form .btn .icon {
    display: none;
}
.footer_main-block_form .btn:focus,
.footer_main-block_form .btn:hover {
    background: #ffd464;
}
.footer_main-block .group-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.footer_main-block .group-wrapper:first-of-type {
    margin-bottom: 15px;
}
.footer_main-block .group-wrapper .icon {
    color: #efb81a;
    font-size: 18px;
    margin-top: 5px;
}
.footer_main-block .group-wrapper .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 23px;
}
.footer_main-block .group-wrapper .group a,
.footer_main-block .group-wrapper .group span {
    display: inline-block;
}
.footer_main-block .group-wrapper .group a {
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.footer_main-block .group-wrapper .group a:focus,
.footer_main-block .group-wrapper .group a:hover {
    opacity: 0.8;
}
.footer_main-block_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
}
.footer_main-block_nav .list-item .link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Archivo, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 5px;
}
.footer_main-block_nav .list-item .link.current {
    color: #efb81a;
}
.footer_main-block_nav .list-item .link .icon {
    font-size: 10px;
    color: #efb81a;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.footer_main-block_nav .list-item .link:focus .icon,
.footer_main-block_nav .list-item .link:hover .icon {
    color: #efb81a;
}
.footer_secondary {
    border-top: 1px solid #a9a9a9;
    margin-top: 60px;
    padding-top: 60px;
}
.footer_secondary-copyright {
    text-align: center;
    margin: 0 0 40px;
}
.footer_secondary-copyright span {
    display: inline-block;
}
.footer_secondary .socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.footer_secondary .socials_item-link {
    background: #efb81a;
    color: #ffffff;
}
html[dir="rtl"] .footer_main-block_nav .list-item .link .icon {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}
@media screen and (min-width: 567.98px) {
    .footer_main-block_subtitle {
        max-width: 450px;
    }
    .footer_main-block_form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .footer_main-block_form .field {
        margin-bottom: 0;
    }
    .footer_main-block_form .btn {
        width: auto;
    }
    .footer_main-block .group-wrapper {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
    .footer_main-block .group-wrapper:first-of-type {
        margin-bottom: 0;
        margin-right: 30px;
    }
    .footer_main-block_nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 40px;
    }
    .footer_secondary {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .footer_secondary-copyright {
        margin: 0;
        text-align: unset;
    }
    html[dir="rtl"] .footer_main-block .group-wrapper:first-of-type {
        margin-right: 0;
        margin-left: 30px;
    }
}
@media screen and (min-width: 767.98px) {
    .footer_main {
        padding-bottom: 80px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        gap: 40px 80px;
    }
    .footer_main-block {
        width: calc(50% - 40px);
    }
    .footer_main-block:nth-of-type(3) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .footer_main-block .group-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .footer_main-block .group-wrapper:first-of-type {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .footer_main-block_nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
    }
    .footer_main-block_form {
        margin-top: 40px;
    }
    .footer_main-block_form .btn {
        width: 54px !important;
        padding: 0;
    }
    .footer_main-block_form .btn .text {
        display: none;
    }
    .footer_main-block_form .btn .icon {
        display: inline-block;
    }
    .footer_main-block_form .field {
        width: calc(100% - 54px);
    }
    .footer_secondary {
        margin: 0;
        padding-top: 60px;
    }
    .footer_secondary-copyright {
        max-width: 350px;
    }
}
@media screen and (min-width: 1023.98px) {
    .footer_main-block {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
    .footer_main-block:first-of-type {
        max-width: 280px;
    }
    .footer_main-block:nth-of-type(3) {
        -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
        order: unset;
    }
}
@media screen and (min-width: 1199.98px) {
    .footer_main {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .footer_main-block:last-of-type {
        max-width: 330px;
    }
}



/** İLETİŞİM **/

#map {
  width: 100%;
  height: 60vh; }

.info_data {
    margin-bottom: 40px
}

.info_data-card {
    margin-top: 30px
}

.info_data-card .wrapper {
    border: 1px solid #c8c8c8;
    padding: 30px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.info_data-card .wrapper:hover {
    border-color: #efb81a
}

.info_data-card .icon {
    color: #efb81a;
    font-size: 32px;
    line-height: 30px
}

.info_data-card .title {
    margin: 15px 0 10px
}

.info_data-card .content {
    color: #ffffff;
}

.info_data-card .content .link {
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.info_data-card .content .link:focus,.info_data-card .content .link:hover {
    color: #efb81a;
}

@media screen and (min-width: 767.98px) {
    .header.opened {
        height:50vh
    }
    .header_nav-list {
        max-height: calc(50vh - 100px)
    }
    .info_header {
        margin-bottom: 0
    }
    .info_data {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 30px;
        margin-bottom: 60px
    }
    .info_data-card {
        margin-top: 0
    }
    .info_data-card .wrapper {
        padding: 40px
    }
}

@media screen and (min-width: 1279.98px) {
	.info_data {
        grid-template-columns:repeat(4,1fr)
    }
	.info_data-card .wrapper {
		min-height:258px;
	}
}










.project-grid .project-grid-item {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: block;
  margin-bottom: 30px;
}
.project-grid .project-grid-item .img {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
}
.project-grid .project-grid-item .text {
  background: #efb81a;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 2;
  margin-top: -30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
  padding: 30px 25px;
  min-height: 153px;
}
.project-grid .project-grid-item .text h3 {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}
.project-grid .project-grid-item .text p {
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.88px;
  line-height: 26px;
}
.project-grid .project-grid-item:hover {
  padding-bottom: 10px;
}
.project-grid .project-grid-item:hover .text {
  margin-top: -40px;
}








.widgets_widget {
	padding: 40px 30px;
	border: 1px solid #c8c8c8;
}
.widgets_widget-title {
    margin-bottom: 30px;
    text-transform: capitalize
}
.widgets_widget--categories {
    font-family: Archivo,sans-serif;
    font-weight: 400;
}
.widgets_widget--categories {
    text-transform: uppercase
}
.widgets_widget--categories .list .list-item,.widgets_widget--comments .list .list-item,.widgets_widget--latest .list .list-item {
    border-bottom: 1px solid #e9e6e6
}
.widgets_widget--categories .list .list-item:first-of-type,.widgets_widget--comments .list .list-item:first-of-type,.widgets_widget--latest .list .list-item:first-of-type {
    margin-top: 0
}
.widgets_widget--categories .list .list-item:last-of-type,.widgets_widget--comments .list .list-item:last-of-type,.widgets_widget--latest .list .list-item:last-of-type {
    border: none;
    padding-bottom: 0
}
.widgets_widget--categories .list .list-item {
    padding-bottom: 15px;
    margin-top: 15px
}
.widgets_widget--categories .list .list-item .link {
    font-size: 18px;
    line-height: 23px;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 15px;
}
.widgets_widget--categories .list .list-item .link:hover {
    color: #efb81a;
}





.contact-form_btn,.contact-form_field {
    width: 100%
}

.contact-form_field {
    font-size: inherit;
    line-height: inherit;
    padding: 12px 20px;
    border: 1px solid #a9a9a9;
    margin-bottom: 10px;
    color: #202c38;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.contact-form_field[type=file] {
    border: 1px dashed #a9a9a9;
}

.contact-form_field[type=file]::file-selector-button {
	margin-right: 20px;
	border: none;
	background: #efb81a;
	padding: 8px 16px;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	transition: background .2s ease-in-out;
	
}

.contact-form_field[data-type=message] {
    margin-bottom: 0;
    min-height: 164px
}

.contact-form_field::-webkit-input-placeholder {
    font-size: inherit;
    line-height: inherit;
    color: #a9a9a9;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.contact-form_field::-moz-placeholder {
    font-size: inherit;
    line-height: inherit;
    color: #a9a9a9;
    -moz-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.contact-form_field:-ms-input-placeholder {
    font-size: inherit;
    line-height: inherit;
    color: #a9a9a9;
    -ms-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.contact-form_field::-ms-input-placeholder {
    font-size: inherit;
    line-height: inherit;
    color: #a9a9a9;
    -ms-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.contact-form_field::placeholder {
    font-size: inherit;
    line-height: inherit;
    color: #a9a9a9;
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.contact-form_field:focus {
    border-color: #202c38
}

.contact-form_field:focus::-webkit-input-placeholder {
    opacity: 0
}

.contact-form_field:focus::-moz-placeholder {
    opacity: 0
}

.contact-form_field:focus:-ms-input-placeholder {
    opacity: 0
}

.contact-form_field:focus::-ms-input-placeholder {
    opacity: 0
}

.contact-form_field:focus::placeholder {
    opacity: 0
}

.section.advantages.section {
    background-color: #6a6a6a;
}

    .istirak img{width: 100%;}
	.istirak h5{font-size: 20px;text-align: center;}
	.istirak p{font-size: 16px; min-height: 96px;}
	.beyaz-z {background-color: #6a6a6a;padding:0 30px 30px 30px;}

    

        
        /*# sourceMappingURL=style.css.map */
        
        
        .form-container {
          width: 100%;
          /* border-radius: 0.75rem; */
          background-color: #FFFFFF;
          padding: 1rem;
          color: rgba(243, 244, 246, 1);
        }
        
        .sag-menu .form-container .title {
          text-align: center;
          font-size: 1.5rem;
          line-height: 2rem;
          font-weight: 700;
        }
        
        .form {
          margin-top: 1.5rem;
        }
        
        .input-group {
          margin-top: 0.25rem;
          font-size: 0.875rem;
          line-height: 1.25rem;
        }
        
        .input-group label {
          display: block;
          color: rgba(156, 163, 175, 1);
          margin-bottom: 4px;
        }
        
        .input-group input {
          width: 100%;
          border-radius: 0.375rem;
          border: 1px solid rgba(55, 65, 81, 1);
          outline: 0;
          background-color: #FFFFFF;
          padding: 0.75rem 1rem;
          color: rgba(243, 244, 246, 1);
        }
        
        .input-group input:focus {
          border-color: rgba(167, 139, 250);
        }
        
        .forgot {
          display: flex;
          justify-content: flex-end;
          font-size: 0.75rem;
          line-height: 1rem;
          color: rgba(156, 163, 175,1);
          margin: 8px 0 14px 0;
        }
        
        .forgot a,.signup a {
          color: rgba(243, 244, 246, 1);
          text-decoration: none;
          font-size: 14px;
        }
        
        .forgot a:hover, .signup a:hover {
          text-decoration: underline rgba(167, 139, 250, 1);
        }
        
        .sign {
          display: block;
          width: 100%;
          /* background-color: #ffffff; */
          padding: 0.75rem;
          text-align: center;
          color: rgba(17, 24, 39, 1);
          border: none;
          border-radius: 0.375rem;
          font-weight: 900;
          border-radius: 0.375rem;
          border: 1px solid rgba(55, 65, 81, 1);
          font-size: x-large;
        }
        
        .social-message {
          display: flex;
          align-items: center;
          padding-top: 1rem;
        }
        
        .sag-menu .form-container .line {
          height: 1px;
          flex: 1 1 0%;
          background-color: rgba(55, 65, 81, 1);
        }
        
        .social-message .message {
          padding-left: 0.75rem;
          padding-right: 0.75rem;
          font-size: 0.875rem;
          line-height: 1.25rem;
          color: rgba(156, 163, 175, 1);
        }
        
        .social-icons {
          display: flex;
          justify-content: center;
        }
        
        .social-icons .icon {
          border-radius: 0.125rem;
          padding: 0.75rem;
          border: none;
          background-color: transparent;
          margin-left: 8px;
        }
        
        .social-icons .icon svg {
          height: 1.25rem;
          width: 1.25rem;
          fill: #fff;
        }
        
        .signup {
          text-align: center;
          font-size: 0.75rem;
          line-height: 1rem;
          color: rgba(156, 163, 175, 1);
        }
        
        .hamburger-menu {
          color: white;
          /* display: flex; */
          flex-direction: column;
          cursor: pointer;
          position: relative;
          float: right;
          /* max-width: 50px; */
          right: 25px;
        }
        
        .bar {
          width: 30px;
          height: 3px;
          background-color: #fff;
          margin: 3px 0;
          transition: 0.4s;
        }
        
        .hamburger-menu.active .bar:nth-child(1) {
          transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .hamburger-menu.active .bar:nth-child(2) {
          opacity: 0;
        }
        
        .hamburger-menu.active .bar:nth-child(3) {
          transform: rotate(45deg) translate(-5px, -6px);
        }
        
        .sag-menu {
          position: fixed;
          top: 0;
          right: -300px; /* Başlangıçta menüyü sağa saklayın */
          width: 300px;
          height: 100%;
          background-color: #fff;
          transition: 0.4s;
          z-index: 99999;
        }
        
        .sag-menu.open {
          right: 0; /* Menüyü açın */
        }
        
        
        .Btn {
          --black: #000000;
          --ch-black: #141414;
          --eer-black: #1b1b1b;
          --night-rider: #2e2e2e;
          --white: #ffffff;
          --af-white: #f3f3f3;
          --ch-white: #e1e1e1;
          display: flex;
          align-items: center;
          justify-content: flex-start;
          width: 45px;
          height: 45px;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          position: relative;
          overflow: hidden;
          transition-duration: .3s;
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
          background-color: var(--night-rider);
        }
        
        /* plus sign */
        .sign {
          width: 100%;
          transition-duration: .3s;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #000;
        }
        
        .sign svg {
          width: 17px;
        }
        
        .sign svg path {
          fill: var(--af-white);
        }
        
        /* hover effect on button width */
        .Btn:hover {
          width: 125px;
          border-radius: 5px;
          transition-duration: .3s;
        }
        
        .Btn:hover .sign {
          width: 30%;
          transition-duration: .3s;
          padding-left: 20px;
        }
        /* hover effect button's text */
        .Btn:hover .text {
          opacity: 1;
          width: 70%;
          transition-duration: .3s;
          padding-right: 10px;
        }
        /* button click effect*/
        .Btn:active {
          transform: translate(2px ,2px);
        }
        
        
        
        
        button {
          position: relative;
          display: inline-block;
          cursor: pointer;
          outline: none;
          border: 0;
          vertical-align: middle;
          text-decoration: none;
          background: transparent;
          padding: 0;
          font-size: inherit;
          font-family: inherit;
         }
         
         button.learn-more {
          width: 12rem;
          height: auto;
          align-items: center;
          left: 20px;
          top: -15px;
         }
         
         button.learn-more .circle {
          transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
          position: relative;
          display: block;
          margin: 0;
          width: 3rem;
          height: 3rem;
          background: #282936;
          border-radius: 1.625rem;
         }
         
         button.learn-more .circle .icon {
          transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
          position: absolute;
          top: 0;
          bottom: 0;
          margin: auto;
          background: #fff;
         }
         
         button.learn-more .circle .icon.arrow {
          transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
          left: 0.625rem;
          width: 1.125rem;
          height: 0.125rem;
          background: none;
         }
         
         button.learn-more .circle .icon.arrow::before {
          position: absolute;
          content: "";
          top: -0.29rem;
          right: 0.0625rem;
          width: 0.625rem;
          height: 0.625rem;
          border-top: 0.125rem solid #fff;
          border-right: 0.125rem solid #fff;
          transform: rotate(45deg);
         }
         
         button.learn-more .button-text {
          transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          padding: 0.75rem 0;
          margin: 0 0 0 1.85rem;
          color: #ffffff;
          font-weight: 700;
          line-height: 1.6;
          text-align: center;
          text-transform: uppercase;
          display: inline-block;
         }
         
         button:hover .circle {
          width: 100%;
         }
         
         button:hover .circle .icon.arrow {
          background: #fff;
          transform: translate(1rem, 0);
         }
         
         button:hover .button-text {
          color: #fff;
         }



         .group-wrapper-iletisim {
            display: flex;
            justify-content: flex-start;
            align-items: baseline;
        }
        
        
        
        