



.hero,
.social_network,
.b2c_platform,
.our-values {
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	padding: 150px 20px;
	color: #fff;
}
/*TITLES/TEXT*/

.hero__slogan h1 {
	width: 650px;
	line-height: 1.5;
	z-index: 100;
}
.about-us__description h2,
.dev_cycle_description h2 {
	width: 30%;
	margin-right: 25px;
}
.about-us__description p,
.dev_cycle_description p {
	width: 65%;
}

.b2c_platform p, h2,
.social_network p, h2 {
	margin-bottom: 25px;
}

.our-values_item h3, 
.our-values_item p {
	margin-bottom: 25px;
}

.our-values_heading {
	margin-bottom: 25px;
}

.contact_form p {
	margin-bottom: 25px;
}


.dev_cycle_stage_card h3{
	margin-bottom: 25px;
}

/*IMAGES*/
.img-hero {
	width: 100%;
	position: relative;
	top: 30px;
	z-index: 90;
}

.img-social-network,
.img-b2c-platform {
	width: 500px;
}

.img_our-values {
	animation: rotateIn;
	animation-duration: 20s; 
	margin-bottom: 25px;
}

/*DECOR*/
.ellipse {
	position: absolute;
	width: 150px;
}

#ellipse_pink_hero {
	position: absolute;
	right: 600px;
	top: 600px;
	width: 300px;
	z-index: 10;
}

#ellipse_cyan_hero__1 {
	position: absolute;
	left: 250px;
	top: 330px;
	width: 200px;
	z-index: 10;
}
#ellipse_cyan_hero__2 {
	position: absolute;
	right:300px;
	top: 350px;
	width: 150px;
	z-index: 10;
}

/*SECTIONS*/
.dev-cycle,
.about-us {
	color: #fff;
	background-color: #2a2d30 ;
	height: auto;
	display: flex;
	align-items: center;
	padding: 0px 20px;
	animation: fadeIn 5s ;
	-webkit-animation: fadeIn 5s;
	-moz-animation: fadeIn 5s;
	-o-animation: fadeIn 5s;
}
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.about-us__description {
	width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0px auto;
	padding: 50px 20px;
}

.social_network {
	margin-bottom: 25px;
}

.our-values {
	color: #fff;
}

.our-values__body {
	display: flex;
	width: 100%;
	flex-direction: column;
	border: 1px solid grey;
	border-radius: 30px;
	padding: 50px;
	justify-content: center;
	background-color: #2a2d30;
}

.our-values_wrapper {
	flex-wrap: wrap;
}

.our-values_flex {
	display: flex;
	margin-bottom: 25px;
	justify-content: space-between;
	gap: 25px;
}

.our-values_item {
	width: 200px;
}


.dev-cycle {
	width: 100%;
}
.dev-cycle__body {
	max-width: 1200px;
	padding: 50px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	margin: 0px auto;
	padding: 100px 20px;
}

.dev-cycle__description_body{
	width: 80%;
}

.dev-cycle__description_body p{
	width: 100%;
	margin-bottom: 25px;
}

.dev-cycle__stages {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.dev_cycle_stage_card {
	width: 48%;
}

/*CONTACT US*/
.contact-us {
	width: 1200px;
	color: #fff;
	background-color: #1F2225;
	margin: 0px auto;
}

.contact-us__body {
	display: flex;
	justify-content: space-between;
	padding: 100px 20px;
}

.contact_form {
	width: 782px;
}

.contact-us-custom {
	width: 60%;
}

.contact-us-custom-field {
	margin-bottom: 20px;
}

.contact-us-custom-field textarea,
.contact-us-custom-field input {
	width: 100%;
	height: 50px;
	border-radius: 10px;
	color: darkgrey;
	background-color: #2a2d30;
	padding: 10px;
}

::placeholder {
 color: darkgrey;
}

.label {
	margin-bottom: 15px;
}

.contact-us-custom_content {
	display: flex;
	flex-direction: column;
} 

.contact-us-custom-fields-inputs {
	display: flex;
	justify-content: space-between;
}

.contact-us-custom-field__name {
	width: 48%;
	display: inline-block;
  }
  
.contact-us-custom-field__email {
	width: 48%;
	display: inline-block;
}

.contact-us-custom-field textarea {
	resize: none;
	height: 120px;
}
  
.contact-us-custom-field_error {
	font-size: 16px;
	color: red;
	margin-top: 5px;
}
  
.contact-us-custom-field_error:empty {
	margin-top: 0;
}
  
.contact-us-custom_success {
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(.8);
	transform: scale(.8);
	transition: all 1s ease;
	color: green;
	text-align: center;
}
  
.contact-us-custom.is-success .contact-us-custom_success {
	position: relative;
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
	z-index: 2;
}




#about-us {
    scroll-behavior: smooth;
}
#contact-us {
    scroll-behavior: smooth;
}


/*RESPONSIVE*/

/* Large desktops and laptops */
@media (max-width: 1200px) {
		img {
			width: 40%;
		}
		.hero {
			max-width: 1000px;
		}
}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1100px) {
	img {
		width: 40%;
	}
	.hero {
		width: 100%;
		padding: 25px;
		justify-content: flex-start;
	}
	#ellipse_cyan_hero__1,
	#ellipse_cyan_hero__2,
	#ellipse_pink_hero {
		display: none;
	}
	.social_network {
		padding: 20px;
	}
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
	#nav_button {
		display: none;
	}

	#img-hero {
		width: 527px;
		z-index: 10;

	}
	.hero {
		padding: 50px 20px;
	}

	.hero__slogan h1 {
		width: 100%;
	}
	.hero,
	.about-us__description,
	.about_us,
	.social_network,
	.dev-cycle__body,
	.contact-us__body {
		flex-direction: column;
		justify-content: center;
	}
	.about-us,
	.dev-cycle {
		height: auto;
		padding: 25px;
	}
	.about-us__description {
		padding: 0px;
	}
	.about-us__description h2 {
		width: 100%;
		text-align: start;
		margin: 0px;
		margin-bottom: 25px;
	}
	.b2c_platform {
		flex-direction: column-reverse;
	}
	.our-values,
	.contact-us__body,
	.b2c_platform,
	.social_network,
	.about-us,
	.hero {
		width: 100%;
		padding: 50px;
	}
	
	.our-values_flex._1,
	.our-values_flex._2 {
		display: flex;
		flex-wrap: wrap;
	}
	.our-values_item {
		flex-grow: 1;
	}
 
	.social_network_description,
	.b2c_platform_description {
		margin-bottom: 50px;
	}
	.about-us p,
	.dev-cycle__description_body {
		width: 100%;
	}

	#ellipse_cyan_hero__1,
	#ellipse_cyan_hero__2,
	#ellipse_pink_hero {
		display: none;
	}

}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
	#nav_button {
		display: none;
	}

	#img-hero {
		z-index: 10;
	}

	img {
		width: 50%;
	}
	.hero,
	.about-us__description,
	.about_us,
	.social_network {
		flex-direction: column;
		justify-content: center;
	}
	.b2c_platform {
		flex-direction: column-reverse;
	}
	.our-values,
	.about-us__description p {
		width: 100%;
	}

	.about-us__description h2 {
		width: 100%;
		margin-right: 0px;
	}
	.about-us__description {
		padding: 25px 0px;
	}
	.social_network_description,
	.b2c_platform_description {
		margin-bottom: 50px;
	}

	.dev-cycle__body,
	.contact-us__body {
		padding: 25px 0px;
		display: flex;
		flex-direction: column;
	}
	.dev-cycle__stages {
		flex-direction: column;
	}

	.dev_cycle_stage_card,
	.dev-cycle__description_body {
		width: 100%;
	}

	.contact_form {
		justify-content: center;
	}
	.hero, 
	.social_network, 
	.b2c_platform, 
	.our-values {
		padding: 25px 20px;
	}

	.our-values_flex {
		flex-direction: column;
	}

	.our-values_item {
		width: 100%;
	}

	.img_our-values {
		width: 50px;
	}

	#ellipse_cyan_hero__1,
	#ellipse_cyan_hero__2,
	#ellipse_pink_hero {
		display: none;
	}
}

/* Portrait phones and smaller */
@media (max-width: 480px) {
	#img-hero {
		z-index: 10;
	}

	.img {
		width: 100%;

	}
	.section {
		padding: 25px 15px;
	}
	.hero h1 {
		font-size: 32px;
	}

	.our-values h2,
	.about-us h2,
	.social_network_description h2  {
		font-size: 32px;
		font-weight: 500;
	}
	.hero,
	.about-us__description,
	.about_us,
	.social_network,
	.dev-cycle__body,
	.contact-us {
		flex-direction: column;
		justify-content: center;
	}
	.hero__slogan h1 {
		width: 100%;
	}
	.b2c_platform {
		flex-direction: column-reverse;
	}
	.our-values,
	.contact-us,
	.about-us__description p,
	.about-us__description h2 {
		width: 100%;
	}
	.social_network_description,
	.b2c_platform_description {
		margin-bottom: 50px;
	}
	.our-values_flex,
	.dev-cycle,
	.dev_cycle_stages {
		flex-direction: column;
	}
	.our-values,
	.our-values__body,
	.dev-cycle__body {
		padding: 25px;
	}
	#ellipse_cyan_hero__1,
	#ellipse_cyan_hero__2,
	#ellipse_pink_hero {
		display: none;
	}
	.about-us,.dev-cycle {
		border-radius: 25px;
	}
	.contact-us p {
		width: 100%;
	}
	.contact_form {
		width: 100%;
	}
}

/* Iphone 5 */
@media (max-width: 320px) {
	#nav_button {
		display: none;
	}

	#img-hero {
		z-index: 10;
	}
	
	.hero,
	.about-us__description,
	.about_us,
	.social_network {
		flex-direction: column;
		justify-content: center;
	}
	.b2c_platform {
		flex-direction: column-reverse;
	}
	.our-values {
		width: 100%;
	}
	.social_network_description,
	.b2c_platform_description {
		margin-bottom: 50px;
	}
}