/* ===================================
    Crafto - Design agency
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* variable */
:root {
    --base-color: #f7d0d0;
    --medium-gray:#f7d0d0;
    --white: #f6f2ed;
    --concrete-gray:#f6f2ed;
    --bg-maire-yellow:	#998078;
    --light-medium-gray:#f6f2ed;
    --dark-gray:	#998078; 
    --zeus-grey:	#7d4002;
    --alt-font: 'Bebas Neue', cursive;
    --primary-font: 'Poppins', sans-serif;
}
body {
    font-size: 17px;
    line-height: 30px;
}
.container-fluid {
    max-width: 1750px;
}




/* custom cursor */
@media (hover: hover) and (pointer: fine) {
    .custom-cursor .circle-cursor-outer {
        border: 1px solid transparent;
    }
    .custom-cursor .circle-cursor-inner {
        width: 20px;
        height: 20px;
        left: -5px;
        top: -5px;
        background: var(--dark-gray);
    }
    .custom-cursor .circle-cursor-inner.cursor-link-hover {
        width: 30px;
        height: 30px;
        background: var(--white);
        opacity: 0.5 !important;
    }
}
/* heading tag */
h1 {
    font-size: 5rem;
    line-height: 4.5rem;
} 
h3 {
    font-size: 3.125rem;
    line-height: 2.8rem;
}
.fs-325 {
    font-size: 20.313rem;
    line-height: 20.313rem;
}
/* page title */
.page-title-large h1 {
    font-size: 5.625rem;
    line-height: 4.375rem;
}
/* header */
header .container-fluid {
    padding: 0;
}
.navbar .navbar-nav .nav-link {
    font-weight: 700;
    font-size: 15px;
    padding: 10px 24px;
}
header .navbar-brand {
    padding: 38px 0;
}
header .navbar-brand img {
    max-height:24px;
}
/* line height */
.lh-160 {
    line-height: 10rem;
}
.lh-300 { 
    line-height: 18.75rem;
}
/* top bottom left right */
.top-minus-250px {
    top: -250px;
}
.right-minus-250px {
    right: -250px;
}
.left-minus-230px {
    left: -230px;
}
/* bg color */
.bg-concrete-gray {
    background-color: var(--concrete-gray);
}
.bg-maire-yellow {
    background-color: var(--bg-maire-yellow);
}
.bg-gradient-dark-transparent {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #292927), to(transparent));
    background: linear-gradient(to top, #292927 7%, transparent 100%);
}
.bg-gradient-gray-light-dark-transparent {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}
/* border color */
.border-color-zeus-grey {
    border-color: var(--zeus-grey) !important;
}
/* text color */
.text-concrete-gray {
    color: var(--concrete-gray);
}
.text-white, .btn-link.text-white, a.text-white-hover:hover {
    color: var(--white) !important;
}
/* word break normal */
.word-break-normal {
    word-break: normal;
}
/* btn */
.btn {
    font-family: var(--primary-font) !important;
    letter-spacing: 0;
}
.btn.btn-switch-text.btn-large > span {
    font-size: 15px;
    padding: 18px 36px; 
}
.btn.btn-switch-text.btn-medium > span {
    font-size: 14px;
    padding: 14px 28px; 
}
.btn.btn-base-color {
    color: var(--dark-gray);
}
.btn.btn-box-shadow.btn-base-color:hover {
    color: var(--dark-gray);
}
.btn.btn-link {
    padding: 0;
}
.btn.btn-dark-gray, .btn.btn-box-shadow.btn-dark-gray:hover {
    color: #d8d8d4;
}
.threeD-letter-menu {
    min-height: inherit;
}
/* hover box */
.hover-box.dark-hover:hover i {
    color: var(--base-color) !important;
    -webkit-transform: scale(1.2);  
    transform: scale(1.2);
}
/* bg sliding line */ 
.bg-sliding-line { 
    background-image: linear-gradient(45deg, transparent 45%, #fff 45%, #fff 55%, transparent 0);
    background-size:0.2em 0.2em;
}
.text-sliding-line {
    background-image: linear-gradient(135deg, transparent 45%, #fff 45%, #fff 55%, transparent 0);
}
/* team style 08 */ 
.team-style-08 figure figcaption .social-icon a {
    background-color: var(--base-color);
}
.team-style-08 figure figcaption .social-icon a:hover {
    color: var(--dark-gray);
} 
/* team style 04 */ 
.tab-style-04 .nav-tabs .nav-item .nav-link {
    color: var(--dark-gray); 
}
/* Counter style 04 */
.counter-style-04 .vertical-counter-number ul {
    line-height: 1;
}
/* footer */
footer {
    padding-top: 110px;
    padding-bottom: 90px;
}
footer a {
    color: var(--dark-gray);
} 
footer a:hover {
    color: var(--dark-gray);
}
footer .footer-logo img {
    max-height: 56px;
}
footer .list-style-05 li:before {
    background-color:var(--dark-gray);
}
footer .list-style-05 li:hover {
    margin-left: 0;
}
footer .list-style-05 li:before {
    margin: 0 20px;
}
footer ul li {
    margin-bottom: 7px;
    -webkit-transition: all 300ms cubic-bezier(0.37, 0.8, 0.63, 1); 
    transition: all 300ms cubic-bezier(0.37, 0.8, 0.63, 1);
}
footer ul li:last-child{
    margin-bottom: 0;
}
footer ul li a:hover {
    padding-left: 10px;
}

@media (max-width: 1599px) {
    .fs-325 {
        font-size: 18.313rem;
        line-height: 18.313rem;
    }
}
/* media query responsive */
@media (max-width: 1499px) {
    .fs-325 {
        font-size: 16rem;
        line-height: 16rem;
    }
}
@media (max-width: 1399px) {
    .bottom-minus-130px {
        bottom: -70px;
    }
    .fs-325 {
        font-size: 15rem;
        line-height: 15rem;
    }
} 
@media (max-width: 1199px) {
    .lg-lh-128 {
        line-height: 8rem;
    }
    .lg-bg-black {
        background-color: var(--bg-maire-yellow);
    }
    .fs-325 {
        font-size: 12rem;
        line-height: 12rem;
    } 
}
@media (max-width: 991px) {
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav > .nav-item {
        border-bottom: 0;
        text-align: center;
    }
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav .nav-item .nav-link {
        font-size: 32px;
        line-height: 32px;
        font-weight: 700;
    }
    .main-content {
        z-index: inherit;
    }
    .lh-300 {
        line-height: 15rem;
    }
    footer {
        padding-top: 90px;
        padding-bottom: 70px;
    }
    .fs-325 {
        font-size: 10rem;
        line-height: 10rem;
    }
}
@media (max-width: 767px) {
    .sm-border-start {
        border-left: 1px solid !important;
    }
    .btn.btn-switch-text.btn-large > span {
        padding: 18px 30px;
    }
    footer ul li {
        margin-bottom: 6px;
    }
    footer {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    footer .footer-logo img { 
        width: auto;
    }
    .fs-325 {
        font-size: 9rem;
        line-height: 10.5rem;
    } 
}
@media (max-width: 575px) {
    .xs-lh-112 {
        line-height: 7rem;
    }
    .fs-325 {
        font-size: 6rem;
        line-height: 8rem;
    }
}


/* custom css for puzzle animation  */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.puzzle-container {
    position: relative;
    width: 90%; /* Adjust width according to screen size */
    max-width: 1200px;
    display: flex;
    justify-content: center; /* Center the puzzle pieces */
    align-items: center;
    margin-bottom: -70px; /* Add some space below the puzzle pieces */
    margin-top: -80px;
    padding-bottom: -10px;
}

/* Left Puzzle Piece Styling */
.puzzle-piece-left {
    position: relative;
    width: auto; /* Ensure the width is appropriate for fitting */
    max-width: 60%; /* Set a max width for the left puzzle piece */
    height: auto;
    opacity: 0;
    transform: translateX(-100%) translateY(-20px); /* Move slightly up */
    transition: transform 2s ease, opacity 2s ease;
    z-index: 2; /* Ensure it's on top of the right piece */
    margin-top: 82px; /* Adjust this value to bring the piece down or up */
    margin-right: -11.5%; /* Adjust this value to overlap the right piece */
}

/* Right Puzzle Piece Styling */
.puzzle-piece-right {
    position: relative;
    width: auto; /* Ensure the width is appropriate for fitting */
    max-width: 45%; /* Set a max width for the right puzzle piece */
    height: auto;
    opacity: 0;
    margin-right: -11.5%;
    transform: translateX(100%) translateY(-20px); /* Move slightly up */
    transition: transform 2s ease, opacity 2s ease;
    z-index: 1; /* Ensure it's below the left piece */

}

/* Text Container Styling */
.text-container {
    margin-top: -100px; /* Adjust distance between puzzle pieces and text */
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 3; /* Ensure text is above everything else */
}

.fit-image,
.company-image {
    display: block;
    margin: -30px auto;
    max-width: 35%;
}

/* Animation for Left Puzzle Piece */
.hero-section.animate .puzzle-piece-left {
    opacity: 1;
    transform: translateX(0) translateY(0); /* Move to original position */
}

/* Animation for Right Puzzle Piece */
.hero-section.animate .puzzle-piece-right {
    opacity: 1;
    transform: translateX(0) translateY(0); /* Move to original position */
}

/* Animation for Text Container */
.hero-section.animate .text-container {
    opacity: 1;
    transition-delay: 2s; /* Delay to allow puzzle pieces to fit before text appears */
}




/* Increase logo size and adjust position */
.navbar-brand1 img {
    width: 80px; /* Adjust width to make the logo bigger */
    height: auto; /* Maintain aspect ratio */
    padding: 10px; /* Add some padding around the logo */
}

/* Adjust the navbar height and make the pink background narrower */
.bg-pink {
    background-color: #ffcccb; /* Light pink background color */
    padding: 5px 0; /* Adjust the top and bottom padding to make it more narrow */
}

/* Position the logo more precisely within the navbar */
.navbar-brand {
    display: flex;
    align-items: center; /* Vertically center the logo */
    justify-content: center; /* Center the logo horizontally */
    margin-left: 15px; /* Adjust the left margin if needed */
}

.navbar {
    min-height: 30px; /* Adjust the minimum height of the navbar */
}

/* Adjust the padding for smaller screens */
@media (max-width: 767px) {
    .navbar-brand img {
        width: 100px; /* Make the logo slightly smaller on mobile */
    }

    .bg-pink {
        padding: 10px 0; /* Increase padding slightly on mobile for touch-friendly design */
    }
}



#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; /* Behind content */
}


/* Curtain styling */
.curtain {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 50%;
    background-color: #f7d0d0; /* Match the pink theme or use any color you prefer */
    z-index: 1000; /* Make sure it's above everything */
    transition: transform 1.5s ease-in-out;
}

.curtain-left {
    left: 0;
    transform: translateY(0); /* Initially cover the screen */
}

.curtain-right {
    right: 0;
    transform: translateY(0); /* Initially cover the screen */
}

.curtain-open .curtain-left {
    transform: translateY(-100%); /* Move the left curtain up */
}

.curtain-open .curtain-right {
    transform: translateY(-100%); /* Move the right curtain up */
}




.bubblegum-animation-section {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eaf7ff;
}

.bubble-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.bubble {
    width: 100%;
    height: 100%;
    background-color: #ff66cc;
    border-radius: 50%;
    animation: blowBubble 2s ease-in-out infinite, popBubble 2s ease-in-out infinite;
}

.pop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path-to-pop-image.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    animation: popEffect 2s ease-in-out infinite;
}

@keyframes blowBubble {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

@keyframes popBubble {
    85%, 100% {
        opacity: 0;
    }
    90% {
        opacity: 1;
    }
}

@keyframes popEffect {
    0%, 85%, 100% {
        opacity: 0;
    }
    90% {
        opacity: 1;
    }
}



.bubblegum-section {
    padding: 20px 0;
}

.bubblegum-gif {
    max-width: 200%;
    height: auto;
    border-radius: 10px;
}

.quote-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.quote-image {
    max-width: 200%;
    height: auto;
    border-radius: 10px;
}



.bubblegum1 {
    animation: moveBubble1 2s ease-in-out infinite;
}

.bubblegum2 {
    animation: moveBubble2 2s ease-in-out infinite;
}

.bubblegum3 {
    animation: moveBubble3 5s ease-in-out infinite;
}


@keyframes moveBubble1 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, -50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes moveBubble2 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50px, 50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes moveBubble3 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(55px, -55px);
    }
    100% {
        transform: translate(0, 0);
    }
}

ul {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
    list-style: disc inside none;
    color: #998078; /* Text color */
}

ul li::marker {
    color: #f7d0d0; /* Marker (disc) color */
    font-size: 1.2em;
}



.clients-logos .client-logo {
    max-width: 120px;
    margin: 10px;
}

@media (min-width: 768px) {
    .clients-logos .client-logo {
        max-width: 100px;
    }
}

@media (min-width: 992px) {
    .clients-logos .client-logo {
        max-width: 150px;
    }
}

@media (min-width: 1200px) {
    .clients-logos .client-logo {
        max-width: 180px;
    }
}



.bg-section {
    background-color: #5A4C4C; /* Replace with your desired background color */
    padding: 80px 0; /* Adjust padding to make space for content */
}

.text-light-opacity {
    opacity: 0.8;
}

.btn-switch-text span {
    display: inline-block;
    color: #fff;
}

.text-sliding-line {
    color: #fff;
}

h2 {
    color: #fff;
}

.feature-box {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.feature-box-content p {
    color: #fff;
}

.feature-box-content h3 {
    color: #fff;
}

@media (max-width: 768px) {
    .btn {
        display: block;
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .text-center.text-lg-start {
        text-align: center !important;
    }

    .w-75 {
        width: 100% !important;
    }
}
