:root {
    --agilepro-blue: #113560;
    --agilepro-blue-2: #4f6789;
    --agilepro-white: #fff;
    --agilepro-light-gray: #dfe3e9;
    --agilepro-top-shadow: rgba(0, 0, 0, 0.5);
}

/************ fonts ***************/
@font-face {
    font-family: MuseoSans-Bold;
    src: url(fonts/museo-sans-500.woff);
}
@font-face {
    font-family: MuseoSans-ExtraBold;
    src: url(fonts/museo-sans-700.woff);
}
@font-face {
    font-family: MuseoSans-Light;
    src: url(fonts/museo-sans-100.woff);
}
@font-face {
    font-family: MuseoSans;
    src: url(fonts/museo-sans-300.woff);
}
/******* agilepro-title *******/
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    margin-bottom: 1rem;
    font-family: MuseoSans;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1 {
    font-size: 3.1rem;
    color: var(--agilepro-black);
}
h2 {
    font-size: 3.4rem;
    margin-bottom: 2rem;
}
h3 {
    font-size: 2.2rem;
    color: var(--agilepro-blue);
    display: flex;
    justify-content: flex-start;
}
@media only screen and (min-width: 600px) {
    h3 {
        font-size: 4rem;
    }
}
h4 {
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--agilepro-blue);
    letter-spacing: 1px;
}
h5 {
    text-transform: uppercase;
    color: var(--agilepro-blue);
    font-family: MuseoSans-Bold;
    font-size: 1.6rem;
}
h6 {
    font-size: 2rem;
    margin-bottom: 0;
}
h4::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--agilepro-blue-2);
    margin-top: 2rem;
}
/************* social links ***************/
.agilepro-social-icon {
    display: block;
    height: 20px;
    width: 20px;
    transition: none;
}

.agilepro-social-icon:not(:last-child) {
    margin-right: 1rem;
}

.agilepro-social-icon:hover {
    filter: brightness(85%);
}
.agilepro-social-links {
    justify-content: center;
    display: flex;
}
/********** agilepro-container **************/
.agilepro-container {
    width: 90vw;
    margin: 0 auto;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media only screen and (min-width: 1000px) {
    .agilepro-container {
        max-width: 1035px;
        width: 70vw;
    }
}
.gray-bg {
    background-color: var(--agilepro-light-gray);
}
.white-bg {
    background-color: var(--agilepro-white);
}
.centered {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/************* agilepro video **************/
.agilepro-video::after {
    content: "";
    background: url(/wp-content/themes/agilepro/images/play.svg);
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}
.agilepro-video:hover::after {
    filter: invert(45%) sepia(57%) saturate(4066%) hue-rotate(112deg) brightness(97%) contrast(85%);
}
@media only screen and (min-width: 600px) {
    .agilepro-video::after {
        width: 65px;
        height: 65px;
        bottom: 3rem;
        right: 3rem;
    }
}
/********** button outline focus fix ************/
:focus {
    outline: 0;
}
/************* agilepro-button *************/
.agilepro-button,
input[type="submit"].agilepro-button {
    background: var(--agilepro-yellow);
    color: var(--agilepro-black);
    font-family: MuseoSans-Bold;
    font-size: 1.8rem;
    border-radius: 8px;
    padding: 3px 20px 3px 20px;
    width: max-content;
    position: relative;
}
.agilepro-button.with-arrow {
    padding-right: 30px;
}
.agilepro-button.with-arrow:before,
.agilepro-button.with-arrow:after {
    content: "";
    display: block;
    background-color: var(--agilepro-black);
    position: absolute;
    bottom: calc(50% - 0.1rem);
    right: 17px;
    height: 2px;
    width: 6px;
}
.agilepro-button.with-arrow:before {
    transform: rotate(45deg) translate(1px, -3px);
}
.agilepro-button.with-arrow:after {
    transform: rotate(135deg) translate(0px, -4px);
}
.agilepro-button:hover {
    filter: brightness(85%);
    cursor: pointer;
}
/******* breadcrumbs **************/
#breadcrumb-menu-primary-2 {
    display: flex;
    margin-top: 2rem;
    margin-left: 4rem;
}
#breadcrumb-menu-primary-2 a {
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: start;
}
#breadcrumb-menu-primary-2 a:not(:last-child)::after {
    content: "";
    display: block;
    background: var(--agilepro-black);
    width: 2px;
    height: 2px;
    margin: 0 1rem;
    align-self: center;
}
#breadcrumb-menu-primary-2 a:last-child {
    border-bottom: 2px solid #ffe5a0;
}

/******** top shadow ************/
.top-shadow {
    height: 200px;
    background-image: linear-gradient(to top, rgba(0,0,0,0), var(--agilepro-top-shadow));
    position: absolute;
    width: 100%;
    z-index: 1;
    opacity: 1;
}

/************ full width container ************/
.full-width {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/************ agilepro-content ***************/
.agilepro-container.agilepro-content {
    padding-top: 2rem;
    padding-bottom: 1rem;
    align-items: start;
}
@media ( min-width: 700px ) {
    .agilepro-container.agilepro-content {
        flex-direction: row;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.agilepro-content h3 {
    font-family: MuseoSans;
    font-size: 2rem;
    margin-right: 0;
    flex: 1 0 auto;
    padding-left: 3rem;
    align-items: start;
    position: relative;
    margin-bottom: 1rem;
}
@media ( min-width: 700px ) {
    .agilepro-content h3 {
        margin-bottom: 0;
        margin-right: 9rem;
        margin-bottom: 2rem;
    }
}
.agilepro-content h3::after {
    content: "";
    background: #597090;
    width: 3px;
    height: calc(100% - 9px);
    position: absolute;
    left: 0;
    margin: auto;
    bottom: 0;
    top: 0;
}
.agilepro-content .description {
    font-family: MuseoSans-Light;
    font-size: 1.6rem;
    text-align: justify;
    line-height: 130%;
}

.uppercase {
    text-transform: uppercase;
}
/************ agilepro-close button ***********/
button.agilepro-close {
    position: absolute;
    right: 0;
    top: 20px;  
    background-image: url(/wp-content/themes/agilepro/images/x.svg);
    width: 17px;
    height: 17px;
}
/********** accessibility-toggle *******************/
.yydev-warp .yy-button {
    display: none;
}
.yydev-accessibility {
    top: 130px !important;
    right: 0;
    left: unset !important;
}
.yydev-accessibility .yydev-warp .yy-box {
    top: -60px;
}
.accessibility-toggle {
    height: 25px;
    width: 25px;
    position: absolute;
    top: 3.7rem;
    right: 3.7rem;
}

@media only screen and (min-width: 700px) {
    .yydev-accessibility .yydev-warp .yy-box {
        top: 0;
    }
    .accessibility-toggle {
        height: 25px;
        width: 25px;
        position: relative;
        top: 2rem;
        left: 1.5rem;
    }
}