/*
Theme Name: Strive Women CARE Perú
Theme URI: https://emprendedoras.care.org.pe
Author: Cocoa Perú
Author URI: https://cocoa.pe/
Description: Plantilla desarrollada para uso de Strive Women CARE Perú
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

:root{
	--font-family: "Roboto", sans-serif;
	--font-headlines: "Anton", sans-serif;
	--link: inherit;
	--naranja: #EB7100;
	--indigo: #241E4E;
	--morado: #5C2163;
	--lila: #BF7CB5;
	--rosa: #FFD1D3;
	--rojo: #E10917;
	--black: #090015;
	--gris: #B0AEB4;
	--light: #F9F6F4;
	--white: #ffffff;
	--border: #eaeaea;

	--gradient-dark: linear-gradient(45deg, rgba(36, 30, 78, 1) 0%, rgba(9, 0, 21, 1) 100%);
	--gradient-morado: radial-gradient(circle,rgba(92, 33, 99, 1) 0%, rgba(36, 30, 78, 1) 100%);
	--gradient-diagonal: linear-gradient(45deg,  rgba(92,33,99,1) 0%,rgba(36,30,78,1) 100%);

	--header-height: 80px;
	--col: 110px;
	--container: 1320px;
}
@media only screen and (max-width: 1399px){ :root{ --col: 95px; --container: 1140px; } }
@media only screen and (max-width: 1199px){ :root{ --col: 79.98px; --container: 960px; } }
@media only screen and (max-width: 991px){ :root{ --col: 60px; --container: 710px; } }
@media only screen and (max-width: 767px){ :root{ --col: 45px; --container: 540px; --header-height: 70px } }
@media only screen and (max-width: 575px){ :root{ --col: calc(100vw/12); --container: 100vw; } }

html{
	font-size: 18px;
}

body, table, td{
	font-family: var(--font-family);
	line-height: 1.4;
	color: var(--black);
	font-weight: 400;
	font-size: 1rem;
	font-optical-sizing: auto;
	font-style: normal;
}
a{
	color: var(--link);
	text-decoration: underline;
	text-decoration-color: var(--naranja);
	text-decoration-thickness: .11111em;
	text-underline-offset: .2222em;
	transition: all .2s ease;
}
a:hover{
	color: var(--morado);
	text-decoration-color: var(--morado);
}

small, .small{ font-size: 88.889%; }

b, strong{ font-weight: 700; }

h1, .h1{ font-size: 5rem; }
h2, .h2{ font-size: 3.77778rem; }
h3, .h3{ font-size: 2.5rem; }
h4, .h4{ font-size: 2rem; }
h5, .h5{ font-size: 1.5rem; }
h6, .h6{ font-size: 1.2222rem; }

.has-medium-font-size{ font-size: 1.2222rem !important; }
.has-small-font-size{ font-size: 0.88889rem !important; }

.font-thin{ font-weight: 100;}
.font-extralight{ font-weight: 200;}
.font-light{ font-weight: 300;}
.font-regular{ font-weight: 400;}
.font-medium{ font-weight: 500;}
.font-semibold{ font-weight: 600;}
.font-bold{ font-weight: 700;}
.font-extrabold{ font-weight: 800;}
.font-black{ font-weight: 900;}

.font-family{ font-family: var(--font-family) !important;}
.font-headlines{ font-family: var(--font-headlines) !important;}

.font-headlines strong{ font-weight: 400 !important;}

h1,h2,h3,h4,h5,h6{ font-family: var(--font-headlines); font-weight: 400; margin-bottom: 1rem; line-height: 1.15;}

ul,ol{
	margin-bottom: 1.5rem;
}

ol:last-child,
ul:last-child,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child{
	margin-bottom: 0 !important;
}

p:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child{
	margin-top: 0 !important;
}

p{
	margin-bottom: 1rem;
}

ul, ol{
	padding-left: 1.25em;
}

.overflow-hidden{
	overflow: hidden;
}

.wp-block-separator,
hr{
	border: 0 solid rgba(0,0,0,.4);
	border-top-width: 1px;
}

/*------------------------------ btn-trigger -------------------------*/

.btn-trigger{
	position: relative;
	display: block;
	min-width: 2rem;
	height: 2rem;
	border: 0 none;
	background-color: transparent;
	z-index: 100;
}

.btn-trigger span{
	display: block;
	position: absolute;
	width: 2rem;
	height: 2px;
	background-color: var(--white);
	left: calc(50% - 1rem);
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-ms-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all 0.1s ease;
	z-index: 9;
	border-radius: 0;
}
.btn-trigger span:nth-child(1){
	top: calc(50% - .6rem);
}
.btn-trigger span:nth-child(2){
	bottom: calc(50% - .6rem);
}

.btn-trigger span:nth-child(3){
	bottom: calc(50% - 1px);
}

.btn-trigger.show span:nth-child(1){
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: calc(50% - 1px);
}
.btn-trigger.show span:nth-child(2){
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	bottom: calc(50% - 1px);
}
.btn-trigger.show span:nth-child(3){
	width: 0;
	opacity: 0;
}

body:not(.home) .btn-trigger span,
body.scrolled .btn-trigger span,
.site_header.show .btn-trigger span{
	background-color: var(--indigo);
}

/*------------------------------ Forms -----------------------------*/

.label,
label{
	font-size: 1rem;
	margin-bottom: .25rem;
	font-weight: 600;
}

.form-select,
.form-control{
	height: 2.66667rem;
	display: block;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	font-size: 1rem;
	color: var(--black);
	border-radius: .25rem;
	border: 1px solid var(--gris);
	background-color: var(--white);
	padding: .25rem .75rem;
}

.form-select:hover,
.form-control:hover{
	border-color: var(--black);
}

textarea.form-control{
	height: auto;
	padding-top: .75rem;
}

input::-webkit-input-placeholder{color: var(--gris);}
input::-moz-placeholder{color: var(--gris);}
input:-ms-input-placeholder{color: var(--gris);}
input::-ms-input-placeholder{color: var(--gris);}
input::placeholder{color: var(--gris);}

.dropdown-toggle,
.form-select{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23999999' viewBox='0 0 16 16'%3E%3Cpath d='M0,4.9l1.8-1.8,6.2,6.2,6.2-6.2,1.8,1.8-8,8L0,4.9Z'/%3E%3C/svg%3E");
	background-position: right 1rem center;
	background-repeat: no-repeat;
	background-size: .8889rem auto;
}
.dropdown-toggle.show,
.form-select:focus,
.form-select:active{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 16 16'%3E%3Cpath d='M16,11.1l-1.8,1.8-6.2-6.2L1.8,12.9l-1.8-1.8L8,3.1l8,8Z'/%3E%3C/svg%3E");
}
.wpcf7-radio{
	display: flex;
	gap: 2rem;
}
.wpcf7-radio .wpcf7-list-item{
	margin: 0;
}
.wpcf7-radio .wpcf7-list-item,
.form-check{
	display: block;
	min-height: 1.5rem;
	padding-left: 1.5em;
}
.wpcf7-radio .wpcf7-list-item input,
.form-check-input{
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	margin-top: .175em;
	vertical-align: top;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: var(--white);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 16 16'%3E%3Cpath d='M1,8.604l1.75-1.75,3.097,3.097,7.403-7.403,1.75,1.75L5.847,13.451,1,8.604Z'/%3E%3C/svg%3E"); 
	background-repeat: no-repeat;
	background-position: center;
	background-size: .88889rem;
	border: 1px solid var(--gris);
	border-radius: 4px;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}
.wpcf7-radio .wpcf7-list-item input,
.form-check .form-check-input{
	float: left;
	margin-left: -1.5em;
}

.wpcf7-radio .wpcf7-list-item input:checked,
.form-check-input:checked{
	background-color: var(--black);
	border-color: var(--black);
}
.wpcf7-radio .wpcf7-list-item:hover input:checked,
.form-check:hover .form-check-input{
	border-color: var(--black);
}

.wpcf7-radio .wpcf7-list-item input[type=radio],
.form-check-input[type=radio]{
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3C/svg%3E"); 
	background-size: 60% auto;
}
.wpcf7-radio .wpcf7-list-item input[type=radio]:checked,
.form-check-input[type=radio]:checked{
	background-color: var(--white);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3C/svg%3E"); 
	border-color: var(--black);
}

/*------------------------------ VIDEO RESPONSIVE -----------------------------*/

.ratio {
	position: relative;
	width: 100%;
}
.ratio::before {
	display: block;
	padding-top: var(--bs-aspect-ratio);
	content: "";
}
.ratio > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ratio-1x1{--bs-aspect-ratio: 100%;}
.ratio-4x3{--bs-aspect-ratio: 75%;}
.ratio-16x9{--bs-aspect-ratio: 56.25%;}
.ratio-21x9{--bs-aspect-ratio: 42.8571428571%;}

/*------------------------------ MODAL -----------------------------*/

.modal {
	--bs-modal-width: 500px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: .5rem;
	pointer-events: none;
}
.modal.fade .modal-dialog {
	transition: transform 0.3s ease-out;
	transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
		transition: none;
	}
}
.modal.show .modal-dialog {
	transform: none;
}
.modal.modal-static .modal-dialog {
	transform: scale(1.02);
}

.modal-dialog-scrollable {
	height: calc(100% - .5rem * 2);
}
.modal-dialog-scrollable .modal-content {
	max-height: 100%;
	overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
	overflow-y: auto;
}

.modal-dialog-centered {
	display: flex;
	align-items: center;
	min-height: calc(100% - .5rem * 2);
}

.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: transparent;
	background-clip: padding-box;
	outline: 0;
	border-radius: .75rem;
	overflow: hidden;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: #000;
}
.modal-backdrop.fade {
	opacity: 0;
}
.modal-backdrop.show {
	opacity: .9;
}

@media (min-width: 576px) {
	.modal {
		--bs-modal-margin: 1.75rem;
		--bs-modal-box-shadow: var(--bs-box-shadow);
	}
	.modal-dialog {
		max-width: var(--bs-modal-width);
		margin-right: auto;
		margin-left: auto;
	}
	.modal-sm {
		--bs-modal-width: 300px;
	}
}
@media (min-width: 992px) {
	.modal-lg,
	.modal-xl {
		--bs-modal-width: 920px;
	}
}
@media (min-width: 1200px) {
	.modal-xl {
		--bs-modal-width: 1140px;
	}
}

.fade {
	transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
	.fade {
		transition: none;
	}
}
.fade:not(.show) {
	opacity: 0;
}

.collapse:not(.show) {
	display: none;
}

.collapsing {
	height: 0;
	overflow: hidden;
	transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
	.collapsing {
		transition: none;
	}
}
.collapsing.collapse-horizontal {
	width: 0;
	height: auto;
	transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
	.collapsing.collapse-horizontal {
		transition: none;
	}
}

button.btn-close{
	background-color: transparent;
	border: 0 none;
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0;
	opacity: .5;
}
button.btn-close svg{
	width: 1.5rem;
	height: auto;
}
button.btn-close:hover{
	opacity: 1;
}

/*------------------------------ DROPDOWN -----------------------------*/
.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
	position: relative;
}

.dropdown-toggle {
	white-space: nowrap;
	border: 1px solid var(--gris) !important;
	background-color: var(--white) !important;
	border-radius: 6px !important;
	justify-content: flex-start !important;
	text-align: start !important;
	padding-left: .75rem !important;
}
.dropdown-toggle:hover{
	border-color: var(--indigo) !important;
}

.dropdown-menu {
	--bs-dropdown-zindex: 1000;
	position: absolute;
	z-index: var(--bs-dropdown-zindex);
	display: none;
	width: 100%;
	margin: 0 !important;
	font-size: 1rem;
	text-align: left;
	list-style: none;
	background-color: var(--white);
	background-clip: padding-box;
	border: 1px solid var(--gris);
	list-style: none;
	padding: 0;
	max-height:420px;
	overflow: hidden;
	overflow-y: auto;
}
.dropdown-menu[data-bs-popper] {
	top: 100%;
	left: 0;
	margin-top: 0 !important;
}

.dropdown-item{
	display: block;
	padding: .25rem .75rem;
	text-decoration: none;
	color: var(--black);
}
.dropdown-item:hover{
	background-color: var(--indigo);
	color: var(--white);
}

.dropdown-menu.show {
	display: block;
}
/*------------------------------ TABS -----------------------------*/

.tab-content > .tab-pane {
	display: none;
}
.tab-content > .active {
	display: block;
}
.nav-tabs{
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 1.5rem;
	justify-content: center;
}
.nav-tabs .nav-item:not(:last-child){
	padding-right: 1.5rem;
	position: relative;
}
.nav-tabs .nav-item:not(:last-child)::after{
	content: '';
	display: block;
	width: 1.5rem;
	height: 3px;
	background-color: var(--indigo);
	position: absolute;
	top: calc(50% - 2px);
	right: 0;
}
.nav-tabs .nav-item a{
	display: block;
	padding: .15rem 1rem;
	font-size: 1.2222rem;
	font-family: var(--font-family);
	text-transform: none;
	font-weight: 700;
	color: var(--indigo);
	text-decoration: none;
	opacity: .5;
	white-space: nowrap;
}
.nav-tabs .nav-item a.active{
	opacity: 1;
	text-decoration: underline;
	text-decoration-color: var(--naranja);
}

.img-fluid{
	max-width: 100%;
	height: auto;	
}

.img-fit{
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.rounded{
	border-radius: .875rem;
}

.text-uppercase{text-transform: uppercase !important;}
.text-underline{ text-decoration: underline !important; }
.w-100{width: 100%;}
.h-100{height: 100%;}
.position-relative{	position: relative;}
.position-absolute{	position: absolute;}

.text-start {text-align: left !important;}
.text-end {text-align: right !important;}
.text-center { text-align: center !important;}

@media (min-width: 576px) {
	.text-sm-start {text-align: left !important;}
	.text-sm-end {text-align: right !important; }
	.text-sm-center {text-align: center !important;}
}
@media (min-width: 768px) {
	.text-md-start {text-align: left !important;}
	.text-md-end {text-align: right !important;}
	.text-md-center {text-align: center !important;}
}
@media (min-width: 992px) {
	.text-lg-start {text-align: left !important;}
	.text-lg-end {text-align: right !important;}
	.text-lg-center {text-align: center !important;}
}
@media (min-width: 1200px) {
	.text-xl-start {text-align: left !important;}
	.text-xl-end {text-align: right !important;}
	.text-xl-center {text-align: center !important;}
}
@media (min-width: 1400px) {
	.text-xxl-start {text-align: left !important;}
	.text-xxl-end {text-align: right !important;}
	.text-xxl-center {text-align: center !important;}
}

.py,.pt{ padding-top: 5rem; }
.py,.pb{ padding-bottom: 5rem; }
.my,.mt{ margin-top: 5rem; }
.my,.mb{ margin-bottom: 5rem; }

.text-naranja{color: var(--naranja) !important;}
.text-indigo{color: var(--indigo) !important;}
.text-morado{color: var(--morado) !important;}
.text-lila{color: var(--lila) !important;}
.text-rosa{color: var(--rosa) !important;}
.text-rojo{color: var(--rojo) !important;}
.text-black{color: var(--black) !important;}
.text-gris{color: var(--gris) !important;}
.text-light{color: var(--light) !important;}
.text-white{color: var(--white) !important;}
.text-border{color: var(--border) !important;}

.has-white-color a:hover{
	color: var(--naranja) !important;
	text-decoration-color: var(--naranja) !important;
}

.bg-naranja{background-color: var(--naranja) !important;}
.bg-indigo{background-color: var(--indigo) !important;}
.bg-morado{background-color: var(--morado) !important;}
.bg-lila{background-color: var(--lila) !important;}
.bg-rosa{background-color: var(--rosa) !important;}
.bg-rojo{background-color: var(--rojo) !important;}
.bg-black{background-color: var(--black) !important;}
.bg-gris{background-color: var(--gris) !important;}
.bg-light{background-color: var(--light) !important;}
.bg-white{background-color: var(--white) !important;}
.bg-border{background-color: var(--border) !important;}
.bg-gradient-dark{background: var(--gradient-dark) !important;}
.bg-gradient-morado{background: var(--gradient-morado) !important;}
.bg-gradient-diagonal{background: var(--gradient-diagonal) !important;}

.text-truncate{overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.stretched-link::after{ position: absolute;top: 0;right: 0;bottom: 0;left: 0;z-index: 1;content: "";}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
	padding-right: 15px;
	padding-left: 15px;
}
.row:not([class*=gx]):not([class*=g-]){
	--bs-gutter-x: 30px;
}

@media (min-width: 1400px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
		max-width: 1350px;
	}
}

.main_menu .cta a,
.wp-block-button__link,
.btn{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	line-height: 1.2;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	border: 0 none;
	background-color: transparent;
	min-height: 2.66667rem;
	padding: .25rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	z-index: 1;
	gap: 0 0.35em;
	border-radius: 50em;
	color: inherit;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.main_menu .cta a,
.wp-block-button__link,
.btn:not(.stretched-link){
	overflow: hidden;
	position: relative;
}

.btn-indigo::before,
.main_menu .cta a::before,
.wp-block-button__link::before,
.btn-naranja::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--indigo);
	z-index: -1;
	clip-path: circle(0% at 50% 50%);
	transition: all .3s ease;
}

.is-style-btn-neg .wp-block-button__link::before,
body.home .main_menu .cta a::before,
.btn-naranja.btn-neg::before{
	background-color: var(--white);
}
.btn-indigo::before{
	background-color: var(--morado);
}

.main_menu .cta a,
.wp-block-button__link,
.btn-naranja{
	background-color: var(--naranja);
	color: var(--white);
}

.btn-indigo:hover,
.main_menu .cta a:hover,
.wp-block-button__link:hover,
.btn-naranja:hover{
	color: var(--white);
}

.is-style-btn-neg .wp-block-button__link:hover,
body.home .main_menu .cta a:hover,
.btn-naranja.btn-neg:hover{
	color: var(--indigo);
}

.btn-indigo:hover::before,
.main_menu .cta a:hover::before,
.wp-block-button__link:hover::before,
.btn-naranja:hover::before{
	clip-path: circle(100% at 50% 50%);
}

@media (prefers-reduced-motion: reduce) {
	.btn {
		transition: none;
	}
}

body.scrolled .main_menu .cta a::before{
	background-color: var(--indigo);
}
body.scrolled .main_menu .cta a:hover{
	color: var(--white);
}

.btn-show{
	padding: 0;
	min-height: 0;
	border-radius: 0;
	gap: 0;
}
.btn-show svg{
	width: 1.875rem;
	height: 1.875rem;
	transition: transform .3s ease;
}

.btn-show span{
	border-bottom: 3px solid var(--naranja);
}

.btn-show:hover{
	color: var(--morado);
}
.btn-show:hover svg{
	transform: rotate(45deg);
}
.btn-show:hover span{
	border-bottom-color: var(--morado);
}

.btn-indigo{
	background-color: var(--indigo);
	color: var(--white);
}

/*------------------------------ Responsive -----------------------------*/
@media only screen and (max-width: 1499px){
	html{
		font-size: 16px;
	}

	h1, .h1{ font-size: 4.5rem; }
	h2, .h2{ font-size: 3.25rem; }
	h3, .h3{ font-size: 2.5rem; }
	h4, .h4{ font-size: 2rem; }
	h5, .h5{ font-size: 1.5rem; }
	h6, .h6{ font-size: 1.2222rem; }
}
@media only screen and (max-width: 1399px){

	html{
		font-size: 15px;
	}

}
@media only screen and (max-width: 1199px){
	html{
		font-size: 18px;
	}
	.nav-tabs{
		justify-content: flex-start;
		overflow: hidden;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.nav-tabs::-webkit-scrollbar {
		display: none;
	}
}
@media only screen and (max-width: 991px){
	html{
		font-size: 16px;
	}
	small, .small{
		font-size: 100%;
	}
	.has-small-font-size{
		font-size: 1rem !important;
	}
}
@media only screen and (max-width: 767px){

	.py,.pt{ padding-top: 4rem; }
	.py,.pb{ padding-bottom: 4rem; }
	.my,.mt{ margin-top: 4rem; }
	.my,.mb{ margin-bottom: 4rem; }

	.btn-show span{
		border-bottom-width: 2px;
	}
}
@media only screen and (max-width: 575px){
	html{
		font-size: 15px;
	}

	h1, .h1{ font-size: 3.5rem; }
	h2, .h2{ font-size: 3rem; }
	h3, .h3{ font-size: 2.25rem; }
	h4, .h4{ font-size: 1.75rem; }
	h5, .h5{ font-size: 1.5rem; }
	h6, .h6{ font-size: 1.1111rem; }

	.py,.pt{ padding-top: 3.42rem; }
	.py,.pb{ padding-bottom: 3.42rem; }
	.my,.mt{ margin-top: 3.42rem; }
	.my,.mb{ margin-bottom: 3.42rem; }

}