
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,html {
    width: 100%;
    height: 100%;
    scrollbar-width: none;
}

body {
    overflow-x: hidden !important;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

body.overflow {
    overflow: hidden !important;
}

body::-webkit-scrollbar {
  display: none;
}

/* 👇 WEBSITE JUSTIFY*/
p {
    text-align: justify;
    text-justify: inter-word;
}
/* scrollbar track */
.scrollbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 8px;
  height: 100vh;
  z-index: 9999;
  background: var(--skin-color);
   user-select: none !important; 
  -webkit-user-select: none !important; 
}

/* scrollbar thumb */
.scroll-thumb {
  width: 8px;
  height: 80px;
  z-index: 100000;
  background-color: #000;
     background-size: 100% 200%;
 background-position: 100% 200%;
   user-select: none !important; 
  -webkit-user-select: none !important; 
  
}

.scroll-thumb:hover,.scroll-thumb.dragging{
     background-image: linear-gradient(to top, 
    var(--orange-color) 0%,
    var(--orange-color) 20%,
    var(--yellow-color) 40%,
    var(--yellow-color) 60%,
    var(--orange-color) 80%,
    var(--orange-color) 100%);
     animation: gradientMovebar 1.4s linear infinite;
}
@keyframes gradientMovebar { 
0% { background-position: 100% 200%; } 
50% { background-position: 100% 100%; } 
99.8% { background-position: 100% 0%; } 
100% { background-position: 100% 200%; } }

html {
    background: var(--skin-color);
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@font-face {
    font-family: Aquire-BW0ox;
    src: url(assets/fonts/Fontspring-DEMO-integralcf-regular.ttf);
}

@font-face {
    font-family: AquireBold-8Ma60;
    src: url(assets/fonts/AquireBold-8Ma60.ttf);
}

@font-face {
    font-family: AquireLight-YzE0o;
    src: url(assets/fonts/Fontspring-DEMO-integralcf-regular.ttf);
}

@font-face {
    font-family: MomcakePro-Bold;
    src: url(assets/fonts/MomcakePro-Bold.ttf);
}

@font-face {
    font-family: MomcakePro-Medium;
    src: url(assets/fonts/MomcakePro-Medium.ttf);
}

@font-face {
    font-family: MomcakePro-Regular;
    src: url(assets/fonts/MomcakePro-Regular.ttf);
}

@font-face {
    font-family: MomcakePro-Thin;
    src: url(assets/fonts/MomcakePro-Thin.ttf);
}

a {
    text-decoration: none;
}

button,
input {
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style-type: none;
}

:root {
  --yellow-color: #fea809;
  --orange-color: #ea6b06;
  --skin-color: #fff5e9;
  --darkblue-color: #0e041d; 
  --white-color: #FFFFFF;
  --black-color: #000000;
  --aquire-medium: Aquire-BW0ox;
  --aquire-bold: AquireBold-8Ma60;
  --aquire-light: AquireLight-YzE0o;
  --momcakepro-bold: MomcakePro-Bold;
  --momcakepro-medium: MomcakePro-Medium;
  --momcakepro-regular: MomcakePro-Regular;
  --momcakepro-thin: MomcakePro-Thin;
}

/* Initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* When visible */
.reveal.showreveal {
  opacity: 1;
  transform: translateY(0);
}

section,
.container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

section {
    padding: 0 40px;
}

.stack-section {
    padding: 0;
}

.fixed-btn {
    width: 60px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: fixed;
    bottom: 50px;
    right: 50px;
    animation: animate_05 2s ease-in-out infinite;
    transform: translate(0,0);
    z-index: 99999;
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.fixed-btn:hover {
    animation: none;
    transform: translate(0,10px);
}

.fixed-w-popup {
    width: fit-content;
    padding: 2.5px 6px;
    background: #25D366;
    color: var(--skin-color);
    font-family: var(--momcakepro-regular);
    font-size: 20px;
    position: absolute;
    z-index: 0;
    transition: 0.3s ease-in;
    display: flex;
    justify-content: center;
    opacity: 0;    
}

.fixed-w-popup::before {
    content: '';
    width: 12px;
    height: 8px;
    position: absolute;
    top: 100%;
    background: #25D366;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.fixed-btn:hover .fixed-w-popup {
    transform: translate(0,-60px);
    transition: 0.2s ease-in;
    opacity: 1;
}

.fixed-btn a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--darkblue-color);
    transition: 0.3s;
    z-index: 10;
}

.fixed-btn a:hover {
    background: var(--orange-color);
}

@keyframes animate_05 {
    0% {
    transform: translate(0,0);
    }
    50% {
    transform: translate(0,10px);
    }
    100% {
    transform: translate(0,0);        
    }
}

.fixed-btn a svg {
    width: 75%;
}

.hero-section {
    max-width: 1700px;
    width: 100%;
    position: relative;
}


#particle-canvas {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

  #particle-canvas canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
  }

.container {
    max-width: 1110px;
    width: 100%;
}

.sec-heading {
    width: 100%;
    text-align: center;
    font-family: var(--aquire-bold);
    font-size: 70px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sec-para {
    font-size: 25px;
    color: var(--darkblue-color);
    font-family: var(--momcakepro-regular);
    width: 100%;
    text-align: center;
    line-height: 1.4;
    margin: 10px 0;
}

header {
    max-width: 1190px;
    width: 100%;
    position: fixed;
    top: 20px;  
    z-index: 1500;
    transition: 0.8s ease-in-out;
    padding: 0 20px;
}

header.active {
    transform: translateY(-90px);
    transition: 0.8s ease-in-out;
    opacity: 0;
}

.hero-section {
    /*background: url(assets/images/hero-bg.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;*/
    padding-top: 50px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

.hero-section .container {
    position: relative;
    z-index: 1000;
}

.navbar {
    width: 100%;
    background: var(--darkblue-color);
    padding: 3.5px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

header.scrolled .navbar {
    background: #000000b9;
}

.nav-left,
.nav-right {
    width: fit-content;
    display: flex;
    align-items: center;
}

.nav-right {
    gap: 30px;
}

.header-logo {
    width: 35px;
}

.nav-list {
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-list li {
    height: 100%;
    position: relative;
    transition: 0.3s ease-in-out;
}

.nav-list li::before {
    opacity: 0;
    content: '';
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, 
    var(--orange-color) 0%,
    var(--orange-color) 20%,
    var(--yellow-color) 40%,
    var(--yellow-color) 60%,
    var(--orange-color) 80%,
    var(--orange-color) 100%);
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.3s ease-in-out;
     background-size: 200% 100%;
  animation: gradientMove 0.8s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 200% 100%;
  }
  50% {
    background-position: 100% 100%;
  }
  99.8% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 200% 100%;
  }      
}

.nav-list li.active::before,
.nav-list li:hover::before {
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.nav-list li.hide-before::before,
.responsive-menu .nav-list li.hide-before::before {
    opacity: 0;
}

.nav-list li a,
.nav-list li span {
    color: var(--skin-color);
    font-size: 24px;
    font-family: var(--momcakepro-regular);
    transition: 0.3s ease-in-out;
    text-transform: capitalize;
    padding: 10px;
    display: block;
}

.nav-list li span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-list li span i {
    color: var(--yellow-color);
    font-size: 20px;
    transition: 0.3s ease-in-out;
}

.nav-list li:hover span i {
    transform: rotate(180deg);
}

.nav-list li:hover a,
.nav-list li.active a,
.nav-list li:hover span,
.nav-list li.active span {
    transition: 0.3s ease-in-out;
}

.nav-list:hover li,
.responsive-menu .nav-list:hover li {
    opacity: 0.5;
    filter: blur(1px);
}

.nav-list:hover li:hover,
.responsive-menu .nav-list:hover li:hover {
    opacity: 1;
    filter: blur(0);
}

.nav-list .dropdown-box {
    display: none;
    position: absolute;
    background: var(--darkblue-color);
    top: 100%;
    left: -10px;
    padding: 0 0 10px 0;
}

.nav-list li:hover .dropdown-box {
    display: block;
}

.nav-list .dropdown-box a {
    width: 100%;
    white-space: nowrap;
    padding: 12px 20px;
    display: block;
}

.nav-list .dropdown-box a:hover {
    background: var(--orange-color);
}

.language-change {
    width: fit-content;
    position: relative;
}

.language-change img {
    width: 40px;
}

.language-change button {
    display: block;
}

.language-change .french {
    display: none;
}

.language-change.active .us-eng {
    display: none;
}

.language-change.active .french {
    display: block;
}

.toggle-btn,
.responsive-menu {
    display: none;
}

.hero-content {
    width: 100%;
    height: fit-content;
    padding: 20px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-left,
.hero-right {
    width: 50%;
    position: relative;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    /*padding-right: 60px;*/
}

.hero-img {
    
    height: 350px;
    animation: animatelogo 5s linear infinite;
    transform: translateY(10px);
}

@keyframes animatelogo {
    0% {transform: translateY(10px);}
    25% {transform: translateY(0px);}
    50% {transform: translateY(10px);}
    75% {transform: translateY(0px);}
    100% {transform: translateY(10px);}
}

.hero-content h1 {
    max-width: 590px;
    width: 100%;
    font-size: 35px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: var(--darkblue-color);
    margin-bottom: 15px;
    font-weight: 700 ;
    line-height: 1.1;
    margin-top: 80px;
}


.hero-content h1 span {
    font-family: var(--aquire-bold);
    font-size: 120px;
    display: block;
    letter-spacing: -1.5px;
        line-height: 1; 
}

.hero-content p {
    max-width: 550px;
    width: 100%;
    text-transform: uppercase;
    font-family: var(--momcakepro-medium);
    font-size: 34px;
    color: var(--darkblue-color);
    margin-bottom: 30px;
    line-height: 0.4;
    margin-top: 20px;
  
}

.hero-btns {
    margin-top: 20px;
    margin-bottom: 60px;
    width: fit-content;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.dropdown-box a {
    text-decoration: none !important;
}

.fill-btn {
    min-width: 220px;
    width: fit-content;
    padding: 12px 25px;
    color: var(--skin-color);
    text-transform: uppercase;
    font-family: var(--momcakepro-bold);
    background: linear-gradient(to right, var(--orange-color), var(--yellow-color));
    font-size: 22px;
    transition: 0.6s ease-in-out;
}

.fill-btn:hover {
    background: linear-gradient(to right, 
    var(--orange-color) 0%,
    var(--orange-color) 20%,
    var(--yellow-color) 40%,
    var(--yellow-color) 60%,
    var(--orange-color) 80%,
    var(--orange-color) 100%);
    background-size: 200% 100%;
    animation: gradientfillbtn 1.4s linear infinite;
}

@keyframes gradientfillbtn {
  0% {
    background-position: 200% 100%;
  }
  50% {
    background-position: 100% 100%;
  }
  99.99% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 200% 100%;
  }      
}

.stroke-btn {
    min-width: 220px;
    width: fit-content;
    padding: 11px 25px;
    color: var(--darkblue-color);
    text-transform: uppercase;
    font-family: var(--momcakepro-bold);
    font-size: 26px;
    border: 3px solid var(--darkblue-color);
    transition: 0.3s background ease-in-out;
}

.stroke-btn:hover {
    background: var(--darkblue-color);
    color: var(--skin-color);
}

/* portfolio section css start here */

.portfolio-section {
    padding: 0;
}

.overflow-hidden-box {
    width: 100%;
    height: fit-content;
    padding: 4rem 40px;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.portfolio-section .sec-heading {
    margin-bottom: 30px;
}

.portfolio-content {
    width: calc(100% + 150px);
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transform: translateX(76px);
}

.portfolio-box {
    width: 25%;
    height: fit-content;
    padding: 23px 20px;
    background: var(--darkblue-color);
    box-shadow: #ea6d0697 0px 13px 27px -5px, #ea6b0697 0px 8px 16px -8px;
    transition: 0.4s;
    margin-left: -50px;
    transform: translateX(-50px) translateY(0px);
    z-index: 10;
    position: relative;
}

.portfolio-box:nth-child(1),
.portfolio-box:nth-child(2),
.portfolio-box:nth-child(3),
.portfolio-box:nth-child(4) {
    z-index: 40;
}

.portfolio-box:nth-child(5),
.portfolio-box:nth-child(6),
.portfolio-box:nth-child(7),
.portfolio-box:nth-child(8) {
    z-index: 30;
}

.portfolio-box:nth-child(9),
.portfolio-box:nth-child(10),
.portfolio-box:nth-child(11),
.portfolio-box:nth-child(12) {
    z-index: 20;
}

.portfolio-box:nth-child(13),
.portfolio-box:nth-child(14),
.portfolio-box:nth-child(15),
.portfolio-box:nth-child(16) {
    z-index: 10;
}

.portfolio-box:nth-child(17),
.portfolio-box:nth-child(18),
.portfolio-box:nth-child(19),
.portfolio-box:nth-child(20) {
    z-index: 5;
}

.portfolio-box.hovered {
  opacity: 1;
  transform: translateX(-50px) translateY(-20px);
}

.portfolio-box.affected {
    transform: translateX(0px);
}

.portfolio-box h3 {
    font-size: 30px;
    font-family: var(--momcakepro-regular);
    line-height: 1.15;
    color: var(--skin-color);
}
#space{
    margin-top: 4rem;
}
.portfolio-box p {
    color: var(--skin-color);
    font-family: var(--momcakepro-regular);
    margin-bottom: 16px;
    font-size: 21px;
}

.portfolio-progress {
    width: 100%;
    height: 8px;
    background: var(--skin-color);
    margin-bottom: 20px;
}

.p-p-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--orange-color), var(--yellow-color));
    transition: 0.4s ease-in-out;
}

.portfolio-box:hover .p-p-bar {
    width: 100%;
    background: linear-gradient(to right, var(--orange-color), var(--orange-color),var(--yellow-color), var(--yellow-color),var(--orange-color), var(--orange-color));
}

.portfolio-img-box {
    width: 100%;
    aspect-ratio: 1/0.6;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.portfolio-box img {
    width: 100%;
}

/* partners section css start here */

.partners-section {
    background: var(--skin-color);
    padding: 0;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.partners-section .container {
    max-width: 100%;
    position: relative;
}

/*.partner-shade {
    width: 3%;
    height: 100%;
    background: linear-gradient(to left, #00000000, #000000);
    position: absolute;
    top: 0;
    z-index: 100;
}

.partner-shade.left-shadow {
    left: 0;
}

.partner-shade.right-shadow {
    right: 0;
    background: linear-gradient(to right, #FFF5E9, #FFFFFF );
}*/

.partners-section .sec-heading {
    color: var(--darkblue-color);
}

.partners-wrapper {
  overflow: hidden;
  width: 100%;
}

.partners-content {
    margin-top: 30px;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    animation: scrollLeftToRight 25s linear infinite;    
}

.partners-content-second {
    animation: scrollRightToLeft 25s linear infinite;
}

@keyframes scrollLeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes scrollRightToLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.partners-content img {
    width: 100px;
    border-radius: 12px;
    object-fit: contain;
}

/* process section css start here */

.process-section {
    width: 100%;
    height: fit-content;
    background: var(--skin-color);
    padding-top: 4rem;
}

.process-content {
    width: 100%;
    height: fit-content;
    margin-top: 30px;
}

.process-box {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.process-box:first-child {
    padding: 7rem 0 4rem 0;
}

.last-process-box {
    padding: 5rem 0;
}

.process-left,
.process-right {
   width: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

.p-main-img {
    width: 80%;
}

.process-txt {
    width: 80%;
}

.process-txt h2 {
    width: 100%;
    font-family: var(--momcakepro-regular);
    margin-bottom: 15px;
    font-size: 48px;
    color: var(--darkblue-color);
    text-transform: capitalize;
    letter-spacing: 0.6px;
}

.process-left .process-txt h2,
.process-left .process-txt p {
    text-align: right;
}

.process-right .process-txt h2,
.process-right .process-txt p {
    text-align: left;
}

.process-txt p {
    width: 100%;
    color: var(--darkblue-color);
    font-size: 25px;
    line-height: 1.3;
    text-align: justify;
    font-family: var(--momcakepro-regular);
}

.p-num-absolute {
    position: absolute;
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.p-num-box {
    width: 60px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--darkblue-color);
    color: var(--skin-color);
    font-size: 45px;
    font-family: var(--momcakepro-bold);
    position: absolute;
    top: calc(50% - 30px);
}

.p-num-box span {
    z-index: 2;
}

.p-num-box::before,
.p-num-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: pulse 2.5s ease-out infinite;
    z-index: 1;
}

.p-num-box::after {
  animation-delay: 1.25s;
}


@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.p-num-line {
    width: 6px;
    height: 100%;
    background: var(--darkblue-color);
    position: absolute;
}

.last-process-box .timeline-line {
    display: none;
}

/* form-section css start here */

.form-section {
    background: var(--skin-color);
    padding-top: 4rem;
    padding-bottom: 4rem;
    z-index: 100;
}

.form-section .sec-heading {
    color: var(--darkblue-color);
}

.contact-us-box {
    width: 100%;
    border: 3px solid var(--white-color);
    padding: 40px 30px;
    margin-top: 2rem;
}

.contact-box,
.con-pay-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.contact-box {
    margin-bottom: 5rem;
}

.contact-us-box p {
    max-width: 800px;
    width: 100%;
    color: var(--white-color);
    font-family: var(--momcakepro-regular);
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: 0.4px;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-us-box .stroke-btn {
    white-space: nowrap;
    border-color: var(--skin-color);
    color: var(--skin-color);
}

.contact-us-box .stroke-btn:hover {
    background: var(--skin-color);
    color: var(--darkblue-color);


}

.form-section form {
    max-width: 800px;
    width: 100%;
    margin-top: 20px;
    padding: 25px 30px;
    background: #FFEEDC;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;

}

.form-section form input,
.form-section form textarea {
    background: #F9E4CF;
    color: var(--darkblue-color);
    font-size: 20px;
    font-family: var(--momcakepro-thin);
    padding: 16px 20px;
    line-height: 1.2;
    border: none;
    outline: none;

}

.form-section form input {
    width: calc(50% - 9px);
}

.form-section form input.name-input,
.form-section form textarea {
    width: 100%;
}

.form-section form input[type="submit"] {
    width: 100%;
    padding: 13px 20px;
    color: var(--skin-color);
    background: var(--orange-color);
    text-transform: uppercase;
    font-family: var(--momcakepro-bold);
    font-size: 26px;
}
.form-section form input[type="submit"]:hover {
    background: linear-gradient(to right, 
    var(--orange-color) 0%,
    var(--orange-color) 20%,
    var(--yellow-color) 40%,
    var(--yellow-color) 60%,
    var(--orange-color) 80%,
    var(--orange-color) 100%);
    background-size: 200% 100%;
    animation: gradientfillbtn 1.4s linear infinite;
}

.payment-detail {
    max-width: 1200px;    
    width: 100%;
    margin-top: 4rem;
    background: linear-gradient(to right, var(--yellow-color) 0%,var(--orange-color) 10%,var(--orange-color) 90%,var(--yellow-color) 100%);
    /* background: var(--orange-color); */
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2rem;
}

.pay-content {
    max-width: 800px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.payment-d-txt h3 {
    color: var(--skin-color);
    font-size: 26px;
    font-family: var(--momcakepro-regular);
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.payment-d-txt p {
    color: var(--skin-color);
    font-family: var(--momcakepro-regular);
    font-size: 23px;
    line-height: 1.2;
}

.pay-content .stroke-btn {
    white-space: nowrap;
    border-color: var(--skin-color);
    color: var(--skin-color);
}

.pay-content .stroke-btn:hover {
    background: var(--skin-color);
    color: var(--orange-color);
}

/* faq section css start here */

.faq-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.faq-section .sec-heading {
    font-size: 60px;
}

.faq-content {
    max-width: 800px;
    width: 100%;
    margin-top: 20px;
}

.faq-box {
    width: 100%;
    border: 2px solid var(--darkblue-color);
    color: var(--darkblue-color);
    padding: 20px 30px;
    margin-bottom: 10px;
    font-family: var(--momcakepro-medium);
}

.faq-head {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    line-height: 1.3;  
    font-family: var(--momcakepro-regular);      
}

.faq-head i {
    font-size: 20px;
    color: var(--darkblue-color);
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease, margin-top 0.4s ease;
    font-size: 22px;
    line-height: 1.3;
}

.faq-box.active .faq-ans {
    max-height: 300px;   /* big enough value */
    opacity: 1;
    transform: translateY(0);
    margin-top: 30px;
}

.faq-head i {
    transition: transform 0.3s ease;
}

.faq-box.active .faq-head i {
    transform: rotate(45deg);
}

.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 4rem;
}

.f-social-box {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 20px;
}

.f-social-box a {
    font-size: 25px;
    color: var(--darkblue-color);
    transition: 0.3s;
}

.f-social-box a:hover {
    color: var(--orange-color);
}

.copyright-box {
    margin: 10px 0 40px;
    max-width: 250px;
    width: 100%;
    text-align: center;
}

.copyright-box a,
.copyright-box p {
    color: var(--darkblue-color);
    font-size: 22px;
    font-family: var(--momcakepro-medium);
    line-height: 1.3;
    transition: 0.3s;
}

.copyright-box a:hover {
    color: var(--orange-color);
}

.copyright-box p {
    text-align: center;
}

.stack-section {
    width: 100%;
    height: fit-content;
}

.stack-section img {
    width: 100%;
}

.stack-section img {
    position: sticky;
    bottom: 0;
}

@media(max-width:1150px) {
    .hero-content h1 span {
        font-size: 100px;
    }
}

@media(max-width:1000px) {
    .hero-content {
        flex-direction: column-reverse;
        padding-top: 100px;
        gap: 70px;
    }
     #preloader-page{
        visibility: hidden;
    }
    .hero-left,
    .hero-right {
        width: 100%;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 30px;
        text-align: center;
        margin-top: 50px;        
    }
    .hero-content h1.reveal {
        opacity: 1;
        transform: translate(0,0);
    }
    .hero-content p {
        text-align: center;
    }
    .hero-content h1 span {
        font-size: 100px;
    }
    .partners-content {
        gap: 16px;
    }
    .partners-content img {
        width: 80px;
    }
    .hero-btns {
        margin-top: 35px;
    }
.portfolio-content {
    width: calc(100% + 50px);
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transform: translateX(76px);
}

.portfolio-box {
    width: 50%;
    margin-left: -50px;
    transform: translateX(-50px) translateY(0px);
}

.portfolio-box:nth-child(1),
.portfolio-box:nth-child(2) {
    z-index: 50;
}
.portfolio-box:nth-child(3),
.portfolio-box:nth-child(4) {
    z-index: 45;
}

.portfolio-box:nth-child(5),
.portfolio-box:nth-child(6) {
    z-index: 40;
}
.portfolio-box:nth-child(7),
.portfolio-box:nth-child(8) {
    z-index: 35;
}

.portfolio-box:nth-child(9),
.portfolio-box:nth-child(10) {
    z-index: 30;
}
.portfolio-box:nth-child(11),
.portfolio-box:nth-child(12) {
    z-index: 25;
}

.portfolio-box:nth-child(13),
.portfolio-box:nth-child(14) {
    z-index: 20;
}
.portfolio-box:nth-child(15),
.portfolio-box:nth-child(16) {
    z-index: 15;
}

.portfolio-box:nth-child(17),
.portfolio-box:nth-child(18) {
    z-index: 10;
}
.portfolio-box:nth-child(19),
.portfolio-box:nth-child(20) {
    z-index: 5;
}
.hero-img {
    max-width: 300px;
    width: 100%;
} 
}

@media(max-width:768px) {
     #preloader-page{
        visibility: hidden;
    }
    .toggle-btn {
        display: flex;
        width: 30px;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: none;
        border: none;
        outline: none;
        gap: 6px;
        position: relative;
        transition: 0.3s;
        float: right;
        z-index: 10000;
    }
    .close-btn {
        position: absolute;
        top: 30px;
        right: 40px;
    }
    .toggle-btn .toggle-line {
        width: 100%;
        height: 3px;
        border-radius: 20px;
        background: var(--skin-color);
        transform-origin: center center;
        transition: 0.3s;
    }
    .toggle-btn.active {
        gap: 0;
    }
    .toggle-btn.active .toggle-line:nth-child(1) {
        transform: rotate(45deg);
    }
    .toggle-btn.active .toggle-line:nth-child(2) {
        display: none;
    }
    .toggle-btn.active .toggle-line:nth-child(3) {
        transform: rotate(-45deg);
        position: absolute;
    }
    .nav-right .nav-list {
        display: none;
    }
    .responsive-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1500;
        background: #0e041d90;
        width: 100%;
        height: 100vh;
        transform: translateX(-100%);
        transition: 0.7s ease-in-out;
        backdrop-filter: blur(3px);
    }
    .responsive-menu-con {
        width: 80%;
        height: 100vh;
        background: var(--darkblue-color);
        overflow: auto;
    }
    .res-meun-head {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px 0px 10px 20px;
    }
    .res-hero-img {
        max-width: 60px;
        width: 25%;
    }
    .res-logo {
        max-width: 550px;
        width: 60%;
    }
    .responsive-menu .nav-list {
        width: fit-content;
        height: fit-content;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 0;
        margin: 20px 30px;
    }
    .responsive-menu-con::-webkit-scrollbar {
        display: none;
    }
    .responsive-menu.active {
        transform: translateX(0);
        transition: 0.7s ease-in-out;
    }
    .nav-list li {
        width: fit-content;
        height: fit-content;
    }
    .responsive-menu .nav-list li {
        width: fit-content;
    }

    .responsive-menu .nav-list li a,
    .responsive-menu .nav-list li span {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 15px 0 5px 0;        
    }
    .responsive-menu .nav-list li a img,
    .responsive-menu .nav-list li span img {
        width: 30px;
    }


.nav-list .dropdown-box {
    display: none;
    position: relative;
    background: var(--darkblue-color);
    top: 100%;
    left: -10px;
    padding: 10px 0 0 10px;
}

.nav-list li:hover .dropdown-box {
    display: block;
}    

    .hero-section {
        background-position: right;
        padding-top: 20px;
    }
    .hero-content h1 {
        font-size: 30px;
        line-height: 0.9;
        margin-bottom: 0;
    }
    .hero-content h1 span {
        font-size: 90px;
    }
    .main-text-change {
    font-size: 20px;
    min-height: fit-content;
}
    .payment-detail {
        padding: 20px;
        background: var(--orange-color);
    }
    .pay-content {
        flex-direction: column;
        gap: 20px;
    }
    .p-num-absolute {
        display: none;
    }
    .process-box {
        flex-direction: column;
    }
    .process-left,
    .process-right,
    .process-txt,
    .p-main-img {
        width: 100%;
    }
    .process-left .process-txt h2,
    .process-left .process-txt p {
       text-align: left;
    }
    .res-process-box {
        flex-direction: column-reverse;
    }
    .last-process-box .process-left {
        margin-top: 2rem;
    }
    section {
        padding: 0 20px;
    }
    .portfolio-section {
        padding: 0;
    }
    .overflow-hidden-box {
        padding: 1rem 20px 4rem 20px;
    }
    .portfolio-box {
        padding: 18px 15px;
    }
    .portfolio-box h3 {
        font-size: 22px;
    }
    .portfolio-box p {
        font-size: 18px;
    }
.portfolio-box.hovered {
  transform: translateX(-50px) translateY(-10px);
}
.portfolio-box.affected {
    transform: translateX(0px);
}  
.hero-img {
   max-width: 200px;
   height: auto;
}
.hero-content {
    gap: 0;
}
.fixed-btn {
    bottom: 30px;
    right: 20px;
}
}

@media(max-width:550px) {
    .hero-content h1 {
        line-height: 1.1;
        font-size: 19px;
    }
    .hero-content h1 span {
        font-size: 60px;
    }
    .hero-content p {
        font-size: 20px;
        margin: 10px 0;
    }
    .hero-btns a,
    .hero-btns button {
       width: 100%;
    }
    .sec-heading {
        font-size: 35px;
    }
    .form-section form {
        padding: 20px 15px;
    }
    .form-section form input {
        width: 100%;
    }
    .hero-section {
        background-position: center bottom;
    }
    .hero-content {
        padding: 100px 0 60px 0;
    }
    .navbar {
        padding: 10px 15px;
    }
    .header-logo {
        width: 45px;
    }
    .nav-right {
        gap: 20px;
    }
    .toggle-btn {
        width: 25px;
    }
    .language-change img {
        width: 32px;
        margin-bottom: -4px;
    }
    .form-section form input[type="submit"] {
        width: 100%;
         background: linear-gradient(to right, var(--orange-color), var(--yellow-color));
    }
    .partners-content img {
        width: 60px;
    }
    .partners-content {
        gap: 14px;
        margin-top: 20px;
    }
}

.timeline-line {
  position: relative;
  height: 100%;
  width: 6px;
  /* background: #e5e5e5; */
}

.timeline-line .line-progress {
  position: absolute;
  top: 55%;
  width: 100%;
  height: 105%;
  background: #000;
  transition: height 0.1s linear;
}


/* other pages css start here */

.second-hero-sec {
  background: url(assets/images/other-hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding: 70px 0;
  z-index: 1;
  position: relative;
}

.second-header {
    width: 100%;
    padding: 100px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.second-header h2 {
    font-family: var(--momcakepro-medium);
    text-transform: uppercase;
    font-size: 75px;
    letter-spacing: 1px;
    color: var(--black-color);
    line-height: 0.8;
}

.second-header h1 {
    color: var(--orange-color);
    text-transform: uppercase;
    font-family: var(--aquire-medium);
    font-size: 80px;
    line-height: 1;
}

@media(max-width:768px) {
    .second-header {
    padding: 80px 0 0px 0;
}

.second-header h2 {
    font-size: 40px;
    line-height: 0.9;
}

.second-header h1 {
    font-size: 50px;
    line-height: 0.8;
}
}

/* about us section css start here */

.ab-h-row-one {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 100px;
}

.ab-row-box {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

.ab-row-box h3 b {
    color: var(--darkblue-color);
    font-family: var(--momcakepro-medium) !important;
    font-size: 100px !important;
    font-weight: 800 !important;
    padding-left: 10px;
}

.ab-row-box h3 span,
.ab-row-box h3 {
    /* font-family: var(--aquire-bold) !important; */
    font-family: "Raleway", sans-serif;
    font-size: 100px !important;  
    color: var(--darkblue-color);
    font-weight: 800 !important;
}

.ab-row-box h3 span {
    /*letter-spacing: -7px !important;*/
    padding-right: 6px !important;
}

.ab-row-box h3.metz-txt {
    font-family: var(--aquire-bold) !important;  
    text-transform: uppercase;
    padding-bottom: 20px;
}

.counter-number {
    all: inherit;
    display: inline;
    color: var(--darkblue-color); 
    font-family: "Raleway", sans-serif;
    font-size: 100px !important;
    font-weight: 800 !important;
    letter-spacing: -1.5px;
}

.ab-row-box p {
    text-transform: uppercase;
    font-family: var(--momcakepro-bold);
    font-size: 25px;
    margin-top: -5px;
}

.ab-h-row-two {
    padding: 50px 0;
}

.ab-h-row-two .ab-row-box h3 {
    font-size: 100px;
}

.about-second-sec {
    background: var(--skin-color);
}

.about-sec-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 5rem 0 4rem 0;
}

.ab-secd-left {
    width: 35%;
}

.ab-secd-left img {
    width: 90%;
}

.ab-secd-right {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-right: 30px;
}

.ab-secd-right h2 {
    color: var(--darkblue-color);
    font-size: 70px;
    font-family: var(--momcakepro-bold);
    text-transform: uppercase;
    font-weight: 500;
}

.ab-secd-right p {
    color: var(--darkblue-color);
    font-size: 26px;
    font-family: var(--momcakepro-regular);
    line-height: 1.4;
    letter-spacing: 0.4px;
}

.ab-thd-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 4rem;
    padding-top: 4rem;
    gap: 30px;
}

.direction-reserse {
    flex-direction: row-reverse;
}

.service-reverse {
    background: var(--skin-color);
}

.ab-thd-left {
    width: 65%;
}

.ab-thd-left h2 {
    font-family: var(--momcakepro-medium);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--darkblue-color);
    margin-bottom: 15px;
    font-size: 40px;
}

.service-reverse .ab-thd-left h2 {
    color: var(--darkblue-color);
}

.ab-thd-left p,
.about-fourth-sec p {
    font-family: var(--momcakepro-regular);
    font-size: 30px;
    line-height: 1.25;
}

.service-reverse .ab-thd-left p {
    color: var(--darkblue-color);
}

.ab-thd-left a {
    display: block;
    margin-top: 25px;
}

.ab-thd-left a button {
    background: var(--darkblue-color);
    color: var(--skin-color);
    padding: 10px 25px;
    font-family: var(--momcakepro-medium);
    letter-spacing: 1.2px;
    font-size: 22px;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ab-thd-left a button i {
    font-size: 18px;
    transform: rotate(-90deg);
}

.ab-thd-left a button:hover {
    background: var(--orange-color);
    gap: 15px;
}

.service-reverse .ab-thd-left a button {
    background: var(--darkblue-color);
    color: var(--skin-color);
    font-weight: 500;
}

.service-reverse .ab-thd-left a button:hover {
    background: var(--orange-color);
    color: var(--skin-color);
}

.ab-thd-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ab-thd-right img {
    width: 100%;
}

.about-fourth-sec {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.about-fourth-sec .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}






@media(max-width:768px) {
    .ab-h-row-one {
        padding-top: 50px;
        gap: 20px 30px;
    }
    .ab-row-box h3 {
        font-size: 80px;
    }
    .ab-row-box p {
        font-size: 25px;
    }
    .ab-h-row-two {
        padding: 40px 0 60px;
    }
    .ab-h-row-two .ab-row-box h3 {
        font-size: 60px;
    }
    .about-sec-content {
        flex-direction: column;
    }
    .ab-secd-left,
    .ab-secd-right {
        width: 100%;
        padding: 0;
    }
    .ab-secd-left {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .about-third-sec .container {
        padding: 0;
    }
    .ab-thd-row {
        flex-direction: column-reverse;
        padding-bottom: 3rem;
        padding-top: 3rem;
    }
    .ab-thd-left,
    .ab-thd-right {
        width: 100%;
    }
}

@media(max-width:768px) {
  .services-header h1 {
     font-size: 50px;
  }    
}

/* contact page css start here */

.main-contact-sec {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.main-contact-box {
    width: 100%;
    height: fit-content;
    background: #FFEEDC;
    padding: 35px;
}

.main-contact-box h2,
.main-contact-two h2 {
    font-family: var(--momcakepro-regular);
    font-weight: 500;
    color: var(--darkblue-color);
    font-size: 35px;
    margin-bottom: 20px;
}

.main-contact-box h2 sup {
    color: var(--orange-color);
}

.main-contact-box form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.main-contact-box form input {
    background: #F9E4CF;
    width: 31.5%;
    min-width: 300px;
    padding: 11px 16px;
    color: var(--darkblue-color);
    font-size: 20px;
    font-family: var(--momcakepro-thin);
}

.contact-option-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-option-row {
    margin-bottom: 30px;
}

.contact-option-row span {
    color: var(--darkblue-color);
    font-family: var(--momcakepro-thin);
    padding: 10px 12px;
    border: 1px solid var(--darkblue-color);
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: 0.3s;
    cursor: pointer;
}

.con-sub-btn {
    width: 100%;
    display: block;
}

.con-sub-btn button {
    display: block;
   width: 100%;
   text-align: center;
}

.contact-option-row span:hover {
    background: var(--darkblue-color);
    color: var(--skin-color);
}

.main-cont-sec {
    padding-bottom: 2rem;
}

.main-cont-sec .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-contact-two {
    max-width: 900px;
    width: 100%;
    background: #FFEEDC;
    padding: 35px;
}

.working-time-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.working-time-row p {
    color: var(--darkblue-color);
    font-size: 20px;
    font-family: var(--momcakepro-thin);
}

.phone-mail-contact {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-mail-contact a {
    font-family: var(--momcakepro-thin);
    color: var(--darkblue-color);
    font-size: 22px;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-mail-contact a i {
    color: var(--orange-color);
    font-size: 20px;
}

@media(max-width:768px) {
    .main-contact-box {
        padding: 20px 15px 5px 15px;
    }
    .main-contact-box form input {
        min-width: 100%;
        width: 100%;
    }
   .faq-box {
    padding: 15px 20px; 
   }
   .faq-head i {
    margin-left: 10px;
   }
   .process-box:first-child {
    padding: 0;
   }
   .process-box:first-child {
    gap: 2rem;
   }
   .process-box:nth-child(3) {
    padding: 2rem 0 0 0;
    gap: 1.7rem;
   }
   .last-process-box {
    padding: 3rem 0 5rem 0;
   }
}

/* Hidden by default */
.popup-overlay {
      display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* When active */
.popup-overlay.active {
  display: flex;
}

.popup-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  padding: 30px;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 10000;
}

.popup-inner {
  max-width: 1200px;
  margin: 0 auto;
}

#popupData img {
  width: 100%;
  height: auto;
}

#popupData h3 {
    width: 100%;
    text-align: center;
  font-size: 50px;
  font-family: var(--momcakepro-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--darkblue-color);
}

#popupData p {
    width: 100%;
    text-align: center;
  color: var(--darkblue-color);
  font-family: var(--momcakepro-regular);
  font-size: 24px;
  margin-bottom: 20px;
}

#popupData .portfolio-progress {
    display: none;
}

@media(max-width:768px) {
.popup-content {
    padding: 30px 16px;
}
#popupData h3 {
    font-size: 40px;
}
}

.main-text-change {
    font-family: var(--momcakepro-regular);
    font-size: 30px;
    min-height: 25px;
}
.dud { 
    color: var(--orange-color);
}
/* preloader styling */
#preloader-page {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    opacity: 1;
}

/* ✅ Agar skip-preloader class NAHI hai to preloader dikhao */
html:not(.skip-preloader) #preloader-page {
    display: block;
}

/* ✅ Agar skip-preloader class HAI to preloader hidden rahega */
html.skip-preloader #preloader-page {
    display: none !important;
}

#loading-grid-container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.loading-grid-line {
    position: absolute;
    background-color: #404040;
    opacity: 0;
    animation: loading-grid-draw-line 1.5s ease-out forwards;
}

.loading-grid-vertical-line {
    width: 2px;
    height: 100%;
    top: 0;
    animation: loading-grid-draw-line 1.5s ease-out forwards;
}

.loading-grid-horizontal-line {
    height: 2px;
    width: 100%;
    left: 0;
    animation: loading-grid-draw-line 1.5s ease-out forwards;
}

@keyframes loading-grid-draw-line {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/*
Loading Text
*/

.loader-text-container {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

.loader-text {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0 10px;
    text-transform: uppercase;
    font-family: var(--aquire-bold);
    font-size: 50px;
    color: var(--orange-color);
    letter-spacing: -0.3em;
    word-spacing: -0.3em;
    text-align: center;

}

@media only screen and (max-width: 992px) {
    .loader-text {
        font-size: 28px;
    }
}

.loader-text span {
    display: inline-block;
    opacity: 0;
    animation: 0.5s fadeIn forwards;
    letter-spacing: 1.7px;
}

.loader-text::before {
    content: "";
    position: absolute;
    background-color: var(--orange-color);
    height: 100%;
    width: 0%;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.6s cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

.animation--step-2::before {
    width: 100%;
}

.animation--step-3 span {
    opacity: 0;
    animation: none;
}

.animation--step-3::before {
    margin-left: auto;
    width: 0%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/*

SHAPES

*/

/* Layout */
.l-container {
    position: relative;
    width: calc(100vw - 2px - 5%);
    height: 100%;
    padding: 24px 2.5%;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.l-shape {
    position: absolute;
    width: 20%;
    padding: 48px 2.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

@media (max-width: 1000px) {
    .l-shape {
        width: calc(100% / 3 - 5%);
    }
}

@media (max-width: 750px) {
    .l-shape {
        width: calc(100% / 2 - 5%);
    }
}

@media (max-width: 500px) {
    .l-shape {
        width: calc(100% / 1 - 5%);
    }
}

/* Objects */
.l-el {
    position: relative;
    width: 160px;
    height: 32px;
    transform-origin: 50% 50%;
    border: 1px dotted white;
}

.l-el--hide {
    border: 0;
}

.l-el--t-l {
    transform-origin: 0;
}

.l-el--t-r {
    transform-origin: 0 100%;
}

.l-el--b-l {
    transform-origin: 100% 0;
}

.l-el--b-r {
    transform-origin: 100% 100%;
}

.l-el--0 {
    position: absolute;
    top: 0%;
    left: 0%;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
}

.l-el--80 {
    position: absolute;
    top: calc(10% - 1px);
    left: calc(10% - 1px);
    width: 80%;
    height: 80%;
}

.l-el--50 {
    position: absolute;
    top: calc(25% - 1px);
    left: calc(25% - 1px);
    width: 50%;
    height: 50%;
}

.l-el--25 {
    position: absolute;
    top: calc(37.5% - 1px);
    left: calc(37.5% - 1px);
    width: 25%;
    height: 25%;
}

.l-el--margin {
    margin: 25% 50%;
}

.l-el--margin:nth-child(even) {
    margin: -25% -25%;
    width: 20%;
    height: 20%;
}

.l-el--crop {
    overflow: hidden;
}

.l-el--unset {
    animation: unset;
}

.l-el--delay {
    animation-delay: 0.25s;
}

.l-el--delay:nth-child(2) {
    animation-delay: 0.5s;
}

.l-el--delay:nth-child(3) {
    animation-delay: 0.75s;
}

.l-el--delay:nth-child(4) {
    animation-delay: 1s;
}

.l-el--delay-rev {
    animation-delay: -0.25s;
}

.l-el--circ {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.l-el--circ-inner {
    border-radius: 50%;
    width: 50%;
    height: 50%;
}

.l-el--sq {
    position: relative;
    width: 100%;
    height: 100%;
}

.l-el--sq-inner {
    position: relative;
}

.l-el--rect {
    position: relative;
    width: 100%;
    height: 40%;
}

.l-el--scale-down {
    transform: scale(0.5);
}

.l-par {
    width: 160px;
    height: 160px;
}

/* Animations */
.l-anim-1,
.l-anim-1-child * {
    animation: l-rotate 4.4s cubic-bezier(0.38, 0.26, 0.48, 0.96) infinite;
}

.l-anim-2,
.l-anim-2-child * {
    animation: l-skew 4.4s cubic-bezier(0.38, 0.26, 0.48, 0.96) infinite;
}

.l-anim-3,
.l-anim-3-child * {
    animation: l-glitch-rotate 3.2s cubic-bezier(0.38, 0.26, 0.48, 0.96) infinite;
}

.l-anim-4,
.l-anim-4-child * {
    animation: l-glitch-skew 3.2s cubic-bezier(0.38, 0.26, 0.48, 0.96) infinite;
}

.l-anim-5,
.l-anim-5-child * {
    animation: l-pulsate 3.2s cubic-bezier(0.52, -0.24, 0.36, 1.28) infinite;
}

.l-anim-6,
.l-anim-6-child * {
    animation: l-scale-up 3.2s cubic-bezier(0.52, -0.24, 0.36, 1.28) infinite;
}

.l-anim-7,
.l-anim-7-child * {
    animation: l-skew-3d 4.4s cubic-bezier(0.38, 0.26, 0.48, 0.96) infinite;
}

.l-anim-8,
.l-anim-8-child * {
    animation: l-opacity 4.4s cubic-bezier(0.38, 0.26, 0.48, 0.96) infinite;
}

/* Keyframes */
@keyframes l-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes l-pulsate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.68);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes l-scale-up {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes l-opacity {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes l-skew {
    0% {
        transform: skew(0deg);
    }
    50% {
        transform: skew(37.5deg);
    }
    100% {
        transform: skew(0deg);
    }
}
/* =========================
   Full-page Overlay
   ========================= */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;            
    pointer-events: none;      /* initially not blocking clicks */
    overflow: hidden;
    display: block;            /* always in DOM to avoid blink */
    opacity: 0;                /* invisible initially */
    transition: opacity 0.2s ease; /* smooth fade-in */
    background: transparent;
}

/* Overlay visible */
.loading-overlay.show {
    pointer-events: all;       /* block clicks when visible */
    opacity: 1;
}

/* =========================
   Page Content Fade Out / Fade In
   =========================
body > *:not(.loading-overlay) {
    opacity: 1;
    transition: opacity 0.5s ease;
}

body.page-transitioning > *:not(.loading-overlay) {
    opacity: 0;
}
*/

/* =========================
   Loading Blocks Animation
   ========================= */
.loading-overlay .loading-block {
    position: absolute;
    width: 10.1vw;
    height: 100%;
    background: #000;
    top: 0;
    bottom: 0;

    transform: scale(0,1);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.77,0,0.175,1);
}

/* Show state */
.loading-overlay.show .loading-block {
    transform: scale(1,1);
    transform-origin: left;
}

/* Optional speed-breaker mid-animation effect */
.loading-overlay.show .loading-block {
    transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
}

/* Delays for each block */
.loading-overlay .loading-block:nth-of-type(1)  { left: 0vw;  transition-delay: 0.0s; }
.loading-overlay .loading-block:nth-of-type(2)  { left: 10vw; transition-delay: 0.05s; }
.loading-overlay .loading-block:nth-of-type(3)  { left: 20vw; transition-delay: 0.1s; }
.loading-overlay .loading-block:nth-of-type(4)  { left: 30vw; transition-delay: 0.15s; }
.loading-overlay .loading-block:nth-of-type(5)  { left: 40vw; transition-delay: 0.2s; }
.loading-overlay .loading-block:nth-of-type(6)  { left: 50vw; transition-delay: 0.25s; }
.loading-overlay .loading-block:nth-of-type(7)  { left: 60vw; transition-delay: 0.3s; }
.loading-overlay .loading-block:nth-of-type(8)  { left: 70vw; transition-delay: 0.35s; }
.loading-overlay .loading-block:nth-of-type(9)  { left: 80vw; transition-delay: 0.4s; }
.loading-overlay .loading-block:nth-of-type(10) { left: 90vw; transition-delay: 0.45s; }