body {
    font-family: "Montserrat", sans-serif;
    color: #000000;
    font-size: 18px;
}

a {
    color: #ea3732;
}

a:hover {
    color: #000000;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    right: 15px;
    bottom: 15px;
    background: #ea3732;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
}

.back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 8px;
    left: 8px;
}

.back-to-top:hover {
    color: #fff;
    background: #4d4d4d;
    transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #000000;
    font-size: 14px;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
}

#topbar .contact-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#topbar .contact-info li {
    display: inline-block;
    padding: 8px 0;
}

#topbar .contact-info li + li {
    margin-left: 18px;
}

#topbar .contact-info a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #fff;
}

#topbar .contact-info i {
    color: #cccccc;
    padding-right: 4px;
}
#topbar .eligible_block {
    padding-left: 20px;
    padding-right: 20px;
}
#topbar .inl_box {
    display: inline-block;
}

#topbar .cta a {
    color: #fff;
    background: #01c26e;
    padding: 8px 20px;
    display: inline-block;
    transition: 0.3s;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}

#topbar .cta a:hover {
    background: #fff;
    color: #000;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 10px 0;
    background: #fff;
}

#header.header-scrolled {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 8px 0;
    line-height: 1;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #635551;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
}

#header .container {
    overflow: hidden;
    height: 100%;
}
#header .logo a {
    display: block;
    height: 100%;
}
#header a img {
    display: inline-block;
    overflow: hidden;
    height: 100%;
}

#header nav ul {
    display: block;
    overflow: hidden;
    height: 100%;
    width: auto;
    display: inline-block;
    float: right;
}
#header nav ul li {
    height: 100%;
}

#main {
    /*margin-top: 80px;*/
    z-index: 3;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #635551;
    padding: 15px 13px;
    transition: 0.3s;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
    color: #ea3732;
    text-decoration: none;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
    border-radius: 8px;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: lightne(#473d3a, 10);
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
    color: #01c26e;
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 5px;
    top: 20px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #000;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #473d3a;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #01c26e;
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(43, 37, 35, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 74vh;
    /*background:#4841a1;*/
    background: url("../img/bg1.jpg") center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 0;
    /*margin-bottom: -200px;*/
}

#hero:before {
    content: "";

    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    z-index: 2;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 2px;
    color: #fff;
}

/*#hero .pdtop{padding-top:55px;}*/
#hero h2 {
    color: #eee;
    margin-bottom: 2 0px;
    font-size: 20px;
    font-weight: 300;
}

#hero .get-started-icon {
    font-size: 24px;
    background: #000;
    padding: 14px;
    color: #fff;
    border-radius: 50px;
    position: relative;
    z-index: 5;
    box-shadow: 10px 2px 15px rgba(0, 0, 0, 0.1);
}

#hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s;
    margin-left: -10px;
    padding: 8px 26px 8px 26px;
    color: #fff;
    background: #222;
    border-radius: 50px;
    position: fixed;
    z-index: 4;
}

#hero .btn-get-started:hover {
    background: #ea3732;
}

@media (min-width: 1024px) {
	.row-margin {
		margin-top:50px;
	}
	.mobile-bannere {
		display:none;
	}
    #hero {
        background-attachment: scroll;
    }
}

@media (max-width: 1024px) {
	#hero.justify-content-center{
		justify-content: inherit !important;
	}
    #hero {
        margin-bottom: -20px;
        background-image: none !important;
        margin: 0;
        padding: 0;
    }
}

#content-desktop {
    display: block;
}
#content-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
	.mbl-ul {
		padding-left:20px !important;
	}
	.sp-logo {
		padding:0px;
	}
	.sp-logo img{
		width:100% !important;
	}
	 .description {
  line-height: 18px !important;
	 font-size: 12px !important;}
	.focus-block img{
		width:100% !important;
	}
	.cohort-block img{
		width:100% !important;
	}
	#about p {
		font-size: 16px;
		line-height: 30px;
	}
    #content-desktop {
        display: none;
    }
    #content-mobile {
        display: block;
    }
}

@media (max-width: 1024px) {
    .previous-cohort-section {padding-bottom: 0px;}
    #sectors {
        margin-bottom: -60px;
        background-image: none !important;
    }
}

/*@media (max-height: 768px) {
  #hero {
    margin-bottom: -150px;
  }
}*/

@media (max-width: 768px) {
	.program-offerings-col {
		margin-bottom:15px;
	}
	.content-list {
		text-align:left !important;
	}
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    #hero p {
        font-size: 12px !important;
        padding-top: 75px;
		text-align:center;
    }
}

.icon-boxes {
    width: 100%;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #e6e6e6;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.text_style h2 {
    color: #01c26e !important;
}
.txt-center {
    text-align: center;
}

@media (min-width: 768px) {
    .text_style h2 {
        color: #01c26e !important;
        font-size: 3.2em !important;
        text-align: left !important;
    }
    .eligible .icon-boxes {
        text-align: left !important;
    }
}

@media (max-width: 767px) {
    .pdbm_0 {
        padding-bottom: 0px !important;
    }
}

.section-title h2 {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 0;
    font-family: "Montserrat", sans-serif;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    padding: 0 0 30px 0;
    position: relative;
    z-index: 3;
}

.why-us .content {
    padding: 30px;
    background: #01c26e;
    border-radius: 4px;
    color: #fff;
    -webkit-transition: background-color 2s ease-out;
    -moz-transition: background-color 2s ease-out;
    -o-transition: background-color 2s ease-out;
    transition: background-color 2s ease-out;
    -webkit-transition: color 1s ease-out;
    -moz-transition: color 1s ease-out;
    -o-transition: color 1s ease-out;
    transition: color 1s ease-out;
}

.why-us .content:hover {
    background: #fff;
    color: #222;
    cursor: pointer;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.why-us .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 20px;
}

.why-us .content p {
    margin-bottom: 30px;
}

.why-us .content .more-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
    font-size: 14px;
}

.why-us .content .more-btn:hover {
    color: #01c26e;
    background: #fff;
}

.why-us .icon-boxes .icon-box {
    text-align: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 60px 30px;
    width: 100%;
    -webkit-transition: color 1s ease-out;
    -moz-transition: color 1s ease-out;
    -o-transition: color 1s ease-out;
    transition: color 1s ease-out;
}
.why-us .icon-boxes .icon-box:hover .date_event {
    color: #01c26e;
}

.why-us .icon-boxes .icon-box i {
    font-size: 50px;
    color: #222222;
    margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-top: 20px;
    letter-spacing: 1px;
}

.why-us .icon-boxes .icon-box p {
    font-size: 15px;
    color: #716f6f;
}
.why-us .date_event {
    font-size: 19px;
}
.mrg_btn15 {
    margin-bottom: 15px;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/*
#about {
    background: url(../img/about-bg.jpeg);
    background-size: cover;
    overflow: hidden;
    position: relative;
    color: #fff;
    padding: 60px 0 40px 0;
}*/
#about {
    background: #fff !important;
    padding: 60px 0 40px 0;
}
#about:before {
    content: "";
    /*  background: rgba(0, 0, 0, 0.8);*/
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

/*@media (min-width: 1024px){
#about {
    background-attachment: fixed;
}}*/

.about.white_text h2 {
    color: #ffffff !important;
    position: relative;
}
#about p {
    text-align: center;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 18px;
    line-height: 33px;
}
.pd100 {
    padding-top: 100px !important;
}
.pdt0 {
    padding-top: 0px !important;
}
.pbt0 {
    padding-bottom: 0px !important;
}
.pb30 {
    padding-bottom: 30px;
}
.about .icon-boxes h4 {
    font-size: 18px;
    color: #222222;
    margin-bottom: 15px;
}

.about .icon-boxes h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
}

.pd_t0 {
    padding-top: 0px !important;
}
.mr_b0 {
    margin-bottom: 0px;
}

.about .icon-box {
    margin-top: 40px;
}

.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #ffcbba;
    border-radius: 50px;
    transition: 0.5s;
    background: #fff;
}

.about .icon-box .icon i {
    color: #01c26e;
    font-size: 32px;
}

.about .icon-box:hover .icon {
    background: #01c26e;
    border-color: #01c26e;
}

.about .icon-box:hover .icon i {
    color: #fff;
}

.about .icon-box .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.about .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
}

.about .icon-box .title a:hover {
    color: #01c26e;
}

.about .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 14px;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#01c26e 50%, rgba(255, 88, 33, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 88, 33, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
    border-left: 15px solid #01c26e;
    transform: scale(20);
}

.about .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

#theme .apply_btn {
    padding: 10px 40px;
    background: #01c26e;
    display: inline-block;
    margin: 20px auto;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}
#theme .apply_btn a {
    color: #fff !important;
}
#theme .apply_btn:hover {
    background: #222;
}
.mt20 {
    margin-top: 40px;
}

#faq .apply_btn {
    padding: 10px 40px;
    background: #000000;
    display: inline-block;
    margin: 20px auto;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}
#faq .apply_btn a {
    color: #fff !important;
}
#faq .apply_btn:hover {
    background: #222;
}
.mt20 {
    margin-top: 40px;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 50px 20px;
    margin-bottom: 25px;
    text-align: center;
    height: 200px;
    position: relative;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.services .icon {
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 72px;
    height: 72px;
    background: #222;
}

.services .icon i {
    color: #fff;
    font-size: 24px;
}

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
}

.services .title a {
    color: #343a40;
}

.services .icon-box:hover .icon {
    background: #fff;
    border: 2px solid #413a99;
}

.services .icon-box:hover .icon i {
    color: #01c26e;
}

.services .icon-box:hover .title a {
    color: #01c26e;
}

.services .description {
    line-height: 24px;
    font-size: 14px;
}
.eligible .apply_btn {
    display: inline-block;
    padding: 10px 40px;
    background: #01c26e;
    margin: 0px auto;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}
.eligible .apply_btn a {
    color: #fff !important;
    -moz-transition: color 0.5s ease-out;
    -o-transition: color 0.5s ease-out;
    transition: color 0.5s ease-out;
}
.eligible .apply_btn:hover {
    background: #fff;
}
.eligible .apply_btn:hover a {
    color: #222 !important;
}
#eligibility ol {
    line-height: 25px;
    font-weight: 300;
}
#eligibility ol li {
    text-align: left;
}

/*--------------------------------------------------------------
# Sectors
--------------------------------------------------------------*/
.sectors .icon-box {
    padding: 0px 20px;
    margin-top: 5px;

    text-align: center;
    height: 110px;
    position: relative;
    background: #fff;
}

.sectors .icon {
    /* position: absolute;
  top: -45px;
  left: calc(50% - 40px);*/
    transition: 0.2s;
    border-radius: 50%;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 90px;
    height: 90px;
    border: 4px solid #222;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}

.sectors .icon i {
    color: #222;
    font-size: 40px;
}
.sectors .icon:hover {
    background: #4d4d4d;
    border: 4px solid #f1f1f1;
}

.sectors .icon:hover i {
    color: #ffffff;
}

.sectors .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 20px;
    text-align: center;
}

.sectors .title a {
    color: #343a40;
}

.sectors .description {
    line-height: 24px;
    font-size: 18px;
    font-weight: 500;
    padding: 0px 40px 0px 40px;
}

/*--------------------------------------------------------------
# Timeline
--------------------------------------------------------------*/

#timeline {
    background: url("../img/timeline.jpg") center center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
.pdt100 {
    padding-top: 50px;
}
.pdb100 {
    padding-bottom: 100px;
}

.timeline h2 {
    color: #ffffff !important;
}
.timeline .section-title {
    padding-bottom: 50px;
}

.timeline .icon-box {
    padding: 50px 0px;
    margin-top: 35px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 0px !important;
}

.timeline .icon-box p {
    color: #fff;
}

.timeline .icon {
    position: absolute;
    top: -45px;
    left: calc(50% - 45px);
    transition: 0.2s;
    border-radius: 50%;
    border: 4px solid #ececec;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 90px;
    height: 90px;
    -webkit-transition: border-color 0.5s ease-out;
    -moz-transition: border-color 0.5s ease-out;
    -o-transition: border-color 0.5s ease-out;
    transition: border-color 0.5s ease-out;
}

.timeline .icon i {
    color: #fff;
    font-size: 36px;
    -webkit-transition: color 0.5s ease-out;
    -moz-transition: color 0.5s ease-out;
    -o-transition: color 0.5s ease-out;
    transition: color 0.5s ease-out;
}

.timeline .icon:hover {
    border: 4px solid #01c26e;
}
.timeline .icon:hover i {
    color: #01c26e;
}

.timeline .title a {
    color: #343a40;
}

.timeline .description {
    line-height: 22px;
    font-size: 14px;
    margin-top: 20px;
    font-weight: 200;
}

/*--------------------------------------------------------------
# supported
--------------------------------------------------------------*/
.supported .icon-box {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}
.supported img {
    width: 60%;
    margin: 0 auto;
}
.pdb0 {
    padding-bottom: 0px !important;
}

/*--------------------------------------------------------------
# Program Partner
--------------------------------------------------------------*/
.partner .icon-box {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}
.partner img {
    width: 80%;
    margin: 0 auto;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li + li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #000000;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #222;
}

.faq .faq-list a.collapsed:hover {
    color: #000000;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #313030;
    padding: 20px;
    text-align: center;
    overflow: hidden;
    margin: 0 auto;
}

.contact .info-box i {
    font-size: 3rem;
    color: #000000;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #01c26e;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #656262;
    font-weight: 700;
    margin: 10px 0 10px 68px;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin: 0 0 0 68px;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
    background-color: #01c26e;
}

.contact .php-email-form input {
    padding: 20px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact p a {
    color: #313030 !important;
}
.contact .php-email-form button[type="submit"] {
    background: #01c26e;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #ff7e54;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    font-size: 14px;
    background: #000000;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 25px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #f15f5b;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #01c26e;
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #ffe2d9;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #01c26e;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #ed3b00;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #ffffff;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #01c26e;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
#footer .social-links {
    margin-top: 30px;
}
#footer .social-links a {
    background: #000000;
}

#footer .social-links a:hover {
    background: #01c26e;
    color: #fff;
    text-decoration: none;
}

/* pseudocode BB*/
.header-logo {
    display: inline !important;
}
.header-logo img {
    margin-left: -15px;
}
.initiative-block {
    padding-left: -15px;
    font-size: 14px;
    margin-left: -30px;
    /* margin-top: 38px; */
}
.initiative-block img.pos_logo {
    width: 130px;
    margin-top: 0px;
	margin-left: 0;
}
.initiative-block img.miety-logo {
    width: 195px;
    margin-top: -8px;
    margin-left: 20px;
    padding-left: 5px;
    padding-bottom: 2px;
    margin-bottom: 20px;
}
.pdtop img {
    width: 90%;
    margin-top: -65px;
    margin-left: -20px;
    margin-bottom: 40px;
}
.click-apply {
    margin-top: 10px;
    margin-left: -14px;
}
.btn-get-started {
    margin-top: 110px;
}
.img-box-shadow img {
    box-shadow: 12px -12px 0px #ea3732;

    width: 411px;
    height: 249px !important;
    margin-top: 45px;
}
.content-list {
    text-align: justify;
}
.img-box-shadow-even img {
    box-shadow: -12px 12px 0px #ea3732;
    width: 411px;
    height: 249px !important;
    margin-top: 45px;
}
.program-block img {
    box-shadow: 10px 10px 0px 0px #ea3732;
    border: 2px solid #000;
    width: 100px;
}
.program-block-content {
    padding-top: 20px;
}
.program-block-content p {
    text-align: center;
    color: #222;
    font-size: 14px;
}
.pera {
    text-align: center;
    font-size: 16px;
}
.focus-block img {
    width: 30%;
}
.focus-block p {
    text-align: center;
}
.eligibility-criteria {
    font-size: 18px;
}
.eligibility-criteria li {
    color: #000;
	text-align: left;
}
.cohort-block img {
    width: 150px;
}
.faq-content li p {
    font-size: 13px;
}
.footer-contact h4 {
    color: black;
}
.footer-contact p {
    color: black !important;
}
/* pseudocode BB*/

@media (max-height: 767px) {
	#hero .btn-get-started{
		position: relative;
		margin: 0 auto;
	}
	.mbl-partnership {
		margin-top:0px !important;
	}
	.header-logo{margin-left:0px}
	.initiative-block img.miety-logo{
		margin-left:0px;
		margin-bottom: 0;
	}
	.partnership-with {
		display:grid;
		font-weight:600;
		margin-top:25px;
	}
	.pos_logo {
		margin-left	:0px !important;
		padding:0px;
	}
	.pdtop {
		background-color: #fff;
		
	}
	.pdtop img {
		margin-top:0px;
		margin-bottom:0px;
		margin-left:0px;
	}
	.pdtop p{
		padding-top:0px !important;
	}
    #hero {
        height: auto !important;
    }
}
@media (max-width: 767px) {
	.img-box-shadow {
		padding-right:30px;
	}
	.img-box-shadow-even {
		padding-left:30px;
	}
    .m_hide {
        display: none;
    }
    .mobile_f_size {
        font-size: 1.8rem !important;
    }
    .supported .icon-box {
        padding-top: 30xp;
        padding-bottom: 30px;
    }
}
@media (min-width: 992px) {
    .logo {
        width: auto !important;
        margin-right: 0px !important;
    }
    .nav-menu {
        width: 80% !important;
    }
}
@media (min-width: 768px) {
    .mn40 {
        margin-top: -40px;
    }
    .pos_logo {
        position: relative;
        top: 10%;
    }
    .mtn30 {
        margin-top: -40px;
    }
}

.contact_form {
    text-align: center;
    font-size: 24px;
}

.white_text {
    color: #fff;
}
.mt0 {
    margin-top: 0px !important;
}

#timeline:before {
    content: "";
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.pdtb20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.aae_style {
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
}
.aae_box {
    padding-top: 40px;
    border: 4px solid #fff;
    padding-bottom: 41px;
}
.aae_box .title a {
    color: #fff;
    font-size: 1.3rem;
}
.aae_box .title {
    margin-top: 10px;
}
.aae_box .icon i {
    font-size: 2.4rem;
}
.pdb1 {
    padding-bottom: 1rem !important;
}

#sectors .apply_btn {
    padding: 10px 40px;
    background: #000000;
    display: inline-block;
    font-weight: 600;
    margin: 20px auto;
    font-size: 17px;

    margin: 20px auto;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}
#sectors .apply_btn a {
    color: #fff !important;
}
#sectors .apply_btn:hover {
    background: #222;
}
.white_text {
    color: #ffffff !important;
}
#eligibility p {
    color: #000 !important;
    font-weight: 500;
    font-size: 18px;
    border: 1px solid black;
    box-shadow: 0px 0px 11px -2px #4b8423;
}
