/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200;12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&display=swap');

*{
	font-family: 'Bricolage Grotesque';
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	scroll-padding-top: 2rem;
	transition: .3s ease;
}

@font-face {
    font-family: 'Array';
    src: url('/_fonts/Array-Regular.otf');
}

@font-face {
    font-family: 'ClashDisplay';
    src: url('/_fonts/ClashDisplay-Regular.otf');
}

:root{
    font-size: 62.5%;
}

body{
	color: #fff;
	background: #040714;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 1.6rem;
}

main {
    flex: 1;
}

img{
	width: 100%;
}

section{
	padding: 3rem 0 2rem;
}

li{
	list-style: none;
}

a{
	text-decoration: none;
    color: #fff;
}

header a:hover {
    border-bottom: 1px solid #fff;
}

.container{
	max-width: 1200px;
	margin: auto;
	width: 100%;
}

header {
    padding: 3rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
}

nav ul {
    display: flex;
}

nav li {
    margin-right: 15px;
}

nav li:last-child {
    margin-right: 0;
}

h1 {
    font-weight: 800;
    font-size: 6rem;
}

button {
    color: #fff;
    background-color: #6225c5;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    outline: none;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #5720af;
}

.gradient-text {
    background-image: linear-gradient(to right, #d5b0fb, #6d24a9);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.gradient-text-two {
    background-image: linear-gradient(to right, #fff, #9f9fa8);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.hero {
    padding-top: 12rem;
    text-align: center;
}

.hero p {
    color: #e4e4e7;
    font-size: 2rem;
    font-weight: 100;
}

.hero img {
    mask-image: linear-gradient(to top, transparent 5%, #040714 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 5%, #040714 100%);
}

/* .about-content {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-gap: 2rem;
    padding-top: 5rem;
}

.about-content p {
    font-size: 2rem;
    font-weight: 100;
}

.about-content .about-img {
    border-radius: .5rem;
    mask-image: linear-gradient(to top, transparent 5%, #040714 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 5%, #040714 100%);
} */

/* .techs {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    grid-gap: 2rem;
}

.techs div {
    border-radius: .5rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid #1f2937;
    background-image: linear-gradient(to bottom right, #353f4f, #010102);
}

.techs div img {
    width: 50%;
} */

.scrolling-container {
    width: 100%;
    overflow: hidden;
    outline: 1px solid #5720af;
    mask-image: linear-gradient(to right, transparent 3%, #040714 20%, #040714 80%, transparent 95%), linear-gradient(to left, transparent 5%, #040714 20%, #040714 80%, transparent 95%);
    -webkit-mask-image: linear-gradient(to right, transparent 3%, #040714 20%, #040714 80%, transparent 95%), linear-gradient(to left, transparent 5%, #040714 20%, #040714 80%, transparent 95%);
}

.scrolling-content {
    white-space: nowrap;
    animation: scrollAnimation 15s linear infinite;
    display: flex;
}

.scrolling-content img {
    margin-right: 10px;
    width: 8%;
    filter: grayscale(100%);
    max-width: 100px;
}

.scrolling-content img:hover{
    filter: grayscale(0%);
}

/* .portfolio-content {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-gap: 2rem;
    position: relative;
    overflow: hidden;
}

.portfolio-content-two {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-gap: 2rem;
    position: relative;
    overflow: hidden;
} */

.portfolio-content {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-gap: 1rem;
    position: relative;
    overflow: hidden;
}
.portfolio-content-two {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-gap: 1rem;
    position: relative;
    overflow: hidden;
}

.portfolio-item {
    position: relative;
}

.portfolio-item p, .portfolio-item h2  {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.portfolio-content div, .portfolio-content-two div {
    border-radius: .5rem;
    /* padding: 2rem; */
    text-align: center;
    border: 1px solid #1f2937;
    background-image: linear-gradient(to bottom right, #353f4f, #010102);
}

.portfolio-content div img, .portfolio-content-two div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
    mask-image: linear-gradient(to top, transparent 5%, #040714 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 5%, #040714 100%);
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-gap: 2rem;
}

.sale {
    background: transparent;
    border-radius: 50px;
    border: 1px solid #353f4f;
    padding: .4rem 3rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.service {
    background-image: linear-gradient(to bottom right, #353f4f, #000001);
    padding: 2rem;
    border-radius: .5rem;
    border: 1px solid #1f2937;
    /* position: relative; */
}

.service span {
    font-size: 1.5rem;
}

.service a {
    text-align: center;
}

.service h2 {
    font-size: 4rem;
}

.service ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.service ul li {
    line-height: 2;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.service ul li svg {
    margin-right: 8px;
    vertical-align: middle;
}

.btn {
    display: inline-block;
    padding: 8px 20px;
    width: 80%;
    width: 100%;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    background: linear-gradient(to right, #2d394d, #10192c);
}

.btn:hover {
    background: #2d394d;
}

/* .service .btn {
    position: absolute;
    bottom: 1rem;
} */

.service ul li {
    display: flex;
}

.reviews-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Adjust the min size as needed */
    gap: 1rem;
}

.review {
    background-color: #1f2937;
    padding: 2rem;
    border-radius: .5rem;
    border: 1px solid #363f4b;
}

hr {
    border: 0;
    height: 2px;
    background-color: #363f4b;
    margin: 20px 0;
}

.customer {
    display: inline-flex;
    align-items: center;
}

.customer img {
    width: 12%;
    margin-right: 1rem;
}

.customer div {
    display: flex;
    flex-direction: column;
}

.customer .designation {
    font-weight: 200;
    color: #9ca3af;
}

.features, .services, .reviews, .faq-sec {
    padding-top: 8rem;
}

.feature-content {
    display: grid;
    grid-template-columns: repeat(2, 2fr); /* Adjust the min size as needed */
    gap: 2rem;
}
.feature-content h2 {
    font-size: 4rem;
}

.features-col {
    column-count: 2;
    column-gap: 4rem;
}

.features-col li {
    /* background-image: linear-gradient(to bottom right, #353f4f, #000001);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #1f2937;
    break-inside: avoid; */
    margin-bottom: 1rem;
}

.feature-content img {
    max-width: 100%;
    /* width: 600px; */
}

.cta {
    padding: 8rem 0;
}

.cta-content {
    text-align: center;
}

.cta-content a{
    width: auto;
    background: #6225c5;
}

.cta-content a:hover {
    background: #5720af;
}

footer {
    border-top: 1px solid #353f4f;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 4rem;
    padding: 4rem 0;
}

.links li a, .legal li a {
    color: #9ca3af;
    line-height: 2;
}

.links li a:hover, .legal li a:hover {
    border-bottom: 1px solid #9ca3af;
}

/* .faq {
    padding: 1.5rem 0;
    border-bottom: 1px solid #353f4f;
}

.faq:last-child {
    border-bottom: none;
} */

.faq hr {
    height: 1px;
}

.faq h3 {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.answer {
    display: none;
}

.answer.show {
    display: block;
}

.mob-menu-btn {
    display: none;
    cursor: pointer;
}

.mob-menu {
    display: none;
    z-index: 999;
    width: 100%;
    position: absolute;
    /* background: #10192c; */
    background: linear-gradient(to bottom right, #0d0d30, #000001);

    padding: 2rem;
    font-size: 3rem;
    height: 100%;
    overflow-y: auto;
}

.mob-menu.active {
    display: block;
}

body.menu-open {
    overflow: hidden; /* Hide the scroll bar on the body when the mobile menu is open */
}

.mob-menu a:hover {
    border-bottom: none;
}

.mob-menu li {
    border-bottom: 1px solid #353f4f;
    padding: 2rem 0;
}

.mob-menu li:last-child{
    border-bottom: none;
}

@keyframes scrollAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 1100px){
    .container{
		margin: 0 auto;
		width: 90%;
	}
}

@media (max-width: 800px){
    .feature-content, .portfolio-content, .portfolio-content-two{
        grid-template-columns: repeat(1, 1fr);
	}
}

@media (max-width: 500px){
    .footer-content{
        grid-template-columns: repeat(1, 1fr);
	}
    
    .mob-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }
}