@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

@font-face {
    font-family: "Brandon Grotesque";
    src: url("../fonts/BrandonGrotesque-Light.woff2") format("woff2"), url("../fonts/BrandonGrotesque-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brandon Grotesque";
    src: url("../fonts/BrandonGrotesque-LightItalic.woff2") format("woff2"), url("../fonts/BrandonGrotesque-LightItalic.woff") format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}


.entry-visible {
    transform: translateY(100px);
    opacity: 0;
    transition: transform 166.66667ms ease, opacity 166.66667ms ease;
}

.entry-1,
.entry-2,
.entry-3,
.entry-4,
.entry-5,
.entry-6,
.entry-7,
.entry-8 {
    transform: translateY(100px);
    opacity: 0;
}

.active .entry-1,
.active .entry-2,
.active .entry-3,
.active .entry-4,
.active .entry-5,
.active .entry-6,
.active .entry-7,
.active .entry-8 {
    transition: transform 500ms ease, opacity 500ms ease;
    transform: translateY(0);
    opacity: 1;
}

.entry-visible.visible {
    transition: transform 500ms ease, opacity 500ms ease;
    transform: translateY(0);
    opacity: 1;
}

.active .entry-1 {
    transition-duration: 500ms;
}

.active .entry-2 {
    transition-duration: 550ms;
}

.active .entry-3 {
    transition-duration: 600ms;
}

.active .entry-4 {
    transition-duration: 650ms;
}

.active .entry-5 {
    transition-duration: 700ms;
}

.active .entry-6 {
    transition-duration: 750ms;
}

.active .entry-7 {
    transition-duration: 800ms;
}

.active .entry-8 {
    transition-duration: 850ms;
}

html * {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", serif;
    padding-left: 135px;
    margin: 0;
    position: relative;
    color: #282828;
    overflow: auto;
    background-color: #ffffff;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
    border-radius: 10px;
}

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

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(11, 174, 233, 0.5);
}

footer {
    padding: 5rem;
    padding-bottom: 0;
    padding-top: 8rem;
    font-family: "Poppins", serif;
}

footer .footer-inner {
    padding: 1.66667rem 0;
    border-top: 1px solid #d9d9d9;
}

footer .footer-inner>div {
    margin-bottom: 0.5rem;
}

footer .footer-inner>div:last-child {
    margin-bottom: 0;
}

footer a {
    color: #282828;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

footer a span {
    position: relative;
    z-index: 1;
}

footer a::before {
    content: "";
    width: calc(100% + 4px);
    height: 0.5em;
    background-color: #ffb678;
    position: absolute;
    left: -2px;
    bottom: 0;
    transform-origin: center left;
    transform: scaleX(0);
    transition: transform 300ms cubic-bezier(0.76, 0, 0.175, 1);
}

footer a:hover::before,
footer a.active::before {
    transform: scaleX(1);
}

footer .footer-logo {
    max-width: 300px;
    opacity: 0.2;
    margin-bottom: 1rem;
}

footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

footer .footer-links>span {
    font-size: 0.8rem;
}

footer .footer-links>div {
    display: flex;
    flex-wrap: wrap;
}


footer .footer-links a {
    margin: 0 0.3rem;
}

footer .footer-links a:first-child {
    margin-left: 0;
}

footer .footer-links a:last-child {
    margin-right: 0;
}

footer .footer-links a {
    font-size: 0.8rem;
}

.footer-separator {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}

.jump-top {
    position: fixed;
    width: 40px;
    height: 58px;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
    transition: opacity 300ms ease;
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    transition: all 300ms ease;
}

.jump-top.active {
    opacity: 1;
    transform: translateY(0);
}

.jump-top:hover {
    opacity: 0.5;
}

.sidebar {
    width: 135px;
    border-right: 1px solid #d9d9d9;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 1rem;
}

.chat {
    width: 74px;
    height: 74px;
    cursor: pointer;
    transition: opacity 300ms ease;
}

.chat:hover {
    opacity: 0.7;
}

.menu-toggler {
    cursor: pointer;
    padding: 1rem 0;
}

.menu-toggler::after,
.menu-toggler::before {
    content: "";
    display: block;
    margin: 10px 0;
    width: 80px;
    height: 8px;
    background-color: #000000;
    transform-origin: center left;
    transition: transform 300ms cubic-bezier(0.76, 0, 0.175, 1), opacity 300ms ease;
}

.menu-toggler::before {
    opacity: 0.3;
}

.menu-toggler:hover::after {
    transform: scaleX(0.5);
}

.menu-toggler:hover::before {
    opacity: 1;
}

.hero {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 5rem;
    width: 40%;
    padding-bottom: 10vh;
    position: relative;
    z-index: 1;
}

.hero-inner>div {
    width: 100%;
}

.hero-bg {
    background-position: center left !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    width: 60%;
}

.hero-title-top {
    color: #c6bdc5;
    font-weight: 400;
}

.hero-title-dot {
    color: #000000;
}

.top-shape {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    left: 0;
    z-index: 2;
}

.bottom-shape {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    left: 0;
    z-index: 2;
}

.hero-logo {
    width: 543px;
    height: auto;
}

.logo {
    width: 88px;
    height: 54px;
    display: flex;
    align-items: center;
}

.content {
    width: 100%;
}

.text-normal a {
    cursor: pointer;
    text-decoration: underline;
    font-weight: 600;
    color: #f27935;
}

.text-normal a:hover {
    text-decoration: none;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn {
    font-weight: bold;
    position: relative;
    padding: 0 1rem;
    padding-right: calc(60px + 0.5rem);
    border-radius: 50px;
    height: 60px;
    background-color: #f27935;
    color: #ffffff;
    font-weight: 400;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 300ms ease;
}

.btn strong {
    font-weight: 900;
    font-size: 1.4rem;
}

.btn.btn-secondary {
    background-color: #3f85ae;
    box-shadow: 0px 0px 0px 8px #7aa3ca;
}

.btn.btn-secondary .round::after {
    background-color: #282828;
}

.btn:hover .round::after {
    transform: translateX(-400px);
}

.btn:hover .round i {
    transform: translateX(10px);
}

.btn .round {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
}

.btn .round::after {
    content: "";
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 2;
    width: calc(60px - 8px);
    height: calc(60px - 8px);
    position: absolute;
    top: 4px;
    right: 4px;
    transition: all 450ms ease;
}

.btn .round i {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 3;
    transition: all 300ms ease;
}

.our-mission {
    position: relative;
    padding: 5rem;
    background-color: #efeded;
    margin-bottom: 10vh;
    z-index: 1;
}

.our-mission .top-shape {
    transform: translateY(-100%) translateY(1px);
}

.our-mission .bottom-shape {
    transform: translateY(100%) translateY(-1px);
}

.our-mission h2 {
    margin-top: 0;
}

.our-mission p {
    margin-top: 0.5rem;
}

.explore {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    position: relative;
    background-color: #ffffff;
}

.explore-bg {
    width: 55%;
    display: flex;
    align-items: flex-end;
}

.explore-bg>div {
    width: 100%;
    height: calc(100% + 20vh);
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: bottom left -100px !important;
}

.explore-inner {
    display: flex;
    align-items: center;
    padding-right: 1rem;
}

.explore-offset {
    max-width: 1000px;
    margin-bottom: 2rem;
    margin-left: -50px;
    padding-top: 50px;
    padding-bottom: 0;
}

.service-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1rem;
}

.service-pill {
    min-height: 64px;
    border-radius: 999px;
    border: 4px solid #e2e2e7;
    background-color: #f7f7f9;
    color: #44484f;
    text-decoration: none;
    font-family: "Poppins", serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    letter-spacing: -0.02em;
    transition: border-color 200ms ease, color 200ms ease;
    /*display: inline;*/
}

.service-pill:hover {
    border-color: #3f85ae;
    color: #2f333a;
}

/* TYPOGRAPHY */
.text-small {
    font-size: 1.15rem;
    line-height: 1.2;
    color: #282828;
}

.text-effect {
    position: relative;
}

.text-effect span {
    position: relative;
    z-index: 1;
}

.text-effect::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    width: calc(100% + 7px);
    left: -2px;
    height: 0.7em;
    background-color: rgba(63, 133, 174, 0.3);
}

.typed-cursor {
    display: inline-block;
    position: relative;
    height: 0;
    width: 0;
}

.typed-container {
    height: 300px;
    margin-bottom: 4rem;
    flex-shrink: 0;
    position: relative;
}

.hero-title {
    color: #0baee9;
    font-size: 9.375rem;
    line-height: 0.85;
    margin-top: 0;
    height: 100%;
    font-weight: 600;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 4rem 0;
    font-family: "Poppins", serif;
}

.hero-description span {
    display: inline-block;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.hero-description span strong {
    position: relative;
    z-index: 2;
    font-weight: inherit;
}

.hero-description span::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 26px;
    width: 100%;
    z-index: 1;
    background-color: #ffcca0;
}

.title-h2 {
    font-size: 3.75rem;
    line-height: 1.2;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: #282828;
    font-family: "Poppins", serif;
}

.title-h2 strong {
    font-size: 6rem;
    font-weight: 600;
}

.explore-bg {
    display: none;
}

.explore-inner {
    width: 100%;
    padding: 2.5rem;
}

.explore-offset {
    margin-left: 0 !important;
}

.paragraph-title {
    font-size: 3rem;
    position: relative;
    font-weight: 400;
    font-family: "Poppins", serif;
}

.paragraph-title span {
    position: relative;
    z-index: 1;
}

.paragraph-title::before {
    content: "";
    position: absolute;
    left: -10px;
    bottom: 0;
    width: 130px;
    height: 20px;
    background-color: #d4e1ee;
}

.paragraph-title.primary::before {
    background-color: #ffcca0;
}

.paragraph-title.secondary::before {
    background-color: #92e0c6;
}

.paragraph-title.dark::before {
    background-color: #cccccc;
}

.paragraph-title.danger::before {
    background-color: #ffadad;
}

.title-3 {
    margin-top: 0;
    font-size: 2.625rem;
    font-weight: 400;
    margin-bottom: 0;
    color: #282828;
    font-family: "Brandon Grotesque";
}

.title-4 {
    margin-top: 0;
    font-weight: 700;
    line-height: 1.16;
    margin-bottom: 2rem;
    color: #3f85ae;
    font-family: "Poppins", serif;
    font-size: 3rem;
    letter-spacing: -2px;
}

.text-normal {
    font-size: 1.15rem;
    line-height: 1.5;
    font-family: "Poppins", serif;
}

.text-normal strong {
    font-size: 3rem;
}

.text-normal-2 {
    font-size: 1.15rem;
    line-height: 1.5;
    font-family: "Poppins", serif;
}

.text-normal-2 a {
    color: #f27935;
}

.text-regular-2 {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #282828;
}

.text-regular {
    font-size: 1.875rem;
    line-height: 4.25rem;
    color: #282828;
}

.text-regular a,
.text-regular-2 a {
    display: inline-block;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.text-regular-2 a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    transform-origin: center left;
    transition: transform 300ms cubic-bezier(0.76, 0, 0.175, 1);
}

.text-regular a::after {
    content: "";
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    transform-origin: center left;
    transition: transform 300ms cubic-bezier(0.76, 0, 0.175, 1);
}

.text-regular a:hover::after,
.text-regular-2 a:hover::after {
    transform: scaleX(0);
}

.badge {
    background-color: #7aa3ca;
    padding: 0.3rem 1rem;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.875rem;
    display: inline-block;
}

.badge strong {
    font-weight: 600;
}

.list-primary {
    list-style: none;
    font-size: 3rem;
    margin-left: 1rem;
    padding-left: 3rem;
}

.list-primary li {
    padding: 0.5rem 0;
    position: relative;
    line-height: 1.2;
}

.list-primary li::after {
    content: "";
    display: block;
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #ffffff;
    border: 4px solid #d9d9d9;
}

nav {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 50px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

nav.active {
    opacity: 1;
    pointer-events: all;
}

nav.active .nav-close {
    opacity: 0.5;
    transform: translateY(0);
    transition: all 600ms cubic-bezier(0.76, 0, 0.175, 1);
}

nav.active .nav-close:hover {
    transform: rotate(-180deg);
}

nav.active .nav-buttons>a {
    opacity: 1;
    transform: translateY(0);
}

nav.active .nav-buttons>a:hover {
    transition-duration: 300ms;
    transform: translateY(0) scale(0.9);
}

nav.active .nav-more {
    opacity: 1;
    transform: translateY(0);
}

.nav-logo {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.nav-close {
    font-family: "Arial";
    font-size: 102px;
    color: #282828;
    cursor: pointer;
}

.nav-more {
    font-size: 2.25rem;
    font-family: "Poppins", serif;
    color: inherit;
    cursor: pointer;
    opacity: 0;
    text-decoration: none;
    transform: translateY(100%);
    transition: all 300ms ease;
}

.nav-more span {
    position: relative;
    z-index: 1;
}

.nav-more::before {
    content: "";
    width: calc(100% + 40px);
    height: 0.5em;
    background-color: #ffb678;
    position: absolute;
    left: -20px;
    bottom: 3px;
    transform-origin: center left;
    transform: scaleX(1);
    transition: transform 300ms cubic-bezier(0.76, 0, 0.175, 1);
}

.nav-more:hover::before {
    transform: scaleX(0);
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.nav-buttons>a {
    height: 160px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f27935;
    color: #ffffff;
    line-height: 1.2;
    font-family: "Poppins", serif;
    font-size: 2.4375rem;
    text-decoration: none;
    margin: 1rem 0;
    padding: 0 7rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 300ms ease;
}

.nav-buttons>a span {
    text-decoration: underline;
}

.nav-buttons>a>div {
    text-align: center;
}

.nav-buttons>a:nth-child(1) {
    transition-duration: 300ms;
    background-color: #ffa050;
}

.nav-buttons>a:nth-child(2) {
    transition-duration: 600ms;
    background-color: #7aa3ca;
}

.nav-buttons>a:nth-child(3) {
    transition-duration: 900ms;
    background-color: #282828;
}

@media screen and (max-height: 900px) {
    .nav-buttons>a {
        height: 120px;
        line-height: 1;
    }
}

@media screen and (max-height: 800px) {
    .nav-close {
        font-size: 4rem;
    }

    .nav-buttons>a {
        font-size: 2rem;
        height: 100px;
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.page {
    font-family: "Poppins", serif;
    line-height: 1.2;
    position: relative;
}

.page-title {
    padding-left: 5rem;
    padding-right: 5rem;
    padding-top: 2.5rem;
}

.page-in-shape {
    position: relative;
    background-color: #efeded;
    padding: 5rem;
    padding-left: 15rem;
    margin-top: 8vw;
    margin-bottom: 8vw;
}

.page-prefooter {
    position: relative;
    background-color: #fff;
    padding: 5rem;
    padding-left: 15rem;
    margin-top: 1vw;
    margin-bottom: 8vw;
}

.page-in-shape.without-logo {
    padding-left: 5rem;
}

.page-in-shape.filed {
    background: url(../img/bg-filed-primary.png);
    background-size: 100%;
    background-repeat: repeat-y;
}

.page-in-shape.filed .top-shape {
    background-position: center left;
}

.page-in-shape.filed .bottom-shape {
    background-position: center left;
}

.page-in-shape .top-shape {
    transform: translateY(-100%) translateY(1px) rotateY(-180deg);
}

.page-in-shape .bottom-shape {
    transform: translateY(100%) translateY(-1px);
}

.page-logo {
    display: block;
    position: absolute;
    top: 0;
    left: 5rem;
    opacity: 0.1;
    height: 100%;
}

.page-logo.overlap {
    z-index: 3;
}

.page-logo.offset {
    top: -70px;
}

.page-logo img {
    width: auto;
    height: 543px;
}

img.page-logo {
    width: auto;
    height: 543px;
}

.contact {
    font-family: "Poppins", serif;
}

.contact.primary .contact-title {
    background-color: #efe7dd;
}

.contact-title {
    position: relative;
    padding: 5rem;
    padding-bottom: 5rem;
    padding-top: 2.5rem;
    background-color: #efeded;
    margin-bottom: 7rem;
    position: relative;
    z-index: 2;
}

.contact-title .bottom-shape {
    transform: translateY(100%) translateY(-1px);
}

.contact-title h2,
.contact-title p {
    position: relative;
    z-index: 3;
}

.pb-200 {
    padding-bottom: 200px;
}

.contact-inner {
    position: relative;
    padding: 2.5rem;
    padding-left: 15rem;
}

.contact-columns {
    display: flex;
    align-items: stretch;
    margin-top: 4rem;
    font-size: 1.5rem;
    line-height: 2rem;
}

.contact-columns>* {
    margin-right: 3rem;
}

.contact-link {
    display: block;
    color: #3f85ae;
    font-size: 1.7rem;
    line-height: 1.33;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 300ms ease;
}

.contact-link:hover .hi-icon::after {
    transform: scale(0.85);
}

.mt-05 {
    margin-top: 0.5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.link-spc {
    font-size: 1.7rem;
    line-height: 1.33;
    font-family: "Poppins", serif;
    color: #282828;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.link-spc .link-spc-inner {
    position: relative;
    white-space: nowrap;
}

.link-spc .link-spc-inner span {
    position: relative;
    z-index: 1;
}

.link-spc .link-spc-inner::before {
    content: "";
    width: calc(100% + 20px);
    height: 0.5em;
    background-color: #ffb678;
    position: absolute;
    left: -10px;
    bottom: 0;
    transform-origin: center left;
    transform: scaleX(0.2);
    transition: transform 300ms cubic-bezier(0.76, 0, 0.175, 1);
}

.link-spc:hover .link-spc-inner::before {
    transform: scaleX(1);
}

.link-spc:hover .hi-icon:after {
    transform: scale(0.85);
}

.input {
    border-radius: 30px;
    height: 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.input::before {
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    border: 2px solid #d9d9d9;
    top: 0;
    left: 0;
    border-radius: 30px;
    z-index: 1;
    pointer-events: none;
}

.input::after {
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    border: 2px solid #f27935;
    top: 0;
    left: 0;
    border-radius: 30px;
    z-index: 2;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 300ms ease;
}

.input.not-empty label {
    display: none;
}

.input label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #282828;
    pointer-events: none;
    left: 2rem;
    z-index: 1;
    transition: transform 300ms ease;
}

.input .error {
    position: absolute;
    bottom: 1px;
    font-size: 0.75rem;
    color: red;
    left: 32px;
    display: none;
}

.input.not-valid .error {
    display: block;
}

.input input {
    width: 100%;
    padding: 0 2rem;
    border: none;
    outline: none;
    opacity: 0;
    font-size: 1.5rem;
    color: #282828;
    line-height: calc(60px - 4px);
    transition: transform 300ms ease;
}

.input.active::after {
    transform: translateX(0);
}

.input.active input {
    opacity: 1;
    transform: translateX(14px);
}

.input.active label {
    opacity: 0;
    transform: translateX(14px) translateY(-50%);
}

.input.not-empty input {
    opacity: 1;
}

input:-webkit-autofill {
    -webkit-background-clip: text;
}

.textarea {
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.textarea::before {
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    border: 2px solid #d9d9d9;
    top: 0;
    left: 0;
    border-radius: 30px;
    z-index: 1;
    pointer-events: none;
}

.textarea::after {
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    border: 2px solid #f27935;
    top: 0;
    left: 0;
    border-radius: 30px;
    z-index: 2;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 300ms ease;
}

.textarea label {
    position: absolute;
    top: 28px;
    pointer-events: none;
    font-size: 1.5rem;
    color: #282828;
    left: 2rem;
    transition: transform 300ms ease;
    z-index: 1;
}

.textarea textarea {
    width: 100%;
    padding: 2rem;
    font-size: 1.45rem;
    color: #282828;
    border: none;
    outline: none;
    transition: transform 300ms ease;
}

.textarea.not-empty label {
    display: none;
}

.textarea.active::after {
    transform: translateX(0);
}

.textarea.active textarea {
    transform: translateX(14px);
}

.textarea.active label {
    transform: translateX(14px);
}

.form-columns {
    display: flex;
    align-items: stretch;
}

.form-columns>*:last-child {
    padding-left: 2rem;
}

.input-required {
    color: #f27935;
}

.sitemap {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.sitemap li {
    border-bottom: 1px solid #d9d9d9;
    color: #282828;
    margin: 1.4rem 0;
}

.sitemap li a {
    font-size: 1.65rem;
    display: inline-flex;
    align-items: center;
    color: inherit;
    height: 2rem;
    width: 100%;
    text-decoration: none;
    position: relative;
}

.sitemap li a span {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
}

.sitemap li a::before {
    content: "";
    width: calc(100% + 20px);
    height: 16px;
    background-color: #ffb678;
    position: absolute;
    left: -10px;
    bottom: -2px;
    transform-origin: center left;
    transform: scaleX(0);
    transition: transform 300ms cubic-bezier(0.76, 0, 0.175, 1);
}

.sitemap li a:hover::before {
    transform: scaleX(1);
}

.sitemap-row h3 {}

@font-face {
    font-family: "ecoicon";
    src: url("../fonts/ecoicon.eot");
    src: url("../fonts/ecoicon.eot?#iefix") format("embedded-opentype"), url("../fonts/ecoicon.woff") format("woff"), url("../fonts/ecoicon.ttf") format("truetype"), url("../fonts/ecoicon.svg#ecoicon") format("svg");
    font-weight: normal;
    font-style: normal;
}

.hi-icon {
    display: inline-block;
    text-decoration: none;
    font-size: 0px;
    cursor: pointer;
    margin: 10px 0;
    margin-right: 24px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #282828;
}

.hi-icon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    box-sizing: content-box;
}

.hi-icon:before {
    font-family: "ecoicon";
    speak: none;
    font-size: 22px;
    line-height: 40px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: block;
    -webkit-font-smoothing: antialiased;
}

.hi-icon-mobile:before {
    content: "\e009";
}

.hi-icon-screen:before {
    content: "\e00a";
}

.hi-icon-earth:before {
    content: "\e002";
}

.hi-icon-support:before {
    content: "\e000";
}

.hi-icon-locked:before {
    content: "\e001";
}

.hi-icon-cog:before {
    content: "\e003";
}

.hi-icon-clock:before {
    content: "\e004";
}

.hi-icon-videos:before {
    content: "\e005";
}

.hi-icon-list:before {
    content: "\e006";
}

.hi-icon-refresh:before {
    content: "\e007";
}

.hi-icon-images:before {
    content: "\e008";
}

.hi-icon-pencil:before {
    content: "\e00b";
}

.hi-icon-link:before {
    content: "\e00c";
}

.hi-icon-mail:before {
    content: "\e00d";
}

.hi-icon-location:before {
    content: "\e00e";
}

.hi-icon-archive:before {
    content: "\e00f";
}

.hi-icon-chat:before {
    content: "\e010";
}

.hi-icon-bookmark:before {
    content: "\e011";
}

.hi-icon-user:before {
    content: "\e012";
}

.hi-icon-contract:before {
    content: "\e013";
}

.hi-icon-star:before {
    content: "\e014";
}

/* Effect 2 */
.hi-icon-effect-2 .hi-icon {
    color: #282828;
    box-shadow: 0 0 0 3px #ffffff;
    transition: color 300ms;
}

.hi-icon-effect-2 .hi-icon:after {
    top: -2px;
    left: -2px;
    padding: 2px;
    z-index: -1;
    background: #ffffff;
    transition: transform 300ms, opacity 0.2s;
}

/* Effect 2a */
.hi-icon-effect-2a .hi-icon:hover {
    color: #282828;
}

.hi-icon-effect-2a .hi-icon:hover:after {
    transform: scale(0.85);
}

.overflow-x {
    overflow-x: auto;
    width: 100%;
}

.questions {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 40px;
    max-width: 750px;
}

.question-row {
    margin-bottom: 3px;
}

.questions .question-title {
    background-color: #efeded;
    padding-left: 40px;
    padding-right: 80px;
    font-weight: 600;
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: 55px;
    position: relative;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.question-toggler {
    background-color: #43aea9;
    height: 55px;
    width: 55px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-toggler::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 2px;
    height: 16px;
    transform-origin: center center;
    background-color: #fff;
    transition: transform 500ms ease;
}

.question-toggler::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    width: 2px;
    height: 16px;
    background-color: #fff;
    transition: transform 500ms ease;
}

.question-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 500ms ease;
}

.question-answer-inner {
    padding: 20px;
    padding-left: 40px;
}

.question-row.active .question-answer {
    max-height: 500px;
}

.question-row.active .question-toggler::after,
.question-row.active .question-toggler::before {
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.question-row.active .question-toggler::after {
    display: none;
}

.question-row.active .question-answer {
    transition-duration: 1000ms;
}

.sitemap-row {
    display: flex;
    align-items: self-start;
    gap: 80px;
    flex-wrap: wrap;
}


/* blog-list */

.blog-section {
    width: 100%;
    padding: 0 2.5rem;
}

.blog-section .blog-section-header {
    max-width: 1000px;
}

.blog-section .blog-section-header h2 span {
    letter-spacing: -2px
}

.blog-list-box {
  background-color: #edecec;
  padding: 30px;
  border-radius: 20px;
  margin-top: 40px;
  max-width: 1280px;
}


.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.blog-item {
  width: calc(33.333% - 20px);
  color: #000;
  text-decoration: none;
}


.blog-item  .blog-img  {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}
.blog-item  .blog-img img{
   max-width: 100%;
}

.blog-info p {
    font-size: 14px;
    line-height: normal;
     margin-top: 0;
}

.blog-info h3 {
 font-size: 18px;
  line-height: normal;
  margin-top: 0;
}
.blog-info a{
 text-decoration: none;
 min-height: 64px;
    border-radius: 999px;
    border: 4px solid #e2e2e7;
    background-color: #f7f7f9;
    color: #44484f;
    text-decoration: none;
    font-family: "Poppins", serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    letter-spacing: -0.02em;
    transition: border-color 200ms ease, color 200ms ease;
    max-width: 360px;
    width: 100%;
}
.blog-info .blog-btn-link{
 text-decoration: none;
 min-height: 64px;
    border-radius: 999px;
    border: 4px solid #e2e2e7;
    background-color: #f7f7f9;
    color: #44484f;
    text-decoration: none;
    font-family: "Poppins", serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    letter-spacing: -0.02em;
    transition: border-color 200ms ease, color 200ms ease;
    max-width: 360px;
    width: 100%;
}

.blog-item:hover .blog-btn-link {
      background-color: #3f85ae;
    color: #fff;
}

.blog-info a:hover {
      background-color: #3f85ae;
    color: #fff;
}
.blog-info .blog-btn-link:hover {
      background-color: #3f85ae;
    color: #fff;
}

.blog-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.blog-page {
  max-width: 1280px;
  margin: 0 auto;
}

.blog-atticle-img {
    max-width: 960px;
}

.blog-atticle-img img {
  max-width: 100%;
  border-radius: 20px;
}

.blog-cta {
    max-width: 1280px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-list-cta {
     display: flex;
    align-items: center;
    justify-content: center;
      margin-top: 80px;
}


.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
}


.blog-right-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.blog-right-img {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}


/* accordion  */

.accordion-group {
    margin-bottom: 60px;
}

.accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  border: none;
  background: transparent;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
}

.accordion-content {
  display: none;
  padding: 15px;
      font-size: 1.15rem;
    line-height: 1.5;
}

.accordion-content p {
       font-size: 1.15rem;
    line-height: 1.5;
}

.accordion-item.active .accordion-header {
    background-color: #fff;
}

.accordion-item.active .accordion-content {
  display: block;
}

.icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .icon {
  transform: rotate(180deg);
}

/* accordion end */

@media (max-width: 1164px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .paragraph-title {
    font-size: 32px;
  }

  .blog-right-img {
    order: -1;
  }
}

/* Tablet */
@media (max-width: 1180px) {
  .blog-item {
    width: calc(50% - 20px);
  }

  .blog-page {
    padding-left: 50px;
  }
}

/* Mobile */
@media (max-width: 776px) {
  .blog-item {
    width: 100%;
  }
   .blog-page {
    padding-left: 0;
  }

  .blog-list-cta {
    flex-direction: column;
  }

}

@media (max-aspect-ratio: 3 / 2) {
    .explore-bg>div {
        background-position: bottom left -270px !important;
    }
}

@media screen and (max-width: 1700px) {
    .explore-offset {
        margin-left: -100px;
    }
}

@media screen and (max-width: 1900px) {
    .page-logo.offset {
        top: -20px;
    }

    img.page-logo {
        height: 480px;
        width: auto;
    }
}

@media screen and (max-width: 1600px),
screen and (max-height: 800px) {
    body {
        padding-left: 121.5px;
    }

    .chat {
        width: 60px;
        height: 60px;
    }

    .chat img {
        width: 60px;
        height: auto;
    }

    .explore-offset {
        margin-bottom: 2rem;
        margin-left: -50px;
    }

    .text-regular {
        font-size: 1.675rem;
        line-height: 3.0rem;
    }

    .badge {
        padding: 0.3rem 0.8rem;
        font-size: 1.475rem;
    }

    .menu-toggler {
        width: 70px;
    }

    .menu-toggler::before,
    .menu-toggler::after {
        width: 70px;
    }

    .hero-logo {
        width: 460px;
        height: auto;
    }

    .logo {
        width: 80px;
    }

    .logo img {
        width: 80px;
        height: auto;
    }

    .sidebar {
        width: 121.5px;
    }

    .typed-container {
        height: 216px;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 6rem;
        margin-bottom: 0;
    }

    .hero-description {
        font-size: 1.5rem;
        margin: 3rem 0;
        margin-top: 2rem;
    }

    .hero-description span::after {
        height: 20px;
    }

    .title-h2 {
        font-size: 2.75rem;
    }

    .title-h2 strong {
        font-size: 4rem;
    }

    .title-3 {
        font-size: 2.2rem;
    }

    .list-primary {
        font-size: 2.4rem;
    }

    .explore-bg>div {
        background-position: bottom left -100px !important;
    }

    .contact-link {
        font-size: 1.7rem;
    }

    .contact-columns {
        font-size: 1.25rem;
    }

    .link-spc {
        font-size: 1.575rem;
    }

    .link-spc::before {
        height: 16px;
    }
}

@media screen and (max-width: 1400px) {
    .contact-title {
        margin-bottom: 2.5rem;
    }

    .text-small {
        font-size: 1.05rem;
    }

    footer {
        padding: 2.5rem;
        padding-top: 6rem;
    }

    .paragraph-title {
        font-size: 2.25rem;
    }

    .page-title {
        padding: 2.5rem;
    }

    .page-logo {
        left: 2.5rem;
    }

    .page-logo.offset {
        top: 0;
    }

    .page-in-shape {
        padding: 2.5rem;
        padding-left: 7.5rem;
    }

    .page-prefooter {
        padding: 2.5rem;
        padding-left: 7.5rem;
    }

    .page-in-shape.without-logo {
        padding-left: 2.5rem;
    }

    .contact-inner {
        padding: 7.5rem;
    }

    .our-mission {
        padding: 6.25rem 2.5rem;
    }

    .hero-inner {
        padding-left: 2.5rem;
    }

    .explore-bg {
        width: 50%;
    }

    .explore-bg>div {
        background-position: bottom left -50px !important;
    }

    .explore-inner {
        width: 50%;
    }

    body {
        padding-left: 108px;
    }

    .chat {
        width: 50px;
        height: 50px;
    }

    .chat img {
        width: 50px;
    }

    .explore-offset {
        margin-bottom: 2rem;
        margin-left: -50px;
    }

    .text-regular {
        font-size: 1.125rem;
        line-height: 2.0rem;
    }

    .badge {
        padding: 0.3rem 0.8rem;
        font-size: 1.125rem;
    }

    .menu-toggler {
        width: 60px;
    }

    .menu-toggler::before,
    .menu-toggler::after {
        width: 60px;
    }

    .hero-logo {
        width: 400px;
        height: auto;
    }

    .logo {
        width: 70px;
    }

    .logo img {
        width: 70px;
        height: auto;
    }

    .sidebar {
        width: 108px;
    }

    .typed-container {
        height: 144px;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 4rem;
        margin-bottom: 0;
    }

    .hero-description {
        font-size: 1.5rem;
        margin: 2rem 0;
        margin-top: 1rem;
    }

    .hero-description span::after {
        height: 20px;
    }

    .title-h2 {
        font-size: 2.125rem;
    }

    .title-h2 strong {
        font-size: 3rem;
    }

    .title-3 {
        font-size: 1.8rem;
    }

    .title-4 {
        font-size: 2.6rem;
    }

    .list-primary {
        font-size: 1.5rem;
    }

    .contact-link {
        font-size: 1.575rem;
    }

    .contact-columns {
        font-size: 1.125rem;
    }

    .link-spc {
        font-size: 1.575rem;
    }

    .link-spc::before {
        height: 14px;
    }

    .contact-columns {
        margin-top: 3rem;
    }

    .service-pill {
        font-size: 1rem;
    }

    .input input,
    .input textarea,
    .input label,
    .textarea input,
    .textarea textarea,
    .textarea label {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 900px) {
    .service-pill-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-pill {
        font-size: 1rem;
    }
}

@media screen and (max-width: 640px) {
    .service-pill-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-aspect-ratio: 11 / 6) {
    .explore-bg>div {
        background-position: bottom left -150px !important;
    }
}

@media (max-aspect-ratio: 7 / 4) {
    .explore-bg>div {
        background-position: bottom left -220px !important;
    }
}

@media (max-aspect-ratio: 4 / 3) {
    .explore-bg>div {
        background-position: bottom left -270px !important;
    }
}

@media (max-aspect-ratio: 3 / 2) {
    .hero-inner {
        padding-top: 2rem;
    }

    .explore {
        min-height: 0;
        padding-bottom: 2.5rem;
    }

    .explore-bg {
        display: none;
    }

    .explore-inner {
        width: 100%;
        padding: 2.5rem;
    }

    .explore-offset {
        margin-left: 0;
    }
}

@media screen and (max-width: 1100px) {
    .hi-icon {
        width: 48px;
        height: 48px;
    }

    .hi-icon:before {
        font-size: 26px;
        line-height: 48px;
    }

    .typed-container {
        margin-bottom: 1rem;
    }

    .hero-description {
        margin-top: 1.5rem;
    }

    .paragraph-title {
        font-size: 1.875rem;
    }

    .paragraph-title::before {
        height: 15px;
    }

    .text-normal {
        font-size: 1.125rem;
    }

    .page-in-shape {
        padding: 2.5rem;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .page-prefooter {
        padding: 2.5rem;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .contact-inner {
        padding: 2.5rem;
    }

    .form-columns {
        flex-direction: column;
    }

    .form-columns>*:last-child {
        padding-left: 0;
    }

    .page-title,
    .contact-title {
        padding: 2.5rem;
        margin-bottom: 5rem;
    }

    .page-logo {
        display: none;
    }

    body {
        padding-left: 81px;
    }

    .sidebar {
        width: 81px;
    }

    .chat {
        width: 40px;
        height: 40px;
    }

    .chat img {
        width: 40px;
    }

    .logo {
        width: 60px;
    }

    .logo img {
        width: 60px;
        height: auto;
    }

    .menu-toggler {
        width: 50px;
    }

    .menu-toggler::before,
    .menu-toggler::after {
        width: 50px;
    }

    .contact-link {
        font-size: 1.275rem;
    }

    .contact-columns {
        font-size: 1rem;
    }

    .link-spc {
        font-size: 1.275rem;
    }

    .link-spc::before {
        height: 12px;
    }

    .contact-columns {
        flex-direction: column;
        margin-top: 2rem;
    }

    .input input,
    .input textarea,
    .input label,
    .textarea input,
    .textarea textarea,
    .textarea label {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 880px) {
    .page-in-shape.reduce-mobile {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .questions {
        padding: 20px;
        max-width: 100%;
    }

    .questions .question-title {
        padding-left: 20px;
    }

    .question-answer-inner {
        padding-left: 20px;
    }

    .question-toggler {
        width: 50px;
        height: 50px;
        right: 10px;
    }

    .question-toggler::after,
    .question-toggler::before {
        height: 20px;
    }

    .contact-title {
        margin-bottom: 2.5rem;
    }

    .entry-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .jump-top {
        display: none;
    }

    .hero {
        min-height: 100vh;
    }

    body {
        padding-left: 0;
        padding-top: 67.5px;
    }

    .explore-offset {
        margin-bottom: 1rem;
    }

    .title-3 {
        line-height: 1.2;
    }

    .explore-offset {
        padding-bottom: 0;
        padding-top: 0;
    }

    .title-4 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .list-primary {
        margin-top: 1rem;
    }

    .hero-bg {
        width: 30%;
    }

    footer {
        padding: 1.25rem;
        padding-top: 2.5rem;
        background-color: #ffffff;
    }

    footer .footer-logo {
        max-width: 260px;
    }

    footer .footer-links {
        margin-top: 1rem;
    }

    footer .footer-links a {
        margin-left: 0;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    footer .footer-links .footer-separator {
        margin-right: 0.3rem;
    }

    .hero-inner {
        width: 70%;
        padding-left: 1.25rem;
    }

    .hero-logo {
        width: 300px;
    }

    .our-mission {
        padding: 2.5rem 1.25rem;
    }

    .explore {
        min-height: 0;
        padding-bottom: 1.25rem;
    }

    .explore-bg {
        display: none;
    }

    .explore-inner {
        width: 100%;
        padding: 1.25rem;
    }

    .explore-offset {
        margin-left: 0;
    }

    .sidebar {
        top: 0;
        left: 0;
        height: 67.5px;
        padding: 0 1rem;
        width: 100%;
        z-index: 99;
        flex-direction: row;
        align-items: center;
        box-shadow: 0 0 5px 5px rgba(40, 40, 40, 0.1);
    }
}

.page-logo img {
    margin-top: 550px;
}

.brand-family {
    border: solid 3px #fff;
    border-radius: 26px;
    padding: 10px;
    max-width: max-content;
    text-align: center;
}

@media screen and (max-width: 740px) {

    .btn.btn-secondary {
        margin-bottom: 30px;
    }

}

.grid-center {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
}

.chat img {
    display: none;
}


/*# sourceMappingURL=styles.css.map */