@import url('https://fonts.googleapis.com/css2?family=Poppins:ital@0;1&family=Roboto+Mono:wght@500&family=Roboto:wght@500&display=swap');

* {
    box-sizing: border-box;
    padding: 0%;
    margin: 0%;
}

body {
    padding: 0%;
    margin: 0%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    background-color: #f7f7f7;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

.logo {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 2rem;
}

.logo a {
    color: #ffffff;
}

/* Navbar Style */
header {
	background: #fff;
    width: 100%;
    height: 80px;
    color: #111;
    position: fixed;
    z-index: 9999;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar .logo {
	margin: 10px;
	width: 250px;
	align-items: center;
}

@media (max-width: 375px) {
	.navbar .logo {
		width: 180px;
	}
}

.navbar ul {
	display: flex;
	align-items: center;
}

.navbar ul li {
	margin: 0 20px;
	list-style: none;
}

.navbar ul li a {
	position: relative;
	padding: 8px 0;
	color: #080808;
	font-size: 1.1rem;
	font-weight: 500;
	text-decoration: none;
	text-transform: capitalize;
	transition: all 0.3s linear;
}

.navbar ul li a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: auto;
	width: 0;
	height: 3px;
	background-color: #4761ff;
	transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-link {
	padding: 15px;
	margin: 0.6rem;
}

.navbar ul li a:hover,
.navbar ul li a.active {
	color: #4761ff;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
	width: 100%;
	right: auto;
	left: 0;
}

.hamburger {
	display: none;
	position: relative;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

.hamburger span {
	display: inline-block;
	width: 100%;
	height: 3px;
	background-color: #000000;
	position: absolute;
	top: calc(50% - 1.5px);
	left: 0;
	transition: all 0.2s;
}

.hamburger span:first-child {
	transform: translateY(-300%);
	transform-origin: right top;
}

.hamburger span:last-child {
	transform: translateY(300%);
	transform-origin: right bottom;
}

.hamburger.active span:first-child {
	transform: rotate(45deg) scaleX(0.5) translateX(4px);
}

.hamburger.active span:last-child {
	transform: rotate(-45deg) scaleX(0.5) translateX(4px);
}

/*?media query*/
@media (max-width: 992px) {
	header {
		padding: 15px 20px;
		background-color: #fff;
	}

	.container {
		max-width: 940px;
	}

	.hamburger {
		display: block;
	}

	.navbar ul {
		position: fixed;
		top: 80px;
		right: 0;
		width: 320px;
		height: 100%;
		padding: 40px 0;
		background-color: #fcfcfc;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		box-shadow: -8px 2px 10px rgba(0, 0, 0, 0.082);
		transform: translateX(100%);
		text-align: center;
		transition: all 0.3s;
	}
	.navbar ul.active {
		transform: translateX(0);
	}
	.navbar ul li {
		margin: 0;
		width: 100%;
	}

	.navbar ul li a {
		display: block;
		padding: 15px;
	}
	.navbar ul li a::after {
		display: none;
	}
	.navbar ul li a:hover {
		color: #080808;
		background-color: #f0f0f0;
	}
	.navbar ul li a.active {
		color: #fff;
		background-color: #4761ff;
		border-radius: 10px;
	}
}

@media (max-width: 768px) {
	header {
		padding: 4px;
	}
	.container {
		max-width: 650px;
	}
	.navbar .logo {
		height: 100%;
	}
}

#card-line {
    margin: 0;
    display: grid;
    gap: 30px 28px;
    border-top: 1px solid #303030;
    padding-top: 55px;
    padding-bottom: 90px;
    min-height: 477px;
    box-sizing: border-box;
}

#card-line {
    margin-top: 2rem;
}

.headline {
    font-weight: bold;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-left: 5rem;
    margin-top: 10rem;
    font-size: 2.2rem;
    color: #111;
}

#features {
    width: 100%;
    color: #eee;
    padding: 50px;
}

#features-container {
    width: 100%;
    margin-top: -30rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 50px;
    font-size: 1.7rem;
}

.feature {
    margin-top: 10rem;
    background: #dddddd;
    border-radius: 15px;
}

.feature-title {
    font-size: 1.7rem;
    font-weight: bold;
}

.feature {
    list-style: none; 
    align-items: center;
}

.m-1 {
    color: #111; 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
}

.m-1:hover {
    color: #6c757d;
}

.client-img {
    width: 230px;
}

@media (max-width: 1150px) {
	#features-container {
    	width: 100%;
    	margin-top: -35rem;
    	display: grid;
    	grid-template-columns: repeat(3, 1fr);
    	grid-column-gap: 50px;
    	font-size: 1.7rem;
	}
}

@media (max-width: 900px) {
	#features-container {
    	width: 100%;
    	margin-top: -35rem;
    	display: grid;
    	grid-template-columns: repeat(2, 1fr);
    	grid-column-gap: 50px;
    	font-size: 1.7rem;
	}
}

@media screen and (max-width: 768px){
    
    /* Clients */
    #features-container {
        grid-template-columns: 1fr
    }
    
    #features-container .feature {
        margin: 15px 0;
    }
    
    #showcase-container {
        margin-top: 35%;
    }
    
    #features-container p {
        text-align: center;
    }

    .client-img {
        display: flex;
        margin: auto;
        width: 100px
    }
}

.feature p {
        text-align: center;
}

@media screen and (max-width: 1920px) {
    .client-img {
        display: flex;
        margin-left: auto;
    }
}

@media screen and (min-width: 768px) {
    .client-img {
        display: flex;
        margin: auto;
    }
}