
:root {
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --deepblue: #234269;
    --gray: #54565a;
    --green: #009845;
    --sky: #10cfc9;
    --ocean: #006580;
    --dotWidth: 0;
}

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

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: #234269;
}

::-webkit-scrollbar-track {
    border-radius: 50px;
    background: #f6f7f8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

body {
    position: relative;
    height: 100vh;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.logo {
    height: 24px;
}

.logo path {
    transition: 0.3s ease;
}

.logo.active path {
    fill: white;
}

.logo.active path.green {
    fill: #009845;
}

.highlight {
    position: relative;
    background-image: linear-gradient(to left, transparent, #10cfc9 100%);
    border-radius: 100px;
    padding: 10px 30px 10px 60px;
    width: fit-content;
}

.highlight::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    aspect-ratio: 1/1;
    background: var(--sky);
    border-radius: 100vw;
}

.highlight-green {
    background: linear-gradient(to left, transparent, #009845 100%);
}

.highlight-green::before {
    background: var(--green);
}

.bg-blue {
    background: var(--deepblue);
}

.bg-ocean {
    background: var(--ocean);
}

.bg-circle {
    position: absolute;
    background: var(--sky);
    border-radius: 100vw;
    opacity: 0.3;
    height: 70px;
    z-index: -1;
}

.btn-tag {
    overflow: hidden;
    background: white;
    border-radius: 100px;
    z-index: 1;
    color: var(--deepblue);
    width: 120px;
    height: 45px;
}

.fixed-btn-tag {
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
    font-size: 14px;
    color: #54565A;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border-radius: 100px;
    z-index: 1;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.fixed-btn-tag.active {
    opacity: 1;
    background: white;
}

.btn {
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    font-size: 14px;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.2s ease-in-out 0s, opacity 0.2s ease 0s;
    width: max-content;
    height: 46px;
    padding: 0 24px;
}

.btn.active {
    transform: scale(1);
    opacity: 1;
    transition: transform 0.1s ease-in-out 0s, opacity 0.1s ease 0s;
}

.btn-white {
    color: #54565a;
    background: white;
}

.btn-transparent {
    background: transparent;
    border: 1px solid #54565a;
}

.btn-video {
    background: var(--green);
    color: white;
    fill: white;
    padding: 0 30px 0 21px;
}

.btns-wrapper-mobile {
    bottom: 0 !important;
    position: relative;
}

footer a {
    font-weight: 200;
    transition: 0.3s ease;
}

footer a:hover {
    color: var(--green);
}

.circleTrigger {
    position: absolute;
    top: 50%;
    left: 50vw;
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 100vw;
    z-index: -1;
    background: transparent;
    transition: 0.5s linear;
    transform-origin: center;
}

.colorTriggerBlue {
    background: var(--deepblue);
    scale: 60;
}
.colorTriggerOcean {
    background: var(--ocean);
    scale: 60;
}

.slide-indicator .dot {
    position: relative;
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 100px;
    background: #a9b3b6;
    overflow: hidden;
    transition: 0.3s ease;
}

.slide-indicator .dot.active {
    width: 60px;
}

.slide-indicator .dot.active span {
    position: absolute;
    width: var(--dotWidth);
    height: 100%;
    background: var(--green);
    border-radius: 100px;
}

@media (max-width: 1023px) {
    .single-section {
    padding-bottom: 16px;
    }
}

@media (min-width: 1024px) {
    .logo {
    height: 30px;
    }

    .btn {
    font-size: 18px;
    height: 54px;
    padding: 0 30px;
    transition: transform 0.2s ease-in-out 0s, opacity 0.2s ease 0s;
    }

    .btn.active {
    transition: transform 0.15s ease-in-out 0.3s, opacity 0.15s ease 0.3s;
    }
}
