@import url("https://use.typekit.net/sxp0eps.css");

:root {
  --vh: 1vh;
    --gradient: linear-gradient(165deg, #00b07b 4%, #223069 24.14%, #223069 68.47%, #4cb1ef 100%);
    --white: #ffffff;
    --green: #00B07B;
    --light-green: #E5F7F1;
    --purple: #223069;
    --light-blue: #4CB1EF;
    --border-color: #dbe8eb;
    --regular: 400;
    --medium: 500;
    --semi-bold: 600;
    --bold: 700;
    --d-extra-bold: 900;
    --family-montserrat: montserrat, sans-serif;
    --family-d-din-pro: D-DIN-PRO, sans-serif;
}

.svg-holder {
    max-width: 730px;
}

.single .fellow-bio {
    max-width: 395px;
    color: #223069;
}

.single .post-title {
    margin-bottom: 15px;
}

/* .news-post .post-excerpt ol {
    padding-left: 25px;
} */

.news-post .post-excerpt ol li {
    font-family: var(--family-montserrat);
    font-size: 21px;
    font-weight: var(--regular);
    letter-spacing: 0.02em;
    line-height: 32px;
    color: var(--purple);
    max-width: 870px;
}

.news-post .post-excerpt ol li:not(:last-child) {
    margin-bottom: 15px;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
    margin: 0px !important;
    /*background: var(--gradient);
    background-repeat: no-repeat;
    background-size: cover;*/
}

.container {
    max-width: 1200px;
}

.btn:focus {
    box-shadow: none;
}

/* 1em @ 48em (768px) increasing to 2em @ 120em (1920px) */
/* (font-size px / 16)/2 = font-size rem*/
@media (min-width: 48rem) {
    :root {
        font-size: calc(1rem + ((1vw - .48rem) * 1.389));
    }
}

/* FULL MENU CSS */
#full-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    opacity: 0;
    transition: none;
}

#full-menu.open {
    z-index: 1031;
    opacity: 1;
    transition: none;
}

.cc-center {
    position: absolute;
    width: 100%;
    height: auto;
/*     bottom: 0px; */
    bottom: 0vh;
    left: 50%;
    transform: translate(-50%, calc(0% - 80px));
}

/* @media(min-width: 767px) {
    .cc-center {
        height: 100%;
    }
} */

.menu-items {
    padding-left: 60px;
    position: relative;
}

.menu-items::before {
  content: " ";
    width: 1px;
    height: calc(100% - -70px);
    background: var( --green);
    position: absolute;
    bottom: -80px;
    left: 60px;
}

.menu-items li {
    list-style: none;
  margin-bottom: 40px;
    padding-left: 19px;
}

.menu-items li:last-child, 
.menu-items li:nth-last-child(2) {
    margin-bottom: 0px;
    padding-left: 0px;
}

.menu-items > li:not(:nth-last-child(2) ) a {
    font-family: var(--family-d-din-pro);
    font-weight: var(--semi-bold);
    font-size: 18px;
    letter-spacing: 0.12em;
    line-height: 28px;
    text-align: left;
  text-transform: uppercase;
    color: var(--purple);
  position: relative;
}

.menu-items > li:not(:nth-last-child(2) ) a::before {
    content: " ";
    width: 16px;
    height: 16px;
    border: 1px solid var(--green);
    background: var(--white);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 3px;
    left: -27px;
}

.menu-items li a:hover{
    color: var(--light-green);
    text-decoration: none;
}

.menu-items > li .btn-menu {
    width: 180px;
    font-size: 17px;
    letter-spacing: 0.10em;
    line-height: 17px;
    position: relative;
    margin-left: -7px;
}

@media screen and (min-width: 767px) and (min-height: 768px)  {
  .menu-items > li:not(:nth-last-child(2) ) a {
        font-size: 32px;
        letter-spacing: 0.12em;
        line-height: 42px;
    }

    .menu-items > li:not(:nth-last-child(2) ) a::before {
        width: 30px;
        height: 30px;
        left: -54px;
    }

    .menu-items li {
        margin-bottom: 55px;
        padding-left: 40px;
    }

    .menu-items > li .btn-menu {
        width: 220px;
        height: 50px;
        font-size: 22px;
        line-height: 24px;
        border-radius: 50px;
    }

    .menu-items > li .btn-menu i {
        font-size: 19px !important;
        line-height: 22px !important;
    }
}

@media screen and (min-width: 992px) and (min-height: 1024px) {
    .menu-items li {
        margin-bottom: 80px;
        padding-left: 50px;
    }

    .menu-items > li:not(:nth-last-child(2) ) a {
    font-size: 40px;
    line-height: 50px;
    }

    .menu-items > li:not(:nth-last-child(2) ) a::before {
        width: 38px;
        height: 38px;
        left: -69px;
    }

    .menu-items > li .btn-menu {
        width: 350px;
        height: 60px;
        font-size: 28px;
        line-height: 33px;
    border-radius: 42px;
    }

    .menu-items > li .btn-menu i {
        font-size: 22px !important;
      line-height: 34px !important;
    }
}

/* NO SCROLL CSS */
.no-scroll {
    height: 20vh;
    overflow: hidden;
}

.site {
    overflow-x: unset;
}

/* HEADER CSS */
header {
    padding: 10px 30px 20px 10px;
    background: var(--white);
    position: relative;
    border-bottom: 1px solid var(--light-green);
}

.logo {
    
}

.logo {
    max-height: 100px;
}

header ul {
    margin: 0px;
    float: right;
    height: 40px;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

header ul .list-inline-item:not(:last-child) {
    margin-right: 40px;
    line-height: 40px;
}

/*header ul li {
    line-height: 39px;
}*/

header ul .list-inline-item:not(:last-child) a {
    padding-left: 26px;
    position: relative;
    font-family: var(--family-d-din-pro);
    font-weight: var(--semi-bold);
    font-size: 17px;
/*     font-size: 14px; */
    letter-spacing: 0.11em;
    line-height: 40px;
    color: var(--purple);
    text-transform: uppercase;
}

header ul .list-inline-item:not(:last-child) a::before {
    content: " ";
    width: 14px;
    height: 14px;
    border: 1px solid var(--green);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
/*     top: 1px; */
    top: calc(50% - 7px);
    left: 0px;
}

header ul .list-inline-item:not(:last-child) a:hover, 
header ul .list-inline-item:not(:last-child) a.active {
    text-decoration: none;
}

header ul .list-inline-item:not(:last-child) a:hover:before, 
header ul .list-inline-item:not(:last-child) a.active:before {
    background: var(--green);
}

.btn-menu {
    width: 160px;
/*     width: 135px; */
    height: 40px;
    border-radius: 20px;
    background: var(--green);
    padding: 11px 20px;
    font-family: var(--family-d-din-pro);
    font-weight: var(--d-extra-bold);
    font-size: 17px;
/*     font-size: 15px; */
    letter-spacing: 0.12em;
    line-height: 17px;
    text-align: left;
    color: var(--white);
}

.btn-menu i {
    float: right;
    font-size: 15px;
    line-height: 17px;
}

.btn-menu:hover {
    background: var(--purple);
    color: var(--white);
}

.cth-wrapper {
    background: var(--gradient);
    height: 100%;
    position: relative;
    padding-top: 80px;
    z-index: 1;
    border-top: 09px solid var(--light-green);
}

.mobile-header {
    display: none;
}
/* 
header ul .list-inline-item:not(:last-child) {
    margin-right: 1.4375rem;
}

header ul .list-inline-item:not(:last-child) a {
    padding-left: 0.90625rem;
    font-size: 0.5625rem;
}

header ul .list-inline-item:not(:last-child) a::before {
    width: 0.5rem;
    height: 0.5rem;
}

header ul li .btn-menu {
    width: 5rem;
    font-size: 0.53125rem;
}

header ul li .btn-menu i {
    font-size: 0.46875rem;
} */

/* MENU ICON */
#mobile-main-menu-btn.active {
    position: relative;
    z-index: 1032;
    top: 0;
    right: 0;
}

#mobile-main-menu-btn {
    margin-left: auto;
    display: block;
}

.menu-btn {
    height: 33px;
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
    right: 0;
    top: 0px;
} 

.menu-btn:visited, .menu-btn:focus {
    outline: none !important; 
    box-shadow: none !important;
}

.scrolled .menu-btn {
    opacity: 1;
    z-index: 2;
}

.no-scroll .menu-btn {
    opacity: 1;
}

.menu-btn:hover {
    cursor: pointer;
}

.menu-span {
    padding: 0;
    position: relative;
    display: block;
    width: 36px;
    height: 2px;
    margin: 0 auto;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    background: var(--purple);
    color: inherit;
    font-size: 0;
    transition: 0.35s;
}

.menu-span:before, .menu-span:after {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--purple);
    content: "";
    transition: transform 0.35s;
}

/* .active .menu-span:before, .active .menu-span:after, .active .menu-span {
    background: #fff !important;
} */

.menu-span:before {
    transform: translate(-50%, -10px);
}

.menu-span:after {
    transform: translate(-50%, 10px);
}

.menu-span:before, .menu-span:after {
    transform-origin: 0% 0%;
}

/* .menu-btn.active .menu-span {
    background: 0 0;
} */

.menu-btn.active .menu-span:before {
    transform: translate(-50%, 0) rotate(-45deg) scaleX(0.7);
}

.menu-btn.active .menu-span:after {
    transform: translate(-50%, 0) rotate(45deg) scaleX(0.7);
}

.cth-wrapper::before {
    content: " ";
    width: 100%;
    height: 100%;
    background: #768bb9;
    opacity: 0.6;
    position: absolute;
    top: 0px;
    left: 0px;
}

.cth-wrapper > div:not(.cth-border-box) {
    position: relative;
    z-index: 2;
}

.cth-border-box {
    width: calc(50% + 578px);
    height: calc(100% - 320px);
    background: transparent;
    border: 1px solid #dbe8eb;
    border-right: none;
    border-radius: 6px 0px 0px 6px;
    position: absolute;
    top: 80px;
    right: 0;
    z-index: 1;
}

.cth-border-box::before, 
.cth-border-box::after {
    content: " ";
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 50%;
    position: absolute;
    left: -8px;
}

.cth-border-box::before {
    top: 61px;
}

.cth-border-box::after {
    bottom: 345px;
}

/*.cth-border-box::before {
    content: " ";
    width: calc(50% + 578px);
    height: 100%;
    background: transparent;
    border: 1px solid #dbe8eb;
    border-right: none;
    border-radius: 6px 0px 0px 6px;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
}*/

/*.cth-border-box::before {
    content: " ";
    width: 80.34%;
    height: 100%;
    background: transparent;
    border: 1px solid #dbe8eb;
    border-right: none;
    border-radius: 6px 0px 0px 6px;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
}*/

.cth-hero-content {
    padding: 54px 0px 80px 80px;
    position: relative;
    z-index: 2;
}

/*.cth-hero-content::before {
    content: " ";
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 50%;
    position: absolute;
    top: 61px;
    left: 0;
}*/

.sub-heading {
    font-family: var(--family-d-din-pro);
    font-weight: var(--medium);
    font-size: 18px;
    letter-spacing: 0.18em;
    line-height: 30px;
    color: var(--white);
    text-transform: uppercase;
}

.cth-hero-content h1 {
    font-family: var(--family-montserrat);
    font-weight: var(--semi-bold);
    font-size: 32px;
    letter-spacing: 0.02em;
    line-height: 48px;
    color: var(--white);
    max-width: 900px;
    margin: 30px 0px 32px;
}

.cth-hero-content p {
    font-family: var(--family-montserrat);
    font-weight: var(--regular);
    font-size: 24px;
    letter-spacing: 0.02em;
    line-height: 36px;
    text-align: left;
    color: var(--white);
    max-width: 900px;
    margin-bottom: 0px;
}

.cth-hero-content p a {
    font-weight: var(--semi-bold);
    color: #fff;
}

.btn-hero {
    width: 400px;
    height: 40px;
    border-radius: 20px;
    background: var(--white);
    padding: 0px 20px;
    border: 2px solid var(--white);
    font-family: var(--family-d-din-pro);
    font-weight: var(--bold);
    font-size: 17px;
    letter-spacing: 0.1em;
    line-height: 37px;
    text-align: left;
    color: var(--green);
    text-transform: uppercase;
}

.btn-hero i {
    float: right;
    font-size: 15px;
    line-height: 38px;
}

.cth-hero-content .btn-hero {
    margin-top: 56px;
}

.btn-hero:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.news-post {
    padding: 54px 8px 80px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.news-post::before {
    content: " ";
    width: calc(100% + 780px);
    height: 100%;
    background: var(--white);
    border-radius: 3px 0px 0px 3px;
    position: absolute;
    top: 0px;
    left: -51px;
    z-index: -1;
}

.news-post .sub-heading {
    color: var(--light-blue);
    margin-bottom: 24px;
}

.news-post .sub-heading a {
    color: var(--light-blue);
}

.news-post .sub-heading a:hover {
    text-decoration: none;
}

.post-image {
    width: 100%;
    max-width: 870px;
    height: 100%;
    min-height: 412px !important;
    display: block;
    border-radius: 3px;
    margin-bottom: 36px;
}

.post-title, .post-excerpt h1 {
    font-family: var(--family-montserrat);
    font-weight: var(--medium);
    font-size: 32px;
    letter-spacing: 0.02em;
    line-height: 48px;
    color: var(--purple);
    max-width: 870px;
    margin-bottom: 22px;
}

.post-excerpt p {
    font-family: var(--family-montserrat);
    font-weight: var(--regular);
    font-size: 24px;
    letter-spacing: 0.02em;
    line-height: 36px;
    color: var(--purple);
    max-width: 870px;
    margin-bottom: 23px;
}

.post-excerpt p a {
    color: var(--purple);
}

.post-excerpt p:last-child {
    margin-bottom: 0px;
}

.post-excerpt ul {
    list-style: none;
    margin-top: 31px;
    padding-left: 45px;
}

.post-excerpt ul li {
    font-family: var(--family-montserrat);
    font-weight: var(--regular);
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 32px;
    color: var(--purple);
    padding-left: 55px;
    max-width: 720px;
    position: relative;
    margin-bottom: 27px;
}

.post-excerpt ul li::after {
    content: "\f35a";
    font-family: "Font Awesome 5 Free";
    font-size: 26px;
    line-height: 36px;
    font-weight: 900;
    color: var(--light-blue);
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
}

.post-excerpt ul li strong {
    font-weight: var(--semi-bold);
}

/* .cth-post-list {
    list-style: none;
    margin-top: 29px;
    padding-left: 45px;
}

.cth-post-list li {
    padding-left: 66px;
    position: relative;
    margin-bottom: 22px;
}

.cth-post-list li::before {
    content: "\f35a";
    font-family: "Font Awesome 5 Free";
    font-size: 26px;
    line-height: 40px;
    font-weight: 900;
    color: var(--light-blue);
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
}

.cth-post-list li span {
    font-family: var(--family-montserrat);
    font-weight: var(--regular);
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 33px;
    color: var(--purple);
    max-width: 650px;
    display: inline-block;
    margin-top: 3px;
}

.cth-post-list li strong {
    font-weight: var(--semi-bold);
}

.cth-post-list li i {
    font-size: 26px;
    letter-spacing: 0.12em;
    line-height: 40px;
    margin-right: 26px;
    color: var(--light-blue);
    display: inline-block;
    margin-top: 0px;
} */

.news-post .btn-menu {
    width: 320px;
    text-transform: uppercase;
    margin-top: 32px;
    letter-spacing: 0.1em;
}

.cth-newsletter {
    padding: 54px 0px 80px 82px;
    position: relative;
    z-index: 2;
}

/*.cth-newsletter::before {
    content: " ";
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 50%;
    position: absolute;
    top: 61px;
    left: 0;
}*/

.cth-newsletter h1 {
    font-family: var(--family-montserrat);
    font-weight: var(--semi-bold);
    font-size: 30px;
    letter-spacing: 0.02em;
    line-height: 48px;
    color: var(--white);
    max-width: 900px;
    margin-bottom: 0px;
    margin-top: 31px;
}

.btn-outline {
    width: 400px;
    height: 40px;
    border-radius: 20px;
    background: transparent;
    border: 2px solid var(--white);
    padding: 0px 20px;
    font-family: var(
    --family-d-din-pro);
    font-weight: var(
    --bold);
    font-size: 17px;
    letter-spacing: 0.1em;
    line-height: 37px;
    text-align: left;
    text-transform: uppercase;
    color: var(--white);
}

.btn-outline i {
    float: right;
    font-size: 15px;
    line-height: 37px;
}

.cth-newsletter .btn-outline {
    margin-top: 44px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--green);
}

/* NEWS CSS */
.page-template-t-News .cth-wrapper {
    background: linear-gradient(156deg, #00b07b 0%, #223069 18.23%, #223069 50.88%, #4cb1ef 100%);
}

.cth-news-hero .btn-hero {
    margin-top: 23px;
}

.cth-blog-post {
    padding: 54px 8px 70px;
}

.btn-outline-green {
    width: 240px;
    height: 40px;
    border-radius: 20px;
    background: transparent;
    padding: 0px 16px 0px 19px;
    border: 2px solid var(--green);
    font-family: var(--family-d-din-pro);
    font-weight: var(--bold);
    font-size: 17px;
    letter-spacing: 0.1em;
    line-height: 37px;
    text-align: left;
    text-transform: uppercase;
    color: var(--green);
}

.btn-outline-green i {
    float: right;
    font-size: 15px;
    line-height: 37px;
}

.btn-outline-green:hover {
    background: var(--green);
    color: var(--white);
}

.cth-blog-post .btn-outline-green {
    margin-top: 46px;
}

/* CONTACT CSS */
.page-template-t-contact .cth-wrapper {
    background: linear-gradient(166deg, #00b07b 0%, #223069 32.51%, #223069 53.89%, #4cb1ef 100%);
}

.cth-contact-hero {
    padding: 54px 0px 78px 80px;
}

.sub-heading {
    margin-bottom: 9px;
}

.cth-contact-hero h1 {
    font-size: 24px;
    line-height: 36px;
    margin: 30px 0px 0px;
}

.cth-contact-box {
    padding: 54px 8px 80px;
    position: relative;
    z-index: 1;
}

.cth-contact-box::before {
    content: " ";
    width: calc(100% + 780px);
    height: 100%;
    background: var(--white);
    border-radius: 3px 0px 0px 3px;
    position: absolute;
    top: 0px;
    left: -51px;
    z-index: -1;
}

.cth-contact-box .sub-heading {
    color: var(--light-blue);
    margin-bottom: 26px;
}

/*.cth-contact-box .col-xl-8 {
    border-right: 1px solid #E4F3FD;
}*/

.cth-contact-box form {
    display: block;
    margin-right: 24px;
    border-right: 1px solid #E4F3FD;
}

.form-control,
.form-control:focus {
    width: 100%;
    max-width: 670px;
    height: 50px;
    border-radius: 3px;
    border: none;
    background: #E4F3FD;
    padding: 15px 20px;
    outline: 0;
    box-shadow: none;
    font-family: var(--family-d-din-pro);
    font-weight: var(--medium);
    font-size: 17px;
    letter-spacing: 0.12em;
    text-align: left;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 15px;
}

.form-control::placeholder {
    color: var(--purple);
}

.cth-form-row {
  max-width: 670px;
}

.col-6-input {
    width: calc(46% - .23rem);
    float: left;
}

.ms-2 {
    margin-left: 9.5px;
}

.custom-select, 
.custom-select:focus {
    width: 100%;
    max-width: 670px;
    height: 50px;
    border-radius: 3px;
    border: none;
    background-image: url(../images/select-arrow.png);
    background-size: 10px;
    background-repeat: no-repeat;
    background-color: #E4F3FD;
    padding: 15px 20px;
    outline: 0;
    box-shadow: none;
    font-family: var(--family-d-din-pro);
    font-weight: var(--medium);
    font-size: 17px;
    letter-spacing: 0.12em;
    line-height: 20px;
    text-align: left;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 15px;
}

select > option {
    font-size: 14px;
}

textarea.form-control,
textarea.form-control:focus {
    height: 140px;
}

.btn-submit {
    width: 100%;
    max-width: 670px;
    height: 40px;
    border-radius: 20px;
    border: none;
    background: var(--green);
    padding: 0px 20px;
    font-family: var(--family-d-din-pro);
    font-weight: var(--d-extra-bold);
    font-size: 17px;
    letter-spacing: 0.1em;
    line-height: 41px;
    text-align: left;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 25px;
}

.btn-submit i {
    float: right;
    font-size: 15px;
    line-height: 39px;
}

.btn-submit:hover {
    background: var(--purple);
    color: var(--white);
}

.contact-info {
    list-style: none;
    padding-left: 12px;
    position: relative;
    margin-top: -3px;
}

.contact-info li:not(:last-child) {
    margin-bottom: 33px;
}

.contact-info li:first-child {
    margin-bottom: 40px;
}

.contact-info li .sub-heading {
    font-weight: var(--bold);
    letter-spacing: 0.18em;
    line-height: 20px;
    color: var(--purple);
    margin-bottom: 12px;
}

.contact-info li .sub-heading i {
    font-size: 16px;
    line-height: 20px;
    color: var(--green);
    margin-right: 11px;
}

.contact-info li .sub-heading a {
    color: var(--purple);
}

.contact-info li .sub-heading a:hover, 
.cth-email:hover {
    color: var(--green);
    text-decoration: none;
}

.cth-email {
    font-family: var(--family-montserrat);
    font-weight: var(--semi-bold);
    font-size: 13px;
    letter-spacing: 0.12em;
    line-height: 22px;
    text-align: left;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 14px;
    display: block;
}

/* FELLOWSHIP CSS */
.cth-fellowship-hero h1 {
    max-width: 850px;
    margin: 30px 0px 40px;
}

.cth-fellowship-hero .btn-hero {
    margin-top: 67px;
}

.cth-white {
    background: var(--white);
    border-radius: 3px;
    position: relative;
    margin-bottom: 40px;
}

.cth-white .cth-border-box {
    height: 100%;
    border-color: #6fc0f2;
    border-top: 0px;
    border-bottom: 0px;
    border-radius: 0;
    top: 0px;
}

.cth-white .cth-border-box::before, 
.cth-white .cth-border-box::after {
    background: #6fc0f2;
    border: 1px solid #6fc0f2;
}

.cth-white .cth-border-box::before {
    top: 80px;
}

.cth-white .cth-border-box::after {
    bottom: 231px;
}

.cth-fellowship {
    width: 100%;
    max-width: 88%;
    padding: 74px 0px 80px 77px;
    position: relative;
    z-index: 2;
}

.cth-meet {
    padding: 74px 0px 60px 77px;
}

.cth-fellowship .sub-heading {
    font-weight: var(--semi-bold);
    color: var(--light-blue);
    margin-bottom: 30px;
}

.cth-fellowship h1 {
    font-family: var(--family-montserrat);
    font-weight: var(--medium);
    font-size: 32px;
    letter-spacing: 0.02em;
    line-height: 48px;
    color: var(--purple);
    max-width: 870px;
    margin-bottom: 22px;
}

.cth-fellowship p {
    font-family: var(--family-montserrat);
    font-weight: var(--regular);
    font-size: 24px;
    letter-spacing: 0.02em;
    line-height: 36px;
    color: var(--purple);
    max-width: 870px;
    margin-bottom: 0px;
}

.page-template-t-fellowship .cth-video a::after {
    opacity: 0.8;
}

.cth-fellowship ul {
    margin-top: 45px;
  margin-bottom: 0px;
}

/* .cth-fellowship .media {
    width: 100%;
    min-height: 340px;
    margin-bottom: 20px;
}

.cth-fellowship .media .media-body {
    height: 340px;
    border-radius: 3px;
    background: #e4f3fd;
    padding: 33px 20px 44px 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.cth-fellowship .media .media-body h2 {
    font-family: var(--family-montserrat);
    font-weight: var(--medium);
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 48px;
    color: var(--purple);
    margin-bottom: 2px;
}

.cth-fellowship .media .media-body .sub-heading {
    color: var(--purple);
    margin-bottom: 20px;
}

.cth-fellowship .media .media-body p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 0px;
    flex-grow: 1;
} */

.fellow-box {
    max-width: 455px;
    min-height: 554px;
    border-radius: 3px;
    background: #e4f3fd;
    padding: 30px 30px 35px;
    margin-right: 20px !important;
    margin-bottom: 20px;
}

.fellow-box:nth-child(2n) {
    margin-right: 0px !important;
}

.fellow-box img, .fih {
    max-width: 395px;
    min-height: 260px;
    border-radius: 3px;
    margin-bottom: 28px;
}

.fih {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.fellow-box-content {
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.fellow-title {
    font-family: var(--family-montserrat);
    font-weight: var(--medium);
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 38px;
    color: var(--purple);
    margin-bottom: 7px;
}

.fellow-location {
    color: var(--purple) !important;
    margin-bottom: 11px !important;
}

.fellow-bio {
    font-family: var(--family-d-din-pro) !important;
    font-size: 16px !important;
    letter-spacing: 0.08em !important;
    line-height: 24px !important;
  text-transform: uppercase;
  flex-grow: 1;
}

.fellow-box-content a {
    font-family: var(--family-d-din-pro);
    font-weight: var(--d-extra-bold);
    font-size: 17px;
    letter-spacing: 0.12em;
    line-height: 26px;
    text-transform: uppercase;
    text-align: left;
    color: #00b07b;
}

.fellow-box-content a i {
    font-size: 15px;
    margin-left: 38px;
}

.fellow-template-default .cth-wrapper {
    background: linear-gradient(
140deg, #00b07b 0%, #223069 18.23%, #223069 74.88%, #4cb1ef 100%);
}

.fellow-template-default .post-image {
    max-width: 626px;
    height: auto;
    min-height: auto !important;
}

/* .cth-fellowship .media img {
    width: 100%;
    max-width: 270px;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    object-position: left;
    border-radius: 0px 3px 3px 0px;
} */

.cth-fellowship .btn-outline-green {
    width: 100%;
    margin-top: 20px;
}

.cth-with {
    width: 100%;
    max-width: 86.069%;
    padding: 14px 0px 75px 82px;
    position: relative;
    z-index: 2;
}

.cth-with .sub-heading {
    font-weight: var(--semi-bold);
    color: var(--light-blue);
    margin-bottom: 15px;
}

.cth-with ul {
    margin: 53px 0px 0px 4px;
}

.cth-with ul li:not(:last-child) {
    margin-right: 90px !important;
}

.cth-with ul li {
    display: inline-flex;
    align-items: center;
    width: 100%;
    max-width: 335px;
    margin-right: 0px !important;
}

/* INITIATIVES CSS */
.cth-email {
    font-family: var(--family-montserrat);
    font-weight: var(--semi-bold);
    font-size: 13px;
    letter-spacing: 0.12em;
    line-height: 22px;
    text-align: left;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 14px;
    display: block;
}

.cth-video {
    max-width: 870px;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 36px;
}

.cth-video a::before {
    content: " ";
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background: #71C6FF;
    opacity: 0.2;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
}

.cth-video a::after {
    content: "\f144";
    width: 100%;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 72px;
    font-weight: 900;
    line-height: 72px;
    position: absolute;
    top: 38%;
    left: 0px;
    text-align: center;
    z-index: 4;
    color: #00B07B;
    opacity: 0.5;
}

.cth-video a:hover::before {
    opacity: 0.35;
}

.initiative-post-image img {
    max-width: 870px;
    border-radius: 3px;
    margin-bottom: 36px;
}

.news-post.initiative-post .btn-menu {
    max-width: 570px;
    width: 100%;
  display: block;
}

.page-template-t-workshop .cth-wrapper {
    background: linear-gradient(150deg, #00b07b 0%, #223069 24.42%, #223069 64.17%, #4cb1ef 100%);
}

/* .cth-workshop-img {
    max-width: 870px;
    position: relative;
} */

/* .cth-workshop-img::before {
    content: " ";
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background: #71C6FF;
    opacity: 0.35;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
} */

/* HOME CSS */
.page-template-t-home .site {
    overflow-x: unset;
}

body.page-template-t-home {
    overflow-x: hidden;
    max-width: 100vw;
}

.page-template-t-home  .cth-wrapper {
    background: linear-gradient(
162deg, #00b07b 6%, #223069 24.14%, #223069 68.47%, #4cb1ef 100%);
}

.cth-home-wrapper {
    border-top: none;
}

.cth-home-wrapper .cth-border-box {
    height: calc(100% - 447px);
    top: 207px;
    border-top: none;
    border-radius: 0px 0px 0px 6px;
}

.cth-home-wrapper .cth-border-box::before {
    top: 0px;
}

.hero-100 {
    height: calc(100vh - 4.6875rem);
    padding: 0 1.40625rem 1.875rem;
    border-top: 9px solid var(--light-green);
}

/* .hero-100 .container-fluid,
.hero-100 .row {
    min-height: calc(100vh - 255px);
} */

.home-logo {
    width: 100%;
    max-width: 12.75rem;
}

.cth-home-hero {
    max-width: 28.125rem;
    margin: 0px auto;
    position: relative;
}

.cth-home-hero::before {
    content: " ";
    height: calc(73vh - 2.8125rem);
    width: 1px;
    background: #dbe8eb;
    position: absolute;
    left: -1.78125rem;
    top: 0.28125rem;
}

.cth-home-hero::after {
    content: " ";
    width: 0.5rem;
    height: 0.5rem;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 50%;
    position: absolute;
    left: -2rem;
    top: 0.21875rem;
}

.cth-home-hero .sub-heading {
    font-size: 0.5625rem;
    line-height: 0.9375rem;
    margin-bottom: 0.28125rem;
}

.cth-home-hero h1 {
    font-family: var(--family-montserrat);
    font-weight: var(--semi-bold);
    font-size: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.5rem;
    color: var(--white);
    margin: 0.9375rem 0 1rem;
}

.bottom-logo {
    width: 100%;
    max-width: 12.172375rem;
}

.hero-100 .btn-hero {
    margin-top: 0.71875rem;
    max-width: 12.5rem;
    height: 1.25rem;
    font-size: 0.53125rem;
    line-height: 1.15625rem;
}

.hero-100 .btn-hero i {
    font-size: 0.46875rem;
    line-height: 1.1875rem;
}

.cth-home-wrapper header {
    padding: 11px 45px 18px 20px;
    z-index: 1020;
  border: none;
}

.cth-home-wrapper header ul {
    margin-top: 0px;
}

.cth-home-white {
    margin-bottom: 40px;
}

.fl {
    padding: 0px;
    background: #E4F3FD;
}

.fl:nth-child(even) {
    background: #D5EEFF;
}

.home-post {
  width: 100%;
  height: 100%;
  display: block;
}

.home-post-link {
    width: 100%;
    height: 100%;
    margin: 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.home-post-link:hover {
    text-decoration: none;
}

.home-post-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 303px;
}

/* .fl1 .home-post-content,
.fl3 .home-post-content {
    background: #E4F3FD;
}

.fl2 .home-post-content {
    background: #D5EEFF;
} */

/* .fl1 .home-post,
.fl3 .home-post {
    background: #E4F3FD;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fl2 .home-post {
    background: #D5EEFF;
} */

/* .home-post .post-image {
    max-width: 100%;
    height: 303px !important;
    border-radius: 0px;
    margin-bottom: 0px;
} */

.home-post-content {
    padding: 36px 40px 50px;
    min-height: 299px;
}

.home-post .post-title {
  font-size: 28px;
    line-height: 36px;
    display: flex;
    flex-grow: 1;
    padding: 36px 40px 0;
}

.home-post button {
    margin: 0 40px 50px;
}

.home-post-link:hover .btn-outline-green {
    background: var(--green);
    color: var(--white);
}

.cth-home-border-box {
    width: calc(50% + 578px);
    height: 470px;
    background: transparent;
    border: 1px solid #dbe8eb;
    border-right: none;
    border-top: none;
    border-radius: 0px 0px 0px 6px;
    position: absolute !important;
    bottom: 240px;
    right: 0;
    z-index: 1 !important;
}

.cth-home-border-box::before {
    content: " ";
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 50%;
    position: absolute;
    left: -8px;
    bottom: 345px;
}

@media (max-width: 1500px) {
    
}

/* MISSION CSS */
.page-template-t-mission .cth-wrapper {
    background: linear-gradient(#00b07b 0%, #223069 24.42%, #223069 52.71%, #4cb1ef 150%);
}

/* .cth-mission-hero::before {
    content: " ";
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 61px;
} */

.cth-mission-hero h1 {
    margin: 30px 0px 44px;
}

.cth-mission-hero img {
    margin-top: 56px;
}

.cth-mission .cth-border-box::after {
    content: none;
}

.cth-mission .cth-border-box::before {
    top: 100px;
}

.cth-mission .cth-fellowship {
    padding: 94px 0px 94px 79px;
}

.cth-change h1 {
    max-width: 700px;
}

.cth-change img, .svg-holder {
    display: block;
    margin: 46px auto 0px;
}

.cth-well-do h1 {
    margin-bottom: 73px;
}

.cth-well-do::before,
.cth-work::before {
    content: " ";
    width: 16px;
    height: 16px;
    background: #6fc0f2;
    border: 1px solid #6fc0f2;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.cth-icon-list:not(:last-child) {
    margin-bottom: 53px;
}

.cth-icon-box {
    width: 80px;
    height: 80px;
    background: #e5f7f1;
    border-radius: 50%;
    padding: 15px;
    margin-right: 21px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    position: relative;
    margin-top: 2px;
}

.cth-icon-box i {
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 36px;
    text-align: center;
    color: var(--purple);
}

.cth-icon-content {
    display: inline-block;
    max-width: 790px;
}

.cth-icon-content h2 {
    font-family: var(--family-montserrat);
    font-weight: var(--semi-bold);
    font-size: 26px;
    letter-spacing: 0.02em;
    line-height: 36px;
    color: var(--purple);
    margin-bottom: 15px;
}

.cth-work {
    padding: 0px 0px 79px 79px !important;
}

.cth-work p {
    max-width: 877px;
}

.cth-map-holder {
    margin: 58px auto 0px;
    max-width: 645px;
}

/* PARTNER PAGE CSS */
.partner-post .sub-heading {
    font-weight: var(--semi-bold);
}

.partner-post-image {
    margin: 44px 0px 47px;
}

.partner-post-image img {
    max-width: 380px;
    max-height: 190px;
}

/* .partner-post:nth-child(4) .partner-post-image img {
    max-width: 820px;
} */

.partner-post .btn-menu {
    max-width: 570px;
    width: 100%;
    display: block;
    margin-top: 66px;
}

/* ACCELERATE PAGE CSS */
.cth-accelerate-content {
    width: 100%;
    max-width: 97.8%;
    padding: 94px 0px 11px 77px;
    position: relative;
    z-index: 2;
}

.cth-accelerate-content::before {
    content: " ";
    width: 16px;
    height: 16px;
    background: #6fc0f2;
    border: 1px solid #6fc0f2;
    border-radius: 50%;
    position: absolute;
    top: 101px;
    left: 0px;
}

.cth-accelerate-content .sub-heading {
    font-weight: var(--semi-bold);
    color: var(--light-blue);
    margin-bottom: 30px;
}

.cth-accelerate-content h1 {
    font-family: var(--family-montserrat);
    font-weight: var(--medium);
    font-size: 32px;
    letter-spacing: 0.02em;
    line-height: 48px;
    color: var(--purple);
    max-width: 870px;
    margin-bottom: 32px;
}

.cth-accelerate-content p {
    font-family: var(--family-montserrat);
    font-weight: var(--regular);
    font-size: 24px;
    letter-spacing: 0.02em;
    line-height: 36px;
    text-align: left;
    max-width: 870px;
    color: var(--purple);
}

.cth-approach-list {
    margin: 46px 0px 0px;
    position: relative;
    display: flex;
}

.cth-approach-list::before {
    content: " ";
    width: calc(100% - 160px);
    height: 3px;
    background-color: #E4F3FD;
    position: absolute;
    top: 44px;
    left: 80px;
    z-index: -2;
}

.cth-approach-list li {
    display: inline-flex;
    align-items: start;
    margin-right: 0px !important;
}

.cth-approach-list li:not(:last-child) {
    margin-right: 56px !important;
}

.cth-approach-box {
    max-width: max-content;
}

.icon-box {
    max-width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 17px;
}

.icon-box i {
    font-size: 40px;
    letter-spacing: 0.12em;
    text-align: center;
    color: var(--purple);
}

.cth-approach-box h6 {
    /*font-family: Helvetica-Bold;*/
    font-weight: var(--bold);
    font-size: 17px;
    letter-spacing: 0.18em;
    line-height: 20.4px;
    text-align: center;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 0px;
}

.cth-we-are {
    padding: 94px 0px 18px 77px;
}

.cth-map {
    padding: 0px;
    list-style: none;
/*     max-width: 882.54px; */
    max-width: 926.84px;
    margin: 76px auto 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.cth-map li {
    margin-right: 0px !important;
}

.cth-tool {
    padding: 94px 0px 27px 77px;
}

.cth-form-box {
    max-width: 900px;
    background: #fff;
    border: 1px solid #00b07b;
    padding: 45px 58px 53px 49px;
    margin-top: 56px;
}

.cth-form-box .sub-heading {
    line-height: 26px;
    margin-bottom: 26px;
}

.cth-form-box .form-control, 
.cth-form-box .form-control:focus {
    max-width: 380px;
    margin-bottom: 20px;
}

.cth-form-box .btn-menu {
    width: 100%;
    max-width: 380px;
    margin-top: 20px;
    text-transform: uppercase;
}

.cth-form-box img {
    display: block;
    max-width: 266px;
    border-radius: 4px;
    margin: 0px 0px 0px auto;
}

.cth-partner {
    padding: 94px 0px 174px 77px;
}

.cth-partner ul {
    padding-left: 30px;
    margin: 27px 0px 0px;
}

.cth-partner ul li {
    font-family: var(--family-montserrat);
    font-weight: var(--semi-bold);
    font-size: 26px;
    letter-spacing: 0.02em;
    line-height: 44px;
    text-align: left;
    color: var(--purple);
}

.cth-partner ul li:not(:last-child) {
    /*margin-bottom: 6px;*/
}

/* SINGLE PAGE CSS */
.single .cth-wrapper {
    background: linear-gradient(140deg, #00b07b 0%, #223069 18.23%, #223069 70.88%, #4cb1ef 100%);
}

.cth-page-title {
    font-family: var(--family-montserrat);
    font-weight: var(--medium);
    font-size: 32px;
    letter-spacing: 0.02em;
    line-height: 48px;
    color: var(--purple);
    max-width: 870px;
    margin-bottom: 22px;
}

.cth-page-excerpt h2 {
    font-family: var(--family-montserrat);
    font-weight: var(--semi-bold);
    font-size: 24px;
    letter-spacing: 0.02em;
    line-height: 30px;
    color: var(--purple);
    max-width: 870px;
    margin-bottom: 15px;
}

.cth-page-excerpt p {
    font-family: var(--family-montserrat);
    font-weight: var(--regular);
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 32px;
    color: var(--purple);
    max-width: 870px;
    margin-bottom: 20px;
}

.cth-page-excerpt p:last-child {
    margin-bottom: 0px;
}

.cth-page-excerpt ol {
    padding-left: 30px;
    margin-bottom: 0px;
}

.cth-page-excerpt li {
    font-family: var(--family-montserrat);
    font-weight: var(--regular);
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 32px;
    color: var(--purple);
    max-width: 870px;
    margin-bottom: 15px;
}

.cth-page-excerpt li:last-child {
    margin-bottom: 0px;
}

.cth-page-excerpt li strong {
    margin-top: 10px;
    display: inline-block;
}

.single-initiative .news-post .btn-menu {
    max-width: 570px;
    width: 100%;
    display: block;
}

/* FOOTER CSS */
.cth-footer {
    padding: 90px 45px;
}

.mobile-footer-logo {
    display: none;
}

.text-small {
    font-family: var(--family-montserrat);
    font-weight: var(--regular);
    font-size: 15px;
    line-height: 22px;
    text-align: right;
    color: var(--white);
    opacity: 0.7;
    margin-bottom: 0px;
}

.text-small a {
    color: var(--white);
    font-weight: var(--semi-bold);
}

.vtn-footer-content p a:not(:last-child) {
    margin-left: 16px;
}

.text-small a:hover {
    color: var(--purple);
    text-decoration: none;
}

.vtn-footer-content {
    display: flex;
    align-items: center;
    justify-content: end;
}

.cth-social {
    margin-bottom: 0px;
    margin-left: 30px;
}

.cth-social li:not(:last-child) {
    margin-right: 15px;
}

.cth-social li a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: transparent;
    text-align: center;
    padding: 0px 0px;
    font-size: 19px;
    line-height: 48px;
    /*letter-spacing: 0.12em;*/
    color: #fff;
}

.twitter:hover {
    border-color: #1da1f2;
    background-color: #1da1f2;
}

.cth-alert {
    padding: 11px 15px 13px;
    background-color: var(--green);
	position: relative;
	z-index: 4;
}

.cth-alert p {
	font-family: var(--family-montserrat);
    font-weight: var(--medium);
    font-size: 16px;
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
}

.cth-alert p a {
    font-weight: var(--semi-bold);
    color: #fff;
    text-decoration: underline;
/*     margin-left: 5px; */
    display: inline-block;
}

/* MEDIA QUERY CSS */
@media(min-width: 1126px) {
    .contact-info {
        margin-top: 50px;
    }
}

/* @media(min-width: 767px) {
    .cc-center {
        height: 100%;
    }
} */

@media (max-width: 1810px) {
    header {
        padding: 10px 10px 20px 10px;
    }

    header ul .list-inline-item:not(:last-child) {
        margin-right: 30px;
    }
}

@media (max-width: 1700px) {
    header ul .list-inline-item:not(:last-child) a {
        font-size: 15px;
        padding-left: 24px;
    }
}

@media (max-width: 1500px) {
    header {
        padding: 4px 0px 14px !important;
    }

    header ul .list-inline-item:not(:last-child) {
        margin-right: 32px;
    }
    
    .cth-border-box::before {
       /* width: calc(50% + 674px);*/
    }

    .cth-home-wrapper .cth-border-box {
        top: 155px;
        height: calc(100% - 395px);
    }
    
    .cth-home-wrapper header {
        padding: 8px 0px !important;
    }
    
    .cth-home-wrapper header .logo {
        max-width: 250px;
    }
    
    .hero-100 {
        height: calc(100vh - 112px);
    }
    
    .cth-home-hero::before {
        height: calc(70vh - 1.5625rem);
    }

/*     .cth-home-hero {
        padding-top: 50px;
        height: 100%;
    }

    .hero-100 {
        padding: 35px 30px 50px;
        min-height: 87vh;
    }

    .hero-100 .container-fluid, 
    .hero-100 .row {
        min-height: inherit;
    }

    .cth-home-hero h1 {
        margin: 20px 0px 15px;
    }

    .cth-home-wrapper header {
        padding: 25px 0px 25px !important;
    }
    
    .home-post-content {
        min-height: 370px;
    }

    .home-post-content .post-title {
        font-size: 28px;
        letter-spacing: 0.02em;
        line-height: 44px;
    } */
}

@media (max-width: 1490px) {
    header ul .list-inline-item:not(:last-child) a {
        padding-left: 20px;
        font-size: 14px;
    }

    header ul .btn-menu {
        width: 140px;
    }
}

@media (max-width: 1450px) {
    header ul .list-inline-item:not(:last-child) {
        margin-right: 25px;
    }

    header ul .list-inline-item:not(:last-child) a {
        padding-left: 20px;
/*     font-size: 16px; */
        font-size: 12px;
    }
    
    .btn-menu {
        width: 130px;
        font-size: 14px;
    }

    header ul .list-inline-item:not(:last-child) a::before {
        width: 14px;
        height: 14px;
    }
}

@media (min-width:1321px) and (max-width:1601px) {
    header ul .list-inline-item:not(:last-child) a {
        padding-left: 20px;
        font-size: 14px;
    }
}

@media (max-width: 1390px) {
    header ul .list-inline-item:not(:last-child) {
        margin-right: 20px;
    }
}

@media (max-width: 1340px) {
    header ul .list-inline-item:not(:last-child) {
        margin-right: 18px;
    }
}

@media (max-width: 1320px) {
    header ul .list-inline-item:not(:last-child) {
        /*margin-right: 25px;*/
    }

    header ul .list-inline-item:not(:last-child) a {
        padding-left: 20px;
/*      font-size: 16px; */
        font-size: 12px;
    }
    
    .btn-menu {
        width: 130px;
        font-size: 14px;
    }

    header ul .list-inline-item:not(:last-child) a::before {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 1220px) {
    header ul .list-inline-item:not(:last-child) {
        margin-right: 14px;
    }
}

@media (max-width: 1200px) {
    .cth-contact-box form {
        border: none;
        max-width: 100%;
        margin-right: 0px;
    }

    .step-1 {
        padding-top: 32px;
        border-top: 1px solid var(--border-color);
        max-width: 670px;
        margin: 0px auto;
    }
  
    .form-control, 
    .form-control:focus, 
    .custom-select, 
    .custom-select:focus {
        max-width: inherit;
    }

    .contact-info {
        max-width: 670px;
        margin: 0px auto 36px;
        padding-left: 0px;
    }

    .col-6-input {
        width: calc(50% - .2438rem);
    }
}

@media (max-width: 1180px) {
    .desktop-header {
        display: none;
    }
  
    .cth-home-wrapper header {
        display: none;
    }
    
    .mobile-header {
        display: block;
        padding: 0px !important;
        border-bottom: 9px solid var(--light-green);
    }

    .cth-icon-content {
        max-width: 760px;
    }
}

@media(max-width: 1125px) {
    .desktop-header {
        display: none;
    }
  
    .cth-home-wrapper header {
        display: none;
    }
    
    .mobile-header {
        display: block;
        padding: 0px !important;
    }
  
    .home-logo {
        display: none;
    }
  
    .mobile-header  .logo {
        max-width: 240px;
    }
  
    .cth-border-box {
        display: none;
    }
        
    .news-post::before {
        border-radius: 0;
        width: calc(100% + 30px);
        left: -15px;
    }
    
    .cth-contact-box form {
        border-right: none;
    }
    
    .cth-contact-box form {
        margin-right: 0;
    }
    
    .form-control, .form-control:focus, .btn-submit {
        max-width: 100%;
    }
    
    .contact-info {
        padding-left: 0;
        margin-bottom: 50px;
    }
    
    .cth-hero-content, .cth-contact-hero, .cth-newsletter {
        padding-left: 0;
    }
    
    .cth-contact-box::before {
        border-radius: 0;
        width: calc(100% + 30px);
        left: -15px;
    }
    
    .btn-outline {
        max-width: 400px;
        width: 100%;
    }
    
    .cth-wrapper {
        padding-top: 20px;
    }
    
    .cth-contact-box {
        padding: 54px 0px 80px;
    }
  
    .cth-home-border-box {
        display: none;
    }

    .hero-100 {
        padding: 120px 0px 70px;
        height: 100%;
    }

    .cth-home-white {
        border-top: none;
    }

    .home-post .post-image {
        height: 100% !important;
    }
  
    .cth-fellowship {
        padding: 74px 0px 80px 0px !important;
    }
  
    .cth-meet {
        max-width: 100%;
    }

    .cth-with {
        padding: 14px 0px 75px 0px;
    }
  
    .cth-mission-hero::before, 
    .cth-well-do::before, 
    .cth-work::before {
        content: none;
    }

    .cth-accelerate-content {
        max-width: 100%;
        padding-left: 0px;
    }

    .cth-accelerate-content::before {
        content: none;
    }
}

@media (max-width: 1080px) {
    .cth-approach-list::before {
        width: calc(100% - 200px);
        left: 100px;
    }

    .cth-approach-list li:not(:last-child) {
        margin-right: 15px !important;
    }
}

@media (max-width: 1060px) {
    .cth-icon-content {
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    .cth-hero-content p, .post-excerpt p, .cth-page-excerpt h2, .cth-fellowship p {
        font-size: 20px;
        line-height: 30px;
        max-width: inherit;
    }

    .cth-footer {
        padding: 30px 15px 40px;
    }
  
  .page-template-t-contact .cth-footer {
    padding: 50px 15px 40px;
  }
  
  .cth-hero-content {
        padding: 40px 0px 60px;
  }
  
  .cth-newsletter {
        padding: 20px 0px 60px;
    }
  
    .cth-hero-content h1,
  .cth-newsletter h1 {
    font-size: 28px;
    line-height: 42px;
    margin-top: 15px;
    }
  
  .cth-hero-content h1 {
    margin: 20px 0px 15px;
  }
  
  .cth-news-hero .btn-hero {
        margin-top: 20px;
    }

  .news-post {
        padding: 40px 8px 50px;
    }
  
  .post-image {
        margin-bottom: 25px;
      min-height: auto !important;
    }
  
  .post-excerpt ul {
        margin-top: 0px;
        padding-left: 0px;
      margin-bottom: 0px;
    }

    .post-excerpt ul li {
    font-size: 18px;
    line-height: 30px;
        padding-left: 45px;
        margin-bottom: 15px;
    }

    .news-post .sub-heading {
        margin-bottom: 15px;
    }

    .post-title {
        font-size: 28px;
        line-height: 42px;
        margin-bottom: 15px;
    }
  
    .cth-video {
        margin-bottom: 25px;
    }
    
    .initiative-post-image img {
        margin-bottom: 25px;
    }

    .cth-blog-post .btn-outline-green {
        margin-top: 25px;
    }
  
    .cth-newsletter .btn-outline {
        margin-top: 35px;
    }
  
    .cth-hero-content .btn-hero {
        margin-top: 40px;
    }
  
    .cth-contact-box {
        padding: 40px 0px 50px;
    }
  
    .step-1 {
        max-width: inherit;
        margin: 0px;
    }

    .col-6-input {
        width: calc(50% - .31rem);
    }

    .contact-info {
        max-width: inherit;
        margin: 0px auto 36px;
    }
  
    .cth-fellowship {
        padding: 35px 0px 40px !important;
        max-width: 100%;
    }

    .cth-fellowship .sub-heading {
        margin-bottom: 15px !important;
    }

    .cth-fellowship h1 {
        font-size: 28px;
        line-height: 42px;
        margin-top: 15px;
        margin-bottom: 15px;
      max-width: inherit;
    }

    .cth-fellowship ul {
        margin-top: 30px;
    }
  
    .fellow-box {
        max-width: 48.35%;
    }

    .cth-fellowship .media .media-body {
        padding: 20px 20px 40px 20px;
    }

    .cth-fellowship .media .media-body h2 {
        font-size: 26px;
        line-height: 46px;
    }

    .cth-fellowship .media .media-body p {
        font-size: 18px;
        line-height: 30px;
    }
  
    .fellow-box img, .fih {
        width: 100%;
        min-height: auto;
    }

    .cth-with {
        max-width: 100%;
        padding: 14px 0px 50px 0px;
    }

    .cth-with ul {
        margin: 20px 0px 0px;
    }

    .cth-with ul li:not(:last-child) {
        margin-right: 50px !important;
    }
  
    .cth-change img, .svg-holder {
        margin: 30px auto 0px;
    }

    .cth-well-do, .cth-work {
        padding-top: 30px !important;
    }
  
    .cth-icon-list:not(:last-child) {
        margin-bottom: 40px;
    }

    .cth-icon-box {
        width: 70px;
        height: 70px;
        margin-right: 20px;
    }

    .cth-icon-content {
        max-width: 620px;
    }

    .cth-icon-content h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .cth-well-do h1 {
        margin-bottom: 35px;
    }

    .cth-map-holder {
        margin: 35px auto 0px;
    }
  
    .news-post .post-excerpt ol {
        padding-left: 25px;
    }
  
    .news-post .post-excerpt ol li {
        font-size: 19px;
        line-height: 30px;
    }
    
    .partner-post-image {
        margin: 28px 0px 30px;
    }
    
    .partner-post .btn-menu {
        margin-top: 35px;
    }

    .cth-accelerate-content {
        padding: 35px 0px 40px !important;
    }
    
    .cth-accelerate-content .sub-heading {
        margin-bottom: 15px !important;
    }
    
    .cth-accelerate-content h1 {
        font-size: 28px;
        line-height: 42px;
        margin-top: 15px;
        margin-bottom: 15px;
        max-width: inherit;
    }
    
    .cth-accelerate-content p {
        font-size: 20px;
        line-height: 30px;
        max-width: inherit;
    }
    
    .cth-approach-list {
        display: block;
        max-width: max-content;
        margin: 35px auto 0px;
    }
    
    .cth-approach-list li {
        display: block;
        margin-right: 0px !important;
    }
    
    .cth-approach-box {
        display: flex;
        align-items: center;
        max-width: 100%;
    }
    
    .icon-box {
        width: 90px;
        margin: 0px 25px 0px 0px;
    }
    
    .cth-approach-list li:not(:last-child) {
        margin-right: 0px !important;
        margin-bottom: 30px;
    }
    
    .cth-approach-box h6 {
        max-width: 280px;
        line-height: 24px;
        text-align: left;
    }
    
    .cth-approach-list::before {
        width: 3px;
        height: calc(100% - 120px);
        top: 60px;
        left: 45px;
    }
    
    .cth-map {
        margin: 35px auto 0px;
    }
    
    .cth-form-box {
        margin: 35px auto 0px;
    }
    
    .cth-form-box .form-control, 
    .cth-form-box .form-control:focus {
        max-width: 100%;
    }
    
    .cth-form-box img {
        margin: 40px auto 0px;
    }
    
    .cth-partner ul {
        padding-left: 25px;
        margin: 20px 0px 0px;
    }
    
    .cth-partner ul li {
        font-size: 22px;
        line-height: 40px;
    }

    .footer-logo {
        display: none;
    }
  
    .mobile-footer-logo {
        display: block;
        margin: 0px auto 37px;
    }

    .text-small {
        text-align: center;
        font-size: 13px;
    }

    .vtn-footer-content {
        justify-content: center;
    }

    /*.cth-social {
        max-width: max-content;
        margin: 20px auto 0px;
    }
*/}

@media (max-width: 925px) {
    .btn-outline {
        max-width: 100%;
    }
  
  .home-post button {
        width: 92%;
    }
}

@media (max-width: 767px) {
    #full-menu {
        height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
/*    height: calc(var(100vh, 1vh) * 100); */
        top: 0;
    }

/*     .cc-center {
      position: absolute;
    width: 100%;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, calc(0% - 106px));
    } */

    .menu-items {
        margin-bottom: 0px;
    }

/*     .menu-items li:not(:last-child){
        margin-bottom:0;
    } */

    .menu-items .social-icons {
        margin-top: 0px;
    }
  
    .site.no-scroll {
        overflow-x: hidden !important;
    }
  
    .mobile-header {
    padding: 0px 0px !important;
    }
  
    .mobile-header .container-fluid {
        padding: 0px 11px !important;
    }

    .logo {
        max-width: 156px;
    }

    .sub-heading {
        font-size: 16px;
        line-height: 26px;
    }

/*     .img-fluid.footer-logo {
        margin: 0 auto 15px;
        display: block;
    } */

  
    p.text-small span {
        display: block;
    }
  
    .text-small a {
        font-weight: var(--regular);
    }
    
    .cth-newsletter h1,
    .cth-hero-content h1 {
        font-size: 24px;
        line-height: 36px;
        margin: 20px 0px 0px;
    }

    .post-title,
    .cth-page-title {
        font-size: 24px;
        line-height: 36px;
    }
  
    .home-post .post-title {
        font-size: 22px;
        line-height: 32px;
    }
  
    .cth-hero-content {
        padding: 35px 0px 55px;
    }
  
    .cth-hero-content .btn-hero {
        margin-top: 30px;
    }
  
    .news-post .sub-heading {
        margin-bottom: 10px;
    }
  
    .cth-blog-post {
        padding: 30px 0px 40px;
    }

    .cth-blog-post .btn-outline-green {
        margin-top: 15px;
    }
    
    .cth-hero-content p,
    .post-excerpt p,
    .cth-page-excerpt p,
    .cth-page-excerpt li,
    .cth-fellowship p,
    .cth-fellowship .media .media-body p {
        font-size: 16px;
        line-height: 28px;
    }
  
    .news-post {
        padding: 30px 0px 40px !important;
    }

    .news-post .btn-menu {
        margin-top: 20px;
    }
  
    .post-excerpt p {
        margin-bottom: 15px;
    }
  
    .news-post .btn-menu {
        width: 100%;
    }

    .post-excerpt ul li {
        font-size: 16px;
        line-height: 28px;
        padding-left: 32px;
        margin-bottom: 15px;
    }

    .post-excerpt ul li::after {
        font-size: 20px;
        line-height: 30px;
    }

    .cth-hero-content p,
    .cth-page-excerpt p  {
        margin-top: 15px;
    }
    
    .btn-outline-green {
        width: 100%;
    }
  
    .cth-video a::after {
        font-size: 50px;
        line-height: 50px;
    }

    .cth-newsletter {
        padding: 0px 0px 75px;
    }

    .initiative-post {
        padding: 40px 0px 60px;
    }

    .news-post.initiative-post .btn-menu {
        max-width: 100%;
        font-size: 11px;
    }
  
    .news-post.initiative-post .btn-menu i {
        display: none;
    }
  
    .home-post a {
        margin: 0 40px 50px 40px;
        display: block;
        width: auto;
    }
    
    .cth-contact-box {
        padding: 30px 0px 40px;
    }
  
    .col-6-input {
        width: 100%;
        display: block;
    }

    .ms-2 {
        margin-left: 0px;
    }

    .contact-info {
        margin-bottom: 40px;
    }

    .cth-email {}

    .contact-info li:first-child {
        margin-bottom: 25px;
    }

    .contact-info li:not(:last-child) {
        margin-bottom: 25px;
    }

    .btn-submit {
        margin-top: 15px;
    }
  
    .hero-100 {
        padding: 50px 0px 40px;
    }

    .cth-home-hero {
        max-width: 100%;
    }

    .hero-100 .btn-hero {
        margin-top: 0px;
        max-width: 100%;
        height: 40px;
        margin-bottom: 25px;
    }

    .home-post {
        height: auto;
    }

    .home-post a {
        margin: 0px;
    }
  
    .home-post-image {
        background-size: contain;
        height: 178px;
    }

    .home-post .post-title {
        padding: 20px 15px 0px;
    }

    .home-post button {
        margin: 0px auto 30px;
    display: block;
    width: 91%;
    }
  
    .cth-fellowship {
        padding: 30px 0px 40px !important;
    }

    .cth-fellowship h1 {
        font-size: 24px;
        line-height: 38px;
    }

    .cth-fellowship .media {
        min-height: auto;
      flex-direction: column;
    }

    .cth-fellowship .media .media-body {
        border-radius: 0px 0px 3px 3px;
        padding: 15px 15px 30px;
      height: auto;
    }

    .cth-fellowship .media .media-body h2 {
        font-size: 22px;
        line-height: 40px;
    }
  
  .cth-fellowship .media .media-body p {
        margin-bottom: 20px;
        flex-grow: 0;
    }

    .cth-fellowship .media img {
        max-width: 100%;
        min-height: auto;
        border-radius: 3px 3px 0px 0px;
        display: block;
    }

    .cth-fellowship .btn-outline-green {
        margin-top: 10px;
    }
  
    .fellow-box {
        max-width: 100%;
      min-height: auto;
        margin-right: 0px !important;
    }

    .fellow-box img, .fih {
        max-width: 100%;
        min-height: auto;
    }

    .cth-with {
        padding: 0px 0px 40px 0px;
    }

    .cth-with ul li:not(:last-child) {
        margin-right: 0px !important;
        margin-bottom: 25px;
    }

    .cth-with ul li {
        display: block;
        max-width: 100%;
    }

    .cth-with ul li img {
        display: block;
        margin: 0px auto;
    }
  
  .cth-well-do, .cth-work {
        padding-top: 0px !important;
    }

    .cth-icon-list:not(:last-child) {
        margin-bottom: 30px;
    }

    .cth-icon-box {
        width: 80px;
        height: 80px;
        margin: 0px auto 20px;
        display: block;
        padding: 23px 15px;
    }

    .cth-icon-content {
        max-width: 100%;
        text-align: center;
    }

    .cth-icon-content h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .cth-map-holder {
        margin: 20px auto 0px;
        max-width: 100%;
    }

    .cth-map-holder svg {
        width: 100%;
        height: auto;
    }
    
    .partner-post-image {
        margin: 25px 0px 23px;
    }

    .partner-post-image img {
        max-width: 96%;
    }

    .partner-post .btn-menu {
        max-width: 100%;
        font-size: 11px;
        margin-top: 25px;
    }

    .partner-post .btn-menu i {
        display: none;
    }
  
    .cth-footer {
        padding: 0px 0px 37px;
    }
  
    .news-post .post-excerpt ol li {
        font-size: 16px;
        line-height: 28px;
    }
  
    .news-post .post-excerpt ol li:not(:last-child) {
        margin-bottom: 10px;
    }

    .text-small {
      font-size: 13px;
    }

    .cth-hero-content .btn-hero {
        height: 40px;
        line-height: 17px;
    }
    
    .btn-hero i {
        line-height: 19px;
    }

    .cth-accelerate-content {
        padding: 30px 0px 40px !important;
    }
    
    .cth-accelerate-content h1 {
        font-size: 24px;
        line-height: 38px;
    }
    
    .cth-accelerate-content p {
        font-size: 16px;
        line-height: 28px;
    }
    
    .cth-approach-list {
        margin: 20px auto 0px;
    }
    
    .cth-approach-list li:not(:last-child) {
        margin-bottom: 20px;
    }
    
    .icon-box {
        width: 60px;
        max-width: 60px;
        height: 60px;
        margin: 0px 15px 0px 0px;
    }
    
    .icon-box i {
        font-size: 22px;
    }
    
    .icon-box img {
        max-width: 15px;
    }
    
    .cth-approach-list::before {
        height: calc(100% - 100px);
        top: 50px;
        left: 30px;
    }
    
    .cth-approach-box h6 {
        font-size: 15px;
        line-height: 20px;
    }
    
    .cth-map {
        display: block;
        max-width: max-content;
        margin: 25px auto 0px;
    }
    
    .cth-form-box {
        margin: 25px auto 0px;
        padding: 40px 30px 30px;
    }
    
    .cth-form-box .btn-menu {
        max-width: 100%;
        margin-top: 10px;
    }
    
    .cth-form-box img {
        margin: 30px auto 0px;
    }
    
    .cth-partner ul {
        padding-left: 15px;
        margin: 15px 0px 0px;
    }
    
    .cth-partner ul li {
        font-size: 18px;
        line-height: 34px;
    }
    
    .cth-map li:not(:last-child) {
        margin-bottom: 20px;
    }

    .vtn-footer-content {
        display: block;
    }

    .cth-social {
        max-width: max-content;
        margin: 20px auto 0px;
    }
}

@media (max-width: 746px) {
  .btn-hero {
    width: 100%;
    height: auto;
    line-height: 20px;
    padding: 10px 15px;
  }
}

@media (max-width: 414px) {
    .btn-outline {
        height: auto;
    }
    
    .btn-outline i {
        display: none;
    }
    
    .cth-email {
        font-size: 10px;
    }

    .btn-outline, .btn-hero {
        width: 100%;
        height: auto;
        line-height: 20px;
        padding: 10px 15px;
    }
    
    .btn-outline i, .btn-hero i {
        display: none;
    }
  
  .cth-newsletter .btn-outline {
        height: 40px;
        line-height: 17px;
    }

    .cth-newsletter .btn-outline i {
        display: block;
        line-height: 18px;
    }
    
    .cth-email {
        font-size: 10px;
    }
}   

@media (max-height: 420px) {
  .cc-center {
        transform: translate(-50%, calc(0% - 40px));
    }

    .menu-items li {
        margin-bottom: 25px;
    }
}

.logo-wrapper {
    min-height: 100px;
}