/*-------------------------------*/
/* 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;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}
  
/* Track */
::-webkit-scrollbar-track {
    background: var(--bg-global-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main-global-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: #1A1A1A;
    --bg-global-color: #FAFAFA;
    --alt-bg-global-color: #F2F2F2;

    /* fonts */
    --main-global-font: 'Manrope', sans-serif;
}


/*----------------------------------------------------------*/
/* GLOBAL COMPONENT STYLES */
/*----------------------------------------------------------*/
.title-1 {
    font-family: var(--main-global-font);
    font-weight: 800;
    color: var(--main-global-color);
    font-size: 3em;
}

.title-2 {
    font-family: var(--main-global-font);
    font-weight: 800;
    color: var(--main-global-color);
    font-size: 2em;
}

.title-3 {
    font-family: var(--main-global-font);
    font-weight: 800;
    color: var(--main-global-color);
    font-size: 1.4em;
}

.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.9em;
    letter-spacing: 0.01em;
    line-height: 1.4em;
}


.buttons-container {
    margin: 5% 0;
    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(--main-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(--main-global-color) 0%, var(--bg-global-color) 0 60%, var(--main-global-color)  0) right/300% 100% no-repeat,
    linear-gradient(-45deg, var(--bg-global-color) 40%, var(--main-global-color) 0 60%, var(--bg-global-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: 4%;
    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 .call-to-action-btn img {
    position: absolute;
    height: 10px;
    top: 24%;
    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;
}


/*----------------------------------------------------------*/
/* 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: 30px;
    cursor: pointer;
}

nav .nav-btn {
    position: fixed;
    top: 5%;
    right: 4%;
    cursor: pointer;
}

nav .nav-btn img {
    cursor: pointer;
}

nav .nav-btn #opener_img {
    height: 18px;
}

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%;
}

.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%;
}


/*----------------------------------------------------------*/
/* HEADER */
/*----------------------------------------------------------*/
header {
    position: relative;
    height: 100%;
    background-color: var(--bg-global-color);
    z-index: 5;
}

header .main-content {
    position: absolute;
    width: 43%;
    left: 8%;
    top: 40%;
    transform: translateY(-50%);
    z-index: 5;
}

header .content-header-mobile {
    display: none;
}

header .content-header h1 {
    text-wrap: balance;
}

header .content-body {
    margin-top: 4%;
    display: flex;
    justify-content: space-between;
}

header .content-body p {
    width: 46%;
    text-align: justify;
    text-wrap: balance;
    opacity: 0;
}

header .content-body-mobile {
    display: none;
}

header .content-bot {
    position: absolute;
    bottom: 10%;
    left: 8%;
    width: 30%;
    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 {
    position: absolute;
    top: 56%;
    right: 7.5%;
    z-index: 0;
}

header .bg-img img {
    height: 700px;
    transition: .5s ease-out;
}



/*----------------------------------------------------------*/
/* INTRO */
/*----------------------------------------------------------*/
.intro {
    position: relative;
    z-index: 5;
    margin-top: 15%;
    padding: 10% 10% 30% 10%;
}

.intro .col-sm {
    position: relative;
}

.intro .left .content-container {
    width: 76%;
    margin-left: 12%;
}

.intro .left .content-container h2 {
    width: 60%;
    padding-bottom: 5%;
}

.intro .left .content-container p {
    text-align: justify;
}

.intro .right {
    margin-top: 10%;
}

.intro .right .product-container {
    position: absolute;
    left: -5%;
}

.intro .right img {
    position: absolute;
    transition: .6s ease-out;
}

.intro .right #img_1 {
    left: 0;
    height: 500px;
    z-index: 4;
}

.intro .right #img_2 {
    margin-left: 250px;
    top: 50px;
    height: 400px;
    z-index: 2;
}


/*----------------------------------------------------------*/
/* PACKAGES */
/*----------------------------------------------------------*/
.packages {
    background-color: var(--alt-bg-global-color);
    margin-top: 5%;
    padding: 10% 0;
    position: relative;
    z-index: 5;
}

.packages .section-title {
    width: 100%;
    text-align: center;
}

.packages .packages-section {
    width: 80%;
    margin-left: 10%;
    padding: 3% 0 0 0;
}

.packages .package-card-empty {
    opacity: 0 !important;
}

.packages .light-bg {
    background-color: var(--bg-global-color);
}

.packages .dark-bg {
    background-color: #272727;
    color: white !important;
}

.packages .package-card-height {
    height: 300px;
}

.packages .package-card {
    margin: 0.75%;
    border-radius: 20px;
    padding: 3.2% 3.5%;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.10);
    position: relative;
    transition: .3s;
}

.packages .package-card:hover {
    transform: scale(1.02);
}

.packages .package-card .content-top i {
    float: right;
    line-height: 1em;
}

.packages .package-card .content-top h4 {
    line-height: 1em;
    width: 80%;
}

.packages .package-card .content-top p {
    font-family: var(--main-global-font);
    font-weight: 500;
    font-size: 0.9em;
    line-height: 0.5em;
    opacity: .6;
}

.packages .package-card .content-mid {
    margin: 10% 0;
}

.packages .package-card .content-mid ul {
    margin: 0;
    padding: 0;
}

.packages .package-card .content-mid li {
    display: block;
    margin-top: 1.5%;
}

.packages .package-card .content-mid p {
    text-align: justify;
}

.packages .package-card .content-mid a {
    line-height: 2em;
    opacity: .6;
    cursor: pointer;
    transition: .2s;
}

.packages .package-card .content-mid a:hover {
    color: var(--main-global-color);
    opacity: .4;
}

.packages .package-card-height .content-bot {
    position: absolute;
    bottom: 5%;
}

.packages .dark-bg .buttons-container {
    margin: 0;
}

.packages .light-bg .content-top i {
    color: var(--main-global-color);
}

.packages .dark-bg .content-top i {
    color: var(--bg-global-color);
}

.packages .light-bg .content-top h4 {
    color: var(--main-global-color);
}

.packages .dark-bg .content-top h4 {
    color: var(--bg-global-color) !important;
}

.packages .light-bg p {
    color: var(--main-global-color);
}

.packages .dark-bg p {
    color: var(--bg-global-color);
}


#testi_supp_container {
    position: relative;
    z-index: 5;
    background-color: var(--bg-global-color); /* Initial color */
    transition: background-color 0.4s ease-in-out; /* Adjust the duration and timing function as needed */
}
/*----------------------------------------------------------*/
/* TESTIMONIALS */
/*----------------------------------------------------------*/
.testimonials {
    padding: 10% 15% 0 15%;
    position: relative;
}

.testimonials .testimonials-title {
    position: relative;
    z-index: 5;
    transition: .5s ease-out;
    margin-top: 30%;
}

.testimonials .row {
    margin-top: 15%;
    position: relative;
    z-index: 5;
    transition: .5s ease-out;
}

.testimonials .row .content-container {
    width: 80%;
    margin-left: 10%;
    text-align: justify;
}

.testimonials .row .content-container h5 {
    line-height: 0.6em;
}

.testimonials .row .content-container p {
    margin-top: 2%;
}

.testimonials .bg-quote {
    position: absolute;
    top: 40%;
    width: 70%;
    text-align: center;
    z-index: 0;
    transition: .5s ease-out;
}

.testimonials .bg-quote img {
    height: 500px;
}


/*----------------------------------------------------------*/
/* SUPPORT */
/*----------------------------------------------------------*/
.support {
    padding: 40% 10% 20% 10%;
}

.support .content-container h2, .support .content-container p {
    color: var(--bg-global-color) !important;
}

.support .content-container h2 {
    text-wrap: balance;
}

.support .content-container p {
    text-align: justify;
    width: 80%;
}

.support h3 {
    color: var(--bg-global-color);
    margin-top: 15%;
}

.support .call-to-action {
   width: 70%;
}

.support .img-wrapper {
    display: flex;
}

.support .img-wrapper img {
    height: 600px;
    padding: 10px;
}


/*----------------------------------------------------------*/
/* FOOTER */
/*----------------------------------------------------------*/
footer {
    position: relative;
    z-index: 0;
    width: 100%;
}

footer .contact {
    background-color: var(--bg-global-color);
    height: 60%;
    text-align: center;
    align-items: center;
    align-content: center;
    position: relative;
}

footer .contact .display-layer {
    position: fixed;
    z-index: 5;
    opacity: 0;
    bottom: 29%;
    left: 50%;
    transform: translateX(-50%);
}

footer .contact .buttons-container {
    justify-content: center;
    margin-bottom: 0;
}

/* FOOTER */
footer .fixed-layer {
    position: fixed;
    bottom: 0;
    right: 0;
    width: calc(100% + 12px); /* Adjust as needed */
    opacity: 0;
    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;
}