* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #000;
    font-family: 'Raleway', sans-serif;
}

body {
    overflow-x: hidden;
}

h1 {
    font-weight: 900;
    font-size: 53px;
    line-height: 88px;
    text-transform: uppercase;
}

h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 46px;
    color: #333;
}

p {
    font-size: 21px;
    line-height: 32px;
    max-width: 700px;
    color: #333;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;

}

a {
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
}


/***************** FLEX *****************/
.flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.space-between {
    justify-content: space-between;
}

/***************** WIDTH *****************/
.max-width1200px {
    max-width: 1200px;
    margin: 0 auto;
}

.max-width1104px {
    max-width: 1104px;
    margin: 0 auto;
}

/***************** BUTTONS *****************/
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    margin-top: 40px;
    padding: 10px 22px;
    max-width: 185px;
    height: 56px;
    font-size: 28px;
    color: #3f3e3e;
}

.btn:hover a {
    opacity: 0.9;
}

.join-us {
    background: #3000E0;
    margin: 0 .5vw;
    color: #fff;
	text-align: center;
}

.donate {
    background: #b44034;
    color: #fff;
    margin: 0 0 0 .5vw;
}

.form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    margin-top: 2vh;
    padding: 10px 22px;
    max-width: 160px;
    height: 56px;
    background: #3000E0;
    color: #fff;
    border: none;
    cursor: pointer;
}

.learn-more {
    background: #fff;
}


/***************** ARROW *****************/
.what-we-do-items-div .small-arrow {
    height: 30px;
    width: 18px;
    margin-top: 28px;
    margin-left: 5px;
}


/***************** LOGO *****************/
.logo {
    width: 400px;
    height: 100%;
}

/***************** HEADER *****************/
/* TOP BANNER */
.banner {
    background: #2B00DB;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner p {
    color: #fff;
}

/* HEADER */
.header {
    border-bottom: 1px solid gray;
}

/***************** MENU *****************/
.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Dropdown Button */
.menu-item-41 a {
    border: none;
}

/* The container <div> - needed to position the dropdown content */
#menu-header-menu {
    display: flex;
}

#menu-header-menu li:hover {
    text-decoration: underline;
    cursor: pointer;
}

.menu {
    position: relative;
    display: flex;
}

.menu-item {
    list-style: none;
    margin-right: 32px;
    height: 100%;
    white-space: nowrap;
    cursor: pointer;
}


/* Dropdown Content (Hidden by Default) */
.sub-menu {
    display: none;
    z-index: 1;
    background: #212b42;
    position: absolute;
    left: 0;
    top: 88px;
    margin: 0 -100%;
    padding: 0 100%;
    border-bottom: 1px solid #fff;
}

/* Links inside the dropdown */
.sub-menu a {
    color: #fff;
    padding: 32px 0;
    display: block;
}

/* Change color of dropdown links on hover */
.sub-menu a:hover {
    opacity: 0.8;
}

.main-nav .menu-item {
    padding: 36px 0;
}

/* Show the dropdown menu on hover */
.menu-item-255:hover .sub-menu {
    display: flex;
}

/* CHEVRON */
.menu-item-255::after {
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: '';
    display: inline-block;
    height: 12px;
    width: 12px;
    position: relative;
    top: 8px;
    margin-left: .5vw;
    transform: rotate(-45deg);
    vertical-align: top;
    transform: rotate(135deg);
    cursor: pointer;
    color: #3000E0;
}

/* .menu-item-255::after {
    content: "";
    width: 30px;
    height: 30px;
    background: red url("/img/MenuArrow.svg");
    top: 10px;
    right: 5px;
    position: absolute;
    display: inline-block;
} */

/* ACTIVE MENU ITEM */
.active {
    text-decoration: underline;
}

.sub-menu .menu-item {
    padding: 0 !important;
}


#nav {
    height: 72px;
}

#nav li a {
    font-size: 28px;
}

/***************** ICONS *****************/
/* SMALL (WHAT WE DO SECTION) */
.icon {
    width: 288px;
    height: 288px;
}

/* LARGE - HEADER ACF */
.icon2 {}

/* LARGE IN PAGE */
.icon3 {
    width: 288px;
    height: 288px;
    transform: rotate(-15deg);
}

.icon4 {
    width: 144px;
    height: 144px;
}

.rotate-right {
    transform: rotate(25deg);
}

/***************** HEADINGS *****************/
.heading {
    background: #17B3CA;
    padding: 80px;
}

.heading h1 {
    font-size: 84px;
    line-height: 88px;
    font-weight: 900;
    padding-left: 48px;
}

.heading-title {
    color: #fff;
    font-size: 57px;
    line-height: 64px;
    text-transform: uppercase;
    max-width: 1200px;
    margin: 0 auto;
}

.border-bottom {
    border-bottom: 1px solid black;
    padding-bottom: 47px;
    margin-bottom: 32px;
}



/***************** ACFs *****************/
/* ACF1 */
/* HEADER-SECTION */
.header-section {
    height: 432px;
}

.background-salmon {
    background: #ffdfd0;
    width: 584px;
    height: 432px;
}

.header-icon {
    position: relative;
    transform: rotate(5deg);
}

.header-icon .icon2 {
    position: absolute;
    left: -144px;
    bottom: -40px;
    width: 288px;
    height: 288px;
}

.header-img {
    width: 70%;
}

.header-img img {
    width: 100%;
    height: 432px;
    object-fit: cover;
}

.max-width1104px {
    max-width: 1104px;
    margin: 0 auto;
}

/* ACF2 */
/* HEADLINE */
.headline {
    background: #b44034;
    display: flex;
    align-items: center;
}

.headline div {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.headline h1 {
    max-width: 840px;
    color: #fff;
    margin: 80px 0;
    font-weight: 900;
    font-size: 84px;
    line-height: 88px;
    padding-left: 48px;
}

.headline h1,
.heading-title {
    font-size: 57px;
    line-height: 64px;
    font-weight: 900;
    padding-left: 48px;
}

/* ACF3 */
/* ICON TEXT BUTTON */
.icon-text-btn {
    display: flex;
    max-width: 1104px;
    margin: 0 auto;
    padding: 80px 0;
}

.itb-icon .icon3 {
    margin-top: -120px;
}

.itb-text {
    max-width: 672px;
    margin-left: 96px;
}

/* .itb-text h2 {
    color: red;
}

*/
.itb-text p {
    margin-top: 40px;
}

.itb-text .btn {
    margin-top: 40px;
}


/***************** BREADCRUMBS *****************/
#breadcrumbs {
    max-width: 1200px;
    margin: 0 auto 8px auto;
    padding-left: 48px;
}

#breadcrumbs * {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
}

/***************** HOME *****************/
.discover-btn {
    background: #2B00DB;
    color: #fff;
    width: 100%;
    white-space: nowrap;
    max-width: 230px;
}



/***************** WHAT WE DO *****************/
.what-we-do {
    background: #ffdfd0;
    padding: 80px 0 32px 0;
}

.wwd-out {
    padding-bottom: 80px;
    /* padding-left: 48px; */
}

.what-we-do h1 {
    color: #5f1b1f;
    margin-bottom: 48px;
}

.wwd-grid {
    display: grid;
    grid-template-rows: 515px 515px;
    grid-template-columns: 336px 336px 336px;
    max-width: 1104px;
    height: 100%;
    grid-gap: 48px;
}

.what-we-do-items a {
    white-space: normal;
}


/* .what-we-do-items {
    justify-content: space-between;
    max-width: 1104px;
}

*/
.what-we-do-item {
    background: #fff;
    margin-bottom: 48px;
    padding: 32px;
    width: 336px;
    display: flex;
    flex-direction: column;
}

.what-we-do-items-div {
    background: #fff;
    padding: 32px;
    height: 515px;
}

.what-we-do-items div h2 {
    color: #3000E0;
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
}

.what-we-do-items div h2 {
    margin-top: 24px;
}

.what-we-do-items div p {
    margin-top: 8px;
    font-weight: 400;
    font-size: 21px;
    line-height: 32px;
}

.icon-div {
    display: flex;
    justify-content: center;
}

.what-we-do-items img {
    transform: none;
    width: 192px;
    height: 192px;
}

.home-wwd img {
    width: 192px;
    height: 192px;
    margin: 0 auto;
}

.ch {
    padding-left: 48px;
}

/***************** WHO WE ARE *****************/
.values {
    max-width: 1104px;
    margin: 0 auto;
    margin-bottom: 16px;
}

.value {
    border-top: 2px solid #5f1b1f;
    display: flex;
    padding: 64px 0;

}

.res .value {
    justify-content: unset;
}

.res .value-text {
    margin-left: 96px;
}

.right {
    margin-left: 48px;
}

.left {
    margin-right: 48px;
}

.value-text {
    max-width: 672px;
}

.value-text h2 {
    font-weight: 700;
    color: #5f1b1f;
}

.value-text p {
    margin-top: 24px;
}

.view-services {
    background: #212b42;
    text-align: center;
    padding: 48px;
}

.view-services .heading-title {
    margin-top: 24px;
    font-size: 53px;
    line-height: 38px;
    white-space: normal;
}

.our-team {
    background: #ffdfd0;
    padding: 80px 0;
}

.our-team h1 {
    color: #5f1b1f;
    width: 1104px;
    margin: 0 auto 48px auto;
}

.profiles {
    max-width: 1104px;
    margin: 0 auto;
    justify-content: space-between;
}

.profile {
    max-width: 336px;
}

.profile img {
    height: 224px;
    width: 336px;
    object-fit: cover;
}

.profile-info {
    padding: 32px;
    background: #fff;
}

.profile h4 {
    color: #3000E0;
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
}

.profile p {
    margin-top: 16px;
    height: 120px;
    font-size: 21px;
    line-height: 32px;
}

.profile-social {
    margin-top: 16px;
    justify-content: space-evenly;
}

.social-icon {
    width: 40px;
    height: 40px;
}

.social-icon img {
    width: 40px;
    height: 40px;
}



/***************** NEWS AND THOUGHTS POSTS *****************/
.news-thoughts-home {
    background: #a5e9f3;
    padding: 80px 0;

}

.blog-page-title {
    color: #5f1b1f;
    line-height: 64px;
}

.blog-outer {
    justify-content: space-between;
}

.blog-post {
    width: 528px;
    margin-right: 5vw;
}

.blog-category {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    padding: 10px 22px;
    height: 30px;
    width: 150px;
    background: #5f1b1f;
    color: #fff;
    font-size: 12px;
}

.blog-title {
    color: #2B00DB;
    margin-top: 24px;
    font-weight: bold;
    line-height: 56px;
    font-size: 38px;
    white-space: normal;
}

.ev {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
}

.change1 {
    color: #2B00DB;
    font-size: 28px;
    line-height: 40px;
    font-weight: bold;
}

.blog-date {
    margin-top: 8px;
    font-size: 21px;
    font-weight: bold;
    line-height: 32px;

}

.blog-excerpt {
    margin-top: 24px;
    white-space: normal;
    font-size: 21px;
    line-height: 32px;
    font-weight: 400;
}


.blog-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    padding: 10px 22px;
    max-width: 185px;
    height: 56px;
    background: #fff;
    color: #3f3e3e;
    font-size: 28px;
    margin-top: 40px;
}

.news-thoughts {
    padding: 80px 0;
    max-width: 1104px;
    margin: 0 auto;
}

.change2 {
    padding: 56px 5vw;
}

.news-thoughts .blog-outer {
    flex-wrap: wrap;
}

.news-thoughts .blog-post {
    /* width: 50%; */
    margin: 24px 0;
}

.blog-post .large-arrow {
    height: 22px;
    width: 22px;
    margin-left: 7px;
}



/***************** SINGLE *****************/
.singe-header {
    background: #ffdfd0;
    padding: 80px 0;
}

.singe-header div h1,
.blog-date time {
    color: #212b42;
}

/* .singe-header div h1 {
    max-width: 768px;
} */

.post-content {
    max-width: 1200px;
    margin: 0 auto;
}

.post-content a {
    white-space: normal;
}

.sin #breadcrumbs * {
    color: #212b42;
}

.singe-header .blog-date {
    padding-left: 48px;
}

/***************** UPCOMING EVENTS AND CLASSES *****************/
.upcoming h1 {
    color: #fff;
}

.blog-post2 .small-arrow {
    height: 18px;
    width: 18px;
    margin-left: 5px;
}

.news-thoughts .blog-post2 {
    width: 336px;
    margin-bottom: 48px;
}

.remove-m {
    margin-top: 0;
}

/***************** GET INVOLVED *****************/
.get-involved {
    background: #b44034;
}

.get-involved h1 {
    color: #ffdfd0;
    line-height: 64px;
}

.get-involved p {
    color: #fff;
    margin-top: 24px;
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
}

.get-involved-inner {
    padding: 80px 0;
    padding-left: 48px;
}

.get-involved-text {
    margin: 0 96px;
    max-width: 672px;
}

.gi-home {
    padding-left: 0;
}



/***************** RESOURCES *****************/
.learn-more-page {
    background: #2B00DB;
    color: #fff;
}


/***************** EDUCATION *****************/

#heading-education {
    background: #212b42;
}

#heading-education p {
    color: white;
}


.salmon {
    background: #ffdfd0;
}

.news-education {
    padding: 80px 0;
    max-width: 1104px;
    margin: 0 auto;
}


/***************** CONTACT *****************/



/***************** FORM *****************/
input {
    font-size: 20px;
    margin-top: 1vh;
    margin-bottom: 2vh;
    padding: 1vh;
}

.contact-form {
    max-width: 1104px;
    margin: 0 auto;
    align-items: end;
}

.contact-form .header-icon {
    margin-top: -40px;
}

.form {
    margin: 80px 0;
    padding-left: 96px;
    max-width: 672px;
}

.form h2 {
    margin-bottom: 3vh;
    font-weight: 400;
}

input,
textarea {
    width: 100%;
}

textarea {
    min-height: 45vh;
    padding: 1vh;
    font-size: 20px;
}

.heading h1 {
    margin-bottom: 0 !important;
}


/***************** FOOTER *****************/
.footer {
    background: #3f3e3e;
}

.footer * {
    color: #fff;
}

.row1,
.row2,
.row3 {
    display: flex;
    align-items: center;
    padding: 32px 0;
}

/* ROW 1 */
.row1 {
    justify-content: space-between;
}

.footer-email {
    text-decoration: underline;
}

.footer-social {
    margin-left: 1vw;
}

.footer-social a {
    margin-left: .5vw;
}

.footer-social a img {
    width: 40px;
    height: 40px;
}



/* ROW 2 */
.footer-menu {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.footer-nav .menu {
    display: flex;
}

/* .footer-nav .menu .menu-item {
    text-decoration: underline;
} */

.footer-nav .menu .menu-item-41:hover .sub-menu {
    display: none;
}


/* REMOVE CHEVRON */
.footer-nav .menu .menu-item-41::after {
    border-style: none;
}

.footer-menu .menu-item a {
    font-size: 28px;
    text-decoration: underline;
}

.footer .sub-menu {
    background: #3f3e3e;
    border-bottom: none;
}

.footer .sub-menu a {
    padding: 1vh 0;
}

.footer-nav .menu-item-255::after {
    top: 10px;
}

/****************  MOBILE MENU  *******************/

/* BURGER MENU */
.burger-menu {
    justify-content: center;
    display: none;
}


#burger {
    z-index: 10;
    cursor: pointer;
}


.topnav {
    width: 100%;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}

#myLinks {
    display: none;
    background: #212b42;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    border-top: 1px solid #E3EFF9;
    padding-bottom: 40px;
    -webkit-animation: fadeIn 1.2s;
    animation: fadeIn 1.2s
}


#myLinks .menu {
    flex-direction: column;
}

#myLinks .menu li {
    border-bottom: 2px solid #fff;
    margin: 0 5vw;
    padding: 16px 0;
    list-style: none;
    text-decoration: none;
}

#myLinks .menu li a {
    color: #fff;
    font-size: 21px;
    line-height: 32px;
    font-weight: 400;

}


#myLinks .menu-item-255::after {
    color: #fff;
    left: 5px;
}

#myLinks .sub-menu {
    position: relative;
    flex-direction: column;
    background: #3000E0;
}

#myLinks .sub-menu li a {
    text-decoration: none;
}

#myLinks #menu-item-31 {
    border-bottom: none;
}


.nav-item2 {
    list-style: none;
    margin: 2vh 0;
    padding: 2vh 4vw;
}

.nav-item2:hover {
    background: red;
    color: #fff;
    transition: 0.3s ease;
}

.bar1,
.bar2,
.bar3 {
    width: 38px;
    height: 3px;
    background-color: #333;
    margin: 8px 0;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 0px);
    transform: rotate(-45deg) translate(-10px, 5px);
    width: 35px;
    height: 4px;
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-10px, -6px);
    width: 35px;
    height: 4px;
}




/***************** MEDIA QUERIES *****************/
@media only screen and (max-width: 530px) {
    img.logo {
        width: 80%;
        margin-right: 10vw;
    }

    .footer-email-social {
        flex-direction: column;
    }

    .footer-social {
        margin-top: 40px;
    }

    .our-team h1 {
        width: 100%;
    }

}

@media only screen and (max-width: 620px) {
    .header {
        /* padding-bottom: 40px; */
        height: 64px;
    }

    .get-involved-inner {
        align-items: flex-start;
    }

    .get-involved-text {
        margin: 40px 0vw;
    }

    .contact-form .icon {
        display: none;
    }

    .profile img {
        width: 100%;
    }

    .get-involved-inner {
        padding-left: 5vw !important;
    }

}


@media only screen and (max-width: 715px) {
    .header-icon .icon2 {
        height: 200px;
        width: 200px;
        left: 40px;
    }

    .icon3 {
        height: 200px;
        width: 200px;
    }
}

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

@media only screen and (max-width: 1000px) {
    .icon-text-btn {
        flex-direction: column;
    }

    .itb-text {
        margin-left: 0;
        /* margin-top: 40px; */
    }

    .row1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-email {
        align-items: flex-start;
    }

    .footer-email-social {
        margin: 10px 0;
    }

    .footer-email-social {
        width: 100%;
        justify-content: space-between;
    }

    .value {
        flex-direction: column;
        margin: 0 10vw;
        padding: 5vh 0;
    }

    .value-text {
        margin-top: 40px;
    }

}

@media only screen and (max-width: 1013px) {
    .what-we-do-items {
        flex-wrap: wrap;
    }

    .what-we-do-items div {
        max-width: 100%;
        min-width: 100%;
    }

    .news-thoughts .blog-post2 {
        width: 100%;
    }

}

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

@media only screen and (max-width: 1150px) {
    .blog-outer {
        flex-direction: column;
    }

    .blog-post {
        width: 100%;
        margin-top: 40px;
        max-width: unset;

    }

    .news-thoughts .blog-post2 {
        width: 100%;
    }
}

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

    .heading {
        padding: 32px 5vw;
    }

    .header,
    .main-nav {
        margin: 32px 6vw;
        margin-left: 3vw;
        margin-right: 7vw;
    }

    .headline div {
        width: 90%;

    }

    .headline h1 {
        max-width: 500px;
        padding-left: 0 !important;
    }


    .headline h1,
    .heading-title {
        font-size: 30px;
        line-height: 32px;
        margin: 24px 0;
        padding-left: 0;
    }

    h1 {
        font-size: 32px;
        line-height: 40px;
        font-weight: 900;
    }

    h2 {
        font-size: 28px;
    }

    .icon-text-btn {
        width: 90%;
    }

    .what-we-do,
    .news-thoughts-home,
    .news-thoughts,
    .get-involved-inner,
    .footer {
        padding: 32px 5vw;

    }

    .what-we-do,
    .news-thoughts-home,
    .news-thoughts,
    .get-involved-inner {
        display: flex;
    }

    .what-we-do-items div {}

    .what-we-do-item {
        padding: 24px;
    }

    .blog-post {
        width: 100%;
    }

    .our-team {
        padding: 10vh 10vw;
    }

    .profiles {
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .profile {
        margin: 40px;
    }

    .header-icon {
        display: none;
    }

    .value .icon3 {
        display: none;
    }

    .itb-text {
        margin-left: 0;
    }

    .value {
        justify-content: flex-start;
        margin: 0 5vw;
    }

    .singe-header {
        padding: 80px 5vw;
    }

    .itb-icon {
        display: none;
    }

    .background-salmon {
        display: none;
    }

    .header-img {
        width: 100%;
    }

    .header-section {
        height: 100%;
    }

    .header-img img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .arrange {
        display: flex;
        flex-direction: column-reverse;
    }

    .icon-text-btn {
        padding: 32px 0;
    }

    .itb-text h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .what-we-do h1 {
        margin-bottom: 24px;
    }

    .home-wwd img {
        height: 160px;
        width: 160px;
    }

    .what-we-do-items div h2 {
        font-size: 24px;
        line-height: 32px;
        margin-top: 16px;
    }

    .what-we-do-items div p {
        font-size: 18px;
        line-height: 28px;
    }

    .what-we-do-item {
        margin-bottom: 16px;
    }

    .heading h1,
    .value-text h2 {
        font-size: 30px;
        line-height: 32px;
        padding-left: 0;
    }

    .itb-text p,
    .value-text p {
        font-size: 21px;
        line-height: 32px;
    }

    .wwd-grid {
        display: grid;
        grid-template-rows: 440px 440px 440px 440px 440px 440px;
        grid-template-columns: 336px;
        max-width: 1104px;
        height: 100%;
        grid-gap: 16px;
    }

    .right,
    .left {
        margin: 0;
    }

    .get-involved-inner {
        flex-direction: column-reverse;
        padding-left: 0;
    }

    .res .value-text {
        margin-left: 0;
    }

    .burger-menu {
        display: block;
    }

    #nav {
        display: none;
    }

    .header {
        border-bottom: none;
    }

    .display-none715,
    .banner {
        display: none;
    }

    .sub-menu a {
        padding: 8px 0;
    }

    .sub-menu {
        top: 32px;
    }

    .footer-nav .menu {
        flex-direction: column;
    }

    .footer-nav .menu .menu-item .sub-menu {
        position: relative;
        flex-direction: column;
        width: 100%;
    }

    .footer .sub-menu {
        top: 16px;
    }

    .footer-nav .menu-item {
        padding: 8px 0;
    }

    .gi-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .gi-logo .icon {
        width: 200px;
        height: 200px;
    }

    #breadcrumbs {
        padding-left: 0;
    }

    #breadcrumbs * {
        font-size: 16px;
    }

    .blog-post2 {
        margin-bottom: 48px;
    }

    .discover-btn {
        margin-top: 0;
    }

    .form {
        padding-left: 0;
    }

    /* .wwd-out {
        padding-left: 48px;
    } */

    .max-width1104px {
        margin: 0;
    }

    .what-we-do-items-div .small-arrow {
        margin-top: 23px;
        height: 18px;
    }

    .what-we-do-items-div {
        margin: 0;
    }

    .what-we-do-items a {
        height: 410px;
        background: white;
    }

    .what-we-do-items-div {
        height: 432px;
        padding: 24px;
    }

    .blog-page-title {
        line-height: 40px;
    }

    .blog-title {
        font-size: 28px;
        line-height: 40p;
    }

    .singe-header .blog-date {
        padding-left: 0;
    }

}

/* MISC */

.post-categories {
    list-style: none;
}

.post-categories li a {
    color: #fff;

}


.post-content a {
    white-space: normal;
    font-size: 21px;
    color: #333;
    text-decoration: underline;
}

p:last-child {
    margin-bottom: 30px;
}

p.dcr-10j7zqa:last-child {
    margin-bottom: 30px;
}

em {
    font-size: 21px;
    color: #333;
}

.itb-text p:last-child {
    margin-bottom: 30px;
}