* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	line-height: 1.5;
	font-size: 18px;
	color: #373c45;
	font-family: 'Manrope', sans-serif;
}

:root {
	--lighten: 5%;
	--darken: -5%;

	--primary-color-h: 156;
	--primary-color-s: 100%;
	--primary-color-l: 42%;
	--primary-color: hsl(var(--primary-color-h), var(--primary-color-s), var(--primary-color-l));
	--primary-color-light: hsl(var(--primary-color-h), var(--primary-color-s), calc(var(--primary-color-l) + var(--lighten)));
	--primary-color-dark: hsl(var(--primary-color-h), var(--primary-color-s), calc(var(--primary-color-l) + var(--darken)));

	--secondary-color-h: 188;
	--secondary-color-s: 84%;
	--secondary-color-l: 17%;
	--secondary-color: hsl(var(--secondary-color-h), var(--secondary-color-s), var(--secondary-color-l));
	--secondary-color-light: hsl(var(--secondary-color-h), var(--secondary-color-s), calc(var(--secondary-color-l) + var(--lighten)));
	--secondary-color-dark: hsl(var(--secondary-color-h), var(--secondary-color-s), calc(var(--secondary-color-l) + var(--darken)));
}

::selection {
  background: rgba(219,243,67,0.75);
	color: var(--secondary-color);
}

.center {
	width: calc(100% - 48px);
	max-width: 1330px;
	margin: 0 auto;
}

.clear {
	clear: both;
}

h1 {
	font-size: 52px;
	font-weight: 800;
	text-align: center;
	color: #DBF343;
}

h2 {
	font-size: 48px;
	font-weight: 800;
	color: var(--secondary-color);
}

h3 {
	font-size: 28px;
	font-weight: 800;
	color: var(--primary-color);
}

img {
	width: 100%;
}

.cc-cta {
	background: var(--primary-color);
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	padding: 16px 32px;
	border-radius: 8px;
	display: inline-block;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-cta:hover {
	background: var(--primary-color-dark);
	color: #fff;
	text-decoration: none;
}

header {
	background-image: url(../img/cc-header.jpg);
	background-color: var(--secondary-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-blend-mode: soft-light;
	padding: 300px 0 200px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

header h1 {
	padding: 0 100px;
	margin-bottom: 40px;
}

header p {
	color: #fff;
	font-size: 24px;
	padding: 0 300px;
	margin-bottom: 40px;
}

.cc-main-menu {
	position: fixed;
	z-index: 10000;
	width: 100%;
	top: 0;
	left: 0;
	padding: 24px 0;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-main-menu.menuScroll,
.cc-main-menu.menuExpanded {
	background: #fff;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-main-menu .cc-logo {
	display: inline-block;
	float: left;	
}

.cc-main-menu .cc-logo img {
	height: 50px;
	width: auto;
}

.cc-main-menu .cc-menu {
	float: right;
	list-style: none;
	margin: 0;
	text-align: right;
}

.cc-main-menu .cc-menu li {
	display: inline-block;
	margin: 0 24px;
	vertical-align: middle;
}

.cc-main-menu .cc-menu li:last-child {
	margin-right: 0;
}

.cc-main-menu .cc-menu li a {
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	font-weight: 600;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-main-menu.menuScroll .cc-menu li a {
	color: var(--secondary-color);
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-main-menu .cc-menu li a.cc-cta {
	color: #fff;
}

section {
	padding: 48px 0;
}

.cc-trigger {
	height: 128px;
	width: 100%;
	display: block;
	margin-top: -128px;
}

#cc-why .cc-why-container {
	background: #EEF4F6;
	border-radius: 8px;
	padding: 48px;
}

#cc-why .cc-why-container .cc-why-content {
	padding-right: 32px;
}

#cc-why .cc-why-container .cc-accordion-main {
	padding-left: 32px;
}

#cc-why .cc-why-container h2 {
	margin-bottom: 40px;
}

#cc-why .cc-why-container .cc-link {
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: underline;
}

.cc-accordion .accordion-item{
    background-color: #fff;
    border: none;
    margin-bottom: 24px;
	border-radius: 8px;
}

.accordion-item:last-of-type .accordion-button.collapsed{
	border-radius: 8px;
}

.cc-accordion .accordion-item .accordion-button {
    background: var(--secondary-color);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
	border-radius: 8px;
	padding: 24px 24px 24px 48px;
	outline: none;
	border: none;
	box-shadow: none;
}

.cc-accordion .accordion-item .accordion-button:hover {
    background: var(--secondary-color-light);
}

.cc-accordion .accordion-item .accordion-button:after {
	background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300D780'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
	border: 2px solid var(--primary-color);
    border-radius: 40px;
    width: 32px;
    height: 32px;
    background-size: 20px;
    background-position: center;
}

.cc-accordion .accordion-item .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--primary-color);
	border-radius: 8px 8px 0 0;
}

.cc-accordion .accordion-item .accordion-button:not(.collapsed):hover {
    background-color: var(--primary-color-dark);
}

.cc-accordion .accordion-item .accordion-button:not(.collapsed):after {
	background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23074751'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
	border: 2px solid var(--secondary-color);
    border-radius: 40px;
    width: 32px;
    height: 32px;
    background-size: 20px;
    background-position: center;
}

.cc-accordion .accordion-item .accordion-body {
	padding: 32px 48px;
}

.cc-accordion .accordion-item .accordion-body p {
	margin: 0;
}

.cc-about .row {
	margin-bottom: 40px;
}

.cc-about .row:last-child {
	margin-bottom: 0;
}

.cc-about .row:last-child .cc-about-content {
	margin: auto;
}

.cc-about .row:first-child .cc-about-content {
	padding-left: 80px;
}

.cc-about .row:last-child .cc-about-content {
	padding-right: 80px;
}

.cc-advantages .cc-advantages-container {
	background: var(--primary-color);
	border-radius: 8px;
}

.cc-advantages .cc-advantages-container h2 {
	text-align: center;
	color: #fff;
	padding: 40px 0 144px;
}

.cc-advantages .cc-advantages-container .cc-cards-main {
	background: #fff;
	padding: 0 80px 32px;;
}

.cc-advantages .cc-advantages-container .cc-cards-main > div {
	display: flex;
}

.cc-advantages .cc-advantages-container .cc-cards-main .cc-card {
	padding: 32px 24px;
	background: #eef4f6;
	border-radius: 8px;
	margin-top: -100px;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-advantages .cc-advantages-container .cc-cards-main .cc-card:hover {
	background: var(--secondary-color);
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-advantages .cc-advantages-container .cc-cards-main .cc-card .cc-card-icon img {
	height: 60px;
	width: auto;
	margin-bottom: 24px;
}

.cc-advantages .cc-advantages-container .cc-cards-main .cc-card h5 {
	font-weight: 800;
	font-size: 24px;
	margin-bottom: 24px;
	color: var(--secondary-color);
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-advantages .cc-advantages-container .cc-cards-main .cc-card p {
	color: var(--secondary-color);
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-advantages .cc-advantages-container .cc-cards-main .cc-card:hover h5,
.cc-advantages .cc-advantages-container .cc-cards-main .cc-card:hover p{
	color: #fff;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-advantages .cc-advantages-container .cc-link {
	text-align: center;
	text-transform: uppercase;
	color: var(--secondary-color);
	font-weight: 600;
	display: block;
	padding: 24px 0;
}

.cc-solutions {
	text-align: center;
}

.cc-solutions h2 {
	margin-bottom: 40px;
}

.cc-solutions p {
	padding: 0 80px;
	margin-bottom: 40px;
}

.cc-solutions .cc-solutions-cards-main {
	display: flex;
	flex-wrap: wrap;
    gap: 24px;
}

.cc-solutions .cc-solutions-cards-main .cc-solutions-card {
	background: #eef4f6;
	padding: 24px 16px;
	border-radius: 8px;
	flex: 1 21%;
	display: flex;
	align-items: center;
}

.cc-solutions .cc-solutions-cards-main .cc-solutions-card:hover {
	background: var(--secondary-color);
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-solutions .cc-solutions-cards-main .cc-solutions-card h5 {
	margin: auto;
	font-weight: 700;
	font-size: 24px;
	color: var(--secondary-color);
}

.cc-solutions .cc-solutions-cards-main .cc-solutions-card:hover h5 {
	color: #fff;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

footer {
	background: var(--secondary-color);
	padding: 80px 0 0;
}

footer > .center > .row {
	padding-bottom: 80px;
}

footer h2 {
	color: #fff;
	font-size: 36px;
	text-align: left;
	margin-bottom: 64px;
	font-weight: 700;
}

footer h2 span {
	color: #DBF343;
	font-size: inherit;
}

footer .cc-footer-info {
	padding-right: 80px;
}

footer .cc-footer-info > img {
	margin-bottom: 40px;
}

footer .cc-footer-info .cc-info-main p {
	margin-bottom: 24px;
	color: #fff;
	font-size: 20px;
}

footer .cc-footer-info .cc-info-main p * {
	color: inherit;
	font-size: inherit;
}

footer .cc-footer-info .cc-info-main p span {
	margin-right: 16px;
	padding-right: 16px;
	border-right: 1px solid #fff;
}

footer .cc-footer-info .cc-info-main p span:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}


footer .cc-form-container .form-control,
footer .cc-form-container button{
	border: none;
	outline: none;
	box-shadow: none;
}

footer .cc-form-container .form-control {
	padding: 16px;
	font-size: 18px;
}

.cc-align-right {
	text-align: right;
}

.footer {
	background: var(--primary-color);
	text-align: center;
	padding: 24px 0;
}

.footer p {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin: 0;
}




.showMovil,
.responsive-menu {
	display: none;
}

body.overflowHidden {
	overflow: hidden;
}

#form-messages {
	color: var(--primary-color);
	font-weight: 600;
}

footer .center {
	position: relative;
}

footer .center .cc-languages {
	position: absolute;
	right: 0;
	top: 0;
}

footer .center .cc-languages a {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	margin: 0 16px;
	padding: 0 16px;
	border-right: 1px solid #fff;
}

footer .center .cc-languages a:last-child {
	margin: 0;
	padding: 0;
	border-right: none;
}

.responsive-menu .cc-languages {
	position: absolute;
	left: 24px;
	bottom: 32px;
}

.responsive-menu .cc-languages a {
	display: inline-block;
	text-decoration: none;
	color: var(--secondary-color);
	font-weight: 700;
	margin: 0 16px;
	padding: 0 16px;
	border-right: 1px solid var(--secondary-color);
}

.responsive-menu .cc-languages a:last-child {
	margin: 0;
	padding: 0;
	border-right: none;
}

/***********************/
/********CHINESE********/
/***********************/
header.cn-header {
	background-image: url("../img/cn-banner.jpg");
	background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 300px 0 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	position: relative
}

.cn-gradient {
	background: rgb(7,71,81);
    background: linear-gradient(0deg, rgba(7,71,81,1) 0%, rgba(7,71,81,0) 100%);
	mix-blend-mode: hard-light;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.cn-header .center {
	position: relative;
	z-index: 2;
}

.cc-about-cn {
	text-align: center;
}

.cc-about-cn img {
	border-radius: 8px;
}

.cc-solutions .cc-solutions-cards-main.cc-solutions-cn .cc-solutions-card {
	display: block;
	background: none;
    border-radius: 0;
    padding: 0;
    flex: 1 40%;
}

.cc-solutions .cc-solutions-cards-main.cc-solutions-cn .cc-solutions-card h5 {
	background: #eef4f6;
    padding: 24px 16px;
    border-radius: 8px;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-solutions .cc-solutions-cards-main.cc-solutions-cn .cc-solutions-card:hover h5 {
	background: var(--secondary-color);
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-solutions .cc-solutions-cards-main.cc-solutions-cn .cc-solutions-card p {
	padding: 24px 16px;
	margin-bottom: 0;
}

.cc-footer-cn form {
	margin-top: -40px;
}

/***********************/
/***********************/



/**********************/
/********PEOPLE********/
/**********************/

.cc-people-body {
	background: var(--secondary-color);
}

.cc-people-body * {
	color: #fff;
	text-align: center;
}

.cc-people-body header {
	height: 228px;
	padding: 0;
	border-bottom: 10px solid var(--primary-color);
	background-image: url("../img/tp-bg.png");
	background-color: transparent;
	background-size: 400px;
	background-position: center;
	background-repeat: repeat;
}

.cc-people-body img {
	width: 200px;
}

.cc-people-body section {
	padding: 0;
}

.cc-people-body .cc-people-info {
	margin-top: -100px;
}

.cc-people-body .cc-people-info .cc-people-photo img {
	border-radius: 200px;
	margin-bottom: 32px;
}

.cc-people-body .cc-people-info .cc-people-name h1 {
	font-size: 32px;
	color: #DBF343;
	font-weight: 800;
	letter-spacing: 2px;
}

.cc-people-body .cc-people-info .cc-people-name h2 {
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 4px;
}

.cc-people-body .cc-people-info .cc-people-buttons {
	padding: 24px 0 48px;
}

.cc-people-body .cc-people-info .cc-people-buttons .cc-btn {
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 64px;
	margin: 0 8px;
	display: inline-block;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-people-body .cc-people-info .cc-people-buttons .cc-btn:hover {
	background: var(--primary-color);
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-people-body .cc-people-info .cc-people-buttons .cc-btn i {
	font-size: 25px;
	color: var(--secondary-color);
	line-height: 50px;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-people-body .cc-people-info .cc-people-buttons .cc-btn:hover i {
	color: #fff;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.cc-people-body .cc-contact-info {
	padding: 32px 0 48px;
	width: 100%;
	max-width: 340px;
	margin: 0 auto;
}

.cc-people-body .cc-contact-info .cc-contact-main i {
	font-size: 32px;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.cc-people-body .cc-contact-info .cc-contact-main h3 {
	font-size: 22px;
	font-weight: 600;
}

.cc-people-body .cc-contact-info .cc-contact-main div.divider {
	width: 100%;
	height: 1px;
	position: relative;
	background: #DBF343;
	opacity: 1;
	margin: 24px auto;
}

.cc-people-body .cc-contact-info .cc-contact-main div.divider:before {
	content: " ";
	width: 5px;
	height: 5px;
	position: absolute;
	background: #DBF343;
	top: -2px;
	left: -2px;
	border-radius: 5px;
}

.cc-people-body .cc-contact-info .cc-contact-main div.divider:after {
	content: " ";
	width: 5px;
	height: 5px;
	position: absolute;
	background: #DBF343;
	top: -2px;
	right: -2px;
	border-radius: 5px;
}

.cc-people-body .cc-contact-info .cc-contact-main .cc-info,
.cc-people-body .cc-contact-info .cc-contact-main .cc-info * {
	text-align: left;
}

.cc-people-body .cc-contact-info .cc-contact-main .cc-info .cc-info-item {
	margin-bottom: 8px;
}

.cc-people-body .cc-contact-info .cc-contact-main .cc-info .cc-info-item i {
	font-size: 20px;
	margin-right: 8px;
}

.cc-people-body .cc-contact-info img {
	margin-top: 48px;
}



/**********************/
/**********************/


@media (max-width: 1200px) {
	header p {
		padding: 0 200px;
	}
}

@media (max-width: 1024px) {
    header {
		padding: 200px 0 150px;
	}
	
	.cc-main-menu .cc-menu li a {
		font-size: 16px;
	}
	
	#cc-why .cc-why-container .cc-why-content {
		padding-right: calc(var(--bs-gutter-x) * .5);
		margin-bottom: 40px;
	}
	
	#cc-why .cc-why-container .cc-accordion-main {
		padding-left: calc(var(--bs-gutter-x) * .5);
	}
}



@media (max-width: 820px) {
	.showMovil {
		display: block;
	}

	.hideMovil {
		display: none;
	}
	
	.cc-main-menu .cc-logo img {
		height: 50px;
	}
	
	.cc-main-menu .center {
		position: relative;
	}
	
	.mobile-nav {
	    display: block;
	    padding: 0;
	    position: absolute;
	    width: 30px;
	    height: 25px;
	    z-index: 99999;
	    top: 15px;
	    right: 0;
	}

	.menu-btn {
	    width: 30px;
	    position: absolute;
	    padding: 0;
	    height: 25px;
	    left: 0;
	}

	.menu-btn span {
	    display: block;
	    width: 30px;
	    height: 3px;
	    margin: 8px 0;
	    border-radius: 10px;
	    background: #fff;
	    z-index: 99;
		-webkit-transition: all .2s;
		-moz-transition: all .2s;
		-ms-transition: all .2s;
		-o-transition: all .2s;
		transition: all .2s;
	}
	
	.menu-btn span.first {
		margin-top: 0;
	}
	.menu-btn span.last {
		margin-bottom: 0;
	}
	
	.cc-main-menu.menuScroll .menu-btn span,
	.cc-main-menu.menuExpanded .menu-btn span {
		background: var(--secondary-color);
	}

	.menu-btn.menuActive {
		height: 30px;
	}

	.menu-btn.menuActive span {
		position: relative;
		margin:0;
	}

	.menu-btn.menuActive span.first {
		transform: rotate(45deg);
		top: 8px;
		-webkit-transition: all .2s;
		-moz-transition: all .2s;
		-ms-transition: all .2s;
		-o-transition: all .2s;
		transition: all .2s;
	}
	
	.menu-btn.menuActive span.middle {
		display: none;
	}

	.menu-btn.menuActive span.last {
		transform: rotate(-45deg);
		top: 6px;
		-webkit-transition: all .2s;
		-moz-transition: all .2s;
		-ms-transition: all .2s;
		-o-transition: all .2s;
		transition: all .2s;
	}

	.responsive-menu ul {	
		list-style: none;
		position: absolute;
		top: 50%;
		margin-top: -157px;
		margin-bottom: 0;
	}

	.responsive-menu ul li {
		margin: 40px 0;
	}

	.responsive-menu ul li a {
		font-size: 27px;
		font-weight: 600;
		color: var(--secondary-color);
		text-decoration: none;
	}
	
	.responsive-menu ul li a.cc-cta {
		color: #fff;
	}

	.expand {
	    display: block;
	}

	.responsive-menu, .responsive-menu * {
		transition: all 0.35s ease-in-out;
	}

	.responsive-menu.expand {
		background: rgba(255,255,255,0.8);
		backdrop-filter: blur(5px);
		width: 100%;
		min-height: 100vh;
		overflow: auto;
		margin: 0;
		left: 0;
		right: 0;
		position: fixed;
		bottom: 0;
		right: 0;
		z-index: 998;
	}
	
	.cc-advantages .cc-advantages-container h2 {
		font-size: 36px;
	}
	
	.cc-advantages .cc-advantages-container .cc-cards-main .col-lg-4 {
		margin-bottom: 24px;
	}
	
	.cc-advantages .cc-advantages-container .cc-cards-main .col-lg-4:first-child {
		margin-top: -100px;
	}
	
	.cc-advantages .cc-advantages-container .cc-cards-main .cc-card {
		margin-top: 0;
		text-align: center;
		width: 100%;
	}
	
	.cc-advantages .cc-advantages-container .cc-cards-main .cc-card h5 {
		margin-bottom: 0;
	}
	
	.cc-advantages .cc-advantages-container .cc-cards-main .cc-card p {
		display: none;
	}
	
	.cc-advantages .cc-advantages-container .cc-cards-main .cc-card:hover h5 {
		margin-bottom: 24px;
	}
	.cc-advantages .cc-advantages-container .cc-cards-main .cc-card:hover p {
		display: block;
	}
	
	.cc-solutions .cc-solutions-cards-main .cc-solutions-card {
		flex: 1 40%;
	}
	
	footer .cc-footer-info,
	footer h2{
		text-align: center;
	}
	footer .cc-footer-info {
		padding-right: calc(var(--bs-gutter-x) * .5);
	}
	
	footer .center .cc-languages {
		position: relative;
		margin-top: 8px;
	}
}

@media (max-width: 640px) {

	.cc-main-menu .cc-logo img {
		height: 40px;
	}
	
	.mobile-nav {
		top: 7px;
	}
	
	header {
		padding: 150px 0 80px;
	}
	
	header h1 {
		padding: 0 40px;
		font-size: 32px;
	}
	
	header p {
		padding: 0 24px;
	}
	
	.cc-about-img {
		order: 2;
		text-align: center
	}
	
	.cc-about-content {
		padding: 0 calc(var(--bs-gutter-x) * .5) !important;
		order: 1;
	}
	
	.cc-about-img img {
		width: 85%;
	}
	
	.cc-advantages .cc-advantages-container .cc-cards-main {
		background: #fff;
		padding: 0 24px 24px;
	}
	
	footer .cc-form-container .form-control, footer .cc-form-container button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	
	header {
		padding: 120px 0 80px;
	}
	
	h2 {
    	font-size: 32px;
	}
	
	header h1 {
		padding: 0;
	}
	
	section {
		text-align: center;
	}
	
	#cc-why .cc-why-container,
	.cc-accordion .accordion-item .accordion-button,
	.cc-accordion .accordion-item .accordion-body {
		padding: 24px;
	}
	
	#cc-why .cc-why-container .cc-why-content {
		text-align: center;
	}
	
	#cc-why .cc-why-container .cc-why-content h3 {
		font-size: 24px;
	}
	
	.cc-accordion .accordion-item .accordion-body p {
		text-align: left;
	}
	
	.cc-advantages .cc-advantages-container h2 {
		padding: 40px 20px 144px;
		font-size: 32px;
	}
	
	.cc-solutions p {
		padding: 0;
	}
	
	.cc-solutions .cc-solutions-cards-main .cc-solutions-card {
		flex: 1 100%;
	}
}

























































