/*-------------------------------*/
/* PRESETS */
/*-------------------------------*/
* {
    margin: 0;
    padding: 0;
    cursor: default;
    box-sizing: content-box;
}

html, body {
    height: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    transition: background-color 0.5s ease;
}

a {
    text-decoration: none;
    cursor: pointer;
}
  
body {
    overflow-x: hidden;
    background-color: var(--bg-global-color);
}
  
body a:hover {
    text-decoration: none;
}

/* BOOTSTRAP PRESETS */
body .col-sm {
    padding: 0;
    margin: 0;
}
  
body .col {
    padding: 0;
    margin: 0;
}
  
body .row {
    padding: 0;
    margin: 0;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}
  
/* Track */
::-webkit-scrollbar-track {
    background: var(--bg-global-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-accent-color);
    transition: .1s;
}


/*----------------------------------------------------------*/
/* .ANIMATE CSS */
/*----------------------------------------------------------*/
@keyframes fade-down {
    from {
        transform: translateY(-75px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
        animation-fill-mode: forwards;
    }
  }
  
  @keyframes fade-up {
    from {
        transform: translateY(35px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
  }
  
  @keyframes fade-right {
    from {
        transform: translateX(-60px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
  }
  
  @keyframes fade-left {
    from {
        transform: translateX(60px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
  
  }
  
  @keyframes zoom-in {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
  }
  
  @keyframes fade-up-right {
    from {
        transform: translate(-60px, 60px);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
  }
  
  @keyframes fade-in {
    from {
      opacity: 0;
      display: none;
    }
    to {
      opacity: 1;
      display: block;
    }
  }
  
  @keyframes fade-out {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      display: none;
    }
  }

  .animate {
    transition: ease-out;
  }


/*----------------------------------------------------------*/
/* GLOBAL VAR VALUES */
/*----------------------------------------------------------*/
:root {
    /* colors */
    --main-global-color: #12191E;
    --bg-global-color: #FAFAFA;
    --alt-bg-global-color: #F2F2F2;
    --primary-accent-color: #BBBDC2; /*#38D600*/

    /* fonts */
    --main-global-font: 'Manrope', sans-serif;

    /* variables */
    --border-radius: 8px;
    --box-shadow1: 0px 0px 10px rgba(0, 0, 0, 0.20);
    --box-shadow-inset1: inset 0 0 15px rgba(0, 0, 0, 0.20);
}


/*----------------------------------------------------------*/
/* GLOBAL COMPONENT STYLES */
/*----------------------------------------------------------*/
.title-1 {
    font-family: var(--main-global-font);
    font-weight: 800;
    color: var(--main-global-color);
    font-size: 3em;
    line-height: 1.4em;
}

.title-2 {
    font-family: var(--main-global-font);
    font-weight: 800;
    color: var(--main-global-color);
    font-size: 2em;
    letter-spacing: -0.02em;
}

.title-3 {
    font-family: var(--main-global-font);
    font-weight: 800;
    color: var(--main-global-color);
    font-size: 1.4em;
    letter-spacing: -0.02em;
}

.text-1 {
    font-family: var(--main-global-font);
    font-weight: 400;
    color: var(--main-global-color);
    font-size: 0.8em;
    letter-spacing: 0.01em;
    line-height: 1.4em;
}

.text-2 {
    font-family: var(--main-global-font);
    font-weight: 500;
    color: var(--main-global-color);
    font-size: 0.87em;
    letter-spacing: 0.01em;
    line-height: 1.4em;
}

.text-3 {
    font-family: var(--main-global-font);
    font-weight: 600;
    color: var(--main-global-color);
    font-size: 0.96em;
    letter-spacing: 0.01em;
    line-height: 1.4em;
}


.buttons-container {
    display: flex;
    gap: 12px;
}

.buttons-container .main-button {
    font-family: var(--main-global-font);
    font-weight: 500;
    font-size: 0.92em;
    letter-spacing: 0.04em;
    color: var(--bg-global-color);
    /*background-color: var(--bg-global-color);*/
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
    padding: 15px 35px;
    border-radius: 8px;
    background:
    linear-gradient(-45deg, var(--alt-bg-global-color) 0%, var(--primary-accent-color) 0 60%, var(--alt-bg-global-color)  0) right/300% 100% no-repeat,
    linear-gradient(-45deg, var(--primary-accent-color) 40%, var(--alt-bg-global-color) 0 60%, var(--primary-accent-color) 0) right/300% 100% no-repeat;
    -webkit-background-clip: text, padding-box;
    background-clip: text, padding-box;
    transition: 0.6s;
}

.buttons-container .main-button:hover {
    background-position: left;
}

.buttons-container .secondary-button {
    font-family: var(--main-global-font);
    font-weight: 400;
    font-size: 0.92em;
    letter-spacing: 0.04em;
    color: var(--bg-global-color);
    background-color: var(--main-global-color);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
    padding: 15px 35px;
    border-radius: 8px;
    transition: all 0.34s;
}

.buttons-container .secondary-button:hover {
    color: var(--main-global-color);
    background-color: var(--bg-global-color);
    -webkit-text-stroke: 0.5px var(--main-global-color);
}


.call-to-action {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.call-to-action .call-to-action-btn {
    margin-top: 1%;
    width: 38%; 
    background-color: var(--bg-global-color);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 5%;
    cursor: pointer;
    position: relative;
    transition: .2s;
}

.call-to-action .call-to-action-btn h5 {
    cursor: pointer;
}

.call-to-action .call-to-action-btn p {
    margin-top: 6%;
    margin-bottom: 0;
    text-wrap: balance;
    cursor: pointer;
}

.call-to-action .btn-primary-color {
    background-color: var(--primary-accent-color);
}
.call-to-action .btn-primary-color h5 {
    color: var(--bg-global-color);
}
.call-to-action .btn-primary-color p {
    color: var(--bg-global-color);
}

.call-to-action .call-to-action-btn img {
    position: absolute;
    height: 10px;
    top: 26%;
    right: 10%;
    opacity: 0;
    transition: .14s;
}

.call-to-action .call-to-action-btn:hover {
    width: 38.9%;
}

.call-to-action .call-to-action-btn:hover > img {
    opacity: 1;
}

.visible {
    opacity: 1 !important; /* Override the initial opacity */
}

.hidden-layer {
    opacity: 0;
    position: relative;
    z-index: 0;
}



/*----------------------------------------------------------*/
/* LOADING ANIMATION */
/*----------------------------------------------------------*/
.loading {
    height: 100vh;
    width: 100vw;
    background-color: var(--bg-global-color);
    z-index: 99;
    position: fixed;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .loading.hidden {
    -webkit-animation: fadeOut 1s;
    animation: fadeOut 1s;
    animation-delay: 2s;
    transition-timing-function: ease-in;
    animation-fill-mode: forwards;
  }
  
  @keyframes fadeOut {
    0% {
      margin-left: 0;
    }
    100% {
      margin-top: 1%;
      opacity: 0;
      z-index: 1;
    }
  }

/* HTML: <div class="loader"></div> */
.loader {
    width: 43px;
    padding: 3px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary-accent-color);
    --_m: 
      conic-gradient(#0000 10%,#000),
      linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 2s infinite linear;
  }
  @keyframes l3 {to{transform: rotate(1turn)}}

.loader-container.hidden {
    -webkit-animation: fadeOut 0.6s;
    animation: fadeOut 0.6s;
    animation-delay: 1.5s;
    transition-timing-function: ease-in;
    animation-fill-mode: forwards;
}
  
  @keyframes fadeOut {
    0% {
      margin-left: 0;
    }
    100% {
      opacity: 0;
      z-index: 1;
    }
}




/*----------------------------------------------------------*/
/* HEADER */
/*----------------------------------------------------------*/
header {
    position: relative;
    height: 100%;
    z-index: 5;
    background: linear-gradient(to bottom, #BBBDC2, #ffffff);
}

header .main-content {
    position: absolute;
    width: 45%;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

header .content-header-mobile {
    display: none;
    text-align: center;
    margin-top: 5%;
}

header .content-header-mobile img {
    height: auto;
    width: 100%;
}

header .content-header h1 {
    text-align: left;
    font-family: var(--main-global-font);
    font-size: 4em;
    font-weight: 800;
    line-height: 0.95em;
    -webkit-text-stroke-width: 1px;
    opacity: 0;
}

header .content-header h1 span {
    color: var(--primary-accent-color);
}

header .content-body {
    width: 100%;
    margin-top: 4%;
    display: flex;
    justify-content: space-between;
}

header .content-body p {
    width: 80%;
    text-align: justify;
    text-wrap: wrap;
    opacity: 0;
}

header .content-body-mobile {
    display: none;
}

header .content-bot {
    margin-top: 5%;
    width: 60%;
    opacity: 0;
}

header .content-bot, .content-bot::before, .content-bot::after {
    box-sizing: content-box !important;
}

header #content_bot, #content-bot::before, #content-bot::after {
    box-sizing: content-box !important;
}

header .content-bot-mobile {
    position: absolute;
    bottom: 2.5%;
    left: 5%;
    width: 90%;
    display: none;
}

header .bg-img-wrapper {
    width: 90%;
    height: 80%;
    position: absolute;
    top: 12%;
    right: -19%;
    z-index: 0;
}

header .bg-img-wrapper spline-viewer {
    transform: scale(1);
}





@media (max-width: 500px) {
    /*----------------------------------------------------------*/
    /* GLOBAL COMPONENT STYLES */
    /*----------------------------------------------------------*/
    .title-1 {
        font-size: 2.2em;
        line-height: 0.98em;
    }

    .title-2 {
        font-size: 1.5em;
    }

    .title-3 {
        font-size: 1em;
    }

    .text-1 {
        font-size: 0.7em;
    }

    .text-2 {
        font-size: 0.8em;
    }

    .text-3 {
        font-size: 0.8em;
    }

    .buttons-container .main-button {
        font-size: 0.78em;
    }

    .buttons-container .secondary-button {
        font-size: 0.78em;
    }

    .mobile-hidden {
        display: none;
    }


    /*----------------------------------------------------------*/
    /* NAVIGATION */
    /*----------------------------------------------------------*/
    .nav-panel .content-container {
        width: 80%;
    }

    nav .nav-action {
        margin-right: 20px;
        display: none;
    }

    nav .nav-right-side {
        top: 5%;
    }



    /*----------------------------------------------------------*/
    /* HEADER */
    /*----------------------------------------------------------*/
    header .main-content {
        position: relative;
        transform: translate(0);
        width: 84%;
        top: 140px;
    }

    header .content-header h1 {
        text-wrap:balance;
        font-size: 4em;
        -webkit-text-stroke: 1px;
    }

    header .content-header-mobile {
        display: block;
        margin-top: 50px;
    }

    header .content-body {
        width: 100%;
    }

    header .content-body p {
        width: 100%;
    }

    header .content-bot {
        width: 100%;
    }

    header .bg-img-wrapper {
        display: none;
    }
}