/*-------------------------------*/
/* 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: #225FFF; /*#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;
    }
}


/*----------------------------------------------------------*/
/* NAVIGATION */
/*----------------------------------------------------------*/
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 98;
}

nav .nav-logo {
    position: fixed;
    top: 4%;
    left: 4%;
}

nav .nav-logo img {
    height: 35px;
    cursor: pointer;
}

nav .nav-right-side {
    position: fixed;
    top: 3%;
    right: 4%;
    display: flex;
    align-items: center;
}

nav .nav-action {
    margin-right: 50px;
}

nav .nav-btn img {
    cursor: pointer;
}

nav .nav-btn #opener_img {
    height: 17px;
}

nav .nav-btn #closer {
    display: none;
}

nav .nav-btn #closer_img {
    height: 23px;
    margin-right: 3px;
    margin-top: -3px;
}

.nav-panel {
    position: fixed;
    top: -100%;
    height: 100%;
    width: 100%;
    background-color: var(--bg-global-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    z-index: 97;
    border-radius: 15px 0 0 15px;
    transition: .45s ease-out;
}

.nav-panel .content-container {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
}

.nav-panel .content-container ul {
    padding: 0;
    margin: 0;
}

.nav-panel .content-container li {
    display: block;
    padding: 3% 0;
}

.nav-panel .content-container a {
    color: var(--main-global-color);
    display: inline-block;
	position: relative;
    text-decoration: none;
}

.nav-panel .content-container a:after {
    content: '';
    position: absolute;
    margin-bottom: -5px;
    bottom: 0;
    left: 2px;
    width: 0;
    border-bottom: 3px solid var(--main-global-color);
    transition: 0.4s;
}

.nav-panel .content-container a:hover:after {
    width: 99%;
}

.nav-panel .nav-footer {
    position: absolute;
    bottom: 5%;
    left: 10%;
    display: flex;
}

.nav-panel .nav-footer a {
    margin-right: 40px;
    opacity: .5;
    transition: all .3s;
}

.nav-panel .nav-footer a:hover {
    opacity: .9;
    color: var(--main-global-color);
}


/*----------------------------------------------------------*/
/* HEADER */
/*----------------------------------------------------------*/
header {
    position: relative;
    height: 100%;
    z-index: 5;
}

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 .ind-text-wrapper {
    overflow: hidden;
}

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: 2px;
    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: 50%;
    height: 80%;
    position: absolute;
    top: 12%;
    right: 6%;
    z-index: 0;
}

header .bg-img-wrapper spline-viewer {
    transform: scale(1);
}



/*----------------------------------------------------------*/
/* SERVICES */
/*----------------------------------------------------------*/
.services {
    margin-top: 60%;
    padding: 10% 8% 10% 8%;
}

.services .services-header {
    width: 50%;
}

.services .services-header h2 {
    overflow: hidden;
}

.services .services-body {
    margin-top: 5%;
}

.services .col-sm {
    margin: 8px;
}

.services .col-sm .text-container {
    background-color: var(--bg-global-color);
    box-shadow: var(--box-shadow1);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: justify;
}

.services .col-sm .text-container p {
    margin-top: 20px;
}


/*----------------------------------------------------------*/
/* PROCESS */
/*----------------------------------------------------------*/
.process {
    margin-top: 45%;
    padding-top: 5%;
    height: 80%;
    padding-bottom: 20%;
}

.process .process-title {
    padding: 2% 0;
    width: 36%;
    margin-left: 32%;
    text-align: center;
}

.process .process-title h3  {
    overflow: hidden;
}

.process .process-spline-container {
    margin-right: -300px;
    margin-top: -420px;
}

.process .process-spline-container spline-viewer {
    transform: scale(0.96);
}

.process .process-content {
    margin-left: 12%;
}

.process .process-content .steps {
    margin-top: 3%;
}

.process .process-content .steps .step {
    width: 70%;
    background-color: var(--bg-global-color);
    border-radius: var(--border-radius);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.process .process-content .steps .step-title {
    padding: 15px 30px 5px 30px;
    border-bottom: solid 2px var(--primary-accent-color); 
}

.process .process-content .steps .step-title b {
    color: var(--primary-accent-color);
}

.process .process-content .steps .step-text {
    padding: 25px 30px 15px 30px;
}

.process .process-content .steps .step-text ul {
    margin-top: -10px;
}


/*----------------------------------------------------------*/
/* TESTIMONIALS */
/*----------------------------------------------------------*/
.testimonials {
    margin-top: -40%;
    padding: 0% 8% 0% 8%;
    position: relative;
    z-index: 5;
}

.testimonials .testimonials-title h2 {
    overflow: hidden;
}

.testimonials .testimonials-body {
    margin-top: 3%;
}

.testimonials .testimonials-body .col-sm {
    margin: 8px;
}

.testimonials .testimonials-body .testimonial-tab {
    background-color: var(--alt-bg-global-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonials-body .testimonial-author {
    width: auto;
    margin-top: 15px;
    background-color: var(--alt-bg-global-color);
    padding: 25px 25px 10px 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonials-body .testimonial-author p {
    display: flex;
    justify-content: space-between;
}


/*----------------------------------------------------------*/
/* GET STARTED */
/*----------------------------------------------------------*/
.start {
    margin-top: 80%;
    padding: 12% 25%;
    background-color: var(--primary-accent-color);
    text-align: center;
    position: relative;
    z-index: 10;
}

.start .start-title h2 {
    color: var(--bg-global-color);
    line-height: 1.25em;
    font-size: 3.5em;
}

.start .start-body {
    margin-top: 7%;
}

.start .start-body .buttons-container {
    display: block;
}

.start .start-body .buttons-container .main-button {
    padding: 20px 40px;
    border: solid 4px var(--bg-global-color);
}

.start .start-body .buttons-container .main-button b {
    cursor: pointer;
}


/*----------------------------------------------------------*/
/* FOOTER */
/*----------------------------------------------------------*/
footer {
    position: relative;
    z-index: 50;
    width: 100%;
}

/* FOOTER */
footer .fixed-layer {
    position: relative;
    bottom: 0;
    right: 0;
    opacity: 1;
    box-sizing: border-box;
}

footer .footer-part {
    background-color: var(--alt-bg-global-color);
    padding: 2% 10%;
    margin: 0;
}

footer .footer-part .col-sm {
    margin: 0;
    padding: 0;
}

footer .footer-part .company-logo img {
    height: 30px;
}

footer .footer-part .list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    text-align: center;
}

footer .footer-part .list-container a {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    margin: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
}

footer .footer-part .list-container a:hover {
    opacity: .8;
    color: var(--main-global-color);
}

@media (max-width: 768px) {
    footer .footer-part .list-container {
        display: block;
        column-count: 2;
        column-gap: 20px;
        padding: 7% 0;
    }

    footer .footer-part .list-container a {
        flex: none;
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
    }
}

footer .footer-part .soc-med ul {
    margin: 0;
    padding: 0;
    text-align: right;
}

footer .footer-part .soc-med li {
    display: inline-block;
    padding: 0 10px;
    text-align: center;
    cursor: pointer;
}

footer .footer-part .soc-med img {
    height: 20px;
    cursor: pointer;
    transition: .3s;
}

footer .footer-part .soc-med img:hover {
    opacity: .8;
}