@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    -webkit-font-smoothing: antialiased;
    color: #000;
}
header .--actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
}
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;

}

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    pointer-events: none;
    overflow: hidden;
}
.bg-noise:before {
    position: absolute;
    content: '';
    top: -10rem;
    left: -10rem;
    width: calc(100% + 20rem);
    height: calc(100% + 20rem);
    z-index: -1;
    pointer-events: none;
    background-image: url('/inc/uploads/2024/08/bg-noise.png');
    background-position: 50%;
    animation: BgNoise 1s steps(2) infinite;
}
@keyframes BgNoise {
    0% { transform: translate3d(0, 9rem, 0) }
    10% { transform: translate3d(-1rem, -4rem, 0) }
    20% { transform: translate3d(-8rem, 2rem, 0) }
    30% { transform: translate3d(9rem, -9rem, 0) }
    40% { transform: translate3d(-2rem, 7rem, 0) }
    50% { transform: translate3d(-9rem, -4rem, 0) }
    60% { transform: translate3d(2rem, 6rem, 0) }
    70% { transform: translate3d(7rem, -8rem, 0) }
    80% { transform: translate3d(-9rem, 1rem, 0) }
    90% { transform: translate3d(6rem, -5rem, 0) }
    to { transform: translate3d(-7rem, 0, 0) }
}

#_app {
    overflow: hidden;
    padding-top: 72px;
}
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-backdrop-filter: blur(11px);
    z-index: 1003;
    transition: 1s;
    transition-timing-function: cubic-bezier(0.42, 0, 0, 1.01);
    background: rgb(255 255 255 / 15%);
    backdrop-filter: blur(11px);
    /* color: white; */
    line-height: 1;
    transform: translate3d(0px, -100%, 0px);
    transition-delay: 1s;
}
header.minify {background: rgb(255 255 255 / 78%);}
header > * > .--wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 16px 0;
}

header > * > .--wrap .--logo img {
    height: 40px;
    transition: .4s;
    /*filter: invert(1);*/
}

header > * > .--wrap .--items {
    display: flex;
    align-items: center;
    gap: 32px;
}

header > * > .--wrap .--items a {
    color: inherit;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    text-decoration: none;
    position: relative;
}

header > * > .--wrap .--logo {
    line-height: 0;
}

header > * > .--wrap .--items > .--item {
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
}

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

h2 {
    font-size: 40px;
    line-height: 56px;
    font-weight: 600;
}

.--avenuepro-start {
    position: relative;
    margin-top: -72px;
    padding-top: 172px;
    display: flex;
    align-items: flex-end;
    transition: 2s;
    transition-timing-function: cubic-bezier(0.42, 0, 0, 1.01);
    background-color: #fff;
    opacity: 0;
}
.--avenuepro-start .items {
    display: flex;
    max-width: 1311px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    z-index: 3;
    bottom: -60px;
    left: 0;
    right: 0;
    border-radius: 16px;
    overflow: hidden;
    color: white
}
.--avenuepro-start .items a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}
.--avenuepro-start .items .item {

    text-align: center;
}
.--avenuepro-start .items .item .image {
    width: 218px;
    height: 160px;
    background-size: cover;
    position: relative;
}
.--avenuepro-start .items .item .image .title {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}
.--avenuepro-start > .--bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: 2s;
    transition-timing-function: cubic-bezier(0.42, 0, 0, 1.01);
    opacity: 0;
    transform: scale(.9);
    filter: blur(10px);
    transition-delay: .5s;
}
.--avenuepro-start > .--bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(205deg, rgba(0, 0, 0, 0.00) 18.74%, rgba(0, 0, 0, 0.24) 100%), lightgray 0px -8.136px / 100% 100.861% no-repeat;
    mix-blend-mode: multiply;
}
.--avenuepro-start > .--bg > .--image {
    width: 100%;
    height: 100%;
    background-size: cover;
}

.--avenuepro-start-2 .items {
    display: flex;
    gap: 40px;
}
.--avenuepro-start-2 .items .icon {
    padding-bottom: 24px;
}
.--avenuepro-start-2 .items .caption {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}
.--avenuepro-start-2 .items .title {
    font-weight: 500;
    color: rgba(48, 49, 51, 1);
    padding-bottom: 8px;
}

.--avenuepro-start > * > .--wrap {
    display: flex;
    color: #000;
    gap: 69px;
    position: relative;
    z-index: 1;
}

.--avenuepro-start > * > .--wrap h1 {
    color: #000;
    font-size: 56px;
    /* 125% */
    position: relative;
    left: -3px;
    margin-bottom: 40px;
}
.--avenuepro-start > * > .--wrap .--col-left .item {
    width: 425px;
    position: relative;
    border-radius: 32px;
    padding-right: 40px;
    padding-left: 40px;
    border: 1px solid rgba(18, 20, 27, 1);
    padding-bottom: 8px;
}
.--avenuepro-start > * > .--wrap .--col-right .text {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    padding-bottom: 40px;
}
.--avenuepro-start > * > .--wrap .--col-left .item .text {
    font-size: 22px;
    font-weight: 300;
    line-height: 32px;
}
.--avenuepro-start > * > .--wrap .--col-left .item .image {
    text-align: center;
    position: relative;
    top: -65px;
    margin-bottom: -30px;
}
.--avenuepro-start > * > .--wrap .--col-left .item:before {
    content: '';
    filter: blur(5px);
    background: linear-gradient(165.19deg, rgba(255, 255, 255, 0.15) 5.36%, rgba(255, 255, 255, 0) 95.77%);
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-radius: 32px;
}

.--avenuepro-start > * > .--wrap .--labels {
    display: block;
    gap: 24px;
    column-count: 2;
    margin-top: 32px;
}
.--avenuepro-start > * > .--wrap .--labels .--item > span {
    display: block;
}
.--avenuepro-start > * > .--wrap .--labels .--item > span:first-child {
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    padding-bottom: 8px;
}
.--avenuepro-start > * > .--wrap .--labels .--item > span:last-child {
    font-size: 22px;
    font-weight: 300;
    line-height: 32px;
}
.--avenuepro-start > * > .--wrap .--labels .--item {
    padding-bottom: 32px;
}
.--avenuepro-start > * > .--wrap > .text {
    font-size: 24px;
    line-height: 32px;
    max-width: 690px;
}
.--avenuepro-start .--avenue-btn-1 {
    padding: 12px 60px;
    font-size: 22px;
    background-color: rgba(18, 20, 27, 1);
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #fff;
    border-radius: 24px;
}
.--avenuepro-start > * > .--wrap > .actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.--avenue-btn-1 {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: max-content;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(127, 87, 241, 0.05);
    color: #FFF;
    font-family: inherit;
    font-size: 16px;
    line-height: 24px; /* 150% */
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
}

.--avenue-btn-1:hover {

}

.--avenuepro-section-header > * > .--wrap {
    text-align: center;
    font-size: 18px;
}

.--avenuepro-section-header {
    margin-top: 100px;
    margin-bottom: 68px;
}

.--avenuepro-section-header p {
    max-width: 600px;
    margin: auto;
    font-size: 16px;
    line-height: 32px;
}

.--avenuepro-two-columns {
    margin-bottom: 32px;
}

.--avenuepro-two-columns > * > .--wrap {
    display: flex;
    gap: 32px;
}

.--avenuepro-two-columns > * > .--wrap > .--col-left, .--avenuepro-two-columns > * > .--wrap > .--col-right {
    width: 50%;
}

.--avenuepro-two-columns > * > .--wrap > .--col-left {
    padding: 0;
    font-size: 14px;
    line-height: 1.8;
}

h3 {
    font-size: 28px;
    letter-spacing: 0.56px;
    line-height: 1.5;
}

.--avenuepro-two-columns.--reverse > * > .--wrap {
    flex-direction: row-reverse;
}

.--avenuepro-two-columns > * > .--wrap .--image {
    width: 100%;
    padding-top: 350px;
    background-size: cover;
    background-position: center;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item > .--bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item > .--wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 268px;
    margin: auto;
    transition: .5s;
    transition-timing-function: cubic-bezier(0.42, 0, 0, 1.01);
    transform: scale(.9);
    opacity: 0;
    pointer-events: none;
    padding: 50px 0;
    font-size: 14px;
    line-height: 1.4;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 5px;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item:hover > .--wrap {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000ba;
    transition: .4s;
    transition-timing-function: cubic-bezier(0.42, 0, 0, 1.01);
    opacity: 0;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item:hover:after {
    opacity: 1;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item > .--wrap > .--card-btn {
    border-radius: 28px;
    background: rgba(48, 49, 51, 1);
    box-shadow: 0px 0px 0px 0px rgb(87 158 241 / 25%);
    display: inline-flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    transition: .3s;
    transition-timing-function: cubic-bezier(0.42, 0, 0, 1);
    transition-delay: .2s;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item:hover > .--wrap > .--card-btn {
    box-shadow: 0px 0px 0px 6px rgb(87 158 241 / 25%);
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item > .--wrap > .--caption {
    margin-bottom: 32px;
}

.--avenuepro-gallery {
    margin-bottom: 150px;
}

.--avenuepro-features > * > .--wrap  .--blocks {
    display: grid;
    gap: 20px;
    margin-top: 42px;
}

.--avenuepro-features > * > .--wrap .--blocks > .--block {
    border-radius: 8px;
    background: #FFF;

    /* Dark Shadow */
    box-shadow: 0px 10px 20px 0px rgba(41, 41, 42, 0.07);
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.--avenuepro-features > * > .--wrap .--blocks > .--block h3 {
    color: #0B324E;
    font-size: 24px;
    /* 133.333% */
    letter-spacing: 0.48px;
    margin-bottom: 0;
}

.--avenuepro-features > * > .--wrap > .--col-left, .--avenuepro-features > * > .--wrap > .--col-right {
    width: 50%;
}

.--avenuepro-features > * > .--wrap .--image {
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    padding-top: 117%;
}

.--avenuepro-team > * > .--wrap > .--items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 32px;
}

.--avenuepro-team > * > .--wrap > .--items .--links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    line-height: 0;
    transition: .2s;
    opacity: 0;
}

.--avenuepro-team > * > .--wrap > .--items > .--item {
    border-radius: 8px;
    background: #FFF;
    box-shadow: none;
    cursor: pointer;
    transition: .5s;
    transition-timing-function: cubic-bezier(0.42, 0, 0, 1.01);
    transform: scale(.9);
}

.--avenuepro-team > * > .--wrap > .--items > .--item > .--wrap {
    padding: 20px 32px;
}

.--avenuepro-team > * > .--wrap > .--items > .--item > .--wrap > .--image {
    width: 224px;
    height: 224px;
    background-size: cover;
    background-position: CENTER;
    border-radius: 1000px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.--avenuepro-team > * > .--wrap > .--items > .--item > .--wrap h3 {
    color: #2F234F;
    font-size: 20px;
    font-weight: 700;
    /* 150% */
    margin: 0;
    margin-bottom: 6px;
    letter-spacing: 0;
}

.--avenuepro-team > * > .--wrap > .--items > .--item .caption {
    font-size: 14px;
    color: rgba(48, 49, 51, 1);
    line-height: 1.2;
}

.--avenuepro-team > * > .--wrap > .--items > .--item:hover {
    transform: scale(1);
    box-shadow: 0px 10px 20px 0px rgba(41, 41, 42, 0.07);
}

.--avenuepro-team > * > .--wrap > .--items .--item:hover .--links {
    opacity: 1;
}

.--avenuepro-tags .--items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.--avenuepro-tags .--items > .--item {
    border-radius: 4px;
    border: 1px solid #000;
    display: flex;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.--avenuepro-map .leaflet-map {
    min-height: 60dvh;
}
.--avenuepro-footer {
    padding: 70px 0;
    margin-top: 20px;
}footer.--avenuepro-footer {
     font-size: 18px;
     line-height: 1.78; /* 177.778% */
 }

.--avenuepro-footer > .container > .--wrap {
    display: flex;
    justify-content: space-between;
    gap: 104px;
}

.--avenuepro-footer > .container > .--wrap .--logo img {
    height: 64px;
}

.--avenuepro-footer > .container > .--wrap h3 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px; /* 150% */
    letter-spacing: 0;
    margin-bottom: 24px;
}

.--avenuepro-footer > .container > .--wrap .--items {
    display: grid;
    gap: 20px;
}

.--avenuepro-footer > .container > .--wrap .--items a {
    display: flex;
    text-decoration: none;
    color: inherit;
    gap: 16px;
}

.--avenuepro-footer > .container > .--wrap .--items a .--image {
    line-height: 0;
}

.--avenuepro-footer > .container > .--wrap .--items a .--description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.--avenuepro-footer > .container > .--wrap .--items a .--description .--text {
    color: #000;
    line-height: 1.7;
}

.--avenuepro-footer > .container > .--wrap .--items a .--description  .--label {
    line-height: 1.2;
    font-weight: 700;
    color: rgba(48, 49, 51, 1);
}

.--avenuepro-footer > .container > .--wrap > .--col:first-child {
    max-width: 312px;
}

.--avenuepro-footer > .container > .--wrap > .--col {
    width: 33%;
}

.--avenuepro-footer > .container > .--wrap > .--col p {
    margin-bottom: 16px;
}

.--avenuepro-footer > .container > .--wrap > .--col:last-child {
    width: auto;
    white-space: nowrap;
}
.lm-show {
    display: none !important;
}
.--avenuepro-two-columns > * > .--wrap .--image {
    display: block;
}

.--avenue-btn-2 {
    color: rgba(48, 49, 51, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    background: #f1f1f1;
    border-radius: 40px;
    padding: 14px 16px;
    white-space: nowrap;
}

.--avenue-btn-2 .icon img {
    filter: grayscale(1) brightness(9.5);
    height: 14px;
}

header > * > .--wrap .--items a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: white;
    transition: .2s;
    transition-timing-function: cubic-bezier(0.42, 0, 0, 1.01);
}

header > * > .--wrap .--items a:hover:after {
    width: 100%;
}

.loaded header {
    transform: translate3d(0px, 0%, 0px);
}

.loaded .--avenuepro-start {
    opacity: 1;
}

.loaded .--avenuepro-start > .--bg {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
}

.--avenuepro-features h2 {
    text-align: left;
    font-size: 40px;
    color: #fff;
    line-height: 52px;
}

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

.--avenuepro-features .actions a {
    border-radius: 60px;
    border: 1px solid #333333;
    font-size: 14px;
    text-decoration: none;
    color: #333333;
    width: 151px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.--avenuepro-tags .--items {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 24px;
}

.--avenuepro-features .--text p {
    padding-bottom: 20px;
}

.--avenuepro-tags {
    padding-top: 40px;
    padding-bottom: 40px;
}

.--avenuepro-gallery > * > .--wrap > .--items {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: [col1-start] 1fr [col2-start] 1fr [col3-start] 2fr [col3-end];
    grid-template-rows: [row1-start] 325px [row2-start] 325px [row2-end];
    position: relative;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item {
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 20px;
    font-size: 150%;
    min-height: 200px;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item.a {
    grid-column: col1-start / col3-start;
    grid-row: row1-start;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item.b {
    grid-column: col3-start;
    grid-row: row1-start / row2-end;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item.c {
    grid-column: col1-start;
    grid-row: row2-start;
}

.--avenuepro-gallery > * > .--wrap >.--items > .--item.d {
    grid-column: col2-start;
    grid-row: row2-start;
}

.--avenuepro-two-columns {
    padding-top: 140px;
    padding-bottom: 40px;
}

.--avenuepro-tabs .tab-container {
    display: flex;
    justify-content: center;
}
.--avenuepro-two-columns > * > .--wrap > .--col-left .--avenuepro-tabs .tab-container {
    border-bottom: 1px solid #000;
    margin: 30px 50px 0 50px;
}
.--avenuepro-tabs .tab {
    font-size: 15px;
    cursor: pointer;
    padding: 6px 20px 6px 20px;
    border-bottom: 3px solid transparent;
}
.--avenuepro-tabs .--wrap {

}

.--avenuepro-tabs .--wrap > div {

}

.--avenuepro-tabs .--wrap > div.--col-left {
    padding: 70px;
}

.--avenuepro-tabs .--wrap > div.--col-left .title {
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 8px;
}
.--avenuepro-tabs .--wrap > div.--col-left .text {
    font-size: 16px;
    padding-bottom: 16px;
    line-height: 32px;
}
div.--col-left .--avenuepro-tabs .tab.active {
    border-bottom: 3px solid #000;
}
.--avenuepro-tabs .detail-item > span {
    display: block;
    background: #fff;
    position: relative;
    z-index: 4;
}

.--avenuepro-tabs .detail-item > span:first-child {
    padding-right: 10px;
}

.--avenuepro-tabs .detail-item > span:last-child {
    padding-left: 10px;
}


.--avenuepro-tabs .detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}
.--avenuepro-tabs .detail-item:after {
    content: '';
    border-bottom: 1px dotted #000;
    width: 100%;
    position: absolute;
    top: 25px;
}

.--avenuepro-tabs .tab-content {
    display: none;
    margin-top: 0px;
    border-radius: 0px;
    overflow: hidden;
}

.--avenuepro-tabs .tab-content.active {
    display: block;
}

.--avenuepro-tabs .tab-content img, .--avenuepro-tabs .tab-content video {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    max-height: 580px;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 580px;
}

.--avenuepro-video {
    padding-top: 140px;
    padding-bottom: 100px;
}

.--avenuepro-tags .--wrap {
    display: flex;
    gap: 13px;
}
.--avenuepro-tags .--wrap .--col-left {
    width: 50%;
}
.--avenuepro-tags .--wrap .--col-right {
    width: 50%;
}

.swiper {
    width: 100%;
    height: 100%;
}



.--avenuepro-tags .--wrap .title {
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 40px;
}
.--avenuepro-tags .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.--avenuepro-tags .swiper-slide {
    width: 90%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}