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

}

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

	:root{
		--wp--preset--spacing--40: 30px;
	}

	header {
		height: 75px;
	}

	body:not(.home) main{
	    padding-top: 75px;
	}

	header #btn-menu {
		z-index: 999;
		width: 32px;
		height: 28px;
		padding: 0;
		border: 0;
		background-color: transparent;
		display: flex;
		gap: 8px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: relative;
		cursor: pointer;
	}

	header.transparent #btn-menu span,
	header.transparent #btn-menu::before,
	header.transparent #btn-menu::after{
	  background-color: white;
	}

	header #btn-menu span,
	header #btn-menu::before,
	header #btn-menu::after{
	  background-color: var(--dark);
	}

	header #btn-menu span,
	header #btn-menu::before,
	header #btn-menu::after {
		content: '';
		width: 100%;
		height: 2px;
		transition: all 280ms ease;
		position: absolute;
		left: 0;
	}

	header #btn-menu::before {
		top: 5px;
	}

	header #btn-menu::after {
		bottom: 5px;
	}

	header.open #btn-menu span {
		background-color: white;
		opacity: 0;
	}

	header.open #btn-menu::before {
		background-color: white;
		transform: rotate(45deg);
		top: 50%;
	}

	header.open #btn-menu::after {
		background-color: white;
		transform: rotate(-45deg);
		top: 50%;
	}

	header .menu-principal-container {
		right: -100%;
		display: flex;
		position: fixed;
		background-color: var(--dark);
		top: 0;
		width: 100%;
		min-height: 100vh;
		align-items: end;
		justify-content: start;
		transition: all 300ms ease;
		flex-direction: column;
		padding: var(--wp--preset--spacing--40);
	}

	header .menu {
		padding-top: 80px;
		gap: 30px;
		display: flex;
		flex-direction: column;
		align-items: end;
		justify-content: center;
	}

	header .menu li a{
		color: white;
	}

	header li {
		list-style: none;
		font-size: 35px;
		position: relative;
	}
		
	header .menu li a:hover,
	header li.current-menu-item a{
	    color: var(--pink);
	}

	header #logo, header #logo_b {
		width: 220px;
	}

	header.open .menu-principal-container {
		right: 0;
	}

}

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

	body.home .wp-block-cover:first-child span.wp-block-cover__background{
		opacity: 0.5 !important;
	}
	.post-blog{
	    flex-direction: column;
	    gap: 50px; 
	}
	.post-blog .post-sidebar {
		max-width: 100%;
	}
}

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

	:root{
		--wp--preset--spacing--40: 20px;
	}

	.legal-mv{
		display: flex;
		justify-content: center;
		align-items: baseline;
	}

	.hero-mv, .wp-block-cover {
		min-height: 70vh !important;
	}

	.seccion-mv {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}

	.colum-mv {
		padding: 10vw 8vw !important;
	}

	.colum-mv-none{
		display: none;
	}

	.titleimg-mv {
		width: 200px;
	}

	.wpcf7 form .wpcf7-acceptance > span {
	    margin-right: 5px;
	}

	.contact-form-columns {
		flex-direction: column;
		row-gap: 15px;
	}

	.desingby {
	    padding: 0px var(--wp--preset--spacing--70);
	}
}