/*
	Theme Name: RedAna
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3
	Text Domain:  html5blank
	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Architects+Daughter|Nunito:400,800&display=swap');

:root {
	--black: #2F3E41;
	--orange: #EE6448;
	--green: #92D050;
	--blue: #00B0F0;
	--white: #FFFFFF;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Nunito', sans-serif;
	line-height: 1.5;
	letter-spacing: .04rem;
	font-size: 1.05rem;
}
h1, h2, h3 {
	font-family: 'Architects Daughter', cursive;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1.6;
    letter-spacing: .7px;
}
.container {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}
.video-container {
	width: 100%;
}
.video-container iframe {
	width: 100%;
	height: 190px;
}
img {
	display: block;
	width: 100%;
}
.btn a {
	font-family: 'Architects Daughter', cursive;
	padding: .8rem 2rem;
	transition: opacity 300ms ease-in-out;
}
.wp-block-separator {
	width: 90%;
	margin: 5rem auto;
}
ul {
	list-style: none;
}
a {
	text-decoration: none;
	color: var(--blue);
}
.accordion-btn h3,
.annual-report h3,
.bulletins h3,
.press-releases h3,
.international-law h3 {
	font-size: 1.5rem;
}
article {
	z-index: 1;
	position: relative;
}
iframe {
    border: none;
}
@media (min-width: 768px) {
	.btn a:hover {
		opacity: .90;
	}
	body {
		margin-top: 5.4rem;
	}
	.wp-block-separator {
		width: 66%;
		min-width: 1100px;
		margin: 10rem auto;
	}
	.video-container iframe {
		height: auto;
	}
}
@media (max-width: 1400px) {
	body {
		font-size: 1rem;
	}
}
@media (max-width: 1250px) {
	.wp-block-separator {
		width: 90%;
		min-width: auto;
	}
}

/*------------- HEADER -------------*/
#localize-widget.localize-right-top {
	right: 0!important;
	top: 6rem!important;
}
.header .menu-wrap .nav ul{
	font-size: 1rem;
}
.header .menu-wrap .nav ul > li:nth-child(2){
	position: relative;
}
.header .menu-wrap .nav ul > li:nth-child(2)::after,
.header .menu-wrap .nav ul > li:nth-child(5)::after {
	content: '';
	background-image: url(img/up-arrow.png);
	background-size: cover;
	background-position: center center;
	transform: rotate(180deg);
	width: 12px;
	height: 7px;
	display: inline-block;
	position: absolute;
	top: 10px;
	right: -20px;
	filter: invert();
}
.header .menu-wrap .nav ul li:hover > .sub-menu li::after {
	display: none;
}
.header .menu-wrap .nav ul li {
	position: relative;
	width: auto;
}
.header .menu-wrap .sub-menu {
	display: none;
	background-color: var(--black);
	color: var(--white);
	position: static;
	margin-left: 1rem;
}
.header .logo {
	width: 95%;
	margin: 0 auto;
	position: fixed;
	top: 10px;
	left: 10px;
	width: 200px;
	z-index: 9999;
}
.header .menu-wrap {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	display: flex;
	background: #FFF;
    height: 90px;
    width: 100%;
}
.header .menu-wrap .toggler {
	position: absolute;
	top: 0;
	right: 0;
	height: 50px;
	width: 50px;
	z-index: 2;
	cursor: pointer;
	opacity: 0;
}
.header .menu-wrap .hamburger {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1;
	width: 60px;
	height: 60px;
	padding: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, .75);
	border-radius: .3rem;	
}
/* Hamburger lines */
.header .menu-wrap .hamburger > div {
	position: relative;
	width: 100%;
	height: 2px;
	background-color: var(--black);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 400ms ease;
}
.header .menu-wrap .hamburger > div:before,
.header .menu-wrap .hamburger > div:after {
	content: '';
	position: absolute;
	z-index: 1;
	top: -10px;
	width: 100%;
	height: 2px;
	background: inherit;
}
.header .menu-wrap .hamburger > div:after {
	top: 10px;
}
/* toggler animation */
.header .menu-wrap .toggler:checked + .hamburger > div {
	transform: rotate(135deg);
}
/* turn lines into an X */
.header .menu-wrap .toggler:checked + .hamburger > div::before,
.header .menu-wrap .toggler:checked + .hamburger > div::after {
	top: 0;
	transform: rotate(90deg);
}
/* Show Menu */
.header .menu-wrap .toggler:checked ~ .nav {
	transform: translateX(0);
}
.header .menu-wrap .nav {
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--black);
	opacity: .95;
	padding: 2rem;
	height: 100vh;
	width: 75%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	transform: translateX(-100%);
	transition: transform 400ms ease;
	font-size: 1.1rem;
}
.header .menu-wrap .nav .menu-item ul {
	display: none;
}
.header .menu-wrap .nav li {
	list-style: none;
	margin: 2rem 0;
}
.header .menu-wrap .nav a {
	color: var(--white);
	text-decoration: none;
}
.header .menu-wrap .nav .current_page_item {
	font-weight: 700;
	position: relative;
}
.header .menu-wrap .nav .current_page_item::after {
	content: '';
	width: 40px;
	height: 3px;
	background-color: var(--blue);
	position: absolute;
	top: 1.6rem;
	left: 0;
}

.header .up-btn {
    text-decoration: none;
    background: var(--green);
    bottom: 100px;
    right: 25px;
    position: fixed;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    z-index: 9999;
}
.header .up-btn img {
    width: 75%;
}

/*slider*/
.owl-carousel {
	z-index: -1!important;
}
.owl-carousel .owl-nav {
	width: 100%;
    z-index: 99999;
	display: flex;
	text-align: center;
    -webkit-tap-highlight-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	justify-content: space-between;
}
.owl-carousel .owl-dot span {
	width: 15px!important;
	height: 15px!important;
	background-color: var(--white)!important;
	border: .1rem solid var(--blue)!important;
}
.owl-carousel .owl-dot.active span {
	background-color: var(--blue)!important;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	font-size: 5rem!important;
}
.owl-carousel .owl-nav button.owl-prev {
	margin-left: 3rem;
}
.owl-carousel .owl-nav button.owl-next {
	margin-right: 3rem;
}
.owl-carousel {
	margin-top: 6rem!important;
}

/* Arrow BTN */
.call-to-action-arrow-btn {
	display: none;
}

@media (min-width: 768px) {
	.header .menu-wrap {
		height: auto;
		width: auto;
	}
	.header .menu-wrap .sub-menu {
		margin-left: 0;
	}
	.header .menu-wrap .nav .current_page_item::after {
		left: 50%;
		transform: translateX(-50%);
		width: 15px;
	}
	.header .up-btn {
		bottom: 100px;
		right: 50px;
		width: 60px;
    	height: 60px;
	}
	#localize-widget.localize-right-top {
		right: 0!important;
		top: 1.5rem!important;
	}
	.header .menu-wrap .nav ul li:hover > .sub-menu {
		margin-right: 0;
		width: auto;
		display: flex;
		flex-direction: column;
		font-size: .8rem;
		position: absolute;
		top: 20px;
		left: -20px;
		background-color: var(--white);
		padding: 1.5rem;
		padding-top: .5rem;
	}
	.header .menu-wrap .nav ul > li:nth-child(2)::after,
	.header .menu-wrap .nav ul > li:nth-child(5)::after {
		filter: none;
	}
	.nav .sub-menu li {
		display: none;
	}
	.header .menu-wrap .nav ul li:hover > .sub-menu li {
		display: block;
		margin-left: 0;
		margin-top: 1rem;
	}
	.header .logo {
		z-index: 9999;
		margin-left: 5vw;
	}
	.header .menu-wrap .toggler,
	.header .menu-wrap .hamburger {
		display: none;
	}
	.header .menu-wrap .nav {
		transform: translateX(0);
		background-color: var(--white);
		height: auto;
		width: 100%;
		z-index: 99;
	}
	.header .menu-wrap .nav ul {
		display: flex;
		justify-content: flex-end;
		width: 90%;
		margin-right: 4rem;
	}
	.header .menu-wrap .nav ul li {
		margin: 0;
		margin-left: 4vw;
	}
	.header .menu-wrap .nav ul li a {
		color: black;
	}
	.owl-carousel .owl-nav {
		top: 18rem;
	}
	.owl-carousel-slide .owl-dots {
		margin-top: -4rem!important;
		z-index: 9999;
		position: relative;
	}
	.owl-carousel .owl-nav button {
    	text-decoration: none;
    	border-radius: 50%!important;
    	width: 50px;
    	height: 50px;
    	display: flex;
    	align-items: center;
		justify-content: center;
		background: var(--blue)!important;
    	color: #fff!important;
	}
	.owl-carousel .owl-nav button:focus {
		outline: none;
	} 
	.owl-carousel .owl-nav button span {
		line-height: 0!important;
		margin: 0;
		padding: 0;
		align-self: center;
		justify-self: center;
		display: block!important;
		margin-top: -4px;
	}
	.owl-carousel .owl-nav .owl-prev span {
		margin-left: -3px;
	}
	.owl-carousel .owl-nav .owl-next span {
		margin-right: -3px;
	}
	
	/* Arrow BTN */
	.call-to-action-arrow-btn {
		margin-top: 6.5rem;
		position:absolute;
		left:50%;
		transform: translateX(-50%);
		top:650px;
		display: block;
	}
}
@media (min-width: 768px) and (max-width: 1500px) {
	.section-one {
		margin-top: 10rem!important;
	}
	.header .menu-wrap .nav ul {
		font-size: 1rem;
	}
	.header .menu-wrap .nav ul li {
		margin-left: 3vw;
	}
	.call-to-action-arrow-btn {
		margin-top: 6.5rem;
		position:absolute;
		left:50%;
		transform: translateX(-50%) scale(.7);
		top: 400px;
		display: block;
	}
	.owl-carousel .owl-nav {
		top: 13rem;
	}
}
@media (min-width: 768px) and (max-width: 1350px) {
	.header .menu-wrap .nav ul {
		font-size: .8rem;
	}
	.header .menu-wrap .nav ul li {
		margin-left: 2.5vw;
	}
	.header .menu-wrap .nav ul > li:nth-child(2)::after, 
	.header .menu-wrap .nav ul > li:nth-child(5)::after {
		width: 7px;
		height: 4px;
		top: 7px;
		right: -12px;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	.header .logo {
		margin-left: 0;
	}
	.header .menu-wrap .nav {
		font-size: 1rem;
		justify-content: flex-end;
		padding-right: 10%;
	}
	.header .menu-wrap .nav ul {
		margin-right: 0;
	}
	#localize-widget.localize-right-top {
		margin-top: -.25rem!important;
	}
	#localize-widget.localize-right-top a {
		font-size: .8rem!important;
		width: auto!important;
		min-width: 0!important;
		max-width: auto!important;
	}
	#localize-widget.localize-right-top a span {
		display: none;
	}
}
@media (min-width: 768px) and (max-width: 990px) {
	.header .logo {
		width: 120px;
		top: 20px;
	}
	.header .menu-wrap .nav ul li {
		margin-left: 1.75vw;
	}
	.header .menu-wrap .nav a{
		font-size: .7rem;
	}
	.header .menu-wrap .nav {
		padding-right: 80px;
	}
	#localize-active-lang {
		padding: 0 13px!important;
	}
	#localize-widget.localize-right-top {
		margin-top: -.25rem!important;
	}
	#localize-widget.localize-right-top a {
		font-size: .7rem!important;
		width: auto!important;
		min-width: 0!important;
		max-width: auto!important;
	}
	#localize-widget.localize-right-top a span {
		display: none;
	}
}

/*------------- FOOTER -------------*/
footer {
	background-color: var(--black);
	color: var(--white);
	margin-top: 5rem;
}
footer hr {
	width: 90%;
	margin: 0 auto;
	color: var(--white);
	opacity: .1;
}
footer .footer-contact-info,
footer .copyright,
footer #nav_menu-2 {
	width: 90%;
	margin: 0 auto;
	font-size: .8rem;
	line-height: 2.3;
}
footer .footer-contact-info {
	margin-top: 2rem;
}
footer .copyright {
	margin-top: 1rem;
	padding-bottom: 2rem;
}
footer .copyright a {
	color: var(--white);
	text-decoration: none;
}
#nav_menu-2 {
	background-color: var(--black);
	margin-top: 6rem;
}
#nav_menu-2 ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	width: 90%;
	margin: 0 auto;
	padding: 2rem 0;
	padding-top: 2.5rem;
}
#nav_menu-2 ul li {
	margin-bottom: 1rem;
}
#nav_menu-2 ul li:last-of-type {
	margin-bottom: 0;
}
#nav_menu-2 ul li a {
	text-decoration: none;
	color: var(--white);
	font-size: .9rem;
}
#nav_menu-2 ul li .sub-menu {
	list-style: none;
	margin-left: 2rem;
	margin-top: .7rem;
}
#nav_menu-2 .nav .sub-menu li {
	display: block;
}
@media (min-width: 768px) {
	#nav_menu-2 ul {
		flex-direction: row;
		justify-content: space-between;
		width: 90%;
		font-size: .9rem;
	}
	#nav_menu-2 .nav .sub-menu {
		flex-direction: column;
		padding: 0;
		line-height: 1.4;
	}
	#nav_menu-2 ul li {
		margin-right: 1rem;
	}
	#nav_menu-2 ul li:last-of-type {
		margin-right: 0;
	}
	#nav_menu-2 ul li .sub-menu {
		margin-left: 0;
	}
	#nav_menu-2 ul li .sub-menu li {
		margin-right: 0;
	}
	#nav_menu-2 ul li a {
		font-size: 1rem;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	#nav_menu-2 ul {
		font-size: .8rem;
	}
}

/*-------------- HOME --------------*/
/* SECTION ONE */
.section-one {
	background-color: var(--blue);
	color: var(--white);
	padding: 2.5rem 2rem;
	border-radius: .3rem;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
	margin: 6.5rem auto;
	margin-top: 2rem;
}
.section-one .top-article {
	margin-bottom: 3rem;
}
.section-one h3,
.section-one p {
	margin-bottom: 1.75rem;
}
.section-one .video-container iframe {
	border-radius: .3rem;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
}
.section-one .btn a {
	background-color: var(--white);
	color: var(--blue);
	margin-top: 2rem;
	margin-bottom: 2rem;
	display: block;
}
.section-one .btn a:last-of-type {
	margin-bottom: 0;
}
@media (min-width: 768px) {
	.section-one {
		padding: 3rem 4rem;
		margin-top: 18rem;
	}
	.section-one .top-article {
		margin-bottom: 5rem;
	}
	.section-one .top-article .wrapper-inner-blocks,
	.section-one .bottom-article .wrapper-inner-blocks {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.section-one .top-article .wrapper-inner-blocks .text-container .wrapper-inner-blocks,
	.section-one .bottom-article .wrapper-inner-blocks .text-container .wrapper-inner-blocks {
		display: flex;
		flex-direction: column;
	}
	.section-one .top-article .wrapper-inner-blocks .text-container,
	.section-one .bottom-article .wrapper-inner-blocks .text-container {
		flex: 2;
	}
	.section-one .top-article .wrapper-inner-blocks .video-container,
	.section-one .bottom-article .wrapper-inner-blocks .video-container {
		flex: 2;
	}
	.section-one .top-article .wrapper-inner-blocks .video-container figure,
	.section-one .bottom-article .wrapper-inner-blocks .video-container figure {
		width: 100%;
	}
	.section-one .top-article .wrapper-inner-blocks .video-container figure iframe,
	.section-one .bottom-article .wrapper-inner-blocks .video-container figure iframe {
		height: 300px;
	}
	.section-one .top-article .wrapper-inner-blocks .btn,
	.section-one .bottom-article .wrapper-inner-blocks .btn {
		flex: 1 100%;
	} 
	.section-one .top-article .wrapper-inner-blocks .btn a,
	.section-one .bottom-article .wrapper-inner-blocks .btn a {
		width: 15rem;
	}
	/* Top Article */
	.section-one .top-article .wrapper-inner-blocks .text-container {
		margin-right: 1rem;
	}
	/* Bottom Article */
	.section-one .bottom-article .wrapper-inner-blocks .video-container {
		order: 1;
	}
	.section-one .bottom-article .wrapper-inner-blocks .text-container {
		order: 2;
		margin-left: 2rem;
	}
	.section-one .bottom-article .wrapper-inner-blocks .text-container h3 {
		align-self: flex-start;
	}
	.section-one .bottom-article .wrapper-inner-blocks .btn {
		order: 3;
		display: flex;
    	justify-content: flex-end;
	}
	.section-one .btn a {
		margin-top: 0;
	}
}

/* SECTION TWO */
.section-two {
	padding: 1rem;
}
.section-two .section-two-left-container h2 {
	margin-bottom: 1.75rem;
}
.section-two .section-two-left-container img {
	margin: 1.5rem 0;
}
.section-two .section-two-right-container img {
	margin: 3rem 0;
}
.section-two .btn a {
	background-color: var(--black);
	color: var(--white);
	margin-top: 2rem;
	display: block;
	transition: opacity 300ms ease-in-out;
}
.section-two .btn-legal-framework {
    flex-basis: 100%;
}
@media (min-width: 768px) {
	.section-two .wrapper-inner-blocks {
		display: flex;
		flex-wrap: wrap;
	}
	.section-two .wrapper-inner-blocks .section-two-left-container,
	.section-two .wrapper-inner-blocks .section-two-right-container {
		flex: 1;
	}
	.section-two .wrapper-inner-blocks .section-two-left-container {
		margin-right: 1.5rem;
	}
	.section-two .wrapper-inner-blocks .section-two-right-container {
		padding-top: 1rem;
	}
	.section-two .section-two-left-container h2 {
		font-size: 2rem;
	}
	.section-two .btn a {
	    margin-top: 3rem;
		max-width: 300px;
	}
}
/* SECTION THREE */
.section-three {
	outline: .2rem solid var(--green);
	margin: 5rem auto;
}
.section-three h2 {
	background-color: var(--green);
	padding: 1rem 1.5rem;
	color: var(--white);
}
.section-three .section-three-img-text-container .section-three-text {
	padding-bottom: 1rem;
}
.section-three .section-three-img-text-container .section-three-text p {
	padding: 0 2rem;
}
.section-three .section-three-img-text-container .section-three-text .section-three-icon {
	width: 5rem;
	margin: 2rem auto;
}
.section-three .section-three-img-text-container .section-three-text .btn {
	width: 85%;
	margin: 2rem auto;
}
.section-three .section-three-img-text-container .section-three-text .btn a {
	display: block;
	background-color: var(--green);
}
@media (min-width: 768px) {
	.section-three .section-three-img-text-container .wrapper-inner-blocks {
		display: flex;
		align-items: center;
	}
	.section-three .section-three-img-text-container .wrapper-inner-blocks .section-three-img figure img {
		max-width: 100%;
		object-fit: cover;
		height: 100%;
		width: auto;
	}
	.section-three .section-three-img-text-container .wrapper-inner-blocks .section-three-img {
		flex: 1.5;
	}
	.section-three .section-three-img-text-container .wrapper-inner-blocks .section-three-text {
		flex: 1;
	}
	.section-three .section-three-img-text-container .wrapper-inner-blocks .section-three-img figure {
		margin-bottom: 0;
	}
	.section-three .section-three-img-text-container .wrapper-inner-blocks .section-three-text .wrapper-inner-blocks {
		flex-direction: column;
	}
	.section-three .section-three-img-text-container .wrapper-inner-blocks .section-three-text p {
		transform: translateY(20px);
	}
	.section-three .section-three-img-text-container .section-three-text .section-three-icon {
		margin: 0 auto;
    	margin-top: 4rem;
	}
	.section-three h2 {
		font-size: 2rem;
	}
}
@media (min-width: 768px) and (max-width: 1160px) {
	.section-three .section-three-img-text-container .wrapper-inner-blocks .section-three-img,
	.section-three .section-three-img-text-container .wrapper-inner-blocks .section-three-text {
		flex: 1;
	}
}
/* SECTION FOUR */
.section-four {
	margin: 5rem auto;
}
.section-four .our-members-grid .wrapper-inner-blocks {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 2rem;
	padding: 0 1rem;
}
.section-four .our-members-grid .wrapper-inner-blocks figure {
	display: grid;
	margin: auto;
}
.section-four h2 {
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.section-four .our-members-grid .wrapper-inner-blocks {
		grid-template-columns: repeat(3, 1fr);
	}
	.section-four h2 {
		font-size: 2rem;
	}
}
@media (min-width: 1100px) {
	.section-four .our-members-grid .wrapper-inner-blocks {
		grid-template-columns: repeat(5, 1fr);
	}
}
@media (max-width: 360px) {
	.section-four .our-members-grid .wrapper-inner-blocks {
		grid-template-columns: 1fr;
	}
}
/* SECTION FIVE */
#mc_embed_signup {
	background-color: transparent!important;
	font: inherit!important;
	margin: 0 auto;
	width: 90%;
}
#mc_embed_signup h2 {
	font-size: 2rem!important;
	font-weight: 400!important;
	margin-bottom: .5rem!important;
	text-align: center;
}
#mc_embed_signup p {
	text-align: center;
	width: 90%;
	margin: 0 auto;
}
#mc_embed_signup input {
	border-radius: 30px!important;
	padding: 14px 30px!important;
	font-size: 17px!important;
	border: none;
}
#mc_embed_signup .clear {
	position: relative;
}
#mc_embed_signup input[type="email"] {
	width: 100%;
}
#mc_embed_signup input[type="submit"] {
	position: absolute;
	bottom: 0;
    right: 0;
	padding: 10px 30px!important;
	font-size: 22px!important;
	background-color: var(--white)!important;
	color: var(--orange)!important;
	height: auto!important;
	width: auto!important;
	outline: .15rem solid var(--orange);
	font-family: 'Architects Daughter', cursive!important;
}
#mc_embed_signup input[type="submit"]:hover {
	transform: none!important;
	opacity: .8;
}
.section-five .mc-field-group {
	margin-top: 1.5rem;
}
.section-five {
	background-color: var(--orange);
	color: var(--white);
	border-radius: .3rem;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
	padding: 2.5rem 2rem;
	margin-top: 15rem;
	margin-bottom: 4rem;
	padding-bottom: 4rem;
}
.section-five figure {
	margin-top: -11rem;
}
.section-five .newsletter-respect {
	display: block;
    font-size: .9rem;
    opacity: .9;
    text-align: center;
    margin-top: 1rem;
}
@media (max-width: 530px) {
	#mc_embed_signup form {
		padding: 0;
	}
	.section-five .mc-field-group {
		width: 100%!important;
	}
	#mc_embed_signup input[type="submit"] {
		display: block!important;
		width: 100%!important;
		position: static!important;
		margin-top: 1.5rem;
	}
}

/* -------------------------------------------------- ABOUT US / THE NETWORK PAGE -------------------------------------------------- */
.about-us-top-img {
	margin-top: 8rem;
}
.about-us-page {
	margin-top: 2rem;
	width: 80%;
	padding-bottom: 4rem;
}
.about-us-page h2 {
	font-size: 2rem;
}
.about-us-page h2,
.about-us-page h3 {
	margin-top: 3rem;
	margin-bottom: 1rem;
}
.about-us-page .annual-report {
	background-color: var(--green);
	padding: 2rem;
	color: var(--white);
	border-radius: .3rem;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
	text-align: center;
	margin-top: 4rem;
	cursor: pointer;
}
.about-us-page .annual-report h3 {
	padding: 0;
	margin: 0;
	margin-bottom: 2rem;
	font-size: 1.8rem;
}
.about-us-page .download-reports {
	background-color: var(--black);
	border-radius: .3rem;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
}
.about-us-page .download-reports a {
	color: var(--white);
	text-decoration: none;
	display: block;
	padding: 1rem 2rem;
}
.about-us-page .download-reports a:nth-child(odd) {
	background-color: rgb(37, 46, 49);
}
.about-us-page .about-headings {
	margin-top: 2.5rem;
}
.about-us-page .first-heading {
	margin-top: 0;
}

@media (min-width: 768px) {
	.about-us-top-img {
		margin-top: 8rem;
		width: 1000px;
		margin: 0 auto;
		box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
	}
	.about-us-top-img img {
		border-radius: .3rem;
	}
	.about-us-page {
		margin-top: 4rem;
		width: 90%;
		max-width: 1000px;
		line-height: 1.75;
	}
	.about-us-page .about-headings {
	    margin-bottom: .5rem;
	}
	.about-us-page .annual-report {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-right: 3rem;
		padding-left: 3rem;
		margin-top: 8rem;
	}
	.about-us-page .annual-report:hover {
		opacity: .9;
		transform: scale(1.01);
	}
	.about-us-page .annual-report h3 {
		margin: 0;
	}
	.about-us-page h2,
	.about-us-page h3 {
		font-size: 2rem;
		margin-top: 3rem;
		margin-bottom: 1.5rem;
		text-align: center;
	}
	.wp-block-group.the-network-protocol-group {
        margin-top: 1rem;
        padding-left: 1rem;
    }
    ul.the-network-protocol-sub-group li {
        margin-top: 1.5rem;
        padding: 0 0 0 1.5rem;
    }
}
@media (max-width: 960px) {
	.about-us-page .annual-report {
		display: block;
	}
}
@media (min-width: 768px) and (max-width: 1400px) {
	.about-us-top-img {
		width: 640px;
	}
}

/* -------------------------------------------- ABOUT US / PRESS & PUBLICATIONS PAGE -------------------------------------------- */
.press-and-publications-page-h {
	font-size: 2rem;
	margin-bottom: 2rem;
	background-color: var(--black);
    padding-top: 8rem;
	padding-bottom: 2rem;
	padding-left: 5%;
	padding-right: 5%;
    text-align: center;
    color: var(--white);
}
.press-heading {
	font-size: 2rem;
	margin-top: 3rem;
	margin-bottom: 1rem;
	text-align: center;
}
.press-and-publications-page h4 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.press-and-publications-page .article-card {
	padding: 2.5rem 2rem;
	border-radius: .3rem;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
	margin: 1.5rem 0;
	border: .05rem solid rgb(199, 199, 199);
}
.press-and-publications-page .article-card figure {
	margin-bottom: 1.5rem;
}
.press-and-publications-page .article-card a {
	font-family: 'Architects Daughter', cursive;
	font-size: 1rem;
	cursor: pointer;
	margin-top: 1.5rem;
	width: 100%;
}
.press-and-publications-page .annual-report,
.press-and-publications-page .press-bulletins,
.press-and-publications-page .press-press-releases,
.press-and-publications-page .press-international-law {
	color: var(--white);
	border-radius: .3rem;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
	text-align: center;
	margin-top: 2rem;
	cursor: pointer;
}
.press-and-publications-page .annual-report {
	background-color: var(--green);
	padding: 2rem;
}
.press-and-publications-page .press-bulletins {
	background-color: var(--blue);
}
.press-and-publications-page .press-bulletins p,
.press-and-publications-page .press-press-releases p,
.press-and-publications-page .press-international-law p {
	padding: 0 2rem;
    padding-bottom: 2rem;
}
.press-and-publications-page .press-bulletins h3,
.press-and-publications-page .press-press-releases h3,
.press-and-publications-page .press-international-law h3 {
	padding-top: 2rem!important;
}	
.press-and-publications-page .press-press-releases {
	background-color: var(--orange);
}
.press-and-publications-page .press-international-law {
	background-color: var(--black);
}
.press-and-publications-page .annual-report h3,
.press-and-publications-page .press-bulletins h3,
.press-and-publications-page .press-press-releases h3,
.press-and-publications-page .press-international-law h3 {
	padding: 0;
	margin: 0;
	margin-bottom: 2rem;
}
.press-and-publications-page .download-reports,
.press-and-publications-page .download-bulletins,
.press-and-publications-page .download-press-releases,
.press-and-publications-page .download-international-law {
	background-color: var(--black);
	border-radius: .3rem;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
}
.press-and-publications-page .download-bulletins ul,
.press-and-publications-page .download-press-releases ul,
.press-and-publications-page .download-international-law ul {
	display: block;
 }
.press-and-publications-page .download-bulletins li,
.press-and-publications-page .download-press-releases li,
.press-and-publications-page .download-international-law li {
	list-style: none;
}
.press-and-publications-page .download-reports a,
.press-and-publications-page .download-bulletins li a,
.press-and-publications-page .download-press-releases li a,
.press-and-publications-page .download-international-law li a {
	color: var(--white);
	text-decoration: none;
	display: block;
	padding: 1rem 2rem;
	text-align: left;
}
.press-and-publications-page .download-reports a:nth-child(odd),
.press-and-publications-page .download-bulletins li:nth-child(odd) a,
.press-and-publications-page .download-press-releases li:nth-child(odd) a,
.press-and-publications-page .download-international-law li:nth-child(odd) a {
	background-color: rgb(37, 46, 49);
}
.press-and-publications-page .about-headings {
	margin-top: 2.5rem;
}
.press-and-publications-page .first-heading {
	margin-top: 0;
}
.press-and-publications-page .publication-section {
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.press-and-publications-page-h {
		font-size: 2.5rem;
		margin-bottom: 5rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
		margin-top: 8rem;
	}
	.press-heading {
		margin-bottom: 3rem;
	}
	.press-and-publications-page .publication-section .press-heading {
		margin-bottom: 4.5rem!important;
	}
	.press-and-publications-page .wrapper-inner-blocks {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 1.5rem;
	}
	.press-and-publications-page .article-card .wrapper-inner-blocks {
		display: flex;
		flex-direction: column;
	}
	.press-and-publications-page .article-card .wp-block-button {
		align-self: flex-end;
	}
	.press-and-publications-page .article-card a {
		width: auto;
	}
	.press-and-publications-page .annual-report,
	.press-and-publications-page .bulletins,
	.press-and-publications-page .press-releases,
	.press-and-publications-page .international-law {
		display: flex!important;
		justify-content: space-between;
		align-items: center;
		padding-right: 3rem;
		padding-left: 3rem;
		margin-top: 2rem;	
	}
	.press-and-publications-page .annual-report,
	.press-and-publications-page .press-bulletins,
	.press-and-publications-page .press-press-releases,
	.press-and-publications-page .press-international-law {
		transition: all 300ms ease-in-out;
	}
	.press-and-publications-page .annual-report:hover,
	.press-and-publications-page .press-bulletins:hover,
	.press-and-publications-page .press-press-releases:hover,
	.press-and-publications-page .press-international-law:hover  {
		opacity: .9;
		transform: scale(1.01);
	}
	.press-and-publications-page .bulletins p,
	.press-and-publications-page .press-releases p,
	.press-and-publications-page .international-law p {
		padding: 0!important;
	}
	.press-and-publications-page .annual-report h3 {
		margin: 0;
	}
	.press-and-publications-page .publication-section .wrapper-inner-blocks {
		display: block;
	}
	.press-and-publications-page .publication-section {
		grid-column: 1 / 3;
	}
	/*** FIX VIEW MORE ***/
	.second-article-press-publications>.wrapper-inner {
	    height: 100%;
	}
	.second-article-press-publications>.wrapper-inner>.wrapper-inner-blocks {
	    height: 100%;
        justify-content: flex-end;
	}
	.second-article-press-publications>.wrapper-inner>.wrapper-inner-blocks h4 {
	    height: 100%;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	.press-and-publications-page .annual-report h3,
	.press-and-publications-page .bulletins h3,
	.press-and-publications-page .press-releases h3 {
		font-size: 1.4rem;
	}
	.press-and-publications-page .international-law h3 {
		font-size: 1.2rem;
		letter-spacing: 0;
	}
	.press-and-publications-page .annual-report p,
	.press-and-publications-page .bulletins p,
	.press-and-publications-page .press-releases p,
	.press-and-publications-page .international-law p {
		font-size: .8rem;
	}
	.press-and-publications-page .annual-report,
	.press-and-publications-page .bulletins,
	.press-and-publications-page .press-releases,
	.press-and-publications-page .international-law {
		padding-right: 2rem;
		padding-left: 2rem;
	}
}

/* -------------------------------------------- ABOUT US / REGIONAL ACHIEVEMENTS PAGE -------------------------------------------- */
.regional-page-h {
	font-size: 2rem;
	margin-bottom: 2rem;
	background-color: var(--blue);
    padding-top: 8rem;
    padding-bottom: 2rem;
    text-align: center;
    color: var(--white);
}
.regional-page {
	margin-bottom: 2rem;
	line-height: 1.9;
}
.regional-page .regional-video-container {
	margin: 2rem 0;
}
.regional-page .regional-new-policies li,
.regional-page .regional-adhesions li {
	list-style: none;
	margin-left: 1.5rem;
}
.regional-page h4 {
	margin-top: 2rem;
}
.regional-page .regional-develop p {
	margin-left: 1.5rem;
}
.regional-page .regional-develop li {
	list-style: none;
	margin-left: 3rem;
}
@media (min-width: 768px) {
	.regional-page {
		margin-bottom: 6rem;
		line-height: 2.2;
	}
	.regional-page-h {
		font-size: 2.5rem;
		margin-bottom: 5rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
		margin-top: 8rem;
	}
	.regional-page h4 {
		margin-top: 3rem;
		margin-bottom: .5rem;
	}
	.regional-page .regional-new-policies li,
	.regional-page .regional-adhesions li {
		margin-left: 4rem;
	}
	.regional-page .regional-develop p {
		margin-left: 4rem;
	}
	.regional-page .regional-develop li {
		margin-left: 8rem;
	}
	
}

/* -------------------------------------------------- BECOME A MEMBER PAGE -------------------------------------------------- */
.become-member-page-h {
	font-size: 2rem;
	margin-bottom: 2rem;
	background-color: var(--orange);
    padding-top: 8rem;
    padding-bottom: 2rem;
    text-align: center;
    color: var(--white);
}
.become-member-page-sub-h {
	text-align: center;
	margin-top: 3rem;
    margin-bottom: 2rem;
}
.become-member-page .wpcf7 {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
.become-member-page .wpcf7-form {
	margin-top: 2rem;
}
.become-member-page .wpcf7-form label {
	font-size: 1rem;
} 
.become-member-page .wpcf7-form p {
	margin-top: 1rem;
}
.become-member-page .wpcf7-form p label {
	margin-bottom: .5rem;
	cursor: pointer;
}
.become-member-page .wpcf7-form input,
.become-member-page .wpcf7-form textarea {
	border-radius: .4rem!important;
	padding: 10px!important;
	font-size: 1rem!important;
	width: 100%;
	border: .1rem solid var(--orange);
}
.become-member-page .wpcf7-form input:focus,
.become-member-page .wpcf7-form textarea:focus {
	outline-color: var(--blue);
}
.become-member-page .wpcf7-form input[type="submit"] {
	background-color: var(--orange);
	border: none;
	border-radius: 3rem!important;
	font-size: 1.4rem!important;
	font-family: 'Architects Daughter', cursive;
	color: var(--white);
	margin-top: 2rem;
}
.become-member-page .wpcf7-response-output {
	padding-bottom: 1.5rem;
	padding-top: 0;
	margin-top: -1rem;
	border: none;
	font-weight: 700;
}
.become-member-page .wpcf7-mail-sent-ok {
	color: var(--green);
}
.become-member-page .wpcf7-validation-errors {
	color: var(--orange);
}
.become-member-page .wpcf7-mail-sent-ng {
	color: red;
}
.internship p {
	margin-bottom: 1rem;
}
.internship p:last-of-type {
	margin-bottom: 0;
}
.internship p a {
	color: var(--orange);
	text-decoration: none;
}
@media (min-width: 768px) {
	.become-member-page-h {
		font-size: 2.5rem;
		margin-bottom: 5rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
		margin-top: 8rem;
	}
	.become-member-page-sub-h {
		text-align: center;
		margin-top: 10rem;
		margin-bottom: 2rem;
	}
	.become-member-page .wpcf7-form {
		margin-top: 5rem;
		position: relative;
	}
	.become-member-page .wpcf7-form input[type="submit"] {
		width: 40%;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: -50px;
	}
	.internship p {
		max-width: 600px;
		margin: 0 auto;
		margin-bottom: 1rem;
	}
	.internship p:last-of-type {
		margin-bottom: 0;
	}
}

/* -------------------------------------------------- LEGAL FRAMEWORK PAGE -------------------------------------------------- */
.legal-framework-h {
	font-size: 2rem;
	margin-bottom: 2rem;
	background-color: var(--green);
    padding-top: 8rem;
    padding-bottom: 2rem;
    text-align: center;
    color: var(--white);
}
.legal-heading {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}
.legal-framework-page {
	margin-bottom: 3rem;
}
.legal-framework-page figure {
	margin: 2rem 0;
}
.legal-framework-page ul {
	list-style: none;
}
.more-info-link {
	text-align: right;
	margin-top: .75rem;
	margin-right: .3rem;
}
@media (min-width: 768px) {
	.legal-framework-h {
		font-size: 2.5rem;
		margin-bottom: 2rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
		margin-top: 8rem;
	}
	.legal-heading {
		text-align: left;
	}
	.legal-framework-page > .wrapper-inner > .wrapper-inner-blocks {
		display: flex;
		align-items: center;
	}
	.legal-framework-page > .wrapper-inner > .wrapper-inner-blocks > .ratification-left-container {
		flex: 1;
	}
	.legal-framework-page > .wrapper-inner > .wrapper-inner-blocks > .ratification-right-container {
		flex: 1;
		margin-left: 2rem;
	}
	.legal-framework-page figure {
		margin: 0;
	}
}

/* LEGAL FRAMEWORK COUNTRIES GRID */
.legal-countries-grid > .wrapper-inner > .wrapper-inner-blocks {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}
.legal-countries-grid .country-card {
	border-radius: .3rem;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
	margin: .7rem 0;
	border: .05rem solid rgb(199, 199, 199);
	font-size: .8rem;
	transition: transform 200ms ease-in-out;
}
.legal-countries-grid .country-card:hover {
	transform: scale(1.03);
}
.legal-countries-grid .country-card .country-card-header {
	background-color: var(--blue);
	color: var(--white);
	padding: 1rem;
	border-bottom: 3px solid var(--green);
}
.legal-countries-grid .country-card .country-card-header > .wrapper-inner > .wrapper-inner-blocks {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.legal-countries-grid .country-card .country-card-header > .wrapper-inner > .wrapper-inner-blocks .wp-block-image {
	margin-bottom: 0!important;
	box-shadow: 1px 1px 5px rgba(0,0,0,.3);
}
.legal-countries-grid .country-card .country-card-header .legal-flag {
	width: 30px;
	display: block;
}
.legal-countries-grid .country-card .country-card-body {
	padding: .5rem 1rem;
}
.legal-countries-grid .country-card p {
	border-bottom: 1px solid lightgrey;
	padding: .5rem 0;
}
.legal-countries-grid .country-card p:last-of-type {
	border-bottom: none;
}
@media (min-width: 768px) {
	.legal-countries-grid > .wrapper-inner > .wrapper-inner-blocks {
		grid-template-columns: repeat(4, 1fr);
		grid-gap: 1.2rem;
	}
	.legal-countries-grid .country-card {
		margin: 0;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	.legal-countries-grid > .wrapper-inner > .wrapper-inner-blocks {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ------------------------------------------------------ RESOURCES PAGE ---------------------------------------------------- */
/* ---------------------------------------------- ORGANIZATION OF AMERICAN STATES ------------------------------------------- */
/* ------------------------------------------------------ UNITED NATIONS ---------------------------------------------------- */
/* ----------------------------------------------------------- UNHCR -------------------------------------------------------- */
/* ------------------------------------------------------- CIVIL SOCIETY ---------------------------------------------------- */
.resources-h {
	font-size: 2rem;
	margin-bottom: 2rem;
	background-color: var(--black);
    padding-top: 8rem;
    padding-bottom: 2rem;
    text-align: center;
    color: var(--white);
}
.resources-sub-h {
	text-align: center;
	max-width: 90%;
	margin: 4rem auto;
}
.resources-sub-h-civil {
	text-align: center;
	margin: 4rem;
}
.english-container .wrapper-inner-blocks h2,
.spanish-container .wrapper-inner-blocks h2,
.french-container .wrapper-inner-blocks h2 {
	font-family: 'Nunito', sans-serif!important;
	margin-top: 4rem;
	text-align: center;
	font-size: 1.4rem;
}
.resources-page .english-container .accordion-btn,
.resources-page .spanish-container .accordion-btn,
.resources-page-united-nations .english-container .accordion-btn,
.resources-page-united-nations .spanish-container .accordion-btn,
.resources-page-unhcr .english-container .accordion-btn,
.resources-page-unhcr .spanish-container .accordion-btn,
.resources-page-unhcr .french-container .accordion-btn,
.resources-page-civil-society .accordion-btn {
	color: var(--white);
	border-radius: .3rem;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
	text-align: center;
	margin-top: 1rem;
	cursor: pointer;
	transition: all 300ms ease-in-out;
}
.resources-page-civil-society .accordion-btn {
	margin-top: 1rem!important;
}
.resources-page .english-container .accordion-btn {
	background-color: var(--blue);
	color: var(--white);
}
.resources-page .spanish-container .accordion-btn {
	background-color: var(--green);
}
.resources-page-united-nations .english-container .accordion-btn{
	background-color: var(--orange);
}
.resources-page-united-nations .spanish-container .accordion-btn {
	background-color: var(--blue);
}
.resources-page-unhcr .english-container .accordion-btn {
	background-color: var(--green);
}
.resources-page-unhcr .spanish-container .accordion-btn {
	background-color: var(--blue);
}
.resources-page-unhcr .french-container .accordion-btn {
	background-color: var(--orange);
}
.resources-page-civil-society .accordion-btn {
	background-color: var(--black);
}
.resources-page-civil-society .accordion-btn:nth-child(odd) {
	background-color: rgb(24, 38, 43);
}
.resources-page .accordion-btn h3,
.resources-page-united-nations .accordion-btn h3,
.resources-page-unhcr .accordion-btn h3,
.resources-page-civil-society .accordion-btn h3 {
	padding: 2rem;
	margin: 0;
}
.resources-page .accordion-content,
.resources-page-united-nations .accordion-content,
.resources-page-unhcr .accordion-content,
.resources-page-civil-society .accordion-content {
	background-color: var(--black);
	border-radius: .3rem;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
}
.resources-page .accordion-content a,
.resources-page-united-nations .accordion-content a,
.resources-page-unhcr .accordion-content a,
.resources-page-civil-society .accordion-content a {
	color: var(--white);
	text-decoration: none;
	display: block;
	padding: 1rem 2rem;
}
.resources-page .accordion-content a:nth-child(odd),
.resources-page-united-nations .accordion-content a:nth-child(odd),
.resources-page-unhcr .accordion-content a:nth-child(odd),
.resources-page-civil-society .accordion-content a:nth-child(odd) {
	background-color: rgb(37, 46, 49);
}
.iachr-page p,
.brazil-plan-page p {
	margin-bottom: 1rem;
}
.iachr-page p:last-of-type,
.brazil-plan-page p:last-of-type {
	margin-bottom: 0;
}
.iachr-page figure {
	margin: 2rem auto;
	max-width: 620px;
}
.brazil-plan-page figure {
	max-width: 300px;
    margin: 3rem auto;
}
.brazil-plan-page .links-brazil-plan {
	margin-top: 4rem;
}
.i-belong-campaign h2 {
	margin-top: 4rem;
    margin-bottom: 2rem;
    text-align: center;
}
.i-belong-campaign h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
}
.i-belong-campaign figure {
	margin-top: 4rem;
}
.i-belong-campaign ul li {
	margin-bottom: 1rem;
}
.i-belong-campaign ul li:last-of-type {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.resources-h {
		font-size: 2.5rem;
		margin-bottom: 2rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
		margin-top: 8rem;
	}
	.resources-page-civil-society .accordion-btn {
		margin-top: 0;
	}

	.resources-page .english-container .accordion-btn:hover,
	.resources-page .spanish-container .accordion-btn:hover,
	.resources-page-united-nations .english-container .accordion-btn:hover,
	.resources-page-united-nations .spanish-container .accordion-btn:hover,
	.resources-page-unhcr .english-container .accordion-btn:hover,
	.resources-page-unhcr .spanish-container .accordion-btn:hover,
	.resources-page-unhcr .french-container .accordion-btn:hover,
	.resources-page-civil-society .accordion-btn:hover {
		opacity: .9;
		transform: scale(1.01);
	}
	.resources-page .english-container .accordion-btn,
	.resources-page .spanish-container .accordion-btn,
	.resources-page-united-nations .english-container .accordion-btn,
	.resources-page-united-nations .spanish-container .accordion-btn,
	.resources-page-unhcr .english-container .accordion-btn,
	.resources-page-unhcr .spanish-container .accordion-btn,
	.resources-page-unhcr .french-container .accordion-btn,
	.resources-page-civil-society .accordion-btn {
		text-align: left;
	}
	.iachr-page figure {
		margin-bottom: 4rem;
	}
	.resources-page-unhcr > .wrapper-inner > .wrapper-inner-blocks {
		display: grid;
    	grid-template-columns: 1fr 1fr;
    	grid-gap: 3rem;
	}
	.i-belong-campaign {
		text-align: right;
    	width: 23rem;
		justify-self: end;
		margin-top: 1rem;
		order: 2;
	}
	.i-belong-campaign figure {
		margin-top: 0;
	}
	.resources-page-unhcr .french-container {
		order: 3;
	}
	.i-belong-campaign h3 {
		margin-bottom: 0;
	}
	.i-belong-campaign ul li {
		margin-bottom: .5rem;
	}
}

/* ----------------------------------------------------- MULTIMEDIA PAGE ---------------------------------------------------- */
.multimedia-h {
	font-size: 2rem;
	margin-bottom: 2rem;
	background-color: var(--black);
    padding-top: 8rem;
    padding-bottom: 2rem;
    text-align: center;
    color: var(--white);
}
.multimedia-sub-h {
	text-align: center;
	margin: 4rem 0;
}
.multimedia-page .webinars-grid > .wrapper-inner > .wrapper-inner-blocks figure iframe,
.multimedia-page .events-grid > .wrapper-inner > .wrapper-inner-blocks figure iframe,
.multimedia-page .institutional-grid > .wrapper-inner > .wrapper-inner-blocks figure iframe,
.multimedia-page .videos-unhcr-grid > .wrapper-inner > .wrapper-inner-blocks figure iframe {
	width: 100%;
	display: block;
	height: 250px;
}
.multimedia-page .external-grid-videos > .wrapper-inner > .wrapper-inner-blocks > .external-video-grid-item iframe {
	width: 100%;
	display: block;
	height: 150px;
}
.multimedia-page .external-grid-videos > .wrapper-inner > .wrapper-inner-blocks > .external-video-grid-item .wrapper-inner .wrapper-inner-blocks p {
	margin-top: .75rem;
}
.external-videos-section {
	margin-bottom: 8rem;
}
.multimedia-page .wp-block-separator {
	margin: 5rem auto;
	border-color: rgba(0, 0, 0, .1);
}
@media (min-width: 768px) {
	.multimedia-h {
		font-size: 2.5rem;
		margin-bottom: 2rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
		margin-top: 8rem;
	}
	.multimedia-page .webinars-grid > .wrapper-inner > .wrapper-inner-blocks,
	.multimedia-page .events-grid > .wrapper-inner > .wrapper-inner-blocks,
	.multimedia-page .institutional-grid > .wrapper-inner > .wrapper-inner-blocks,
	.multimedia-page .videos-unhcr-grid > .wrapper-inner > .wrapper-inner-blocks {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 1rem;
	}
	.multimedia-page .external-grid-videos > .wrapper-inner > .wrapper-inner-blocks > .external-video-grid-item .wrapper-inner .wrapper-inner-blocks {
		display: flex;
		justify-content: space-between;
	}
	.multimedia-page .external-grid-videos > .wrapper-inner > .wrapper-inner-blocks > .external-video-grid-item .wrapper-inner .wrapper-inner-blocks figure {
		flex: 1;
	}
	.multimedia-page .external-grid-videos > .wrapper-inner > .wrapper-inner-blocks > .external-video-grid-item .wrapper-inner .wrapper-inner-blocks p {
		flex: 1;
		margin-left: 1rem;
	}
	.multimedia-page .last-audio p {
		margin-left: 0!important;
		margin-bottom: 1.5rem;
	}
	.multimedia-page .last-audio .wrapper-inner-blocks {
		flex-direction: column;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	.multimedia-page .webinars-grid > .wrapper-inner > .wrapper-inner-blocks,
	.multimedia-page .events-grid > .wrapper-inner > .wrapper-inner-blocks,
	.multimedia-page .institutional-grid > .wrapper-inner > .wrapper-inner-blocks,
	.multimedia-page .videos-unhcr-grid > .wrapper-inner > .wrapper-inner-blocks {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 1rem;
	}
}
@media (min-width: 1100px) {
	.multimedia-page .webinars-grid > .wrapper-inner > .wrapper-inner-blocks figure iframe,
	.multimedia-page .events-grid > .wrapper-inner > .wrapper-inner-blocks figure iframe,
	.multimedia-page .institutional-grid > .wrapper-inner > .wrapper-inner-blocks figure iframe,
	.multimedia-page .videos-unhcr-grid > .wrapper-inner > .wrapper-inner-blocks figure iframe {
		height: 300px;
	}
}

/* ----------------------------------------------------- CONTACT PAGE ---------------------------------------------------- */
.contact-h {
	font-size: 2rem;
	margin-bottom: 2rem;
	background-color: var(--green);
    padding-top: 8rem;
    padding-bottom: 2rem;
    text-align: center;
    color: var(--white);
}
.contact-page .wpcf7 {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
.contact-page .wpcf7-form {
	margin-top: 2rem;
}
.contact-page .wpcf7-form label {
	font-size: 1rem;
} 
.contact-page .wpcf7-form p {
	margin-top: 1rem;
}
.contact-page .wpcf7-form p label {
	margin-bottom: .5rem;
	cursor: pointer;
}
.contact-page .wpcf7-form input,
.contact-page .wpcf7-form textarea {
	border-radius: .4rem!important;
	padding: 10px!important;
	font-size: 1rem!important;
	width: 100%;
	border: .1rem solid var(--green);
}
.contact-page .wpcf7-form input:focus,
.contact-page .wpcf7-form textarea:focus {
	outline-color: var(--blue);
}
.contact-page .wpcf7-form input[type="submit"] {
	background-color: var(--green);
	border: none;
	border-radius: 3rem!important;
	font-size: 1.4rem!important;
	font-family: 'Architects Daughter', cursive;
	color: var(--white);
	margin-top: 2rem;
}
.contact-page .wpcf7-response-output {
	padding-bottom: 1.5rem;
	padding-top: 0;
	margin-top: -1rem;
	border: none;
	font-weight: 700;
}
.contact-page .wpcf7-mail-sent-ok {
	color: var(--green);
}
.contact-page .wpcf7-validation-errors {
	color: var(--orange);
}
.contact-page .wpcf7-mail-sent-ng {
	color: red;
}
@media (min-width: 768px) {
	.contact-h {
		font-size: 2.5rem;
		margin-bottom: 2rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
		margin-top: 8rem;
	}
	.contact-page .wpcf7-form {
		margin-top: 5rem;
		position: relative;
	}
	.contact-page .wpcf7-form input[type="submit"] {
		width: 40%;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: -50px;
	}
}

/* ----------------------------------------------------- more info PAGE ---------------------------------------------------- */
.more-info-page {
	margin-top: 9rem;
	margin-bottom: 5rem;
}
.more-info-page .wp-block-image {
	padding: 0 20rem;
    margin-top: 7rem;
    margin-bottom: 3rem;
}
.more-info-page p {
	margin-bottom: .75rem;
}
.more-info-page p:last-of-type {
	margin-bottom: 0;
}
.more-info-page .more-info-title {
	margin: 1rem 0;
}
.multimedia-block {
	margin: 5rem 0;
}
.multimedia-block figure,
.multimedia-block figure iframe {
	width: 100%;
}