@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins&display=swap');

body { 
    color: #40454d;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}


*{ margin: 0; padding: 0; }

a {
    text-decoration: none;
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}


.anime {
	opacity: 0;
	transform: translate3d(-50px, 0px, 0px);
    transition: .9s all ease;
}

.anime-init {
	opacity: 1;
	transform: translate3d(0px, 0px, 0px);
	transition: .9s all ease;
}


/* MENU */
#header {
    background: #fff;
    width: 100%;
    position: fixed;
    height: 70px;
    box-shadow: 0 5px 10px rgb(36 50 56 / 25%);
    z-index: 99999;
}

#header:after {
    content: "";
    clear: both;
    display: block;
}

#header a {
    color: #52565e;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}

#header-content {
    width: 80%;
    margin: 0 auto;
}

.logo {
    float: left;
    position: absolute;
    z-index: 999;
}
.logo a {
    font-size: 28px;
    display: block;
}
.logo img {
    width: 130px;
    padding: 10px 0;
}
nav {
    float: right;
}

nav > ul {
    /*float: left;*/
    position: relative;
    z-index: 9999;
}
nav li {
    list-style: none;
    float: left;
}
nav .dropdown {
    position: relative;
}

nav li a {
    float: left;
    /*padding: 35px;*/
    padding: 23px 10px;
}
nav li a:hover {
    background:#f3f4f7;
    color: #caccd1;
}
nav li ul {
    display: none;
}
nav li:hover ul {
    display: inline;
}
nav li li {
    float: none;
}
nav .dropdown ul {
    position: absolute;
    left: 0;
    top: 100%;
    background:#fff;
    border-bottom: 3px solid #34495e;
}
nav .dropdown li {
    white-space: nowrap;
}

nav .dropdown li a {
    padding: 10px 35px;
    font-size: 13px;
    color: #000 !important;
}
nav .dropdown li a:hover {
    background: #f3f4f7;
}
nav .mega-dropdown {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background:#fff;
    overflow: hidden;
    padding: 20px 35px;
    border-bottom: 3px solid #34495e;
}
nav li li a {
    float: none;
    color:#333;
    display: block;
    padding: 8px 10px;
    border-radius: 3px;
    font-size: 13px;
}
nav li li a:hover {
    background:#bdc3c7;
    background:#FAFBFB;
}
.mega-col {
    width: 25%;
    float: left;
}
#menu-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
    margin-right: 30px;
    display: none;
}
#menu-icon span {
    border: 2px solid #333;
    background: #333;
    width: 30px;
    margin-bottom: 5px;
    display: block;
    -webkit-transition: all .2s;
    transition:all .1s;
}

@media only screen and (min-width: 1080px) {
    nav {
        display: block!important;
    }
}
@media only screen and (max-width: 1079px) {

    .logo {
        float: none;
        position: inherit;
        text-align: center;
        width: 126px;
        margin: 0 auto;
    }
    
    nav {
        display: none;
        width: 80%;
        clear: both;
        float: none;
        max-height: 400px;
        overflow-y: scroll;
        background: #1E262D;
        position: absolute;
        z-index: 99;
        left: 0;
        top: 60px;
        padding: 40px 10%;
    }
    nav .dropdown li a {
        color: #fff !important;
    }
    nav .dropdown li a:hover {
        color: #000 !important;
    }
    #menu-icon {
        display: inline;
        top: 32px;
        cursor: pointer;
    }
    #menu-icon.active .first {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        margin-top:10px;
    }
    #menu-icon.active .second {
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        position: relative;
        top:-9px;
    }
    #menu-icon.active .third {
        display: none;
    }
    nav ul {
        float: none;
    }
    nav li {
        float: none;
    }
    nav ul li a {
        float: none;
        padding: 8px;
        display: block;
    }
    #header nav ul ul {
        /*display: block;*/
        position: static;
        background: none;
        border: none;
        padding: 0;
    }
    #header nav a {
        color:#fff;
        padding: 8px;
    }
    #header nav a:hover {
        background: #fff;
        color:#333;
        border-radius: 3px;
    }
    #header nav ul li li a:before {
        content: "- ";
    }
    .mega-col {
        width: 100%;
    }
}



/* COLOR PALLETE */

.page-border {
    border-bottom: 40px solid #23448E;
}


/* INDEX */

.title-index {
    width: 100%;
    overflow: hidden;
}

.title-index h2 {
    text-align: center;
    font-weight: bold;
    color: #000;
    font-size: 43px;
}

.title-index .heading-line {
    background: #23448E;
    margin-bottom: 40px;
}

/* BANNER INDEX */
.banner-index {
    width: 100%;
    background: url(https://secureservercdn.net/198.71.233.129/4p8.4a4.myftpupload.com/wp-content/uploads/2021/09/trnif-iswrd-scaled-1.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
    padding-top: 70px;
}

.banner-index-content {
    width: 100%;
    /*background-color: rgba(0, 0, 0, 0.7);*/
    overflow: hidden;
    text-align: center;
    color: #333;
    font-family: "gilroy";
    padding: 0;
    height: 70vh;
    margin: 0 auto;
}

.banner-index-content h2 {
    text-align: left;
    background: rgba(3, 16, 67, .6);
    display: table;
    margin-bottom: 4px;
    color: #fff;
    padding: 11px;
    font-size: 20px;
    font-weight: normal;
    line-height: 25pt;
}

.banner-index-text {
    /*
    position: absolute;
    z-index: 1;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 30px 1%;
    bottom: 0;
    left: 10%;
    */
    /*margin: 190px 10% 0;*/
    margin: 280px 10% 0;
}




/* > Página Inicial */

.about-description {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 40px;
}

.about-description p {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: justify;
}

.card-about {
    width: 80%;
    padding: 30px 10%;
    background: #fdfefd;
    overflow: hidden;
}

.card-about ul {
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 5px 10px rgb(36 50 56 / 22%);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.card-about ul li {
    width: 27.333%;
    list-style: none;
    float: left;
    overflow: hidden;
    padding: 3%;
    text-align: center;
}

.card-about ul li:nth-child(2) {
    background: url(https://www.midaadvisors.com/wp-content/uploads/2021/10/Hero-Image-back-scaled-1.jpg) center 0 no-repeat;
    background-size: cover;
    color: #fff;
}

.card-about ul li img {
    width: 42px;
    margin-bottom: 10px;
}

.card-about ul li:nth-child(2) img {
    margin-bottom: 25px;
}

.card-about ul li:nth-child(3) img {
    margin-bottom: 32px;
}

.card-about ul li h3 {
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
}

.card-about ul li p {
    font-size: 12px;
    text-align: center;
}

/* > Card Carousel */
.card-carousel {
    width: 80%;
    margin: 0 auto;
    padding: 40px 10%;
    background: #f3f4f7;
    overflow: hidden;
}

@media (min-width:768px) {
	.col-sm-1,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9 {
		float: left
	}
}



.carousel {
	position: relative
}

.carousel-inner {
	position: relative;
	width: 100%;
	overflow: hidden
}

.carousel-inner>.item {
	position: relative;
	display: none;
	-webkit-transition: .6s ease-in-out left;
	-o-transition: .6s ease-in-out left;
	transition: .6s ease-in-out left
}

.carousel-inner > .item > a > img,
.carousel-inner>.item>img {
	line-height: 1
}



.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
	display: block
}

.carousel-inner>.active {
	left: 0
}

.carousel-inner>.next,
.carousel-inner>.prev {
	position: absolute;
	top: 0;
	width: 100%
}

.carousel-inner>.next {
	left: 100%
}

.carousel-inner>.prev {
	left: -100%
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
	left: 0
}

.carousel-inner>.active.left {
	left: -100%
}

.carousel-inner>.active.right {
	left: 100%
}

.carousel-control {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 15%;
	font-size: 20px;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
	background-color: rgba(0, 0, 0, 0);
	filter: alpha(opacity=50);
	opacity: .5
}

.carousel-control.left {
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
	background-repeat: repeat-x
}

.carousel-control.right {
	right: 0;
	left: auto;
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
	background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
	background-repeat: repeat-x
}

.carousel-control:focus,
.carousel-control:hover {
	color: #fff;
	text-decoration: none;
	filter: alpha(opacity=90);
	outline: 0;
	opacity: .9
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-block;
	margin-top: -10px
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
	left: 50%;
	margin-left: -10px
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
	right: 50%;
	margin-right: -10px
}

.carousel-control .icon-next,
.carousel-control .icon-prev {
	width: 20px;
	height: 20px;
	font-family: serif;
	line-height: 1
}

.carousel-control .icon-prev:before {
	content: '\2039'
}

.carousel-control .icon-next:before {
	content: '\203a'
}

.carousel-indicators {
	position: absolute;
    bottom: 10px;
    left: 35%;
    z-index: 15;
    /* width: 60%; */
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

.carousel-indicators li {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 1px;
	text-indent: -999px;
	cursor: pointer;
	background-color: #000\9;
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid #fff;
	border-radius: 10px
}

.carousel-indicators .active {
	width: 12px;
	height: 12px;
	margin: 0;
	background-color: #fff
}

.carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 20px;
	left: 15%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .6)
}

.carousel-caption .btn {
	text-shadow: none
}

@media screen and (min-width:768px) {
    
	.carousel-control .glyphicon-chevron-left,
	.carousel-control .glyphicon-chevron-right,
	.carousel-control .icon-next,
	.carousel-control .icon-prev {
		width: 30px;
		height: 30px;
		margin-top: -10px;
		font-size: 30px
	}
	.carousel-control .glyphicon-chevron-left,
	.carousel-control .icon-prev {
		margin-left: -10px
	}
	.carousel-control .glyphicon-chevron-right,
	.carousel-control .icon-next {
		margin-right: -10px
	}
	.carousel-caption {
		right: 20%;
		left: 20%;
		padding-bottom: 30px
	}
	.carousel-indicators {
		bottom: 20px
	}
}


.carousel {
    min-height: 200px;
    margin-bottom: 15px;
}
.carousel-indicators li {
    box-shadow: 1px 1px 1px rgba(145, 145, 145, 0.5);
}

.active-p {
    background: #23448E;
    color: #fff;
}


.carousel-bloc {
    width: 66%;
    float: left;
}

.carousel-inner img {
    width: 100%;
    height: 452px;
    object-fit: cover;
}



.col-sm-3 {
    width: 34%;
    float: left;
}


.card-carousel .result {
    background: #F1F1F1;
}

.card-carousel .result p {
    width: 96%;
    padding: 10px 2%;
    overflow: hidden;
    border-bottom: 1px solid #F3F4F7 !important;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
}


.card-carousel .result p img {
    width: 80px;
    border: 5px solid #fff;
    float: left;
    margin-right: 3%;
    height: 60px;
    object-fit: cover;
}

.carousel-text {
    transform: translate3d(0,0,0);
    position: absolute;
    z-index: 1;
    line-height: 0;
    bottom: 7px;
    background: rgba(0, 0, 0, .4);
    /* box-shadow: 0 0 68px 70px rgb(0 0 0 / 42%); */
    width: 50%;
    padding: 13px 5% 54px;
}

.carousel-text h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 17px;
    text-align: left;
    text-transform: none;
    color: #fff;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 20%);
    line-height: 1.3;
}



/* > Card */

.card-post {
    width: 80%;
    padding: 30px 10%;
    background:#F3F4F7;
    overflow: hidden;
}


.tabbed-content {
    /*background: #F1F1F1;*/
    /*box-shadow: 1px 1px 6px #ccc;
    /*max-width: 600px;*
    padding: 1em;
    margin: 1em auto;*/
    overflow: hidden;
}

.tabs ul {
    margin: 0;
    padding: 0 0 1em 0;
    font-weight: bold;
}

.tabs ul li {
    background: #eee;
}

.tabs ul li a {
    padding: 0.5em 1em;
}

.tabs ul li a:hover, .tabs ul li a.active {
    background: #244795;
    color: #eee;
}

.item {
    /*margin-bottom: 2px;*/
    order: 1;
}

.item::before {
    cursor: pointer;
    font-weight: bold;
    background: #eee;
    /*padding: 0.5em;*/
    display: block;
}

.item.active::before {
    background: #244795;
    color: #eee;
}

.item.active .item-content {
    /*padding: 1em;*/
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}


.item.active .item-content {
    padding-top: 0;
}

.tabs-side .tabs li {
    margin-bottom: 2px;
}

.tabbed-content .tabs {
    display: none;
}

.tabbed-content .item {
    min-height: 2em;
}

.tabbed-content .item::before {
    content: attr(data-title);
}

.tabbed-content .item .item-content {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.tabbed-content .item.active .item-content {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.tabbed-content .tabs {
    display: block;
}

.tabbed-content .tabs li {
    display: inline-block;
}

.tabbed-content .tabs li a {
    display: block;
}

.tabbed-content .item {
    min-height: 0;
}

.tabbed-content .item::before {
    display: none;
}

.tabbed-content.tabs-side .tabs {
    /*width: 150px;*/
    width: 36%;
    float: left;
}

.tabbed-content.tabs-side .tabs li {
    display: block;
    width: 100%;
}

.tabbed-content.tabs-side .item {
    /*margin-left: 150px;*/
}

.tabs {
    order: 2;
    float: right;
}

.tabs a {
    float: none;
    overflow: hidden;
    font-size: 13px;
}

.tabs img {
    width: 90px;
    border: 5px solid #fff;
    float: left;
    margin-right: 3%;
    height: 60px;
    object-fit: cover;
}

.tabs-right {
    float: right !important;
    order: 1;
    width: 64%;
}

/* > MiDA’s Impact */
.midas-inpact {
    width: 80%;
    padding: 30px 10%;
    background: #fdfefd;
}

.midas-inpact ul {
    display: flex;
    flex-wrap: wrap;
}

.midas-inpact ul li {
    width: 32%;
    height: 230px;
    float: left;
    margin-right: 2%;
    list-style: none;
    margin-bottom: 30px;
    overflow: hidden;
}

.midas-inpact ul li span {
    width: 100%;
    height: 300px;
    overflow: hidden;
    
}

.midas-inpact ul li:nth-child(3),
.midas-inpact ul li:nth-child(6) {
    margin-right: 0;
}

.post-sombra {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    text-align: center;
    color: #333;
    font-family: "gilroy";
    padding: 0;
    height: 300px;
    margin: 0 auto;
}

.midas-inpact ul li span {
    position: relative;
}

.midas-inpact ul li img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.midas-inpact ul li .midas-title {
    transform: translate3d(0,0,0);
    position: absolute;
    z-index: 1;
    line-height: 0;
    bottom: 5px;
    background: rgba(0, 0, 0, .4);
    box-shadow: 0 0 68px 70px rgb(0 0 0 / 42%);
    width: 90%;
    padding: 13px 5%;
}

.midas-inpact ul li .midas-title h2 {
    font-weight: normal;
    font-size: 17px;
    text-align: left;
    text-transform: none;
    color: #fff;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 20%);
    line-height: 1.1;
    margin-bottom: 5px;
}

.midas-inpact ul li .midas-title p {
    font-weight: normal;
    font-size: 11px;
    text-align: left;
    text-transform: none;
    color: #fff;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 20%);
    line-height: 1.1;
}


/* ZOOM IMAGEM */
.zoom-img img {
    -webkit-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -moz-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -ms-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -o-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
}

.zoom-card li {
    width: 100%;
    overflow: hidden;
}


.zoom-card li:hover .zoom-img img,
.zoom-card-dest a:hover .zoom-img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 9;
}


/* WEMI PAGE */
.page-wemi {
    width: 100%;
    overflow: hidden;
}

.wemi-header {
    background: url(https://secureservercdn.net/198.71.233.129/4p8.4a4.myftpupload.com/wp-content/uploads/2021/04/Image-Header-e1617311986285.jpg) center 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    min-height: 100vh;
    box-sizing: border-box;
    display: block;
    background-position: top 55px right 20%;
}

.wemi-shadow {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    text-align: center;
    color: #333;
    margin: 0 auto;
    justify-content: flex-end !important;
}

.wemi-shadow h1 {
    color: #fff;
    font-size: 55px;
    position: absolute;
    left: 10%;
    /*top: 8%;*/
    top: 90px;
    animation: animeDown .7s ease-in-out .4s backwards;
    -webkit-animation: animeDown .7s ease-in-out .4s backwards;
}

.wemi-shadow h1 img {
    width: 206px;
}


.wemi-description {
    width: 80%;
    background: #bb1732;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    padding: 16px 10%;
}

.wemi-shadow h3 {
    left: 14%;
    width: 639px;
    margin: 0 auto;
    top: 40%;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    line-height: 20pt;
    text-align: center;
    -webkit-background-clip: text;
    opacity: 0;
    animation: animeDown .90s ease-in-out 1.0s backwards;
    -webkit-animation: animeDown .90s ease-in-out 1.0s backwards;
}

.animate__slideInLeft {
    opacity: 1 !important;
    transform: translate3d(0px, 0px, 0px);
    transition: .5s all ease;;
}

/* > Effect Scroll */

.wemi-shadow .icon-scroll,
.wemi-shadow .icon-scroll:before {
    position: absolute;
    left: 50%;
}

.wemi-shadow .icon-scroll {
    width: 30px;
    height: 50px;
    margin-left: -20px;
    bottom: 110px;
    margin-top: -35px;
    box-shadow: inset 0 0 0 1px #fff;
    border-radius: 25px;
}
.wemi-shadow .icon-scroll:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    margin-left: -4px;
    top: 8px;
    border-radius: 4px;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
    animation-name: scroll;
}

@-webkit-keyframes scroll {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}


@keyframes animeDown{
	0%{
		transform: translateY(-50px);
		-webkit-transform: translateY(-50px);
		opacity: 0;
	}
	100%{
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
		opacity: 1;
	}
}

@keyframes animeUp{
	0%{
		transform: translateY(50px);
		-webkit-transform: translateY(50px);
		opacity: 0;
	}
	100%{
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
		opacity: 1;
	}
}



.wemi-content {
    width: 70%;
    margin: 0 auto;
    overflow: hidden;
    padding: 5% 0;
}

.wemi-content h2 {
    font-weight: bold;
    font-size: 43px;
    text-align: center;
}

.wemi-content h3 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.wemi-figure {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

#calling img {
    width: 96%;
    text-align: center;
    padding: 4%;
    background: #fff;
    /* height: 100%;*/
}

.wemi-figure ul {
    width: 70%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.wemi-block-one ul li {
    width: 48%;
    float: left;
    list-style: none;
}
.wemi-block-one ul li:nth-child(2) {
    float: right;
}

.wemi-block-one ul li p {
    font-size: 12px;
    margin-bottom: 5px;
}

.wemi-block-two {
    background: #EFF0F3;
}


.wemi-post {
    font-weight: 400;
    line-height: 25px;
    list-style-type: none;
    list-style-position: inside;
    letter-spacing: 0.7px;
    font-size: 16px;
    text-align: justify;
    text-transform: initial;
    color: #37474f;
    font-style: normal;
}

.wemi-post p {
    padding-bottom: 20px;
    font-size: 13.5pt;
}

.learn-more {
    /*padding: 30px;*/
    margin-bottom: 10px;
}

.learn-more a {
    font-weight: normal;
    padding: 15px 20px;
    background-color: #CD163F;
    color: #fff;
    line-height: 1;
    transition: .5s ease-out;
    display: inline-block;
    border-radius: 4px;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.learn-more a:hover {
    background: #ff4c4c;
}

.learn-more i {
    margin-left: 5px;
    font-size: 12px;
}



.post-one {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.post-one figure {
    float: left;
    margin-right: 40px;
}


.post-two {
    width: 100%;
    overflow: hidden;
}

.post-two figure {
    float: right;
    margin-left: 40px;
}

.post-two h6 {
    font-size: 20px;
    margin-bottom: 20px;
}

.post-two h6 a {
    color: #ed5353;
}

.post-two h5 {
    font-size: 18px;
    font-weight: 400;
}

.post-two h5 a {
    color: #0099e5;    
}

.post-two .learn-more {
    padding: 0 0 20px;
}


.wemi-block-three {
    text-align: center;
}


/* MERCER */
.mercer-left {
    width: 48%;
    float: left;
}

.mercer-right {
    width: 48%;
    float: right;
    padding-top: 90px;
}


/* FOOTER */

footer {
    width: 80%;
    padding: 20px 10%;
    background: #031043;
    overflow: hidden;
}

footer ul {
    width: 100%;
    overflow: hidden;
    color: #fff;
}

footer ul li {
    width: 20%;
    float: left;
    margin-right: 0;
    margin-left:0;
    list-style: none;
}

footer ul li:nth-child(3),
footer ul li:nth-child(4) {
    margin-top: 32px;
}

footer ul li:nth-child(4){
    margin-right: 0;
}

footer ul li h6 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    color: white !important;
}

footer ul li p {
    font-weight: normal;
    font-size: 13px;
    /*line-height: 20pt;*/
    padding-bottom: 6px;
    color: white !important;
}

footer ul li a {
    font-weight: normal;
    font-size: 13px;
    line-height: 20pt;
    color: #fff;
    font-weight: bold;
    display: block;
}



.footer-copyright {
    width: 100%;
    overflow: hidden;
    background: #020A2B;
    padding: 10px 0;
}

.footer-copyright p {
    color: #808495;
    text-align: center;
}

/* > Footer Social */

.f-social {
    margin-top: -30px !important;
    display: flow-root;
}
.f-social a {
    margin-right: 10px;
    color: #f3f4f7;
}

/* CONTEÚDO POST *

.conteudo-post {
    width: 100%;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    list-style-type: none;
    list-style-position: inside;
    font-size: 15px;
    text-align: justify;
    text-transform: initial;
    color: #444444;   
}

.conteudo-post p {
    padding-bottom: 20px;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 0.7px;
    font-style: normal;
}

.conteudo-post p a {
    color: #0099e5;
    text-decoration: none;
}
.conteudo-post ol {
    margin-left: 15%;
}
.conteudo-post ol li {
    color: #666;
    text-decoration: none;
    text-align: justify;
    font: 18px arial;
    line-height: 20pt;
    padding: 5px 0;
}
.conteudo-post ol li a {
    color: #666;
    text-decoration: underline;
    text-align: justify;
    font: 18px arial;
    line-height: 20pt;
}
.conteudo-post ol a:active {
    text-decoration: none;
}
.conteudo-post ol a:hover {
    text-decoration: underline;
    color: #185a5e;
}

.conteudo-post ul li {
    margin-left: 15%;
    margin-bottom: 20px;
}

.text-post ul {
    color: #333;
}
.text-post ul a {
    color: #1f6a8f;
}
.text-post ul a:hover {
    text-decoration: underline;
    color: #185a5e;
}




blockquote {
    font-size: 15px;
    padding: 10px 20px;
    font-style: italic;
    border-left: 7px solid;
    border-image: linear-gradient(344deg,rgb(228,202,59), rgb(39,174,96)) 2;
}

blockquote {
    margin: 0 0 1rem;
}

blockquote p {
    margin-bottom: -6px !important;
}

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. *
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
        white-space: nowrap;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. *
}


.aligncenter,
div.aligncenter {
    margin-bottom: 20px;
}

*/

/* IFRAME VÍDEO */
.conteudo{
    /*width:700px;
    height:700px;
    */
    margin-bottom: 40px;
}

.conteudo iframe[Attributes Style] {
    width: 600%
}


.heading-line {
    height: 5px;
    display: block;
    border-top-width: 3px;
    background: #CD163F;
    width: 50px;
    margin: 0 auto;
    margin-bottom: 0px;
}



/* EVENTS */

.event-container {
    width: 80%;
    padding: 50px 10% !important;
}

.event-container .heading-line {
    float: left;
    margin-bottom: 31px;
}

.webinars {
    background: #fff;
    padding: 20px 10%;
}

.upcoming {
    background: #F3F4F7;
}

.webinars .heading-line {
    margin-bottom: 20px;
}

.bg-events h1 {
    text-align: center;
    font-weight: bold;
    color: #000;
    padding: 40px 0;
    font-size: 35px;
}

.webinars .heading-line,
.event-container .heading-line {
    background: #23448E !important;
}

.webinars ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.webinars ul li {
    width: 40%;
    float: left;
    margin-right: 4%;
    list-style: none;
    border: 1px solid #fff;
    background: #fff;
}

.webinars ul li:nth-child(3) {
    margin-right: 0;
}

.webinars ul li .event-img {
    width: 95%;
    margin: 0 auto;
    padding-top: 8px;
    overflow: hidden;
}
.webinars ul li .event-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}


.webinars ul li .event-inform {
    width: 95%;
    margin: 0 auto;
    overflow: hidden;
}

.webinars ul li .event-inform h4 {
    font-size: 13px;
    color: #171717;
    font-weight: 500;
    line-height: 14pt;
    margin-bottom: 10px;
}

.webinars ul li .event-inform p {
    margin-bottom: 5px;
    font-size: 13px;
}

.webinars ul li .event-inform p img {
    width: 15px;
    margin-right: 5px;
}

/* News Feed */
.news-container {
    background: #fff;
}

.news-container .bg-events h1 {
    padding-bottom: 0;
}

.news-container .heading-line {
    float: none;
    background: #23448E !important;
}

.news-feed-container {
    width: 80%;
    background: #F3F4F7;
    padding: 40px 10%;
    overflow: hidden;
}


.news-feed-container ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.news-feed-container ul li {
    width: 23%;
    float: left;
    list-style: none;
    margin-right: 2%;
    background: #fff;

    -webkit-box-shadow: 0px 2px 2px 1px #e5e5e5;
    margin-bottom: 20px;
    position: relative;
}

.news-feed-container ul li:nth-child(1) {
    width: 48%;
}

.news-feed-container ul li .news-img img {
    width: 100%;
    /*height: 250px;*/
    height: 180px;
    object-fit: cover;
    margin-bottom: 5px;
}

.news-feed-container ul li:nth-child(1) .news-img img {
    height: 350px;
}

.news-feed-container ul li .news-category {
    transform: translate3d(0,0,0);
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    z-index: 1;
    line-height: 0;
    font-size: 0;
}
.news-feed-container ul li .news-category p {
    padding: 1px 5px;
    background-color: #4AA167;
    color: #fff;
    margin-right: 3px;
    margin-bottom: 3px;
    display: inline-block;
    line-height: 1.7;
    /*max-width: 150px;*/
    overflow: hidden;
    font-size: 12px;
    font-weight: bold;
    /*font-family: 'Roboto', sans-serif;*/
}

.news-feed-container ul li .event-inform {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-feed-container ul li a:hover {
    text-decoration: underline;
}

.news-feed-container ul li h3 {
    margin-bottom: 5px;
    color: #000;
    font-size: 16px;
    color: #171717;
}

.news-feed-container ul li h5 {
    font-weight: normal;
}

.news-feed-container ul li p {
    font-size: 12px;
    margin-bottom: 5px;
    font-style: italic;
}


.AdvisoryCouncilNews {
    background-color: #BBE000 !important;
    color: #000 !important;
}
.IndustryNews {
    background-color: #029CD9 !important;
    color: #fff !important;
}
.MiDANews {
    background-color: #244795!important;
    color: #fff !important;
}
.PartnerNews {
    background-color: #4AA167!important;
    color: #000 !important;
}
.PressRelease {
    background-color: #a4a4a4 !important;
    color: #000 !important;
}
.MiDAPartnerTag {
    background-color: #4AA167!important;
    color: #000 !important;
}


/* NEW PAGE */
.mercer-header {
    background: url(https://midaadvisors.alexsanderarcelino.com/wp-content/uploads/2021/10/img-back.png) center 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    min-height: 100vh;
    box-sizing: border-box;
    display: block;
    background-position: top 55px right 20%;
}


.mercer-description {
    width: 80%;
    background: #002C77;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    padding: 16px 10%;
}


.new-page-card-1 {

}

.mercer-page-card-1 ul li {
    width: 43%;
    list-style: none;
    text-align: center;
    float: left;
    background: #244795;
    overflow: hidden;
    padding: 2%;
}

.mercer-page-card-1 ul li:nth-child(1) {
    /* margin-right: 20%; */
    background: #029CD9;
    padding-bottom: 3.05%;
    margin-right: 3px;
}

.mercer-page-card-1 ul li img {
    width: 100%;
}


.mercer-page-card-1 .heading-line,
.card-1-post .learn-more a {
    background: #002C77;
}

.card-1-post .learn-more a:hover {
    background: #4298b5;
}


.mercer-video .heading-line {
    background: #002C77;
}

.mercer-video .conteudo {
    text-align: center;
}


.mercer-page-card-1 .learn-more-one a {
    background: #244795;
}

.mercer-page-card-1 .learn-more-two a {
    background: #029CD9;
}


/* PRESS NEWSLETTERS */
.press-newsletters {
    width: 80%;
    background: #F3F4F7;
    padding: 40px 10%;
    overflow: hidden;
}

.btn-newsletters {
    text-align: center;
}

.btn-newsletters a {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    line-height: 40px;
    height: 40px;
    font-style: normal;
    font-weight: 600;
    background-color: #1e73be;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    border-width: 0px;
    padding: 10px 20px;
    transition: color .1s linear,background-color .1s linear,border-color .1s linear;
}

.btn-newsletters a:hover {
    background-color: #86af49;
}

.press-newsletters ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.press-newsletters ul li {
    width: 31.3%;
    float: left;
    list-style: none;
    margin-right: 2%;
    background: #fff;

    -webkit-box-shadow: 0px 2px 2px 1px #e5e5e5;
    margin-bottom: 40px;
    position: relative;
}

.press-newsletters ul li:nth-child(1),
.press-newsletters ul li:nth-child(2) {
    width: 48%;
}

.press-newsletters ul li .news-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 5px;
}

.press-newsletters ul li:nth-child(1) .news-img img,
.press-newsletters ul li:nth-child(2) .news-img img {
    height: auto;
}

.press-newsletters ul li .news-category {
    transform: translate3d(0,0,0);
    position: absolute;
    z-index: 1;
    line-height: 0;
    font-size: 0;
}

.press-newsletters ul li .news-category p {
    padding: 1px 5px;
    background-color: #4AA167;
    color: #fff;
    margin-right: 3px;
    margin-bottom: 3px;
    display: inline-block;
    line-height: 1.7;
    overflow: hidden;
    font-size: 12px;
    font-weight: bold;
}

.press-newsletters ul li .event-inform {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px;
}

.press-newsletters ul li a:hover {
    text-decoration: underline;
}

.press-newsletters ul li h3 {
    margin-bottom: 5px;
    color: #000;
    font-size: 16px;
    color: #171717;
}

.press-newsletters ul li h5 {
    font-weight: normal;
}

.press-newsletters ul li p {
    font-size: 12px;
    margin-bottom: 5px;
    font-style: italic;
}

/* Page Header */
.page-header {
    width: 100%;
    overflow: hidden;
    padding-top: 70px;
}

/* Page Header TEAM */
.page-team {
    padding-top: 22px;
}

.page-header-content {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0 0;
}

.page-header-content h1 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 44px;
    margin-bottom: 5px;
}

.page-header-content .heading-line {
    background: #23448E;
}

.page-container {
    width: 100%;
    overflow: hidden;
}

/* Page Header Background */

.page-header-back {
    width: 100%;
    overflow: hidden;
    padding-top: 70px;
    background: url(https://secureservercdn.net/198.71.233.129/4p8.4a4.myftpupload.com/wp-content/uploads/2020/03/iStock-638877910.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
    padding-top: 70px;
}

.page-header-back .page-header-content {
    width: 80%;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 120px 10%;
}

/* Page Carrers */

.page-carrers {
    width: 80%;
    margin: 0 auto;
    padding: 60px 10%;
    height: 400px;
   /* background: #F3F4F7;*/
}

.carrers-title {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carrers-title h3 {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 10px;
}

/* Current Projects */

.page-current {
    width: 80%;
    padding: 60px 10%;
    background: #F3F4F7;
    overflow: hidden;
}

.page-current ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.page-current li {
    width: 31%;
    overflow: hidden;
    float: left;
    margin-bottom: 40px;
    margin-right: 2%;
}

.page-current span {
    width: 100%;
    height: 250px;
    float: left;
    overflow: hidden;
    float: left;
    list-style: none;
    margin-bottom: 15px;
}

.page-current li .page-current-img {
    width: 100%;
    float: left;
    margin-right: 2%;
    background-color: #2b2d2f;
}

.page-current li .page-current-img img {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
}

.page-current li .page-current-img img {
    -webkit-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -moz-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -ms-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -o-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
}

.page-current li:hover .page-current-img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 9;
}

.current-text {
    width: 90%;
    margin: 0 auto;
}

.current-text h2 {
    font-size: 18px;
    font-weight: normal;
    text-align: center;
}

.current-text a {
    color: #1e73be;
}

/* Usaid Implementing */
.page-usaid {
    width: 80%;
    padding: 60px 10%;
    overflow: hidden;
    background: #F3F4F7;
}

.page-usaid h2 {
    text-align: center;
    font-size: 18px;
    color: #000;
    font-weight: normal;
    margin-bottom: 40px;
}

.page-usaid ul {
    width: 100%;
    padding: 40px;
    overflow: hidden;
}

.page-usaid ul li {
    list-style: none;
}

.usaid-img {
    width: 25%;
    float: left;
}

.usaid-img img {
    width: 100%;
}

.usaid-text {
    width: 70%;
    float: right;
    margin-left: 3%;
}

.usaid-text p {
    font-size: 14px;
    margin-bottom: 25px;
}

.usaid-text a {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    border-color: #1e73be;
    font-size: 15px;
    line-height: 40px;
    height: 40px;
    font-style: normal;
    font-weight: 600;
    background-color: #1e73be;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    border-width: 0px;
    padding: 10px 25px;
    position: relative;
}

.usaid-text a:hover {
    background-color: #2bb351;
}

/* Page Gateway */
.page-gateway {
    width: 80%;
    padding: 60px 10%;
    overflow: hidden;
    /*background: #F3F4F7;*/
}

.page-gateway h2 {
    text-align: center;
    font-size: 19px;
    color: #000;
    font-weight: normal;
    margin-bottom: 40px;
}

.page-gateway ul li {
    width: 100%;
    list-style: none;
    border-top: 1px solid #7777;
    overflow: hidden;
    padding: 60px 0;
}

.gateway-img {
    width: 25%;
    float: left;
}

.gateway-img img {
    width: 100%;
}

.gateway-text {
    width: 70%;
    float: right;
    margin-left: 3%;
}

.gateway-text h3 {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 20px;
}

.gateway-text p {
    font-size: 14px;
    margin-bottom: 25px;
}

.gateway-text a {
    color: #1e73be;
}

/* Page Asset */
.page-asset {
    width: 80%;
    padding: 60px 10%;
    overflow: hidden;
    /*background: #F3F4F7;*/
}

.page-asset p {
    font-size: 14px;
    margin-bottom: 15px;
}

.page-asset ul {
    width: 100%;
    overflow: hidden;
    padding-top: 40px;
}

.page-asset ul li {
    width: 100%;
    list-style: none;
    border-top: 1px solid #7777;
    overflow: hidden;
    padding: 60px 0;
}

.btn-asset a {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    border-color: #1e73be;
    font-size: 15px;
    line-height: 40px;
    height: 40px;
    font-style: normal;
    font-weight: 600;
    background-color: #1e73be;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    border-width: 0px;
    padding: 10px 25px;
    position: relative;
}

.btn-asset a:hover {
    background-color: #2bb351;
}

/* Page Industry*/
.page-industry {
    width: 80%;
    padding: 60px 10%;
    overflow: hidden;
    background: #FFFFFF;
}

.page-industry p {
    font-size: 14px;
    margin-bottom: 15px;
}

.page-industry ul li {
    width: 20%;
    float: left;
    list-style: none;
    margin-right: 5%;
}

.page-industry ul li img {
    width: 100%;
}


/* Page Advisory */
.page-advisory-title {
    width: 80%;
    background: #fff;
    overflow: hidden;
    padding: 50px 10%;
}

.page-advisory-title h2 {
    font-weight: normal;
    font-size: 18px;
    text-align: center;
}


.page-advisory {
    width: 100%;
    overflow: hidden;
    background: #F7F7F7;
}

.page-advisory ul li {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 10%;
}

.page-advisory ul li:nth-child(2) {
    background: #fff;
}

.page-advisory ul li img {
    width: 100%;
    margin-left: 3%;
}

.page-advisory h1 {
    color: #000;
    font-size: 29px;
    margin-bottom: 20px;
    line-height: 26pt;
}
.page-advisory p {
    font-size: 14px;
    margin-bottom: 15px;
}

.img-rigth {
    width: 30%;
    float: right;
}

.text-left {
    width: 67%;
    float: left;
}

.img-left {
    width: 30%;
    float: left;
}

.text-rigth {
    width: 67%;
    float: right;
}

/* Strategic Partnerships*/
.strategic-partnerships {
    background: #F7F7F7;
}

.strategic-partnerships .page-header-content {
    padding: 80px 0 80px;
}

.page-strategic {
    width: 80%;
    padding: 60px 10%;
    overflow: hidden;
}

.page-strategic p {
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.page-strategic ul {
    display: flex;
    flex-wrap: wrap;
}

.page-strategic ul li {
    width: 28%;
    margin-right: 5%;
    list-style: none;
    overflow: hidden;
    float: left;
    text-align: center;
    margin-bottom: 120px;
}

.strategic-text {
    width: 100%;
    overflow: hidden;
}

.strategic-text h2 {
    color: #171717;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 20px;
}

.strategic-text p {
    font-size: 13px;
}

.page-strategic img {
    max-width: 100%;
}

/* RESPONSIVE */

@media only screen and (max-width: 1250px){
    .wemi-content {
        width: 80%;
    }    
}

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

    /* Carousel */

    .card-carousel .result p {
        font-size: 10px;
    }

}

@media only screen and (max-width: 1690px){
    .wemi-header {
        background-position: top 55px right 39%;
    }
}

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

    /* FOOTER */
    footer ul {
        display: flex;
        flex-wrap: wrap;
    }
    footer ul li {
        width: 48%;
    }

    /* > Footer Social */
    .f-social {
        margin-top: 15px !important;
        display: flow-root;
    }

    /* EVENTS */
    .webinars ul li .event-img img {
        height: 150px;
    }

    /* > Index > Vídeo */
    .card-video ul li h2 {
        margin-top: 10%;
    }

    /* News Feed */
    .news-feed-container {
        width: 90%;
        padding: 40px 5%;
    }

    /* Mercer */
    .mercer-right {
        padding-top: 50px;
    }

}

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

    /* Index > About */
    .card-about ul li {
        width: 100%;
    }

    /* Index > About Us */
    .card-video ul li {
        width: 100%;
        margin-right: 0;
    }

    .card-video ul li:nth-child(1) {
        margin-bottom: 20px;
    }

    /* Carousel */

    /* > Index > Vídeo */
    .card-video ul li h2 {
        margin-top: 0;
    }

    /* Currenr Projects */
    .page-current li {
        width: 48%;
    }

    /* Page Industry*/
    .page-industry ul li {
        width: 28%;
    }

    /* Strategic Partnerships */
    .page-strategic ul li {
        width: 45%;
    }

}

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


    /* TABS INDEX */
    .tabbed-content span {
        display: none;
    }

    /* */
    .mercer-page-card-1 ul li {
        width: 96%;
    }

    /* Usaid Implementing */
    .usaid-img {
        width: 60%;
        float: none;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .usaid-text {
        width: 100%;
        margin-left: 0;
    }

    /* Page Gateway */
    .gateway-img {
        width: 60% !important;
        float: none !important;
        text-align: center !important;
        margin-bottom: 20px !important;
        overflow: hidden;
    }

    .gateway-img img {
        float: left !important;
    }

    .gatewayusaid-text {
        width: 100%;
        margin-left: 0;
    }

    .gateway-text {
        width: 100%;
        margin-left: 0;
    }

    /* Page Advisory */
    .img-rigth,
    .text-left,
    .img-left,
    .text-rigth {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .page-advisory ul li img {
        margin-left: 0;
    }

}

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

    /* INDEX */

    /* > Card Post */
    .card-post {

    }

    .card-post ul li span {
        height: 150px;
        margin-bottom: 5px;
    }

    .card-post li .bloco-img img {
        min-height: 150px;
    }
    
    /* WEMI */
    
    .wemi-shadow .icon-scroll {
        bottom: 170px;
    }
    
    .wemi-shadow h3 {
        font-size: 23px;
        width: 98%;
    }

    #calling img {
        width: 90%;
    }

    .wemi-block-one ul li {
        width: 100%;
    }

    .wemi-block-one ul li img {
        width: 50%;
    }

    .post-one figure,
    .post-two figure {
        width: 100%;
        margin-right: 0;
        text-align: center;
        margin-bottom: 10px;
    }
    .post-one figure img,
    .post-two figure img {
        width: 80%;
    }

    /* EVENTS */
    .webinars ul li {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 30px;
    }
    .webinars ul li .event-img img {
        height: 280px;
    }

    /* Index > Carousel */

    .slider-nav {
        margin-bottom: 50px;
    }

    .slider__caption {
        padding: 10px 10%;
        padding-bottom: 80px;
    }

    .box-img {
        right: 20%;
    }

    .box-carousel {
        top: 40%;
    }

    /* News Feed */
    .news-feed-container ul li {
        width: 48%;
    }
    .news-feed-container ul li:nth-child(1) {
        width: 100%;
    }
}

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

    .carousel {
        margin-bottom: -6px;
    }

    .carousel-bloc {
        width: 100%;
    }

    .carousel-text {
        /*width: 70%;*/
        width: 90%;
    }

    .col-sm-3 {
        width: 100.1%;
    }

    /* MiDA´s IMPACT */
    .midas-inpact ul li {
        width: 100%;
        margin-right: 0 !important;
    }

    /* Newsletters */
    .press-newsletters ul li:nth-child(1),
    .press-newsletters ul li:nth-child(2) {
        width: 100%;
        margin-right: 0;
    }

    .press-newsletters ul li {
        width: 48%;
    }

}

@media only screen and (max-width: 580px){
    .wemi-shadow h3 {
        width: 73%;
    }

    /* Carousel */

    .slider__item:nth-child(2) img {
        width: 100%;
        padding-top: 40px;
    }

    
}

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

    /* TABS INDEX */
    .tabbed-content.tabs-side .tabs {
        width: 100%;
    }

    .tabbed-content .tabs li {
        width: 20% !important;
        float: left;
    }

    .tabs ul li a {
        padding: 12%;
    }

    .tabs img {
        width: 86%;
        height: 46px;
    }

    .tabs-right {
        width: 100%;
    }

    /* > Card Post */
    .card-post ul li {
        width: 100%;
        margin: 0 auto !important;
    }
    
    /* WE>MI */
    .wemi-shadow h3 {
        width: 100%;
    }
    footer ul li {
        width: 100%;
    }

    /* Carousel *
    .slider__caption {
        width: 250px;
    }*/

    /* Carousel Index */
    .carousel-inner img {
        height: 250px;
    }

    .carousel-text {
        padding: 10px 5% 27px;
    }

    .carousel-text h2 {
        font-size: 14px;
    }

    /* Currenr Projects */
    .page-current li {
        width: 100%;
        margin-right: 0;
    }

    /* Page Industry*/
    .page-industry ul li {
        width: 45%;
    }
    
}

@media only screen and (max-width: 420px){
    /* Carousel */

    .box-img {
        display: none;
    }

    .box-carousel {
        left: 15%;
        width: 60%;
    }

    .box-carousel h2 {
        font-size: 16px;
    }

    /* News Feed */
    .news-feed-container ul li {
        width: 100%;
        margin-right: 0 !important;
    }

    /* Mercer Publications */
    .mercer-page-card-1 ul li:nth-child(1) {
        margin-right: 0;
    }

    .mercer-page-card-1 ul li {
        width: 100%;
        margin: 0 auto;
    }

    .mercer-page-card-1 ul li img {
        margin-bottom: 5px;
    }

    .mercer-left,
    .mercer-right {
        width: 96%;
    }

    .mercer-right {
        padding-top: 8px;
    }

    /* Carousel */
    .carousel-inner img {
        height: 280px;
    }

    .carousel-text {
        padding: 13px 5% 27px;
    }

    .carousel-text h2 {
        font-size: 14px;
    }

    /* MiDA´s IMPACT */
    .midas-inpact ul li,
    .midas-inpact ul li span,
    .midas-inpact ul li img {
        height: 180px;
    }

    /* Newsletters */
    .btn-newsletters a {
        display: inline-table;
    }
    .press-newsletters ul li {
        width: 100%;
        margin-right: 0;
    }

    /* Currenr Projects */
    .page-current span {
        height: 200px;
    }

    .page-current li .page-current-img img {
        min-height: 200px;
    }

    /* Strategic Partnerships */
    .page-strategic ul li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }

}