/* Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
    font-family: 'Work Sans', sans-serif;
    color: #000;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}

.layouts ul li {
	margin-bottom:5px;
}

.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}

.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}

.row {
    max-width: 1300px;
    padding: 0 30px;
}

.row-full {
    max-width: none;
    padding: 0;
}

.row.row-sm {
    max-width: 880px;
}

.row.row-ind {
    max-width: 1090px;
    padding: 0 30px;
}

.row.row-md {
    max-width: 1165px;
    padding: 0 30px;
}

.row.row-slider-partners {
    max-width: 986px;
    padding: 0 30px;
}

/* -- main styles -- */

.nopad {
	padding:0px;
}

.nopadleft {
	padding-left:0px;
}

.nopadright {
	padding-right:0px;
}

strong {
	font-weight: bold;
}

i {
	font-style: italic;
}

em {
	font-style: italic;
}

.clear {
	clear:both;
}

.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    margin-bottom: 15px;
}


.invi {
	visibility: hidden;
	opacity: 0;
}

/* preloader */

.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */

.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 20px;
    float: right;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 24px;
    height: 3px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #000;
}

.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -7px;
}

.hamburger-inner:after {
    bottom: -7px;
}

.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}

.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

.header {
    padding-top: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
}

.header-nav {
    padding-top: 16px;
    margin-right: 15px;
    display: inline-block;
}

.header-nav ul li {
    display: inline-block;
    margin-right: 20px;
}

.header-nav ul li:last-child {
    margin-right: 0;
}

.header-nav ul li a {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #000;
    letter-spacing: 0.5px;
    display: inline-block;
    padding-bottom: 25px;
    line-height: 1.35;
    transition: 0.2s;
    position: relative;
}

.header-nav ul li a:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 5px;
    bottom: 0;
    left: 0;
    background: #F7941E;
    opacity: 0;
    transition: 0.2s;

}

.header-nav ul li a:hover {
    color: #fff;
}

.header-nav ul li a:hover:after {
    opacity: 1;
}

.header-ctas {
    text-align: right;
    margin-left: 15px;
    display: inline-block;
}

.text-quote{    
    font-family: "Nunito";
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}
.text-author{
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
}

/*buttons*/

.pcf-btn,
.pcf-btn:focus,
.pcf-btn:active,
.header-nav ul.sub-menu li.pcf-btn a,
.header-nav ul.sub-menu li.pcf-btn:focus,
.header-nav ul.sub-menu li.pcf-btn:active {
    font-family: 'Nunito', sans-serif;
    display: inline-block;
    font-size: 16px;
    line-height: 1.375;
    font-weight: 800;
    letter-spacing: 0.75px;
    text-align: center;
    border: 1px solid transparent;
    transition: 0.2s;
    min-width: 125px;
    padding: 14px 13px 12px;
    border-radius: 25px;
}




.header-nav ul.sub-menu li.btn-menu a {
    font-family: 'Nunito', sans-serif;
    display: inline-block;
    font-size: 16px;    
    font-weight: 800;
    letter-spacing: 0.75px;
    text-align: center;
    border: 1px solid transparent;
    transition: 0.2s;    
    padding: 14px 20.5px;
    border-radius: 25px;
    background: #F7941E;
    color: #fff;
    border-color: #F7941E;    
    min-width: 200px;
    border-radius: 30px;
    transition: 0.2s;
    height: 50px;
}

.header-nav ul.sub-menu li.btn-menu a:hover {
    color: #fff;
    border-color: #1FA096;
    background: #1FA096;
}

.header-nav ul.sub-menu li.btn-menu a::after {
    display: none;
}

.pcf-btn.btn-green-clear,
.header-nav ul.sub-menu li.pcf-btn.btn-green-clear a{
    border-color: #1FA096;
    color: #1FA096;
    background: transparent;
}

.pcf-btn.btn-green-clear:hover,
.header-nav ul.sub-menu li.pcf-btn.btn-green-clear a:hover {
    color: #fff;
    background: #1FA096;
}

.pcf-btn.btn-green,
.header-nav ul.sub-menu li.pcf-btn.btn-green a {
    background: #1FA096;
    color: #fff;
    border-color: #1FA096;
}

.pcf-btn.btn-green:hover,
.header-nav ul.sub-menu li.pcf-btn.btn-green a:hover {
    background: #F7941E;
    color: #fff;
    border-color: #F7941E;
}

.pcf-btn.btn-yellow,
.header-nav ul.sub-menu li.pcf-btn.btn-yellow a {
    background: #F7941E;
    color: #fff;
    border-color: #F7941E;
}

.pcf-btn.btn-yellow:hover,
.header-nav ul.sub-menu li.pcf-btn.btn-yellow a:hover {
    color: #fff;
    border-color: #1FA096;
    background: #1FA096;
}

.pcf-btn.btn-yellow-clear,
.header-nav ul.sub-menu li.pcf-btn.btn-yellow-clear a {
    border-color: #F7941E;
    background: transparent;
    color: #F7941E;
}

.pcf-btn.btn-yellow-clear:hover,
.header-nav ul.sub-menu li.pcf-btn.btn-yellow-clear a:hover {
    background: #F7941E;
    color: #fff;
}

.pcf-btn.btn-lg,
.header-nav ul.sub-menu li.pcf-btn.btn-lg a {
    padding: 18px 13px 18px;
    min-width: 200px;
    border-radius: 30px;
    transition: 0.2s;
}


/*buttons*/



.intro-video {
    background-size: cover!important;
    height: 680px;
    position: relative;
    overflow: hidden;

}

.intro-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.intro-content {
    background: #fff;
}

.intro-content-hold {
    margin-top: -150px;
    background: #fff;
    position: relative;
    padding: 8%;
}

.intro-title {
    margin-bottom: 10px;
}

.intro-text {
    margin-bottom: 50px;
}

.overlay-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0;
    z-index: 90;
    transition: 0.2s;
    visibility: hidden;
}

.overlay-wrapper.show {
    opacity: 0.25;
    visibility: visible;
}

.intro-ctas a {
    margin-right: 20px;
}

.intro-ctas a:last-child {
    margin-right: 0;
}

.header-logo img {
    /* max-width: 175px; */
}
.header-logo a {
    transition: 0.2s;
}

.header-logo a:hover {
    opacity: 0.8;
}

.header-nav ul li.menu-item-has-children {
    position: relative;
}

.header-nav ul li.menu-item-has-children ul.sub-menu {
    margin: 0;
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 30px;
    left: 0;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    min-width: 245px;
}

.header-nav ul li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
}

.header-nav ul.sub-menu li {
    display: block;
    padding: 0;
}

.header-nav ul.sub-menu li a {
    display: block;
    white-space: nowrap;
    font-weight: 600;
    color: #7F7F7F;
    padding-bottom: 0;
}

.header-nav ul.sub-menu li.pcf-btn a:after {
    content: none;
}

.menu-cta {
    margin-top: 25px;
}

.header-nav ul.sub-menu li:not(.pcf-btn) a:after {
    background: url('../img/arrow-right-orange.svg') no-repeat center center;
    width: 10px;
    height: 8px;
    background-size: contain!important;
    right: 4px;
    left: auto;
    top: 6px;
}

.header-nav ul.sub-menu li {
    margin-right: 0;
    position: relative;
    margin-bottom: 15px;
}

.header-nav ul.sub-menu li a:hover {
    color: #F7941E;
}

.header-nav ul.sub-menu li a:hover:after {
    opacity: 1;
    right: 0;
}

.mobile-menu-hold {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: #FEF4E8;
    display: none;
    padding: 110px 30px 30px;
}

.mobile-menu-hold ul li ul.sub-menu {
    display: none;
    margin-left: 0px;
    padding-top: 7px;
}

.mobile-menu-nav ul li {
    position: relative;
    margin-bottom: 25px;
}
.mobile-menu-nav ul li ul li {
    margin-bottom: 3px;
}
.mobile-menu-nav ul li ul li:last-child {
    margin-bottom: 0px;
}
.mobile-menu-nav ul li ul li a {
    color: #7f7f7f;
    font-size: 14px;
    font-weight: 600;
  
}

.mobile-menu-nav ul li a {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    letter-spacing: 0.75px;
}

.mobile-menu-nav ul li.pcf-btn a,
.mobile-menu-nav ul li.pcf-btn a:focus,
.mobile-menu-nav ul li.pcf-btn a:active {
    font-size: 14px;
}

.mobile-menu-nav {
    margin-bottom: 45px;
}

.mobile-menu-nav ul li.menu-item-298 span,
.mobile-menu-nav ul li.menu-item-has-children span {
    position: absolute;
    width: 32px;
    height: 32px;
    top: -5px;
    /* background: url('../img/arrow-right-black.svg') no-repeat center center; */
    /* background-size: contain!important; */
    right: 0;
    border-radius: 50%;
    border: 2px solid #f7941e;
    transition: 0.2s;
}
.mobile-menu-nav ul li.menu-item-298 span:before,
.mobile-menu-nav ul li.menu-item-has-children span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url(../img/subnav-plus.svg) no-repeat center center;
    transition: 0.2s;
}
.mobile-menu-nav ul li.menu-item-298 span:after,
.mobile-menu-nav ul li.menu-item-has-children span:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url(../img/subnav-minus.svg) no-repeat center center;
    transition: 0.2s;
    opacity: 0;
}

.mobile-menu-nav ul li.menu-item-298 span.active,
.mobile-menu-nav ul li.menu-item-has-children span.active {
    /* transform: rotate(90deg); */
    background: #f7941e;
}
.mobile-menu-nav ul li.menu-item-298 span.active:before,
.mobile-menu-nav ul li.menu-item-has-children span.active:before {
    opacity: 0;
}
.mobile-menu-nav ul li.menu-item-298 span.active:after,
.mobile-menu-nav ul li.menu-item-has-children span.active:after {
    opacity: 1;
}

.mobile-ctas a {
    margin-bottom: 10px;
}

.wwd-image {
    background-size: cover!important;
    padding-bottom: 83%;
}

.wwd-right {
    padding-top: 8%;
    padding-left: 9%;
    padding-right: 30px;
}

.home-section-entry.entry h2 {
    color: #000;
    position: relative;
    padding-top: 25px;
    margin-bottom: 18px;
}

.home-section-entry.entry h2:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 5px;
    left: 0;
    top: 0;
    background: #F7941E;
}

.home-section-entry.entry p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 30px;
}

.wwd-text-box {
    max-width: 505px;
}

.what-we-do-list ul li {
    float: left;
    width: 24%;
    margin-right: 1.3%;
}

.what-we-do-list ul li:nth-child(4n) {
    margin-right: 0;
}

.wwd-list-item {
    background: #FEF4E8;
    padding: 45px 40px 50px;
    position: relative;
    transition: 0.6s ease-in-out;
}

.wwd-item-image-hold {
    transition: 0.6s ease-in-out;
    margin-bottom: 20px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.wwd-item-image {
    background: #fff;
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    /*margin-bottom: 20px;*/
    transition: 0.6s ease-in-out;
}

.wwd-item-image svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60%;
}

.wwd-item-title {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.25px;
    color: #000;
    font-weight: 600;
    position: relative;
}

.wwd-item-title svg {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 1;
    transition: 0.6s opacity ease-in-out;
}

.wwd-item-image svg path {
    transition: 0.6s ease-in-out;
}

.wwd-item-text {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    font-family: "Nunito", sans-serif;
    max-height: 0px;
    overflow: hidden;
    margin-bottom: 0;
    transition: 0.6s ease-in-out;
}


.wwd-item-bottom {
    position: absolute;
    right: 40px;
    left: 40px;
    bottom: 55px;
    opacity: 0;
    transition: 0.6s ease-in-out;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding-left: 45px;
    padding-top: 5px;

}

.wwd-item-bottom svg {
    position: absolute;
    top: 0;
    left: 0;
}

.wwd-item-bottom svg path#Oval {
    fill: #fff;
    stroke: #fff;
}


.what-we-do-list {
    margin-top: -8%;
    margin-bottom: 150px;
}

.what-we-do-list ul li a:hover .wwd-item-text {
    max-height: 216px;
    margin-bottom: 58px;
}

.what-we-do-list ul li a:hover .wwd-list-item {
    transform: translateY(-20px);
    background: #F7941E;
    box-shadow: 0px 2px 50px rgba(0,0,0,0.25);
}

.what-we-do-list ul li a:hover .wwd-item-bottom {
    opacity: 1;
}

.what-we-do-list ul li a:hover .wwd-item-title svg {
    opacity: 0;
}

.what-we-do-list ul li a:hover .wwd-item-image-hold {
    margin-top: -70%;
}

.what-we-do-list ul li a:hover .wwd-item-image svg path {
    fill: #F7941E;
}

.what-we-do-list ul {
    float: left;
    width: 100%;
    height: 350px;
}

.stats-section {
    overflow: hidden;
}

.stats-hold {
    padding: 100px 10px 90px 105px;
    background: #1FA096;
    position: relative;
}

.stats-hold:after {
    position: absolute;
    left: 100%;
    right: -9999px;
    top: 0;
    bottom: 0;
    background: #1FA096;
    content: '';
}

.stats-hold:before {
    position: absolute;
    left: -9999px;
    right: -9999px;
    content: '';
    bottom: 0;
    top: 50%;
    background: rgba(31, 160, 150, 0.1);
}

.stats-title {
    padding-right: 30px;
}

.stats-top-text {
    padding-left: 30px;
}

.stats-title.entry h2 {
    color: #fff;
    margin-bottom: 0;
}

.stats-top-text.medium-p {
    color: #fff;
    opacity: 0.75;
}

.stats-top {
    margin-bottom: 50px;
}

.stats-bottom ul li {
    float: left;
    width: 17%;
    margin-right: 3.75%;
}

.stats-bottom ul li:nth-child(5n) {
    margin-right: 0;
}

.stats-bottom.stats-bottom-wider ul li {
    width: 40%;
    margin-right: 10%;
}
.stats-bottom.stats-bottom-wider ul li:nth-child(5n) {
    margin-right: 10%;
}
.stats-bottom.stats-bottom-wider ul li:nth-child(2n) {
    margin-right: 0%;
}

.stats-number {
    font-size: 60px;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.9px;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 18px;
}

.stats-number:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 5px;
    background: #fff;
}

.stats-number span {
    font-size: 48px;
}

.stats-text.entry p {
    color: #fff;
    opacity: 0.75;
    margin-bottom: 0;
}

.scholars-section {
    padding-top: 150px;
    padding-bottom: 150px;
    background: rgba(31, 160, 150, 0.1);
    overflow:hidden;
    
}

.fix2{
    position: relative;    
}
.fix2::after{
    content: "";
    background-color: #1fa09583;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;    
}

.bg-white{
    background-color: #fff;
}

.scholars-title {
    margin-bottom: 18px;
    z-index: 1;
    position: relative;
    
}
.fix1{
    color: #fff;
    z-index: 1;
    position: relative;
}

.scholars-description.fix1 p{
    color: #fff;
    z-index: 1;
    position: relative;
}

.btn-hold{
    position: relative;
    z-index: 1;
}

.scholars-top {
    padding:  0 20%;
    margin-bottom: 100px;
}

.scholars-slider-left {
    padding-left: 9%;
}

.scholars-image-hold {
    position: relative;
    /*overflow: hidden;*/
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    z-index: 5;
}

.scholars-description.entry p {
    margin-bottom: 0;
}

.scholars-image {
    background-size: cover!important;
    padding-bottom: 100%;
    border-radius: 50%;
    width: 100%;
    position: absolute;
    top: 0;
    transition: 0.6s ease-in-out;
    transform: translateY(100%);
    opacity: 0;
    box-shadow: 0px 2px 50px rgba(0,0,0,0.25);
}

.scholars-nav {
    float: right;
}

.scholars-counter,
.scholars-nav ul {
    display: inline-block;
}

.scholars-counter {
    margin-right: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.25);
    position: relative;
    top: -16px;
}

.scholars-counter .current {
    color: #000;
}

.scholars-nav ul li {
    display: inline-block;
    margin-right: 10px;
}

.scholars-nav ul li:last-child {
    margin-right: 0;
}

.scholars-cta {
    float: left;
}

.scholars-image.active {
    transform: translateY(0);
    opacity: 1;
}

.scholars-slider-right-hold {
    padding-left: 10%;
    padding-top: 70px;
    width: calc(100vw - ((100vw - 1300px) / 2) - (1300px * 0.4166667) - 15px);
}

.scholars-quote {
    position: relative;
    margin-bottom: 35px;
}

.scholars-quote.entry h3 {
    margin-bottom: 0;
}

.scholars-author.entry p {
    margin-bottom: 0;
}

.scholars-quote:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 50px;
    height: 5px;
    background: #F7941E;
}

.scholars-author {
    margin-bottom: 50px;
}



.owl-carousel.scholars-carousel .owl-item {
    opacity: 0.15;
    transition: 0.2s;
}

.owl-carousel.scholars-carousel .owl-item.visible {
    opacity: 1;
}

.scholars-next g#Group-7-Copy {
    stroke: #82111d;
    stroke-dasharray: 160;
    stroke-dashoffset: -160;
}


.scholars-carousel .owl-item.visible .scholars-next g#Group-7-Copy path {
    animation: circle-progress 11.8s ease-in-out both;
}

.full-image-section {
    background-size: cover!important;
    height: 500px;
}

.how-to-help-left {
    padding-top:150px;
    padding-left: 9%;
    padding-right: 9%;
}

.how-to-help-right {
    padding-left: 10px;
}

.how-to-help-nav {
    background: #FEF4E8;
    padding: 100px 40px;
    margin-top: -100px;
}

.how-to-help-nav ul li a {
    background: #fff;
    color: #000;
    font-weight: 800;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    letter-spacing: 0.75px;
    position: relative;
    display: block;
    border-radius: 40px;
    height: 80px;
    padding: 10px 77px;
    transition: 0.2s;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.how-to-help-nav ul li {
    margin-bottom: 20px;
}

.how-to-help-nav ul li:last-child {
    margin-bottom: 0;
}

.how-to-help-nav ul li a img,
.how-to-help-nav ul li a svg{
    position: absolute;
    top: 28px;
    left: 30px;
    max-height: 24px;
    max-width: 24px;
    width: 24px;
}

.how-to-help-nav ul li a:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 8px;
    background-size: contain!important;
    top: 36px;
    right: 30px;
    background: url('../img/arrow-right-black.svg') no-repeat center center;
    transition: 0.2s;
}

.how-to-help-nav ul li a:hover:after {
    transform: translateX(5px);
}

.how-to-help-section {
    margin-bottom: 150px;
}

.marquee-section {
    overflow: hidden;
    color: rgba(31, 160, 150, 0.25);
    font-weight: 600;
    font-size: 150px;
    letter-spacing: -0.05em;
    line-height: 1.17;
    margin-bottom: 150px;
}

.marquee-section span {
    color: #F7941E;
}


.newsletter-section {
    overflow: hidden;
}

.newsletter-hold {
    padding-top: 70px;
    padding-bottom: 70px;
    background: #F7941E;
    position: relative;
}

.newsletter-hold:before {
    position: absolute;
    top: 0;
    right: 100%;
    left: -99999px;
    bottom: 0;
    background: #F7941E;
    content: '';

}

.newsletter-right {
    padding-right: 105px;
    padding-left: 10px;
}

.newsletter-left {
    padding-top: 16px;
    padding-right: 10px;
}

.newsletter-left.entry h3 {
    margin-bottom: 0;
}

.form-element input,
.form-element input:focus,
.form-element input:active {
    box-shadow: none;
    border: none;
    border-radius: 30px;
    height: 60px;
    background: #fff;
    padding: 15px 30px;
    font-size: 18px;
    font-family: "Nunito", sans-serif;
    color: #000;
    font-weight: 600;
}

.form-element label {
    position: relative;
    width: 100%;
}

.form-element button {
    position: absolute;
    width: 32px;
    height: 32px;
    background: url("../img/arrow-circle.svg") no-repeat center center;
    background-size: contain!important;
    top: 14px;
    right: 20px;
}

.form-element input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #7F7F7F;
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.form-element input::-moz-placeholder { /* Firefox 19+ */
    color: #7F7F7F;
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.form-element input:-ms-input-placeholder { /* IE 10+ */
    color: #7F7F7F;
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.form-element input:-moz-placeholder { /* Firefox 18- */
    color: #7F7F7F;
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.footer-top {
    padding: 100px 0;
}

.footer-bottom {
    background: rgba(31, 160, 150, 0.1);
    padding: 24px 0 17px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 16px;
    font-weight: 600;
    font-family: "Nunito", sans-serif;

}

.footer-bottom-left {
    float: left;
}

.footer-bottom-right {
    float: right;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-ctas a {
    width: 100%;
    margin-bottom: 10px;
}

.footer-logo img {
    /* height: 55px; */
}

.footer-ctas {
    margin-bottom: 20px;
}

.footer-left {
    padding-right: 8%;
}

.footer-right {
    padding-left: 4%;
}

.footer-nav ul li {
    float: left;
    width: 18%;
    margin-right: 2.5%;
}

.footer-nav ul li a {
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    color: #000;
    line-height: 1.375;
    transition: 0.2s;
}

.footer-nav ul li:nth-child(5n) {
    margin-right: 0;
}

.footer-nav ul li ul.sub-menu li {
    float: none;
    width: 100%;
    margin-bottom: 0;
}

.footer-nav ul li ul.sub-menu {
    margin: 0;
    padding-top: 10px;
}

.footer-nav ul li ul.sub-menu li a {
    color: #7F7F7F;
    font-weight: 600;
    font-size: 14px;
    font-family: "Nunito", sans-serif;
    line-height: 1.6;
    transition: 0.2s;
}

.footer-nav ul li a:hover {
    color: #F7941E!important;
}

.footer-socials ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-socials ul li {
    display: inline-block;
}

.footer-socials ul li a {
    transition: 0.2s;
}

.footer-socials ul li a:hover {
    opacity: 0.8;
}

.footer-socials {
    margin-bottom: 25px;
}

.page-404-hold {
    background-size: cover!important;
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
}

.page-404-book-hold {
    text-align: center;
}

.page-404-book {
    background-size: cover!important;
    padding-top: 134px;
    padding-bottom: 134px;
    background: url('../img/404-book.svg') no-repeat center center;
    width: 570px;
    height: 413px;
    margin: 0 auto;
    margin-bottom: 52px;
}

.page-404-left-text {
    float: left;
    width: 50%;
    font-size: 125px;
    color: #000;
    line-height: 1.17;
    font-weight: 700;
    letter-spacing: -0.04em;
    padding-left: 10px;
}

.page-404-right-text {
    float: left;
    width: 50%;
    text-align: left;
    padding-left: 70px;
}

.page-404-right-text.entry h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.page-404-right-text.entry h2:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 5px;
    background: #F7941E;
    bottom: 0;
    left: 0;
}




/*entry*/

.entry h1 {
    font-size: 60px;
    line-height: 80px;
    letter-spacing: -0.5px;
    font-weight: 600;
}

.entry h2 {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -0.25px;
    font-weight: 600;
}

.entry h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;    
}

.entry h6 {
    color: #7f7f7f;
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
}

.entry p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #7f7f7f;
    margin-bottom: 30px;
}

.inner-intro {
    padding-top: 165px;
    padding-bottom: 85px;
    background: #FEF4E8;
    text-align: center;
}

.entry-section {
    padding: 100px 0;
}


.entry > ul > li {
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    line-height: 24px;
    color: #7f7f7f;
    margin-bottom: 0;
    padding-left: 20px;
    position: relative;
}

.entry > ul > li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7F7F7F;
    top: 10px;
    left: 0;
}
.entry > ul h3{
    color: #1FA096;
}

.entry > ul {
    margin-bottom: 30px;    
}

.entry a{
    color: #1FA096;
    transition: 0.2s;
}

.entry a:hover{
    opacity: 0.8;
}

/*entry*/

/*text classes*/

.large-p {
    font-family: 'Nunito',sans-serif;
    font-size: 22px;
    line-height: 36px;
    color: #7f7f7f;
    font-weight: 600;
}

.medium-p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #7f7f7f;
    font-weight: 600;
}

/*text classes*/


/* forStudents overview */
.intro-height{
    height: 450px;
    position: relative;
    overflow: hidden;
} 
.centering-box{    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 71%;
    padding-top: 50px;
}

.centering-box .large-p{
    max-width: 820px;
    margin: 0 auto;
}

.centering-box.entry p{
    padding: 0 9.1%;    
}

.intro-page-content-hold {
    margin-top: -74px;
    background: #fff;
    position: relative;
    padding: 6% 19%;
}

.intro-title-students {
    margin-bottom: 30px;
}

.wwwwd-r{    
    padding-left: 13%;    
}

.mrg-btm{
    margin-bottom: 150px;
}

.padd-top{
    padding-top: 150px;
}

.scholars-description.p-mrg p,
.home-section-entry.p-mrg p{
    margin-bottom: 30px;
}

.scolars-pad-clr{
    background-size: cover!important;
    padding-bottom: 52px;
    margin-bottom: 150px;
}

.section-partner-schools{
    padding-top: 142px;
}

.section-partner-schools .entry h2{
    margin-bottom: 120px;
}
.partner-school-list ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;   
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.partner-school-list ul li {
    float: left;
    width: 22%;
    margin-right: 17%;
    margin-bottom: 100px;
}
.partner-school-list ul li:nth-child(3n) {    
    margin-right: 0%;    
}
.partner-school-list ul li:last-child {    
    margin-right: 0%;    
}

.partner-logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;  
    margin-bottom: 60px;
    min-height: 120px;
}
.partner-logo:last-child{  
    margin-bottom: 0px;
}

.partner-text{  
    
}

.partner-text p{    
  font-size: 24px;
  font-weight: 600;  
  text-align: center;
  letter-spacing: -0.25px;
  margin-bottom: 16px;
}
.partner-text span{ 
    display: block;   
    color: #7f7f7f;
    font-family: 'Nunito';
    font-size: 18px;
    font-weight: 600;    
    text-align: center;
}

.friends{
    padding: 70px 17% 150px 10% ;
    background-color:rgb( 30, 160, 150, 0.1);
    margin-top: 130px;
    margin-bottom: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
}

.logo-friend{
    padding-right: 5%;
}

.text-friend{
    padding-left: 6.5%;
}

.text-friend h2{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.25px;
    margin-bottom: 25px;
}

.text-friend a{
    display: block;   
    color: #1FA096;
    font-family: 'Nunito';
    font-size: 18px;
    font-weight: 600;
    transition: 0.2s;
    margin-bottom: 25px;    
}

.text-friend a:hover{
    opacity: 0.8;
}

.text-friend p{
    display: block;   
    color: #7f7f7f;
    font-family: 'Nunito';
    font-size: 18px;
    font-weight: 600;
}

/*Scholarships */

.scholars .stats-hold::before{
    display: none;    
}

.scholars .stats-hold{
    margin-bottom: 100px;
}


.entry hr {    
    width: 50px;
    height: 5px;     
    background: #F7941E;       
    float:left;
    border: 0;

}

/*internship */

.green-box{
    padding: 60px 10% 60px 76px;
    background-color: #1FA096;
}

.green-box h2{
    font-size: 30px;
    letter-spacing: -0.312px;
    color: #fff;
    margin-bottom: 22px;    
}

.green-box p{
    font-size: 16px;    
    color: #fff;
    font-family: 'Nunito';    
    font-weight: 600;
    margin-bottom: 40px;  
}

.green-box p:last-of-type{    
    margin-bottom: 0px;  
}

.green-box ul li{
    font-size: 16px;    
    color: #fff;
    font-family: 'Nunito';    
    font-weight: 600;
    padding-left: 30px;
    position: relative;    
}

.green-box ul li:last-of-type{    
    margin-bottom: 0px;
}

.green-box ul li::after{
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: url(../img/ulli.png);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    position: absolute;
    top: 5px;
    left: 0;     
}

/* FAQ */


.section-milky{
    padding: 120px 0;
    background-color: #FEF4E8;
    margin-bottom: 120px;
}

.accordion {    
    background:#FEF4E8;    
}

.FAQ-accordion{
    margin-top: 120px;
}

.services-accordion .accordion {
    background-color: #FEF4E8;;
}
.accordion-item{
    background-color: #fff;
    margin-bottom: 40px;
}
.accordion-item.is-active{
    box-shadow: 0px 2px 50px rgba(0,0,0,0.25);
}

.accordion-title:before {
    content: '';
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: url(../img/Filldown.png);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    position: absolute;
    right: 10%;
    top: 44%;
    margin-top: -.5rem;
    border: 1px solid #F7941E;
    transition: 0.2s;
}

.is-active>.accordion-title:before {
    content: '';
    transform: rotate(-180deg);
}

.accordion-title{
    transition: 0.5s;
    border: none;
}

.accordion-title,
.accordion-title:focus{
    background-color: #fff;
    font-family: "Work Sans";
    font-size: 24px;
    font-weight: 600;    
    letter-spacing: -0.25px;
    color: #000;
    padding: 45px 27% 45px 11%;
}

.accordion-content{
    border: none;
    padding: 45px 27% 45px 11%;    
    background-color: transparent;
}

.accordion-item.is-active a{
    background-color: #F7941E;
}

:last-child>.accordion-content:last-child {
    border-bottom: none;
}

:last-child:not(.is-active)>.accordion-title {
    border-radius: 0 0 0 0;
    border-bottom: none;
}

.accordion-title:hover{
    background-color: #F7941E;
    color: #000;
}
.accordion-title:hover{
    background-color: #F7941E;
    color: #000;
}

.sections-text p{
    font-family: 'Nunito';   
    font-size: 16px;
    font-weight: 600;
    opacity: 0.5;
    color: #000;
    margin-bottom: 25px;   
}

.sections-text ul{
    max-height: 520px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
     flex-direction: column;
    margin-left: 0;
}

.sections-text ul li{
    color: #7F7F7F;    
    font-family: Nunito;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4; 
    position: relative;
    padding-left: 22px;
    width: 47%;
    margin-right: 6%;
    margin-left: 0; 
}

.sections-text ul li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7F7F7F;
    top: 10px;
    left: 0;
}

.accordion-title::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65%;
    margin-left: 11%;
    height: 1px;
    background-color: #000;
    display: none;
}

.accordion-item.is-active .accordion-title::after{    
    display: block;
}


/* become a scholar */
.timeline-list ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.timeline-list ul li{    
    width: 100%;
    margin-right: 2.6666%;
    display: inline-block;
    text-align: center;
    position: relative; 
    
}

.timeline-list ul li::after{    
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f7941e;
    position: absolute;
    top: 90px;
    left: 43%;
}

.timeline-list ul li::before{    
    content: "";
    width: 125%;
    height: 3px;    
    background: #f7941e;
    position: absolute;
    top: 100px;
    left: 43%;
}

.timeline-list ul li:last-of-type::before{    
    display: none;
}

.timeline-list ul li:last-of-type{    
    margin-right: 0%;    
}

.date{
    padding-bottom: 100px;
    min-height: 154px;
}

.date p{
    color: #7f7f7f;
    font-family: 'Nunito'; 
    font-size: 16px;
    font-weight: 700;    
}

.date p:nth-child(2){    
    font-weight: 600;    
}

.hold-img{
    position: relative;
    width: 106px;
    height: 106px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 auto;
    margin-bottom: 30px;
}

.hold-img img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);    
}

/* for Volunteers */

.section-become-mentor{
    padding: 100px 0;
    background-color:rgb( 30, 160, 150, 0.1);
    margin-top: -15%;
    margin-bottom: 150px;
    
}

.volunteers-list{
    margin-bottom: 0;
}

.section-become-mentor .how-to-help-nav{
    background-color:transparent;
    padding: 100px 19.2% 0 0;
}

.volunteers-list ul li{
    width: 32%;
    margin-right: 2%;
}

.volunteers-list ul li:nth-child(3n){    
    margin-right: 0%;
}

.volunteers-list ul li a:hover .wwd-item-image-hold {
    margin-top: -50%;
    
}



a.btn-arrow{
    font-family: 'Nunito';
    font-size: 16px;
    font-weight: 800;
    line-height: 22px;
    letter-spacing: 0.75px;
    color: #000;
    padding-left: 45px;
    display: inline-block;
    margin-left: 9%;
    position: relative;
    transition: 0.2s;
}

a.btn-arrow::after{
    content: '';
    background: url(../img/Fillorng.png);
    background-repeat: no-repeat;
    background-position: center;    
    width: 32px;
    height: 32px;
    color: #f7941e;
    position: absolute;
    border: 2px solid #f7941e;
    border-radius: 50%;
    top: -6px;
    left: 0;
    transition: 0.2s;    
}

a.btn-arrow:hover::after{
    background: url(../img/Fill1white.png);
    background-repeat: no-repeat;
    background-position: center;    
    background-color: #f7941e;    
}



/*  for Volunteers Mentoring */

.section-white{
    padding: 150px 0 140px 0;
}

.recruited-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.recruited-list ul li{
    width: 31%;
    margin-right: 4%;
    background-color: #f7941e;
    text-align: center;
    padding: 50px;
    float: left;
    margin-bottom: 50px;
}

.recruited-list ul li:nth-last-child(1),
.recruited-list ul li:nth-last-child(2){
    margin-bottom: 0;
}

.icon-hold{
    width: 176px;
    height: 176px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;   
    margin: 0 auto;
    margin-bottom: 50px;
}

.icon-hold img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.icon-text{
    color: #ffffff;    
    font-size: 24px;
    font-weight: 600;       
    letter-spacing: -0.25px;
    margin-bottom: 50px;
}
.recruited-list ul li:nth-child(2n){    
    background-color: #1fa096;
    margin-right: 0;
}

.recruited-list ul li a.btn-green-clear{
    color: #fff;
    border-color: #fff;
    min-width: 202px;
    padding: 18px;
    border-radius: 30px;
}

.recruited-list ul li:nth-of-type(2) a.btn-green-clear:hover{
    background-color: #f7941e;
}

.process-list ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

.process-list ul li{
    background-color:#fef4e8;
    width: 32%;
    margin-right: 2%;
    float: left;
    padding: 60px;
    margin-bottom: 20px;
}

.process-list ul li:nth-child(3n){    
    margin-right: 0%;    
}

.steps-text span{
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 18px;  
}

.steps-text h3{
    color: #f7941e;    
    font-size: 24px;
    font-weight: 600;   
    letter-spacing: -0.25px;
    margin-bottom: 15px;
}

.steps-text p{
    color: #7f7f7f;
    font-family: "Nunito";
    font-size: 18px;
    font-weight: 600;    
}

.quote-message{
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 600;
    margin-top: 50px; 
    margin-bottom: 150px; 
}

.green-corr-2{
    padding-left: 5%;
}

.green-corr-2 ul li{
    float: left;
    width: 31.5%;
    margin-right: 2.75%;
}

.green-corr-2 ul li:nth-child(3n){    
    margin-right: 0%;
}

.corrections-1{
   padding-left: 17%;   
}

.after-clock{
    position: relative;
}

.after-clock .stats-hold{     
    padding-top: 185px;
    padding-bottom: 170px;    
}

.after-clock::after{
    content: '';
    background: url(../img/icons8-stopwatch.png);
    background-repeat: no-repeat;
    background-position: center;    
    width: 466px;
    height: 583px;
    position: absolute;
    bottom: -35px;
    right: -53px;
}



.section-training-oportunities{
    padding-bottom: 150px;
}

.item{
    padding:50px 40px 0px 40px;
    background-color: #fef4e8;
    transition: 0.6s ease-in-out;
}

.item-circle{
    background-color: #fff;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    margin-bottom: 21px;
}

.item-circle svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.item-heading{    
  font-size: 24px;
  font-weight: 600;  
  letter-spacing: -0.25px;
  padding-right: 45%;
  margin-bottom: 16px;
  position: relative;
  
}

.item-heading::after{    
    content: '';
    background: url(../img/np_plus_2048208_F99E00.png) no-repeat center;
    background-size: 11px;    
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #f7941e;
    position: absolute;
    top: 0px;
    right: 0;
}

.item-text{
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: -156px;
    height: 156px;    
    opacity: 0;
    visibility: hidden;
    transition: 0.6s ease-in-out;   
}

.training-oportunities.owl-carousel .owl-stage {
    display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
         
}

.training-oportunities.owl-carousel .owl-item {    
    padding-top: 200px;   
}

.training-oportunities.owl-carousel .owl-stage-outer {    
    margin-top: -20%;
}

.training-oportunities .item{
    cursor: pointer;
}

.training-oportunities .item.active {
    background-color: #f7941e;
    transform: translateY(-80px);
}

.training-oportunities .item.active .item-text{    
    opacity: 1;
    visibility: visible;     
}

.wrapper-item-content{
    transition: 0.6s ease-in-out;
}

.training-oportunities .item.active .wrapper-item-content{
    transform: translateY(-150px);
}

.training-oportunities .item.active .item-heading::after {
    background: url(../img/np_minus_705284_FFFFFF.png)no-repeat center;
    border: 2px solid #fff;
}

.training-oportunities .item.active .item-heading{
    min-height: fit-content;
}

.oval-small{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #fff;
    position: relative;
    opacity: 0;
    visibility: hidden;    
    position: absolute;
    top: 0;
    right: 0;
}

.oval-small svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.training-oportunities .owl-nav button.owl-next span,
.training-oportunities .owl-nav button.owl-prev span{
    display: none;
}

.training-oportunities .owl-nav button.owl-next{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1fa096;    
    position: relative;
}

.training-oportunities .owl-nav button.owl-next::after{
    content: '';
    background: url(../img/Fillgreen.png);
    background-repeat: no-repeat;
    background-position: center;    
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.training-oportunities .owl-nav button.owl-prev{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1fa096;    
    position: relative;
    margin-right: 10px;
}

.training-oportunities .owl-nav button.owl-prev.disabled,
.training-oportunities .owl-nav button.owl-next.disabled{    
    opacity: 0.25;    
    
}

.training-oportunities .owl-nav button.owl-prev::after{
    content: '';
    background: url(../img/Fillgreen.png);
    background-repeat: no-repeat;
    background-position: center;    
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(180deg);
    
}

.training-oportunities .owl-nav{
    text-align: right;
    margin-top: 60px;
}

.home-socialproof-slider{
    margin-top: 150px;
    margin-bottom: 50px;
}


.volunteers-list.partners ul li a:hover .wwd-item-image-hold {
    margin-top: -70%;
}

.partners ul li .wwd-list-item{
    padding-bottom: 20px;
}

.partners ul li .wwd-item-title{
    font-size: 18px;
    padding-right: 62%;
    padding-right: 37%;
}

.volunteers-list.partners ul li a:hover .wwd-item-text{ 
    min-height: 70px;   
}

.individual-partners{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 150px;
}

.wrapper-content:last-of-type .individual-partners:last-of-type{    
    margin-bottom: 0px;
}

.wrapper-content:nth-child(2n) .individual-partners {
    -webkit-box-orient: horizontal;
   -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.wrapper-content:nth-child(2n) .individual-partners .individual-partners-image{
    padding-right: 0%;
    padding-left: 6%; 
}

.wrapper-content:nth-child(2n) .individual-partners .individual-partners-content{
    padding-left: 0;
    padding-right: 6%;
}

.individual-partners-image{
    padding-right: 6%;    
}

.individual-partners-content{
    padding-left: 4%;
    padding-right: 2%;
}

.individual-partners-content.entry h3{
    color: #1FA096;
}

.content-left{
    padding-right: 3%;
}

.partner-form{
    padding-left: 4.8%;
}

.wrapper-become{
    background-color: #1fa096;
    padding: 80px 80px 70px 80px;    
}

.btn-become .btn-yellow{
    background-color: #fff;
    color: #000;
    border: none;
    font-weight: 600;
}

.btn-become .btn-yellow:hover{
    background-color: #F7941E;
}

.scolarships-numbers .stats-hold{
    padding-top: 160px;
    padding-bottom: 160px;    
}

.scolarships-numbers .entry h2{
    padding-top: 40px;
}

.wrapper-become h2{
    color: #ffffff;
    font-family: "Work Sans";
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 35px; 
}

.wrapper-become p{
    color: #ffffff;
    font-family: "Nunito";
    font-size: 18px;
    font-weight: 600; 
    margin-bottom: 60px;   
}

.donor-section .how-to-help-right{
    padding-top: 100px;
}

.donor-section .how-to-help-left{
    padding-top: 50px;
}

.donor-section .entry p{
    margin-bottom: 30px;
    
}

.donor-section .how-to-help-nav{
    background: #f9f9f9;
}

.donor-section .how-to-help-nav ul li.active a,
.donor-section .how-to-help-nav ul li a:hover{
    background: #f7941e;
}
.donor-section .how-to-help-nav ul li.active a svg path,
.donor-section .how-to-help-nav ul li a:hover svg path{
    fill: #fff;
}

.donor-section .how-to-help-nav ul li.active a:after, 
.donor-section .how-to-help-nav ul li a:hover:after {    
    background: url(../img/arrow-right-white.svg) no-repeat center center;
}

/* .list-suporters{
    padding-left: 5%;
} */

.list-suporters:nth-child(2n){
    padding-left: 5%;
} 

.list-suporters ul{
    margin: 0;
}

.newwpad.accordion-content{
    padding-top: 35px;
}

.list-suporters ul li{
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    padding-left: 20px;
    position: relative;
}

.list-suporters ul li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 10px;
    left: 0;
}

.img-img{
    padding-bottom: 100%;    
}

.individual-partners-image{
    position: relative;
    overflow: hidden;
}

.who-we-are .wwd-image{
    padding-bottom: 60%;
}

.who-we-are .wwd-right {
    padding-top: 11%;
    padding-left: 12%;
    padding-right: 8%;
}

.lift-up{
    margin-top: -13.5%;
}

.lift-up .entry p{
    margin-top: 30px;
}

.text-width{
    max-width: 550px;
}

.new-pad.wwd-right{
    padding-top: 20px;
}

.text-width.entry p{
    margin-bottom: 20px;
}
.text-width.entry h3{
    margin-bottom: 20px;
}

.no-before.stats-hold::before{
    display: none;
}

.image-hold-report{
    margin-bottom: 40px;
}

.counter-calc{
    margin-bottom: 40px;
    font-family: "Nunito";
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;    
    letter-spacing: 0.25px;
    color: rgba(0, 0, 0, 0.25);
}


.counter-calc .current {
    color: #000;    
}

.report-name{
    margin-bottom: 40px;
}

.image-report{
    background-size: cover !important;
    padding-bottom: 55%;
    position: relative;
}

.ssd-image{
    height: 500px;
}

.report-slider .owl-nav button.owl-next span,
.leadership .owl-nav button.owl-next span,
.leadership .owl-nav button.owl-prev span,
.report-slider .owl-nav button.owl-prev span{
    display: none;
}

.report-slider .owl-nav button.owl-next,
.leadership .owl-nav button.owl-next{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1fa096;    
    position: relative;
}

.report-slider .owl-nav button.owl-next::after,
.leadership .owl-nav button.owl-next::after{
    content: '';
    background: url(../img/Fillgreen.png);
    background-repeat: no-repeat;
    background-position: center;    
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.report-slider .owl-nav button.owl-prev,
.leadership .owl-nav button.owl-prev{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1fa096;    
    position: relative;
    margin-right: 10px;
}

.leadership .owl-nav button.owl-prev.disabled,
.leadership .owl-nav button.owl-next.disabled,
.report-slider .owl-nav button.owl-prev.disabled,
.report-slider .owl-nav button.owl-next.disabled{    
    opacity: 0.25;    
    
}

.leadership .owl-nav button.owl-prev::after,
.report-slider .owl-nav button.owl-prev::after{
    content: '';
    background: url(../img/Fillgreen.png);
    background-repeat: no-repeat;
    background-position: center;    
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(180deg);
    
}

.report-slider .owl-nav,
.leadership .owl-nav{
    text-align: center;
    margin-top: 60px;
    margin-bottom: 78px;
}

.section-report{
    position: relative;
}

.section-report::after{
    content: '';
    width: 100%;
    height: 75%;
    background-color: #FEF4E8;
    position: absolute;      
    left: 0;
    bottom: 0;
    right: 0;
}


.our-team .FAQ-accordion{
    margin-top: 0!important;
}

.our-team .accordion {
    background: #fff;
}

.our-team .accordion-title, .our-team .accordion-title:focus {
    background-color: #FEF4E8;    
}

.our-team .accordion-item.is-active .accordion-title, .our-team .accordion-title:focus {
    background-color: #F7941E;    
}

.our-team .accordion-title:hover {
    background-color: #F7941E;
    color: #000;
}

.our-team .accordion-content{
    padding-top: 0;
}

.accordion-contacts span{
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    opacity: 0.5;    
    display: inline-block;
}

.accordion-item.is-active .accordion-title span{
    display: block;
    margin-left: 0;
    margin-top: 5px;
}

.accordion-title span{
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    opacity: 0.5;    
    display: inline-block;
    margin-left: 35px;
}

.accordion-title p{    
    display: inline-block;    
}

.phone-member,
.email-member{
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.phone-member img,
.email-member img{    
    
}

.phone-member a,
.email-member a{
    color: #ffffff;
    font-family: "Nunito";
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    transition: 0.2s;
    margin-left: 30px;
    
}

.phone-member a:hover,
.email-member a:hover{
    opacity: 0.8;
}

/* .accordion-item.is-active {
    background-color: #F7941E!important;
} */

.accordion-contacts{
    padding-bottom: 75px;
}

.our-team .accordion-item.is-active .accordion-title::after {
    display: block;
}

.our-team .accordion-title::after {
    content: "";
    position: absolute;
    bottom: -121px;
    left: 0;
    width: 65%;
    margin-left: 11%;
    height: 1px;
    background-color: #000;
    display: none;
}

.our-team .accordion-title, .our-team .accordion-title:focus {
    
    padding: 45px 27% 45px 11%;
}

.our-team .is-active>.accordion-title:before {
    top: auto;
    bottom: 0%;

}

.accordion-item{
    position: relative;
    transition: 0.2s;
    background-color: #F7941E;
}

.our-team .member-photo{
    width: 72px;
    height: 72px;    
    position: absolute;
    top: 21%;
    left: -36px;
    z-index: 1;    
}

.our-team .accordion-item.is-active .member-photo{
    width: 176px;
    height: 176px;
    top: 6%;
    left: -87px;
}

.our-team .member-photo img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;    
    object-fit: cover;
    border-radius: 50%;
}

.after-section{
    position: relative;    
}

.after-section::after{
    content: '';
    width: 100%;
    height: 70px;
    background-color:#fef4e8;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.events .member-photo{
    width: 72px;
    height: 72px;    
    position: absolute;
    top: 21%;
    left: -36px;
    z-index: 1;
    display: none;    
}
.events .accordion-item.is-active .member-photo{
    width: 176px;
    height: 176px;
    top: 15%;
    left: -87px;
    display: block;
}

.events .member-photo img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;    
    object-fit: cover;
    border-radius: 50%;
}

.events .accordion-item.is-active .accordion-title,
.events .accordion-item.is-active .accordion-title:focus,
.events .accordion-item.is-active .accordion-content{
    
    padding-top: 65px;
    padding-left: 15%;
    
}

.events .accordion-item.is-active .accordion-title::after {    
    margin-left: 15%;    
}

a.btn-learn-more{
    color: #ffffff;
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 800;
    line-height: 22px;
    letter-spacing: 0.75px;
    padding-left: 40px;
    transition: 0.2s;
    position: relative;
}

a.btn-learn-more:hover{
    opacity: 0.8;
}

a.btn-learn-more::after{
    content: '';
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: url(../img/Fillorng.png);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 4px;
    margin-top: -.5rem;
    border: 1px solid #F7941E;
    transition: 0.2s;
    
}

.events .btn-hold{
    margin-top: 30px;
}

.leadership-slider-item{
    padding-right: 13%;
    padding-left: 13%;
}

.leadership .owl-nav{
    transform: rotate(90deg);
    position: absolute;
    top: 560px;
    right: -3.2%;
}

.section-report .row.row-ind {
    max-width: 1160px;
    padding: 0 30px;
}

.leadership .counter-calc{
    position: absolute;
    top: 535px;
    right: 0%;
}


.comunity-partner p{
    font-family: "Nunito";
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.comunity-partner a{
    font-family: "Nunito";
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: #1FA096;
    display: block;
    transition: 0.2s;
}

.comunity-partner a:hover{
    opacity: 0.8;
}


.wwd-left{
    position: relative;
    overflow: hidden;
}

.video-line {    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    z-index: 0;
    object-fit: cover;
}

.overlay {    
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;    
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    object-fit: cover;

}

.leadership .entry.hhf h3:first-child{
    margin-bottom: 0;    
}

.video-button {
    background: url(../img/btn-play.png);
    background-size: cover!important;
    background-position: center;
    width: 62px;
    height: 62px;   
    cursor: pointer;
    transition: 0.2s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.video-boxy a:hover .video-button {
    opacity: 0.8;
}

.section-report.section-video .owl-nav{
    margin-top: 0;
}

.bg-light-blue{
    background: rgba(31, 160, 150, 0.1);
}

.heading-carrer-exploration{    
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.375px;
    margin-bottom: 73px; 
}

.carrer-lists-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}

.career-exploration-list{
    padding-right: 7%;
}

.career-exploration-list:last-of-type{
    padding-right: 0;
}

.career-exploration-list ul li{
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    line-height: 24px;
    color: #7f7f7f;
    margin-bottom: 0;
    padding-left: 20px;
    position: relative;
}

.career-exploration-list ul li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7F7F7F;
    top: 10px;
    left: 0;
}



.img-member{
    background-size: cover!important;
    width: 107px;
    height: 107px;
    border-radius: 50%;
    display: inline-block; 
    position: relative;   
}

.img-member img{
    background-size: cover !important;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    min-width: 107px;
    min-height: 107px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.info-member{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left:40px;
    padding-right: 5px;
}

.member-hold{
    padding-left: 11%;
}

.member-name{    
    font-size: 24px;
    font-weight: 600;    
    letter-spacing: -0.25px;
    margin-bottom: 15px; 
}

.member-position{
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 600;
    opacity: 0.5;    
}

.text-member{
    padding-left: 1%;
}

.text-member p{
    color: #7f7f7f;
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 600;    
}

.horizontal-line{
    background-color: #7f7f7f;
    height: 1px;
    margin-top: 94px;
    margin-bottom: 94px;
    width: 100%;
}

.board-members-list ul li:last-of-type .horizontal-line{
    display: none;
}

.image-fit-class {
    position: relative;
}
.image-fit-class img {
    background-size: cover !important;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.image-fit-classs {
    
}


.image-fit-classs img {
    background-size: cover !important;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-email-alumni{
    padding-top: 30px;
    padding-bottom: 100px;
    background-color: #fef4e8;
}

.emails-list ul li a{
    color: #1FA096;
    /* font-size: 24px; */
    font-weight: 600;
    word-break: break-all;
    transition: 0.2s;
}

.emails-list ul li a:hover{
    opacity: 0.8;
}

.alumni-associations.section-report::after{
    height: 57%;
}

.alumni-associations .report-slider .owl-nav{
    margin-top: 0;
    margin-bottom: 100px;
}

.contact-us{
    padding: 100px 0;
    background-color: #fef4e8;
}

.emails-list{
    margin-bottom: 90px;
}

.img-wrap{
    width: 56px;
    height: 54px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.emails-list ul li{
    display: inline-block;
    /* width: 25%;
    margin-right: 12%; */
    width: 30%;
    margin-right: 5%;
    text-align: center;
    vertical-align: top;
    float: left;
}


.emails-list ul li:last-of-type{
    
    margin-right: 0%;
}

.emails-list ul li a{
    color: #1FA096;
    font-size: 22px;
    font-size: 20px;
    font-weight: 600;
    transition: 0.2s;
    display: block;
}

.emails-list ul li a:hover{
    opacity: 0.8;
}

.emails-list ul li p{
    color: #1FA096;
    font-size: 22px;
    font-weight: 600;
    transition: 0.2s;
}

.contact-form{
    background-color: #fff;
    padding: 77px 100px 100px ;    
}

.contact-form-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 55px;   
}

.left-side{
    padding-right: 10%;    
}

.form-elemen{
    margin-bottom: 20px;
    position: relative;
}

.form-elemen input{
    border-radius: 6px;
    border: 2px solid #d4d4d4;
    height: 50px;
    padding-left: 65px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.75px;
}

.form-elemen input:focus {
    outline: none;
    border: 2px solid #f7941e;
    box-shadow: none;
    transition: 0.2s;
}

.form-elemen textarea{
    border-radius: 6px;
    border: 2px solid #d4d4d4;
    height: 370px;
    transition: 0.2s;
}

.form-elemen textarea:focus {
    outline: none;
    border: 2px solid #f7941e;
    box-shadow: none;
    
}

.form-elemen label{
    margin-bottom: 10px;
    font-family: "Nunito";
    font-size: 18px;
    font-weight: 600;    
    letter-spacing: -0.1875px;
    
}

.form-elemen span{    
    font-family: "Nunito";
    font-size: 18px;
    font-weight: 600;    
    letter-spacing: -0.1875px;
    color: #f7941e;
    
}

.right-side{    
    padding-left: 6%;
}

.after-envl input:focus{
    background: url(../img/email-input.png) no-repeat left 18px center ;
    
}

.after-envl input::after{
    content: 'tests';
    background: url(../img/email-input.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 19px;
    height: 13px;
    position: absolute;
    top: 0;
    left: 0;    
}


.entry-section.padding-top-0 {
    padding-top: 0;
}

.item-logo{
    height: 100%;
    width: auto;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
 
.item-logo img{
    object-fit: scale-down;
    object-position: center;
    width: auto;
    height: auto;
    max-width: 247px;
    max-height: 144px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border: none;
    text-align: center;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0!important;
    padding: 0!important;
    border: none!important;
    text-align: center;
}

     
/*animations*/



@-webkit-keyframes circle-progress {
    0% {
        stroke-dashoffset: -160;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes circle-progress {
    0% {
        stroke-dashoffset: -160;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.section-quote-lg {
    padding: 150px 0 225px;
}

.quote-lg-hold {
    border-top: 1px solid #7f7f7f;
    border-bottom: 1px solid #7f7f7f;
    padding-top: 50px;
    padding-bottom: 50px;
}

.quote-lg-text p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.65;
    color: #7f7f7f;
    margin-bottom: 30px;
}

.quote-lg-text p:last-child {
    margin-bottom: 0px;
}

.quote-lg-text {
    margin-bottom: 60px;
}

.quote-lg-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.quote-lg-author-image {
    width: 107px;
    min-width: 107px;
    height: 107px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin-right: 62px;
}
.quote-lg-author-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-lg-author-name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.25px;
}
.quote-lg-author-name span {
    font-family: 'Nunito', sans-serif;
    display: block;
    opacity: 0.5;
    font-size: 16px;
    padding-top: 15px;
}

.funders-faq-bottom {
    margin-top: 60px;
    margin-bottom: 30px;
    padding: 0px 9%;
}

.funders-faq-bottom p {
    color: #7f7f7f;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

.funders-faq-bottom a {
    color: #F7941E;
    transition: 0.2s;
}
.funders-faq-bottom a:hover {
    opacity: 0.8;
}

.scholars-section + .recruiting_process-section {
    margin-top: 150px;
}

.green-corr-2 ul li:nth-last-child(-n+3) .entry {
    margin-bottom: 0;
}

.stats-hold .stats-top .entry {
    margin-bottom: 0;
}

.page-template-tp-who_we_are_our_impact .new-pad.wwd-right .entry hr {
    float: none;
    margin: 0;
    margin-bottom: 20px;
}

.page-template-tp-who_we_are_flexible .section-report  {
    margin-bottom: 100px;
}

.page-template-tp-who_we_are_flexible .section-white.bg-light-blue + .marquee-section {
    margin-top: 140px;
}

.page-template-tp-mixed_flexible .what-we-do-section.after-section .wwd-right {
    padding-top: 0;
}

.page-template-tp-mixed_flexible .section-email-alumni .emails-list:last-child {
    margin-bottom: 0;
}
.page-template-tp-mixed_flexible .section-email-alumni .emails-list ul li {
    width: 100%;
    margin-right: 0;
    text-align: left;
}

.recruited-list ul li a.btn-green-clear:hover {
    border-color: transparent;
}

.annual-events-section {
	background: #FEF4E8;
	padding: 150px 0;
    margin-bottom: 130px;
}

.ae-block {
	margin-bottom: 50px;
}

.ae-block:last-child {
	margin-bottom: 0px;
}

.ae-block-title {
	color: #f7941e;
	font-family: 'Nunito', sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.6;
    margin-bottom: 30px;
}

.ae-block-item {
    position: relative;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.67;
    letter-spacing: -0.1875px;
    padding-top: 25px;
}

.ae-block-item:last-child {
    margin-bottom: 0px;
}

.ae-block-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 50px;
    background: #f7941e;
}

.ae-block-item span {
    display: block;
    color: #7f7f7f;
    padding-top: 10px;
    font-family: 'Nunito', sans-serif;
}

.ae-left .entry h2 {
    margin-bottom: 10px;
}

.subnav-hold {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background: #fff;
    padding: 30px 30px;
    top: 100%;
    left: -208px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    transition: 0.2s;
}

.header-nav ul li:hover .subnav-hold {
    opacity: 1;
    visibility: visible;
}

.subnav-item-title {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 10px;
}

.header-nav ul li {
    position: relative;
}

.header-nav .subnav-item-list ul {
    margin: 0;
    padding: 0;
}

.header-nav .subnav-item-list ul li {
    margin-bottom: 10px;
}

.header-nav .subnav-item-list ul li:last-child {
    margin-bottom: 0px;
}

.header-nav .subnav-item-list ul li a {
    display: block;
    white-space: nowrap;
    font-weight: 600;
    color: #7F7F7F;
    padding-bottom: 0;
    padding-right: 30px;
}
.header-nav .subnav-item-list ul li a:after {
    background: url(../img/arrow-right-orange.svg) no-repeat center center;
    width: 10px;
    height: 8px;
    background-size: contain!important;
    right: 4px;
    left: auto;
    top: 6px;
}

.header-nav .subnav-item-list ul li a:hover {
    color: #F7941E;
}

.header-nav .subnav-item-list ul li a:hover:after {
    opacity: 1;
    right: 0;
}

.subnav-item {
    margin-right: 30px;
}
.subnav-item:last-child {
    margin-right: 0px;
}

.training-oportunities-mob {
    padding-top: 100px;
}

.training-oportunities-mob ul li {
    padding: 0px 30px 50px;
    background-color: #fef4e8;
    margin-bottom: 140px;
}
.training-oportunities-mob ul li:last-child {
    margin-bottom: 0px;
}
.training-oportunities-mob ul li .item-text {
    margin-bottom: 0;
    height: auto;
    opacity: 1;
    visibility: visible;
}
.training-oportunities-mob ul li .item-heading {
    padding-right: 0;
}
.training-oportunities-mob ul li .item-heading::after {
    display: none;
}
.training-oportunities-mob ul li .item-circle {
    transform: translateY(-100px);
    margin-bottom: -80px;
}

.FAQ-accordion .accordion-item .sections-text p {
    opacity: 1;
    color: rgba(0, 0, 0, 0.5);
}
.FAQ-accordion .accordion-item .sections-text a {
    color: #000;
    text-decoration: underline;
}

.mobile-menu-nav .subnav-hold {
    opacity: 1;
    visibility: visible;
    position: static;
    background: transparent;
    padding: 7px 0px 0;
    top: auto;    
    left: auto;
    display: block;
    display: none;
    transition: 0s;
}
.mobile-menu-nav .subnav-item-title {
    font-size: 14px;
    margin-bottom: 0px;
    display: none;
}
.mobile-menu-nav .subnav-item-list ul {
    margin: 0;
}
.mobile-menu-nav .subnav-item {
    margin-right: 0;
    margin-bottom: 3px;
}

.mobile-menu-nav .subnav-item:last-child {
    margin-bottom: 0px;
}

.for-students-flexible-content .entry.recruiting-process-title {
    margin-bottom: 0;
}

.newsletter-holder ul li {
    float: left;
    width: calc(27% - 20px);
    margin-right: 20px;
}
.newsletter-holder ul li.last-element {
    width: 19%;
    margin-right: 0;
}

.form-element-sm input, 
.form-element-sm input:focus, 
.form-element-sm input:active {
    box-shadow: none;
    border: none;
    outline: none;
    border-radius: 25px;
    height: 48px;
    background: #fff;
    margin: 0;
    padding: 2px 30px;
    font-size: 18px;
    font-family: "Nunito", sans-serif;
    color: #000;
    font-weight: 600;
}

.form-element-sm input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #7F7F7F;
    opacity: 1;
}
.form-element-sm input::-moz-placeholder { /* Firefox 19+ */
    color: #7F7F7F;
    opacity: 1;
}
.form-element-sm input:-ms-input-placeholder { /* IE 10+ */
    color: #7F7F7F;
    opacity: 1;
}
.form-element-sm input:-moz-placeholder { /* Firefox 18- */
    color: #7F7F7F;
    opacity: 1;
}

.newsletter-holder {
    margin-top: 30px;
    padding-right: 100px;
}

.form-element-sm .pcf-btn.btn-green {
    min-width: 100%;
    text-align: center;
}
.form-element-sm .pcf-btn.btn-green:hover {
    background: #fff;
    color: #000;
}

.newsletter-form-success {
    min-height: 50px;
}

#newsletter-form-success {
    display: none;
}

div.wpcf7-validation-errors, 
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ng {
    border: none !important;
    float: left !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    color: #ef586b !important;
}

div.wpcf7-mail-sent-ok {
    float: left !important;
    border: none !important;
    padding: 0 !important;
    margin: 10px 0 !important;
}

span.wpcf7-not-valid-tip {
	display: none !important;
}

span.wpcf7-list-item {
    margin: 0 !important;
}

.form-element-sm input.wpcf7-not-valid,
.form-element-sm input.wpcf7-not-valid:focus,
.form-element-sm textarea.wpcf7-not-valid,
.form-element-sm textarea.wpcf7-not-valid:focus {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(255,0,0,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(255,0,0,1);
    box-shadow: 0px 0px 5px 0px rgba(255,0,0,1);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    float: left;
    width: 100%;
    text-align: center;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    float: left;
    width: 100%;
    text-align: center;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

.wpcf7 form .wpcf7-response-output {
    float: left;
    width: 100%;
    text-align: center;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

.page-template-tp-donors_overview .how-to-help-left .wwd-text-box {
    display: none;
}
.page-template-tp-donors_overview .how-to-help-left .wwd-text-box.active {
    display: block;
}

.wwd-embed {
    margin-bottom: 30px;
}
.wwd-embed:last-child {
    margin-bottom: 0px;
}

.page-template-tp-students_flexible .green-corr-2 ul li {
    text-align: center;
}
.page-template-tp-students_flexible .green-corr-2 ul li .stats-number:after {
    left: 50%;
    transform: translateX(-50%);
}

.reveal-announcement {
    width: 100%;
    max-width: 820px;
    padding: 0;
    border: none;
    background: #fff;
    outline: none;
}

.ra-image {
    position: relative;
    padding-bottom: 49%;
}
.ra-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ra-content {
    padding: 50px 12%;
}
.ra-content .ra-text > *:last-child {
    margin-bottom: 0;
}
.ra-content .ra-text {
    margin-bottom: 30px;
}
.ra-content .ra-text h2 {
    margin-bottom: 20px;
}

.close-button,
.close-button:focus,
.close-button:active {
    font-family: 'Nunito', sans-serif;
    width: 32px;
    height: 32px;
    background: #1fa096;
    padding-left: 1px;
    top: 20px;
    right: 20px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 700;
    transition: 0.2s;
}
.close-button:hover {
    color: #fff;
    background: #000;
    background: #F7941E;
}

.reveal-overlay {
    background-color: rgba(0,0,0,0.75)
}

.advisory-council-section {
    background: #fef4e8;
    padding: 100px 0 40px;
    margin-bottom: 140px;
}
.advisory-council-section .entry {
    margin-bottom: 75px;
}

.ac-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.ac-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.ac-list ul li {
    width: 13.428%;
    min-width: 13.428%;
    margin-right: 1%;
    margin-bottom: 75px;
    text-align: center;
}

.ac-list ul li:nth-child(7n) {
    margin-right: 0%;
}

.ac-list-image-hold {
    width: 120px;
    margin: 0 auto 30px
}

.ac-list-image {
    position: relative;
    padding-bottom: 100%;
    border-radius: 50%;
    background: #fff;
}
.ac-list-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.ac-list-name {
    color: #7f7f7f;
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    transition: 0.2s;
}

.ac-list ul li a:hover .ac-list-name {
    color: #1FA096;
}

@media only screen and (max-width: 1300px) {
    .header-ctas {
        padding-left: 0;
    }

    .header-ctas a {
        min-width: auto!important;
    }

    .lift-up{
        margin-top: -16.5%;
    }

    .lift-up .entry p{
        margin-top: 0px;
    }

    .new-pad.wwd-right{
        padding-left: 5%;
    }

}


@media only screen and (max-width: 1250px) {
    .page-template-tp-mixed_flexible .what-we-do-section.after-section .wwd-right .wwd-text-box {
        max-width: 100%;
    }

    .header-ctas {
        margin-left: 10px;
    }

    .header-nav {
        margin-right: 10px;
    }

    .pcf-btn,
    .pcf-btn:focus,
    .pcf-btn:active {
        font-size: 15px;
    }

    .header-nav ul li {
        margin-right: 10px;
    }

    .our-team .accordion-item.is-active .member-photo{
        width: 140px;
        height: 140px;
        top: 6%;
        left: -47px;
    }

    .events .accordion-item.is-active .member-photo{
        width: 140px;
        height: 140px;        
        left: -30px;
    }

    .emails-list ul li {
        display: inline-block;
        width: 30%;
        margin-right: 3%;
        text-align: center;
        vertical-align: top;
    }
}

@media only screen and (max-width: 1200px) {
    .ac-list-image-hold {
        margin: 0 auto 20px;
    }
    .ac-list ul li {
        margin-bottom: 60px;
    }
    .newsletter-holder {
        padding-right: 50px;
    }
    .form-element-sm input, .form-element-sm input:focus, .form-element-sm input:active {
        padding: 2px 25px;
        font-size: 16px;
    }
    .scholars-section + .recruiting_process-section {
        margin-top: 100px;
    }
    .funders-faq-bottom p {
        font-size: 16px;
    }
    .section-quote-lg {
        padding: 120px 0 140px;
    }
    .quote-lg-text p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .wwd-item-title {
        font-size: 21px;
    }

    .stats-number {
        font-size: 46px;
    }

    .stats-number span {
        font-size: 40px;
    }

    .full-image-section {
        height: auto;
        padding-bottom: 54%;
    }

    .footer-right {
        padding-left: 2%;
    }

    .scholars-cta,
    .scholars-nav {
        float: none;
    }

    .scholars-cta {
        margin-bottom: 20px;
    }

    .process-list ul li{
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 1150px) {
    .wwd-item-text {
        font-size: 14px;
    }
    .what-we-do-list {
        margin-top: -4%;
    }
    .emails-list ul li a{
        font-size: 19px;
    }
    .emails-list ul li p {
        font-size: 19px;
    }
    .page-template-tp-mixed_flexible .what-we-do-section.after-section .wwd-right {
        padding-left: 5%;
    }
    .hamburger {
        display: inline-block;
        padding-top: 12px;
    }

    .header-right .header-nav,
    .header-right .header-ctas {
        display: none;
        padding-top: 10px;
    }

    .header-logo img {
        max-height: 45px;
    }

    .footer-nav ul li {
        width: 31%;
        margin-right: 2%;
        margin-bottom: 20px;
    }

    .footer-nav ul li:nth-child(5n) {
        margin-right: 2%;
    }

    .footer-nav ul li:nth-child(3n) {
        margin-right: 0;
    }
    .footer-nav ul li:nth-child(3n + 1) {
        clear: both;
    }

    .menu-cta {
        margin-top: 0px;
    }

    .section-become-mentor{        
        margin-top: -50px 
    }

    a.btn-arrow{        
        margin-left: 3%;
        margin-top: 20px;        
    }

    .our-team .accordion-item .member-photo {        
        left: -22px;
    }

    .our-team .accordion-item.is-active .member-photo {
        width: 120px;
        height: 120px;
        top: 6%;
        left: -23px;
    }


}





@media only screen and (max-width: 1023px) {
    .stats-bottom.stats-bottom-wider ul li:nth-child(5n) {
        margin-right: 4%;
    }
    .stats-bottom.stats-bottom-wider ul li {
        width: 48%;
        margin-right: 4%;
    }
    .stats-bottom-wider.corrections-1 {
        padding-left: 8%;
    }
    .advisory-council-section {
        margin-bottom: 75px;
    }
    .ac-list ul li {
        width: 22%;
        min-width: 22%;
        margin-right: 4%;
    }
    .ac-list ul li:nth-child(7n) {
        margin-right: 4%;
    }
    .ac-list ul li:nth-child(4n) {
        margin-right: 0%;
    }
    .wwd-item-text {
        font-size: 16px;
    }
    .ra-content {
        padding: 50px 8%;
    }
    .reveal-announcement {
        max-width: 640px;
    }
    .form-element-sm input, .form-element-sm input:focus, .form-element-sm input:active {
        font-size: 14px;
    }    
    .newsletter-holder ul li {
        margin-right: 10px;
    }
    .newsletter-holder {
        padding-right: 30px;
    }
    .ae-block-item span {
        padding-top: 0px;
    }
    .annual-events-section {
        padding: 100px 0;
        margin-bottom: 80px;
    }
    .page-template-tp-who_we_are_flexible .section-white.bg-light-blue + .marquee-section {
        margin-top: 80px;
    }
    .training-oportunities .item-heading {
        padding-right: 25%;
    }
    .training-oportunities .item {
        padding-left: 30px;
        padding-right: 30px;
    }
    .training-oportunities .item-text {
        font-size: 14px;
    }
    .funders-faq-bottom {
        margin-top: 30px;
    }
    .quote-lg-author-name {
        font-size: 20px;
    }
    .intro-video {
        height: 500px;
    }

    .what-we-do-list {
        margin-top: 25px;
    }

    .wwd-item-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .what-we-do-list ul li {
        width: 48.5%;
        margin-bottom: 25px;
        margin-right: 3%;
    }

    .what-we-do-list ul li:nth-child(2n) {
        margin-right: 0;
    }

    .what-we-do-list ul {
        height: auto;
    }

    .wwd-list-item {
        background: #F7941E;
    }
    .what-we-do-list ul li a:hover .wwd-list-item {
        transform: none;
    }

    .wwd-item-text {
        max-height: none;
        margin-bottom: 30px;
    }

    .what-we-do-list ul li a:hover .wwd-item-text {
        max-height: none;
        margin-bottom: 30px;
    }

    .what-we-do-list ul li a:hover .wwd-list-item {
        max-height: initial;
        margin-bottom: initial;
    }

    .wwd-item-image-hold {
        margin-top: 0;
    }

    .what-we-do-list ul li a:hover .wwd-item-image-hold {
        margin-top: initial;
    }

    .wwd-item-bottom {
        opacity: 1;
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .wwd-item-title svg {
        display: none!important;
    }

    .what-we-do-list {
        margin-bottom: 50px;
    }

    .wwd-item-image-hold {
        max-width: 140px;
    }

    .wwd-item-image svg path {
        fill: #f7941e;
    }

    .stats-hold {
        padding: 55px 0 70px 40px;
    }

    .stats-bottom ul li {
        width: 30%;
        margin-bottom: 25px;
        margin-right: 3.75%;
    }

    .stats-bottom ul li:nth-child(3n) {
        margin-right: 0;
    }

    .stats-title {
        padding-right: 15px;
    }

    .stats-top-text {
        padding-left: 15px;
    }

    .scholars-top {
        padding: 0 15%;
        margin-bottom: 85px;
    }

    .how-to-help-left {
        padding-top: 80px;
        padding-left: 0;
        padding-right: 7%;
    }

    .how-to-help-nav {
        padding: 50px 20px;
        margin-top: -50px;
    }

    .how-to-help-nav ul li a {
        font-size: 14px;
        padding: 25px 45px;
        height: 70px;
    }

    .how-to-help-nav ul li a img,
    .how-to-help-nav ul li a svg {
        max-height: 18px;
        max-width: 18px;
        width: 18px;
        left: 17px;
        top: 25px;
    }

    .how-to-help-nav ul li a:after {
        right: 20px;
        top: 32px;
    }

    .how-to-help-section {
        margin-bottom: 80px;
    }

    .marquee-section {
        margin-bottom: 80px;
    }

    .marquee-section {
        font-size: 95px;
    }

    .newsletter-hold {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .form-element input,
    .form-element input:focus,
    .form-element input:active {
        height: 50px;
        padding-top: 18px;
        font-size: 16px;
    }

    .form-element button {
        width: 28px;
        height: 28px;
        top: 12px;
        right: 20px;
    }

    .form-element input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        font-size: 16px;
    }
    .form-element input::-moz-placeholder { /* Firefox 19+ */
        font-size: 16px;
    }
    .form-element input:-ms-input-placeholder { /* IE 10+ */
        font-size: 16px;
    }
    .form-element input:-moz-placeholder { /* Firefox 18- */
        font-size: 16px;
    }
    .newsletter-right {
        padding-right: 30px;
    }
    .footer-bottom-left,
    .footer-bottom-right {
        float: none;
    }

    .footer-bottom-left {
        margin-bottom: 10px;
    }

    .footer-nav ul li {
        width: 45%;
        margin-right: 5%;
        margin-bottom: 20px;
    }

    .footer-nav ul li:nth-child(3n) {
        margin-right: 5%;
    }

    .footer-nav ul li:nth-child(2n) {
        margin-right: 0;
    }
    .footer-nav ul li:nth-child(3n + 1) {
        clear: none;
    }

    .footer-nav ul li:nth-child(2n+1) {
        clear: both;
    }

    .footer-logo img {
        height: 80px;
    }

    .footer-top {
        padding: 70px 0 50px;
    }

    .newsletter-left {
        padding-top: 10px;
    }

    .scholars-slider-right-hold {
        width: 100%;
    }

    .scholars-nav ul li a svg {
        height: 45px;
    }

    .scholars-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .scholars-slider-left {
        padding-left: 0;
    }

    .entry-section {
        padding: 80px 0;
    }

    .inner-intro {
        padding-top: 135px;
        padding-bottom: 70px;
    }

    .page-404-book {
        height: 355px;
        width: 490px;
    }

    .page-404-left-text {
        font-size: 90px;
        padding-top: 16px;
    }

    .page-404-book {
        padding-top: 110px;
        padding-bottom: 110px;
    }




    /*entry*/

    .entry h1 {
        font-size: 36px;
        line-height: 42px;
        letter-spacing: -0.25px;
    }

    .entry h2 {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: normal;
        font-weight: 600;
    }

    .entry h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .entry h6 {
        font-size: 18px;        
    }

    .entry p {
        font-size: 16px;
        line-height: 24px;
    }

    .entry > ul {
        width: 100%;
        padding-right: 0;
    }

    /*entry*/

    /*text classes*/

    .large-p {
        font-size: 20px;
        line-height: 34px;
    }

    .medium-p {
        font-size: 18px;
        line-height: 30px;
    }    

    /*text classes*/


    /* for Students */
    .intro-height {
        height: 400px;        
    }
    .intro-page-content-hold {       
        padding: 6%;
    }    
    
    .mrg-btm{
        margin-bottom: 80px;
    }

    .padd-top{
        padding-top: 80px;
    }

    .scolars-pad-clr{
        background-size: cover!important;
        padding-bottom: 20px;
    }

    .partner-school-list ul li {        
        width: 45%;
        margin-right: 10%;
        margin-bottom: 80px;
    }

    .partner-school-list ul li:nth-child(3n) {        
        margin-right: 10%;
    }

    .partner-school-list ul li:nth-child(2n) {        
        margin-right: 0%;
    }

    .centering-box{   
        
        width: 90%;
    }

    .partner-text p{    
        font-size: 21px;        
    }

    .partner-text span{         
        font-size: 16px;        
    }

    .text-friend h2{
        font-size: 21px; 
    }
    
    .text-friend a{        
        font-size: 16px; 
    }  
        
    .text-friend p{       
        font-size: 16px;       
    }

    .scholars .stats-hold{
        margin-bottom: 80px;
    }

    .green-box{
        padding: 40px;
        background-color: #1FA096;
    }

    .green-box h2{
        font-size: 23px;        
        margin-bottom: 10px;    
    }
    
    .green-box p{
        font-size: 15px;
        margin-bottom: 30px;  
    }        
    
    .green-box ul li{
        font-size: 15px;              
    }        
    
    .green-box ul li::after{        
        top: 4px;
        left: 0;          
    }

    .accordion-title,
    .accordion-title:focus{       
        font-size: 20px;        
    }

    .section-milky{
        padding: 80px 0;
        background-color: #FEF4E8;
        margin-bottom: 80px;
    }

    .FAQ-accordion{
        margin-top: 80px;
    }
    
    .date p{         
        font-size: 14px;          
    }

    .item-content p{
        font-size: 11px;
        line-height: 1.3;
        
    }

    .hold-img {        
        width: 65px;
        height: 65px;
        margin-bottom: 20px;        
    }

    .hold-img img{        
        max-width: 65%;       
    }

    .date{
        padding-bottom: 10px;
        min-height: 120px;
    }

    .timeline-list ul li::before {        
        top: 78px;
        left: 43%;
    }

    .timeline-list ul li::after {
        width: 18px;
        height: 18px;        
        top: 70px;
        left: 41%;
    }

    .section-become-mentor .how-to-help-nav{        
        padding: 50px 5% 0 0;
    }

    .recruited-list ul li{
        width: 48%;
        margin-right: 4%;        
        padding: 30px;        
    }
    
    .process-list ul li{        
        width: 48%;
        margin-right: 4%;

    }
    
    .process-list ul li:nth-child(3n){    
        margin-right: auto;    
    }
    .process-list ul li:nth-child(2n){    
        margin-right: 0;    
    }

    .quote-message{        
        margin-bottom: 80px; 
    }

    .green-corr-2{
        padding-left: 0%;
    }

    .item .wwd-list-item {
        background-color: #FEF4E8;
    }

    .item .wwd-item-text {
        max-height: 0;
        margin-bottom: 0px;
    }

    .item .wwd-item-title svg {
        display: initial!important;
    }

    .item .wwd-item-image svg path {
        fill: initial;
    }

    .scolars-pad-clr {        
        margin-bottom: 80px;
    }    

    .home-socialproof-slider{
        margin-top: 80px;
        margin-bottom: 0px;
    }

    .volunteers-list.partners ul li a:hover .wwd-item-image-hold {
        margin-top: initial;
    }    
        
    .volunteers-list.partners ul li a:hover .wwd-item-text{ 
        min-height: initial;   
    }

    .individual-partners-image {
        padding-right: 4%;        
    }

    .individual-partners-content{
        padding-left: 0;
        padding-right: 0;
    }

    .wrapper-content:nth-child(2n) .individual-partners .individual-partners-image{
        padding-right: 0%;
        padding-left: 4%; 
    }

    .wrapper-content:nth-child(2n) .individual-partners .individual-partners-content{        
        padding-right: 0%;
    }

    .individual-partners{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .section-white{
        padding: 80px 0 80px 0;
    }

    .section-partner-schools .entry h2 {
        margin-bottom: 80px;
    }

    .section-partner-schools {
        padding-top: 80px;
    }

    .friends {        
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .donor-section .how-to-help-left{
        padding-left: 3%;
    }

    .who-inmrg{
        margin-top: -40px;
    }

    .lift-up{
        margin-top: -5.5%;
    }

    .new-pad.wwd-right{
        padding-left: 3%;
        padding-right: 0;
    }

    .new-pad.wwd-right{
        padding-top: 0;
    }

    .our-team .accordion-item.is-active .member-photo{
        width: 90px;
        height: 90px;
        top: 6%;
        left: -27px;
    }

    .events .accordion-item.is-active .member-photo{
        width: 90px;
        height: 90px;       
        left: -27px;
    }

    .accordion-content {
        padding-right: 10%;
    }

    .leadership .owl-nav{        
        top: 460px;
    }
    
    .leadership .counter-calc{
        top: 435px;
    }

    .heading-carrer-exploration{
        font-size: 24px;
        margin-bottom: 30px;
    }

    .emails-list ul li {        
        width: 25%;
        margin-right: 10%;        
    }

    .emails-list ul li p,
    .emails-list ul li a {        
        font-size: 19px;
        word-break: break-all;        
    }
    .contact-form {
        background-color: #fff;
        padding: 60px;
    }

    .left-side {
        padding-right: 0%;
    }

    .scolarships-numbers .stats-hold{
        padding-top: 80px;
        padding-bottom: 80px;    
    }

    .corr .wwd-right{
        padding-right: 2%;
    }

    .section-training-oportunities {
        padding-bottom: 80px;
    }
    
    .content-left {
        padding-right: 0%;
    }

    .partner-form {
        padding-left: 0%;
    }
    .ssd-image{
        height: auto;
    }

    .info-member{
        -ms-flex-wrap: wrap;
       flex-wrap: wrap;
        /* width: 100%; */
    }
    .member-hold {
        margin-right: 40px;
        padding-left: 0;
    }

    .img-member{
        margin-bottom: 15px;
    }
}

@media screen and (max-width:639px) {
    .stats-bottom.stats-bottom-wider ul li {
        width: 100%;
        margin-right: 0;
    }
    .stats-bottom-wider.corrections-1 {
        padding-left: 0;
    }
    .advisory-council-section {
        margin-bottom: 60px;
    }
    .ac-list-name {
        font-size: 16px;
    }
    .advisory-council-section .entry {
        margin-bottom: 50px;
    }
    .advisory-council-section {
        padding: 60px 0 30px;
    }
    .ac-list-image-hold {
        margin: 0px auto 12px;
    }
    .ac-list ul li {
        width: 47%;
        min-width: 47%;
        margin-right: 6%;
        margin-bottom: 36px;
    }
    .ac-list ul li:nth-child(7n) {
        margin-right: 6%;
    }
    .ac-list ul li:nth-child(5n) {
        margin-right: 6%;
    }
    .ac-list ul li:nth-child(2n) {
        margin-right: 0%;
    }
    .close-button {
        top: 10px;
        right: 10px;
    }
    .donor-section .how-to-help-left {
        padding-left: 0;
    }
    .newsletter-form-success {
        min-height: 202px;
    }
    .newsletter-holder {
        padding-right: 20px;
        margin-top: 0;
    }
    .form-element-sm input, .form-element-sm input:focus, .form-element-sm input:active {
        font-size: 15px;
        height: 43px;
    }
    .newsletter-holder ul li {
        margin-right: 0;
        width: 100%;
        margin-bottom: 10px;
    }
    .newsletter-holder ul li.last-element {
        width: 100%;
        margin-bottom: 0px;
    }
    .ae-block-item {
        margin-bottom: 25px;
        font-size: 16px;
        line-height: 1.5;
        padding-top: 20px;
    }
    .ae-block-title {
        font-size: 18px;
    }
    .annual-events-section {
        padding: 70px 0;
        margin-bottom: 60px;
    }
    .emails-list ul li p, .emails-list ul li a {
        font-size: 17px;
        word-break: normal;
    }
    .page-template-tp-mixed_flexible .section-email-alumni {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .page-template-tp-mixed_flexible .what-we-do-section.after-section .wwd-right {
        padding-left: 0;
        padding-top: 30px;
    }
    .page-template-tp-who_we_are_flexible .section-white.bg-light-blue + .marquee-section {
        margin-top: 56px;
    }
    .page-template-tp-who_we_are_flexible .section-report {
        margin-bottom: 80px;
    }
    .our-team .accordion-title::after {
        display: none !important;
    }
    .page-template-tp-who_we_are_our_impact .new-pad.wwd-right .entry {
        padding-top: 25px;
    }
    .page-template-tp-volunteers_overview .mrg-btm {
        margin-bottom: 90px;
    }
    .page-template-tp-volunteers_overview .what-we-do-list {
        margin-bottom: 0;
    }
    .page-template-tp-volunteers_overview .what-we-do-list ul li:last-child {
        margin-bottom: 0 !important;
    }
    .green-corr-2.stats-bottom ul li:last-child {
        margin-bottom: 0;
    }
    .partner-school-list ul li:last-child {
        margin-bottom: 90px;
    }
    .scholars-section + .recruiting_process-section {
        margin-top: 80px;
    }
    .funders-faq-bottom {
        margin-top: 15px;
    }
    .funders-faq-bottom p {
        font-size: 14px;
    }
    .funders-faq-bottom {
        padding: 0;
    }
    .quote-lg-author-name span {
        font-size: 14px;
        padding-top: 6px;
    }
    .quote-lg-author-name {
        font-size: 18px;
    }
    .quote-lg-author-image {
        width: 66px;
        min-width: 66px;
        height: 66px;
        margin-right: 20px;
    }
    .quote-lg-hold {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .quote-lg-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .section-quote-lg {
        padding: 90px 0;
    }
    .row {
        padding: 0 20px;
    }

    .intro-video {
        height: 360px;
    }

    .intro-video video {
        max-width: 100%;
    }

    .intro-content-hold {
        margin-top: -110px;
    }

    .pcf-btn,
    .pcf-btn:focus,
    .pcf-btn:active {
        font-size: 14px;
        padding: 12px 13px 10px;
    }

    .pcf-btn.btn-lg,
    .pcf-btn.btn-lg:focus,
    .pcf-btn.btn-lg:active {
        padding: 15px 20px 15px;

    }

    .intro-ctas a {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .wwd-item-title {
        font-size: 18px;
    }

    .what-we-do-list ul li {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 25px!important;
        float: none;
    }

    .wwd-list-item {
        padding: 30px 25px 35px;
    }

    .stats-top {
        margin-bottom: 30px;
    }

    .stats-title {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .stats-top-text {
        padding-left: 0;
    }

    .stats-number {
        font-size: 40px;
    }

    .stats-number span {
        font-size: 30px;
    }

    .stats-bottom ul li {
        width: 48%;
    }

    .stats-bottom ul li:nth-child(3n) {
        margin-right: 3.75%;
    }

    .stats-bottom ul li:nth-child(2n) {
        margin-right: 0;
    }

    .scholars-top {
        padding: 0;
        margin-bottom: 60px;
    }

    .how-to-help-nav {
        margin-top: 25px;
    }

    .how-to-help-right {
        padding-left: 0;
    }

    .how-to-help-left {
        padding-right: 0;
    }

    .wwd-right {
        padding-left: 0;
        padding-right: 0;
        padding-top: 60px;
    }

    .wwd-text-box {
        max-width: 100%;
    }

    .how-to-help-left {
        padding-top: 60px;
    }

    .how-to-help-nav ul li a {
        height: 60px;
        padding: 20px 45px;
    }

    .how-to-help-nav ul li a img,
    .how-to-help-nav ul li a svg {
        top: 20px;
    }

    .how-to-help-nav ul li a:after {
        top: 27px;
    }

    .how-to-help-section {
        margin-bottom: 60px;
    }

    .marquee-section {
        margin-bottom: 60px;
    }

    .marquee-section {
        font-size: 56px;
    }

    .newsletter-hold {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .newsletter-left {
        padding-top: 0;
        margin-bottom: 20px;
        padding-right: 20px;
    }

    .newsletter-right {
        padding-left: 0;
        padding-right: 20px;
    }

    .footer-left {
        padding-right: 0;
    }

    .footer-right {
        padding-left: 0;
    }

    .footer-top {
        padding: 50px 0 30px;
    }

    .footer-nav ul li a {
        font-size: 14px;
    }

    .footer-nav ul li ul.sub-menu {
        padding-top: 5px;
    }

    .scholars-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .scholars-slider-left {
        max-width: 350px;
        margin: 0 auto;
        float: none;
    }

    .scholars-slider-right-hold {
        padding-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .mobile-menu-hold {
        padding: 100px 20px 30px;
    }

    .mobile-ctas a {
        display: block!important;
        width: 100%!important;
    }

    .footer-socials ul {
        display: block;
    }

    .footer-socials ul li {
        margin-right: 25px;
    }

    .footer-socials ul li:last-child {
        margin-right: 0;
    }

    .entry-section {
        padding: 50px 0;
    }

    .inner-intro {
        padding-top: 125px;
        padding-bottom: 55px;
    }

    .page-404-hold {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .page-404-book {
        height: 207px;
        width: 285px;
    }

    .page-404-left-text {
        font-size: 60px;
        padding-top: 30px;
    }

    .page-404-right-text {
        padding-left: 35px;
    }

    .page-404-book {
        padding-top: 40px;
        padding-bottom: 40px;
    }


    /*entry*/

    .entry h1 {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.25px;
    }

    .entry h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .entry h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .entry h6 {
        font-size: 16px;
        line-height: 24px;        
    }

    .entry p {
        font-size: 14px;
        line-height: 20px;
    }

    .entry > ul > li {
        font-size: 14px;
        line-height: 20px;
    }

    .entry > ul > li:before {
        width: 5px;
        height: 5px;
        top: 10px;
        left: 0;
    }

    .entry > ul {
        padding-left: 0;
    }

    /*entry*/

    /*text classes*/

    .large-p {
        font-size: 18px;
        line-height: 30px;
    }

    .medium-p {
        font-size: 16px;
        line-height: 24px;
    }

    .home-section-entry.entry p {
        font-size: 16px;
        line-height: 24px;
    }

    /*text classes*/


    /* for Students overview */

    .intro-height {
        height: auto;        
        min-height: 410px;     
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;   
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .centering-box {
        position: relative;
        top: 0%;
        left: 0%;
        transform: translate(0%,0%);
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .intro-page-content-hold {
        margin-top: -50px;
    }    
    
    .mrg-btm{
        margin-bottom: 40px;
    }

    .padd-top{
        padding-top: 40px;
    }

    .scolars-pad-clr{        
        padding-bottom: 0px;
    }
    .partner-school-list ul li {        
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;        
    }

    .partner-logo{
        min-height: auto;
    }

    .partner-text{
        min-height: auto;
    }

    .partner-school-list ul li:nth-child(3n) {        
        margin-right: 0%;
    }

    .partner-school-list ul li:nth-child(2n) {        
        margin-right: 0%;
    }

    .section-partner-schools {
        padding-top: 42px;
    }

    .section-partner-schools .entry h2 {
        margin-bottom: 20px;
    }

    .partner-text p{    
        font-size: 17px;        
    }

    .partner-text span{         
        font-size: 15px;        
    }

    .partner-logo {        
        margin-bottom: 17px;
        min-height: 80px;
    }
    
    .friends{
        padding: 40px 5% 40px 5%;
        background-color:rgb( 30, 160, 150, 0.1);
        margin-top: 15px;
        margin-bottom: 40px;      
    }
    
    .logo-friend{
        padding-right: 0%;
        margin-bottom: 17px;
    }
    
    .text-friend{
        padding-left: 0%;
    }
    
    .text-friend h2{
        font-size: 17px;        
        margin-bottom: 15px;
    }
    
    .text-friend a{        
        font-size: 15px;        
        margin-bottom: 15px;    
    }  
        
    .text-friend p{       
        font-size: 15px;       
    }

    .scholars .stats-hold{
        margin-bottom: 60px;
    }

    .green-box{
        padding: 20px;
        background-color: #1FA096;
    }

    .green-box h2{
        font-size: 20px;        
        margin-bottom: 10px;    
    }
    
    .green-box p{
        font-size: 14px;
        margin-bottom: 20px;  
    }        
    
    .green-box ul li{
        font-size: 14px;
        padding-left: 20px;        
    }        
    
    .green-box ul li::after{        
        top: 2px;
        left: 0;          
    }

    .accordion-title,
    .accordion-title:focus{        
        font-size: 18px;        
        padding: 25px 21% 25px 6%;
    }

    .sections-text p {        
        font-size: 14px;           
    }

    .accordion-content{
        padding: 30px 15% 30px 6%;        
    }

    .accordion-title:before {        
        width: 26px;
        height: 26px;        
        right: 5%;
        top: 47%;
    }
    .accordion-title::after {        
        left: 0;
        width: 73%;
        margin-left: 6%;        
    }

    .accordion-item{        
        margin-bottom: 40px;
    }

    .section-milky{
        padding: 60px 0;
        background-color: #FEF4E8;
        margin-bottom: 60px;
    }

    .FAQ-accordion{
        margin-top: 60px;
    }

    .timeline-list ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    
    .timeline-list ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        padding-bottom: 40px;
        padding-left: 20%;
        padding-right: 20%;

    }   

    .timeline-list ul li::after {
        width: 22px;
        height: 22px;
        top: 100px;
        left: 0%;
    }

    .timeline-list ul li::before {
        top: 100px;
        left: 9px;
        width: 3px;
        height: 100%;
    }

    .date {
        padding-bottom: 10px;
        min-height: 60px;
    }

    .hold-img {
        width: 106px;
        height: 106px;
    }

    .hold-img img{
        max-width: 100%;
    }

    .date p{
        font-size: 16px;
    }

    .item-content p{
        font-size: 15px;
    }

    .timeline-list{
        margin-top: 20px;
    }

    .section-become-mentor .how-to-help-nav{        
        padding: 0px 0% 0 0;
    }

    .section-become-mentor{        
        margin-top: 0px 
    }

    .recruited-list ul li{
        width: 100%;
        margin-right: 0%;        
        padding: 30px;
        margin-bottom: 30px;        
    }

    .recruited-list ul li:nth-last-child(2) {
        margin-bottom: 30px;
    }
    
    .icon-text{
        font-size: 18px;
        margin-bottom: 20px;
    }

    .process-list ul li{        
        width: 100%;
        margin-right: 0%;        
        padding: 30px;        
    }
    
    .process-list ul li:nth-child(2n){    
        margin-right: auto;    
    }
    
    .steps-text span{
      font-size: 14px;       
    }
    
    .steps-text h3{           
        font-size: 18px;      
    }
    
    .steps-text p{        
        font-size: 14px;           
    }

    .quote-message{        
        margin-top: 20px;
        margin-bottom: 60px;  
    }

    .after-clock .stats-hold{     
        padding-top: 60px;
        padding-bottom: 60px;    
    }
    
    
    .after-clock::after{        
        background-size: cover;    
        width: 187px;
        height: 303px;
        position: absolute;
        bottom: 10px;
        right: -1px;
    }
        
    .individual-partners-image{           
        margin-bottom: 30px;
        padding-right: 0;
    }

    .wrapper-content:nth-child(2n) .individual-partners .individual-partners-image {
        
        padding-left: 0%;
    }

    .wwd-item-title {
        margin-bottom: 20px;
    }

    .training-oportunities .owl-nav {        
        margin-top: 30px;
    }

    .scolars-pad-clr {        
        margin-bottom: 60px;
    }

    .home-socialproof-slider{
        margin-top: 60px;        
    }

    .section-white{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .wrapper-become{
        background-color: #1fa096;
        padding: 40px 20px   
    }
    
    .wrapper-become h2{        
        font-size: 20px;        
        margin-bottom: 25px; 
    }
    
    .wrapper-become p{        
        font-size: 16px;        
        margin-bottom: 25px;   
    }

    .who-inmrg{
        margin-top: -20px;
    } 

    .lift-up{
        margin-top: 0%;
    }

    .text-quote{ 
        font-size: 20px;        
    }

    .text-author{        
        font-size: 15px;        
    }

    .image-hold-report{
        margin-bottom: 25px;
    }

    .counter-calc{
        margin-bottom: 25px;
    }

    .report-name{
        margin-bottom: 0px;
    }

    .report-slider .owl-nav{        
        margin-top: 25px;
    }

    .accordion-title span{
        
        font-size: 14px;
        margin-top: 5px;
        margin-left: 0px;
        
    }
    .our-team .accordion-title, .our-team .accordion-title:focus {
        padding: 80px 27% 25px 5%;
    }

    .our-team .accordion-content{        
        padding-left: 5%;
        padding-right: 4%;
    }

    .our-team .accordion-title::after {
        margin-left: 5%;
        bottom: -111px;
        width: 90%;      
    }

    .our-team .accordion-item.is-active .member-photo{
        width: 100px;
        height: 100px;
        top: -31px;
        left: 4%;
    }

    .events .accordion-item.is-active .member-photo{
        width: 100px;
        height: 100px;
        top: -46px;
        left: 15%;
    }

    .accordion-contacts {
        padding-bottom: 10px;
        border-bottom: 1px solid #000;
    }

    .our-team .row.row-ind{
        
        padding: 0 15px
    }

    .email-member a {        
        margin-left: 10px;
    }

    .phone-member a{
        margin-left: 15px;
    }

    .our-team .accordion-item .member-photo {        
        top: -5%;
        left: 15px;
    }

    .events .accordion-content {
        padding-top: 105px;
    }

    .leadership .owl-nav{        
        position: static;
        transform: rotate(0deg);
        text-align: left;
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .leadership .counter-calc{
        position: static;
    }

    .leadership-slider-item {
        padding-right: 0%;
        padding-left: 0%;
    }

    .after-section::after {
        display: none;
    }

    .career-exploration-list ul li{
        font-size: 14px;
        
    }

    .heading-carrer-exploration{
        font-size: 24px;
    }

    .alumni-associations .report-slider .owl-nav{
        margin-top: 0;
        margin-bottom: 60px;
    }

    .contact-us {
        padding: 60px 0;        
    }

    .emails-list ul li {        
        width: 100%;
        margin-right: 0%;
        margin-bottom: 40px;        
    }

    .contact-form {
        background-color: #fff;
        padding: 30px;
    }

    .emails-list ul li:last-of-type { 
        margin-bottom: 0px;        
    }

    .right-side {
        padding-left: 0%;
    }

    .contact-form-wrapper {
        
        margin-bottom: 30px;
    }

    .scolarships-numbers .stats-hold{
        padding-top: 0px;
        padding-bottom: 60px;    
    }

    .corr .wwd-right{
        padding-right: 0%;
    }

    .wwmm.wwd-left{
        margin-bottom: 30px;
    }

    .new-pad.wwd-right{
        padding-left: 0;
    }

    .section-training-oportunities {
        padding-bottom: 60px;
    }

    .donor-section .how-to-help-right {
        padding-top: 0px;
    }

    .ssd-image{
        height: auto;
    }

    .info-member{
        padding-left: 0;
        margin-bottom: 25px;
        display: block;
    }

    .img-member{
        margin-right: 20px;
    }

    .horizontal-line {      
        margin-top: 40px;
        margin-bottom: 40px; 
        display: block;       
    }

}

@media only screen and (max-width: 450px) {
    .stats-bottom ul li {
        width: 100%;
        margin-right: 0!important;
    }

    .page-id-1364 .home-section-entry.entry p {
        font-size: 14px;
    }
}
