.container {
	max-width: calc(100% - 100px);
	margin: 0 auto;
	padding:0px 50px;
	box-sizing: border-box;
}
.container h1 {
	font-size: 45px;
	background: linear-gradient(to bottom right, #ff9900, #ff004f);
	-webkit-background-clip: text;
	color: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
}
.section {
	background-color: #f2f2f7;
	border-radius: 25px;
	overflow: hidden;
	min-height: 500px;
	display: flex;
	width: calc(100% + 100px);
	margin: 50px -50px;
}
.section img {
	width: calc(50% - 50px);
	height: 100%;
	max-height: 450px;
	margin: 25px 25px 25px 25px;
	border-radius: 25px;
	object-fit: cover;
}
.section div {
	flex: 1;
	padding: 25px 25px;
	box-sizing: border-box;
}
.section h2 {
	margin-top: 0;
	font-size: 35px;
}
.section p {
	font-size: 17px
}
.section .StyleO {
	color: #ff9900;
}
.section .StyleP {
	color: #ff004f;
}
@media (max-width: 768px) {
	.container {
    	max-width: calc(100% - 120px);
	margin: 0 10px;
	padding:0 0px;
	box-sizing: border-box;
    }

    .container h1 {
        font-size: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
    }

    .section {
        flex-direction: column;
        margin: 10px 0;
	min-height: 200px;
    }

    .section img {
	width: calc(100% - 50px);
        max-height: 500px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .section div {
        padding: 5 25px;
    }

    .section h2 {
        font-size: 20px;
    }

    .section p {
        font-size: 16px;
    }
    .section-reverse {
        flex-direction: column-reverse;
    }
}