* {

	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}

ul, ol {

	margin: 0;
	padding: 0;
}

.center {

	margin: 0 auto;
	display: block;
	width: 1000px;
}

img {

	max-width: 100%;
	vertical-align: top;
}

.logo {

	width: 150px;
}

.header {

	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px;
	transition: all 0.5s ease;
}

.header.small {

	background-color: #fff;
	box-shadow: -6px 6px 15px 0 rgb(51 51 51 / 12%);
}

.wrapper-header {

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

.header .menu ul {

	display: flex;
	gap: 10px;
}

.header .menu ul li {

	list-style: none;
	display: inline-block;
}

.header .menu ul li a {

	font-size: 1em;

}

.header .menu ul.menu-2 li a {

	font-weight: 600;
	color: #141414;
	text-decoration: none;
}

.header .menu ul.menu-2 {

	gap: 20px;
}

.header .menu ul li a.active {

	background-color: #8757ff;
	color: #fff;
	border-radius: 50px;
	padding: 15px 35px;
	text-decoration: none;
}

.banner {

	background: linear-gradient(125.95deg, #C700BF 10.95%, #7DA900 100%), linear-gradient(341.1deg, #00C2FF 7.52%, #4E00B1 77.98%), linear-gradient(222.34deg, #A90000 12.99%, #00FFE0 87.21%), linear-gradient(130.22deg, #8FA600 18.02%, #5A31FF 100%);
    background-blend-mode: screen, color-dodge, color-dodge, normal;
    width: 100%;
    height: 100vh;
    padding-top: 150px;
}

.banner .button {

	color: #fff;
    background-color: #38b2ac;
    border-color: #38b2ac;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 15px 35px;
    font-size: 1em;
    line-height: 21px;
    border-radius: 50px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.banner .title {

	font-size: 2.5em;
}

.banner p {

	color: #4c5461;
}

.banner .group {

	display: flex;
	gap: 25px;
	flex-direction: column;
}

.wrapper-banner {

	display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 20px;
}

.brand {

	color: #000;
}

.brand span {

	color: #66FE4D;
	font-size: 26px;
}

.section {

	padding-top: 50px;
	padding-bottom: 50px;
}

.section .title {

	font-size: 2.5em;
}

.section-2 {

	background-color: #FCF0A7;
}

.wrapper-section {

	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 20px;
}

.wrapper-section .text {

	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wrapper-section .image {

	text-align: center;
}

.wrapper-section .button-white {

	background-color: #fff;
    color: #333;
    font-size: 20px;
    border-radius: 50px;
    display: inline-block;
    padding: 15px 35px;
    line-height: 21px;
    font-size: 1em;
    text-decoration: none;
    font-weight: 600;
}

@media screen and (max-width: 1185px) {

	.banner {

		padding-top: 85px;
	}

	.header {

	    padding: 20px 10px;
	}

	.header .menu ul li a {

		font-size: 0.7em;
	}

	.header .menu ul li a.active {

	    padding: 10px;
	}

	p {

		font-size: 0.9em;
		line-height: 21px;
	}

	.section .title {

		font-size: 1.4em;
	}

	.wrapper-section {

	    grid-template-columns: 1fr;
	    padding-right: 15px;
	    padding-left: 15px;

	}

	.center {

		width: 100%;
	}

	.banner {

		height: auto;
	}

	.banner .title {

	    font-size: 1.4em;
	}

	.wrapper-banner {

	    grid-template-columns: 1fr;
	    padding-left: 15px;
	    padding-right: 15px;
	}
}