:root {
    --body-width: 1600px;
    --body-width-half: 800px;
    --body-padding: 40px;
    --logo-width: 140px;
    --logo-width-mobile: 120px;
    --ucora-red: #F04C3E;
    --ucora-red-darker: #E43D30;
    --ucora-red-border: #D32F2F;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --color-dark: #0F2A35;
    --color-dark-lighter: #006071;
    --color-dark-half: #AAB3B7;
    --color-gray: #CCC;
    --color-gray-light: #EEE;
    --color-gray-lighter: #F9F9F9;
    --color-input-bg: #F1F2F3;
    --color-input-placeholder: #999999;
    --color-error-bg: #FFEBEE;
    --color-error-border: #F44336;
    --color-success-bg: #E8F5E9;
    --color-success-border: #4CAF50;
    --color-light-green: #8bc04d;
}
html, body {
    overflow-x: hidden;
}
body {
    margin: 0; padding: 0;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: var(--font-regular);
    line-height: 1;
}
header > div {
    max-width: var(--body-width);
    height: 120px;
    padding: 0 var(--body-padding);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
}
.page {
    /* Workaround for the Sticky Bug */
    overflow-x: clip;
}
.page header {
    background: var(--ucora-red);
}
a {
    text-decoration: none;
}
a, img {
    outline: none;
}
.clear {
    clear: both;
}
.mobile,
.mobile-only {
    display: none;
}
.logo img {
    width: var(--logo-width);
}
nav a,
nav a:link,
nav a:visited {
    color: black;
}
nav a:hover,
nav a:active {
    color: var(--ucora-red);
}
.page nav a:hover,
.page nav a:active {
    color: white;
}
nav a {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .2rem;
    font-size: 16px;
    font-weight: var(--font-semi-bold);
    margin-right: 40px;
    position: relative;
    z-index: 20;
}
nav a.active {
    color: white;
    pointer-events: none;
    cursor: default;
}
.sub-nav {
    display: inline-block;
    position: relative;
}
.sub-nav > div {
    display: none;
    padding-top: 30px;
    margin-left: -10px;
    position: absolute;
    top: 0; left: 0;
    white-space: nowrap;
    z-index: 10;
}
.sub-nav:hover > div {
    display: block;
}
.sub-nav > div a {
    display: block;
    margin: 0;
    padding: 10px;
    background: white;
    border: solid 1px var(--color-gray);
    border-bottom: none;
    font-size: smaller;
    line-height: 1.3;
    box-sizing: border-box;
    z-index: 30;
    text-transform: none;
}
.page .sub-nav > div a {
    border-color: var(--ucora-red-border);
}
.page .sub-nav > div a {
    background: var(--ucora-red);
}
sup {
    vertical-align: top;
    font-weight: var(--font-regular);
}
.contact-button,
.contact-button:link,
.contact-button:visited {
    background: var(--ucora-red);
    padding: 10px 20px;
    margin: 0;
    border-radius: 20px;
    color: white;
}
.contact-button:hover,
.contact-button:active {
    color: white;
    background: var(--ucora-red-darker);
}
.page .contact-button {
    color: var(--ucora-red-darker);
    background: white;
}
.page .contact-button:hover,
.page .contact-button:active,
.page .contact-button.active {
    color: black;
}
section {
    box-sizing: border-box;
}
section h1,
.page-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 65px;
    font-weight: var(--font-regular);
}
section h1 {
    text-shadow: 1px 1px 0 var(--color-dark);
}
.page section h1 {
    text-shadow: none;
}
section p,
section li {
    font-size: 24px;
}
.page-title {
    color: var(--ucora-red);
}
.page h2 {
    font-size: 26px;
    font-weight: var(--font-medium);
    margin: 50px 0 10px;
}
.pages-content {
    min-height: 400px;
}
.pages-content {
    padding: 50px 0;
    font-size: 26px;
    font-weight: var(--font-light);
    color: var(--color-dark);
    line-height: 1.5;
}
.pages-content p {
    margin: 0;
    text-align: justify;
}
.pages-content p a,
.pages-content p a:link,
.pages-content p a:visited,
.pages-content p a:hover,
.pages-content p a:active {
    color: var(--ucora-red);
    padding: 0 0 3px 0;
    border-bottom: solid 1px var(--ucora-red);
}
.pages-content p a:hover,
.pages-content p a:active {
    color: var(--color-dark);
    border-bottom-color: var(--color-dark);
}
.pages-content p a.no-border {
    border: none;
    padding: 0;
}
a.more {
    white-space: nowrap;
}
a.more:after {
    content: "";
    display: inline-block;
    background: url(images/arrow-right.svg) no-repeat 0 0;
    background-size: 15px;
    width: 15px; height: 15px;
    margin-left: 5px;
}
a.more:hover:after {
    background-position: 0 -15px;
}
.section-center {
    max-width: var(--body-width);
    padding: 0 var(--body-padding);
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}
.section-two {
    display: flex;
}
.block-left,
.block-right {
    flex: 1;
}
.block-color {
    background: var(--ucora-red);
}
.block-content {
    max-width: var(--body-width-half);
    padding: var(--body-padding);
    box-sizing: border-box;
}
.block-left .block-content {
    float: right;
    padding-right: 100px;
}
.block-right .block-content {
    float: left;
    padding-left: 100px;
}
.block-content strong {
    font-weight: var(--font-medium);
}
.page h2.block-head {
    text-transform: capitalize;
    font-weight: var(--font-semi-bold);
    color: white;
}
.section-button {
    display: inline-block;
    font-size: 20px;
    font-weight: var(--font-bold);
    padding: 20px 30px;
    border: solid 1px white;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: .2rem;
    color: white;
    transition: all .2s;
}
.section-button.sb-blue:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
}
.section-button.sb-red:hover {
    border-color: var(--ucora-red);
    color: var(--ucora-red);
}
.section-button.sb-full-red {
    background: var(--ucora-red);
    border-color: var(--ucora-red);
    color: white;
}
.section-button.sb-full-red:hover {
    background: var(--ucora-red-darker);
    border-color: var(--ucora-red-darker);
    color: white;
}
.banner {
    margin: 0 auto;
    background: var(--color-dark);
    position: relative;
}
.banner-image {
    display: block;
    width: 100%;
    max-width: 3840px;
    height: auto;
    object-fit: cover;
    max-height: 1000px;
    object-position: 0 0;
}
.banner .section-center {
    position: absolute;
    top: 0; right: 0;
    bottom: 0; left: 0;
}
.banner-desc {
    color: white;
    position: absolute;
    top: 50%;
    left: var(--body-padding);
    right: var(--body-padding);
    transform: translateY(-50%);
}
.banner-desc h1 {
    margin: 0;
    max-width: 600px;
}
.banner-desc h1 br {
    display: none;
}
.banner-desc h1 br.desktop {
    display: block;
}
.banner-desc h2 {
    font-size: 30px;
    font-weight: var(--font-regular);
    line-height: 1.2;
    margin: 60px 0;
}
.banner-desc strong {
    font-weight: var(--font-medium);
}
.simple-text {
    padding: 50px 0;
    font-size: 26px;
    font-weight: var(--font-light);
    color: var(--color-dark);
    line-height: 1.5;
    text-align: justify;
}
.simple-text p {
    margin: 0;
}
.forceBlack {
    color: black;
}
.feature {
    padding: 100px 0;
    color: white;
    box-sizing: border-box;
}
.feature-consult {
    background: url(../assets/images/ucora-cultivating-flow-at-work.jpg) no-repeat center var(--ucora-red-darker);
    background-size: cover;
}
.feature-visibility {
    background: url(../assets/images/ucora-local-and-global.jpg) no-repeat center white;
    background-size: cover;
}
.feature-why {
    background: url(../assets/images/ucora-why-is-important.jpg) no-repeat center white;
    background-size: cover;
}
.feature-lets-talk {
    background: url(../assets/images/ucora-ready-to-take-your-team-to-the-next-level.jpg) no-repeat center;
    background-size: cover;
}
.feature-lets-talk.f-blue {
    background-image: url(../assets/images/ucora-ready-to-take-your-team-to-the-next-level-blue.jpg);
}
.feature-lets-talk.workplace {
    background-image: url(../assets/images/ucora-ready-to-transform-your-workplace.jpg);
}
.feature-lets-talk.workplace-second {
    background-image: url(../assets/images/ucora-ready-to-transform-your-workplace-second.jpg);
}
.feature.feature-lets-talk {
    padding: 190px 0;
}
.feature.feature-lets-talk h1 {
    margin-bottom: 65px;
}
.feature-container {
    padding: 30px 40px;
    border-left: solid 1px;
}
.feature-consult .feature-container,
.feature-consult .feature-lets-talk {
    border-color: white;
}
.feature h3 {
    font-size: 24px;
    font-weight: var(--font-medium);
    letter-spacing: .2rem;
    text-transform: uppercase;
    margin: 0;
}
.feature h1 {
    margin: 0;
}
.feature p {
    width: 100%;
    max-width: 600px;
    font-weight: var(--font-light);
    line-height: 1.5;
    margin: 60px 0 50px;
}
.featurewide p {
    max-width: 1200px !important;
}
.features {
    background: url(../assets/images/ucora-we-support-connected-workplaces.jpg) no-repeat center #01121c;
    background-size: cover;
    color: white;
}
.features.about {
    background-image: url(../assets/images/ucora-we-support-connected-workplaces-about.jpg);
}
.features.clients {
    background-image: url(../assets/images/ucora-how-our-clients-benefit.jpg);
}
.features p {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: var(--font-regular);
    margin: 0;
    padding: 85px 0 50px;
    font-size: 45px;
    text-align: center;
}
.features.clients strong {
    font-size: 35px;
    font-weight: var(--font-medium);
    text-transform: uppercase;
}
.features.clients .features-items span {
    font-size: 25px;
}
.features.features-ivy .features-items span {
    font-size: 18px;
}
.features-items {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    padding-bottom: 50px;
}
.features-items span {
    padding: 50px 50px 100px;
    font-size: 25px;
    font-weight: var(--font-light);
    line-height: 1.4;
    border-right: solid 1px white;
    text-align: center;
}
.features.features-ivy .features-items span {
    flex: 1;
    padding: 50px 30px 100px;
}
.features-items span:last-of-type {
    border-right: none;
}
.features-items img {
    display: block;
    margin: 0 auto 40px;
    height: 65px;
}
.clients-box {
    padding: 0 0 80px 0;
    font-weight: var(--font-light);
}
.clients-list {
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 1fr;
}
.clients-list p {
    display: flex;
    box-sizing: border-box;
    padding: 10px 25px 10px 0;
    margin: 0;
    overflow: hidden;
    list-style: none;
    color: var(--color-dark);
    position: relative;
}
.clients-list p:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0; left: 0; right: 25px;
    height: 1px;
    background: var(--color-dark-half);
}
.clients-list p strong {
    font-weight: var(--font-medium);
}
.text-slide {
    background: var(--ucora-red);
    padding: 100px 0;
    font-size: 24px;
    color: white;
    line-height: 1.5;
    text-align: center;
}
.text-slide-dark {
    background: var(--color-dark);
    padding: 100px 0;
    font-size: 24px;
    color: white;
    line-height: 1.5;
    text-align: center;
}
.text-slide .lightSlider > div,
.text-slide .lightSlider > p {
    margin: 0;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}
.text-slide-white {
    background: white;
    color: var(--color-dark);
    font-weight: var(--font-bold);
}
#testimonials p {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    font-size: 30px;
    font-weight: var(--font-regular);
    text-align: center;
}
#testimonials small {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: var(--font-medium);
    margin: 20px 0;
}
#companies img {
    height: 56px;
}
#companies img.more-height {
    height: 70px;
    margin-top: -7px;
}
footer {
    background: var(--color-dark);
    color: white;
    padding: 100px 0;
}
.footer-logo {
    display: block;
    position: absolute;
    top: 9px; left: var(--body-padding);
}
.footer-logo img {
    width: var(--logo-width);
}
.footer-cols {
    display: flex;
    flex-wrap: wrap;
    width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 2;
}
.footer-cols > div {
    margin-right: 70px;
}
.footer-cols > div:last-of-type {
    margin-right: 0;
}
.footer-nav {
    position: relative;
}
.footer-nav,
.footer-nav li {
    list-style: none;
    margin: 0; padding: 0;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    letter-spacing: .2rem;
}
.footer-nav a,
.footer-nav a:link,
.footer-nav a:visited {
    color: white;
}
.footer-nav a:hover,
.footer-nav a:active {
    color: var(--ucora-red);
}
footer .linkedin {
    position: relative;
    padding-left: 40px;
}
footer .linkedin:before {
    content: "";
    display: inline-block;
    width: 30px; height: 30px;
    background: url(../assets/images/linkedin.png) no-repeat center;
    position: absolute;
    top: -5px; left: 0;
}
.col-contact .linkedin {
    display: none;
    padding-left: 0;
}
.col-contact .linkedin:before {
    display: none;
}
footer .col-contact a,
footer .col-contact a:link,
footer .col-contact a:hover {
    color: white;
}
footer .col-contact a[href]:hover,
footer .col-contact a[href]:active {
    text-decoration: underline;
}
.lSAction > .lSPrev {
    left: 0;
}
.lSAction > .lSNext {
    right: 0;
}
.lSAction > a {
    opacity: .8;
}
.lSSlideOuter .lSPager.lSpg > li a {
    background: white;
    opacity: .5;
}
.lSSlideOuter .lSPager.lSpg > li.active a,
.lSSlideOuter .lSPager.lSpg > li:hover a {
    background: white;
    opacity: 1;
}
.lSSlideOuter .lSPager.lSpg > li:first-of-type {
    padding-left: 0;
}
.lSSlideOuter .lSPager.lSpg > li a {
    width: 11px; height: 11px;
}
.arrow-list {
    list-style: none;
    padding: 0;
}
.arrow-list li {
    position: relative;
    margin-bottom: 20px;
}
.arrow-list li:before {
    content: "";
    display: inline-block;
    background: url(images/arrow-right.svg) no-repeat 0 0;
    background-size: 19px;
    width: 19px; height: 19px;
    margin-right: 5px;
}
.contact-text {
    width: 100%;
    max-width: 1300px;
}
.contact label {
    display: block;
    width: 100%;
    max-width: 1300px;
    position: relative;
}
.contact input[type=text],
.contact input[type=email],
.contact textarea,
.contact button,
.contact select {
    display: block;
    width: 100%;
    height: 90px;
    background: var(--color-input-bg);
    margin: 35px 0;
    padding: 20px 25px;
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: var(--font-regular);
    color: var(--color-dark);
    border: none;
    border-radius: 6px;
    position: relative;
    box-sizing: border-box;
    outline: none;
}
.contact input::placeholder,
.contact textarea::placeholder {
    color: var(--color-input-placeholder);
}
.contact textarea {
    padding: 25px;
    min-height: 230px;
    resize: vertical;
}
.contact button {
    max-width: 500px;
    background: var(--ucora-red);
    color: white;
}
.contact button:hover {
    background: var(--ucora-red-darker);
    cursor: pointer;
}
.contact select {
    padding-right: 90px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--color-input-placeholder);
}
.contact select option {
    color: var(--color-dark);
}
.contact select.selected {
    color: var(--color-dark);
}
.select:after {
    content: "";
    display: block;
    background: url(images/expand-collapse.svg) no-repeat 0 0 transparent;
    background-size: 24px;
    width: 24px; height: 24px;
    position: absolute;
    top: 50%; right: 40px;
    transform: translateY(-50%);
    pointer-events: none;
}
.select.focus:after {
    background-position: 0 -24px;
}
.contact .message {
    display: none;
    max-width: 1300px;
    margin: 30px 0 0;
    padding: 10px 20px;
    font-weight: var(--font-medium);
    border-radius: 5px;
    box-sizing: border-box;
    position: relative;
}
.contact .message.show {
    display: block;
}
.contact .message.error {
    background: var(--color-error-bg);
    border: solid 1px var(--color-error-border);
}
.contact .message.success {
    background: var(--color-success-bg);
    border: solid 1px var(--color-success-border);
}
.contact .invalid:before {
    content: "required";
    background: var(--ucora-red);
    color: white;
    position: absolute;
    top: -10px; right: 10px;
    z-index: 10;
    font-size: 14px;
    border-radius: 3px;
    line-height: 1;
    padding: 3px 5px;
}
.contact .counter {
    display: none;
    position: absolute;
    bottom: 5px; right: 10px;
    font-size: smaller;
    background: var(--color-input-bg);
}
.contact textarea:focus + .counter {
    display: block;
}
.form {
    display: flex;
    gap: 50px;
}
.form > div {
    flex: 1;
}
.form .inputs {
    max-width: 500px;
}
.form .output {
    line-height: 2;
}
.form input[type="number"],
.form button {
    display: block;
    width: 100%;
    height: 60px;
    background: var(--color-input-bg);
    margin: 0 0 25px 0;
    padding: 10px 25px;
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: var(--font-regular);
    color: var(--color-dark);
    border: none;
    border-radius: 6px;
    position: relative;
    box-sizing: border-box;
    outline: none;
}
.form input::placeholder {
    color: var(--color-input-placeholder);
}
.form label {
    font-size: smaller;
}
.form button {
    background: var(--ucora-red);
    color: white;
}
.form button:hover {
    background: var(--ucora-red-darker);
    cursor: pointer;
}
.form .output h2 {
    margin: 0 0 20px;
    font-size: larger;
    line-height: 1;
    color: var(--color-dark-lighter);
}
.form .output .msg {
    margin-top: 20px;
    line-height: 1.4;
    font-size: smaller;
}
.form strong {
    font-weight: var(--font-bold);
}
.form b {
    font-weight: var(--font-medium);
}
.client-video {
    display: grid;
    grid-template-columns: 480px 1fr;
}
.video-desc {
    background: var(--ucora-red);
    color: white;
    box-sizing: border-box;
    padding: 60px;
}
.video-desc h4 {
    font-size: 30px;
    font-weight: var(--font-medium);
    border-bottom: solid 1px white;
    margin: 0 0 30px;
    padding-bottom: 20px;
    line-height: 1.2;
}
.video-desc p {
    font-size: 24px;
    font-weight: var(--font-light);
    text-align: left;
    margin-bottom: 40px;
}
.video-desc a {
    font-size: 20px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    color: var(--color-dark);
    letter-spacing: 2px;
}
.video-desc a:hover {
    cursor: pointer;
    border-bottom: solid 1px var(--color-dark);
    padding-bottom: 5px;
}
.video-desc a:before {
    content: "";
    display: inline-block;
    background: url(images/play-button.svg) no-repeat center;
    background-size: 24px;
    width: 24px; height: 24px;
    margin-right: 11px;
    position: relative;
    top: 4px;
}
.video-content {
    margin-left: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.video-content div {
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url(../assets/images/video-preview.jpg) no-repeat left;
    background-size: cover;
    transition: .2s;
}
.video-content:hover div {
    top: -20px; right: -20px; bottom: -20px; left: -20px;
}
.video-content:after {
    content: "";
    background: url(images/play-button-white.svg) no-repeat center;
    background-size: 120px 120px;
    width: 120px; height: 120px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: .6;
}
.video-content:hover:after {
    opacity: .8;
}
.video-play {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: white;
    z-index: 1000;
}
.video-play > div {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}
.video-play .close {
    display: block;
    top: 30px; right: 30px;
    transform: none;
}
.theVideo-dimensions {
    width: 1200px !important;
    height: 676px !important;
}
.close {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    opacity: 0.5;
    cursor: pointer;
}
.close:hover {
    opacity: 1;
}
.close:before, .close:after {
    content: "";
    position: absolute;
    left: 13px;
    width: 2px; height: 29px;
    background: var(--color-dark);
}
.close:before {
    transform: rotate(45deg);
}
.close:after {
    transform: rotate(-45deg);
}
.blog-item {
    margin-bottom: 50px;
    display: flex;
    align-items: stretch;
    max-height: 450px;
}
.blog-item .blog-row-img {
    display: block;
    width: 450px; height: 450px;
    background: no-repeat left;
    background-size: cover;
    margin-right: 20px;
}
.blog-item .blog-content {
    display: flex;
    flex-direction: column;
}
.blog-item h2 {
    background: var(--ucora-red);
    margin: 0;
    text-transform: uppercase;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 3px;
    box-sizing: border-box;
}
.blog-item p {
    margin: 0;
    background: #eee;
    font-size: 1.3rem;
    padding: 30px 40px;
    box-sizing: border-box;
    overflow-y: auto;
    height: 100%;
}
.blog-info {
    display: block;
    font-size: 1rem;
    border-top: solid 2px #ffffff99;
    font-family: 'Barlow', sans-serif;
    padding-top: 10px;
    margin-top: 40px;
    letter-spacing: normal;
}
.blog-info span {
    text-transform: none;
}
.blog-title .blog-info span {
    display: inline-block;
    font-weight: 400;
    color: white;
}
.blog-title {
    display: block;
    color: var(--color-dark);
    padding: 30px 40px;
}
.blog-single h2.title {
    text-transform: uppercase;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 3px;
    padding-bottom: 50px;
    border-bottom: solid 1px var(--color-dark);
}
.blog-single p {
    margin: 20px 0;
    text-align: left;
}
.blog-single .blog-info {
    font-weight: 300;
    margin: 0; padding: 0;
    opacity: .8;
}
.blog-single-img {
    width: 100%;
    height: 490px;
    object-fit: cover;
}
.blog-single-img.blog-single-img-top {
    object-position: center -100px;
}
.page-single-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
}
p.blog-next-prev {
    margin-top: 50px;
    padding: 15px 0;
    border-top: solid 1px var(--color-dark);
    border-bottom: solid 1px var(--color-dark);
    text-transform: uppercase;
    text-align: center;
}
p.middle-paragraph {
    margin-top: 15px;
}
.blog-content-img {
    display: block;
    width: 100%;
    margin: 50px 0 0;
}
.blog-content-img-desc {
    background: #eee;
    padding: 50px;
    margin-bottom: 50px;
}
.blog-content-img-desc h4 {
    margin-bottom: 10px;
}
.blog-content-img-desc h4:first-of-type {
    margin-top: 0;
}
.blog-content-img-desc h2 span {
    display: inline-block;
    font-weight: 400;
    margin-left: 5px;
}
.blog-single blockquote {
    padding: 15px 0;
    margin: 30px 0;
    border-top: solid 1px var(--color-dark);
    border-bottom: solid 1px var(--color-dark);
    text-transform: uppercase;
    text-align: center;
}
.blog-single-img-desc {
    display: flex;
    align-items: stretch;
}
.blog-single-img-desc h2 {
    margin-top: 0;
}
.blog-single-img-desc img {
    width: 60%;
}
.blog-single-img-desc div {
    background: var(--ucora-red-darker);
    color: white;
    padding: 50px;
}
.blog-num {
    display: inline-block;
    background: var(--ucora-red);
    width: 25px; height: 25px;
    border-radius: 100%;
    text-align: center;
    color: white;
    line-height: 24px;
    font-size: 18px;
    position: relative;
    top: -2px;
    margin-right: 5px;
}

table.responsive {
    width: 100%;
    margin: 50px 0;
    padding: 0;
    font-size: .9em;
    border: 1px solid var(--color-gray);
    border-collapse: collapse;
    table-layout: fixed;
}
table.responsive.alt {
    border: none 0;
}
table.responsive thead tr {
    background: var(--color-dark);
    color: white;
}
table.responsive thead tr {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: -1px;
    z-index: 100;
}
table.responsive tbody tr {
    background: var(--color-gray-light);
    border: 1px solid var(--color-gray);
    padding: .35em;
}
table.responsive tbody tr:nth-of-type(odd) {
    background: var(--color-gray-lighter);
}
table.responsive th,
table.responsive td {
    padding: .625em;
    text-align: center;
    position: relative;
}
table.responsive th {
    letter-spacing: .1em;
    text-transform: uppercase;
}
table.responsive th.alt {
    text-transform: capitalize;
}
table.responsive td {
    border-right: 1px solid var(--color-gray);
}
table.responsive .icon {
    width: 20px;
    position: absolute;
    top: 50%; right: 50%;
    transform: translate(100px, -45%);
}
table.responsive .alt .icon {
    transform: translate(50px, -45%);
}
ul.wide {
    line-height: 1.6;
    margin: 30px 0;
}
ul.wide li {
    margin-bottom: 10px;
}
.type-anim > .wrap {
    position: relative;
    padding-right: 6px;
}
.type-anim > .wrap:after {
    content: "";
    position: absolute;
    top: 6px; right: 0; bottom: 0;
    width: 0.08em;
    background: var(--ucora-red);
}

.canva-iframe {
    width: 100%;
    height: 600px;
    border: none;
    padding: 0;
    margin: 0;
}


/*
 * Responsive
 */
@media (max-width: 1440px) {
    section h1,
    .page-title {
        font-size: 5.2vw;
    }
    .page h2 {
        font-size: 24px;
    }
    .banner-desc h1 {
        font-size: 4vw;
    }
    .banner-desc h2 {
        font-size: 2vw;
    }
    .features-items {
        width: 100%;
        display: block;
    }
    .features-items span {
        display: block;
        border-right: none;
        border-bottom: solid 1px white;
        margin: 0 auto;
        padding: 50px;
    }
    .features-items span:last-of-type {
        border-bottom: none;
    }
    .blog-item .blog-row-img {
        width: 350px;
        background-position: center;
    }
    .blog-item .blog-row-img-left {
        background-position: left;
    }
}
@media (max-width: 1200px) {
    footer {
        padding: 50px 0;
    }
    footer .section-center {
        padding: 0 var(--body-padding);
    }
    .social {
        margin-top: 50px;
        text-align: center;
    }
    .clients-list {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-cols {
        width: 100%;
        justify-content: flex-end;
    }
    .theVideo-dimensions {
        width: 1000px !important;
        height: 564px !important;
    }
    .blog-single-img-desc {
        flex-direction: column;
    }
    .blog-single-img-desc img {
        width: 100%;
    }
    .blog-single-img-desc div {
        padding: 30px;
        font-size: 1.3rem;
    }
    .blog-content-img-desc {
        padding: 30px;
    }
    .blog-content-img-desc h4 {
        font-size: 1.4rem;
    }
    .blog-item p {
        text-align: left;
    }
    .section-two {
        flex-direction: column;
    }
    .pages-content .section-two:nth-of-type(even) {
        flex-direction: column-reverse;
    }
    .block-left .block-content {
        float: none;
        padding-right: 50px;
        margin: 0 auto;
    }
    .block-right .block-content {
        float: none;
        padding-left: 50px;
        margin: 0 auto;
    }
    .block-image {
        padding: 300px;
    }
    .form .inputs {
        max-width: 400px;
    }
}
@media (max-width: 1024px) {
    :root {
        --body-width: 100%;
    }
    .mobile {
        display: block;
    }
    .menu {
        position: absolute;
        top: 10px; right: 0;
        transform: scale(.5);
        background-color: transparent;
        border: none;
        display: flex;
        padding: 0;
        outline: none;
    }
    .line {
        fill: none;
        stroke: var(--color-dark);
        stroke-width: 6;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .page .line {
        stroke: white;
    }
    .line1 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }
    .line2 {
        stroke-dasharray: 60 60;
        stroke-width: 6;
    }
    .line3 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }
    .opened .line1 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }
    .opened .line2 {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
        stroke-width: 6;
    }
    .opened .line3 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }
    .text-slide p,
    .text-slide #testimonials p {
        padding: 0;
    }
    nav {
        display: none;
        background: white;
        position: absolute;
        top: 120px; left: 0; right: 0;
        box-sizing: border-box;
        padding: 0 20px 20px;
        z-index: 10;
    }
    .page nav {
        background: var(--ucora-red);
    }
    nav a {
        display: block;
        margin: 0;
        padding: 15px 0 15px 20px;
        border-bottom: solid 1px var(--color-gray);
        line-height: 1.5;
    }
    .page nav a {
        border-bottom-color: var(--ucora-red-border);
    }
    .sub-nav {
        display: block;
    }
    .sub-nav > div {
        padding-top: 0;
        margin-left: 0;
        position: static;
        top: auto; left: auto;
        white-space: normal;
    }
    .sub-nav:hover > div {
        display: none;
    }
    .sub-nav > div a {
        display: block;
        margin: 0;
        padding: 15px 0 15px 20px;
        border: none;
        border-bottom: solid 1px var(--color-gray);
        box-shadow: none;
        background: inherit;
        box-sizing: border-box;
        line-height: 2;
    }
    .sub-nav > div a:first-of-type {
        border-bottom: solid 1px var(--color-gray);
    }
    .sub-nav > a i {
        display: block;
        position: absolute;
        top: 0; bottom: 0; right: 0;
        width: 60px;
        cursor: pointer;
        pointer-events: all;
    }
    .sub-nav > a i:hover {
        background: var(--color-gray-light);
    }
    .page .sub-nav > a i:hover {
        background: var(--ucora-red-border);
    }
    .sub-nav > a i:after {
        content: "";
        display: block;
        width: 18px; height: 18px;
        background: url(images/expand-collapse-arrow.svg) no-repeat 0 0;
        background-size: 18px;
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
    }
    .sub-nav > a i.is-open:after {
        background-position: 0 -18px;
    }
    .page .sub-nav > div a {
        border-bottom-color: var(--ucora-red-border);
    }
    .page .sub-nav > div a {
        background: inherit;
    }
    section p,
    section li {
        font-size: 20px;
    }
    .page h2 {
        font-size: 22px;
    }
    .banner-desc h2 {
        margin: 50px 0;
    }
    .contact-button,
    .contact-button:link,
    .contact-button:visited {
        margin: 20px 0 0;
        border: none;
    }
    .logo {
        position: absolute;
        top: 50%; left: var(--body-padding);
        transform: translateY(-50%);
    }
    .section-button {
        font-size: 16px;
        padding: 15px 25px;
    }
    .long-button {
        padding: 10px 30px;
        line-height: 1.5;
        text-align: center;
    }
    .features p {
        font-size: 32px;
        font-weight: var(--font-medium);
    }
    .text-slide {
        font-size: 21px;
        padding: 60px 0;
    }
    #testimonials p {
        font-size: 25px;
    }
    .feature.feature-lets-talk {
        padding: 100px 0;
    }
    .feature-visibility {
        background-position: center;
    }
    .clients-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-cols > div:nth-of-type(2) {
        margin-right: 0;
    }
    .linkedin-container {
        display: none;
    }
    .col-contact .linkedin {
        display: inline;
    }
    .client-video {
        grid-template-columns: 1fr;
        grid-auto-rows: 1fr;
    }
    .video-desc {
        margin-bottom: 20px;
    }
    .video-content {
        margin-left: 0;
    }
    .theVideo-dimensions {
        width: 700px !important;
        height: 394px !important;
    }
    table.responsive {
        font-size: .8em;
    }
}
@media (max-width: 768px) {
    section h1,
    .page-title {
        font-size: 6.2vw;
    }
    .page h2 {
        font-size: 22px;
    }
    .banner-desc h1 {
        font-size: 4vw;
    }
    .banner-desc h2 {
        font-size: 2.5vw;
        margin: 40px 0;
    }
    .pages-content p,
    .simple-text {
        text-align: left;
    }
    .footer-cols {
        justify-content: flex-start;
    }
    .footer-logo {
        margin: 0 0 var(--body-padding) 0;
        position: relative;
        text-align: left;
        left: 0;
    }
    .form {
        flex-direction: column;
    }
    .form label {
        font-size: 18px;
    }
    .clients-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .client-video {
        grid-auto-rows: 1fr 400px;
    }
    .theVideo-dimensions {
        width: 400px !important;
        height: 226px !important;
    }
    .blog-item {
        flex-direction: column;
        max-height: none;
    }
    .blog-item .blog-row-img {
        width: 100%; height: 450px;
        background-position: center;
        margin-right: 0;
    }
    .blog-item .blog-row-img-left {
        background-position: left;
    }
    .blog-item .blog-content {
        display: block;
    }
    .blog-item h2 {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    .blog-item p {
        font-size: 1.2rem;
        padding: 30px;
        max-height: none;
        height: auto;
    }
    .blog-info {
        font-size: .9rem;
    }
    .blog-title {
        padding: 30px;
    }
    .blog-single-img.blog-single-img-top {
        object-position: center top;
    }    

    table.responsive {
        border: 0;
        font-size: .7em;
    }
    table.responsive thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    table.responsive tr {
        display: block;
        border-bottom: 3px solid var(--color-gray);
        margin-bottom: .625em;
    }
    table.responsive td {
        display: flex;
        border-bottom: 1px solid var(--color-gray);
        border-right: none;
        text-align: left;
    }
    table.responsive td:before {
        content: attr(data-label);
        font-weight: bold;
        text-transform: uppercase;
        border-right: solid 1px var(--color-gray);
        min-width: 130px;
        margin-right: 20px;
    }
    table.responsive.alt td:before {
        width: 50%;
        min-width: 50%;
        text-transform: none;
    }
    table.responsive td:last-child {
        border-bottom: 0;
    }
    table.responsive .icon,
    table.responsive .alt .icon {
        width: 18px;
        top: 18px; right: 10px;
        transform: translate(0, 0);
    }
    .block-right .block-content,
    .block-left .block-content {
        padding: var(--body-padding);
    }
    .type-anim > .wrap {
        padding-right: 4px;
    }
    .type-anim > .wrap:after {
        top: 4px;
        width: 0.1em;
    }
    .canva-iframe {
        height: 400px;
    }
}
@media (max-width: 425px) {
    :root {
        --body-padding: 30px;
    }
    .mobile-only {
        display: block;
    }
    section h1,
    .page-title {
        font-size: 10.2vw;
        line-height: 1.2;
    }
    .banner-desc h1 {
        font-size: 5vw;
    }
    .banner-desc h2 {
        font-size: 4vw;
    }
    .banner-desc h1 br {
        display: block;
    }
    .simple-text p {
        text-align: left;
    }
    .banner-image {
        width: auto;
        height: 450px;
        margin-left: -45%;
    }
    #testimonials p {
        font-size: 23px;
    }
    .feature-container {
        padding: 0;
        border-left: none;
    }
    .feature-lets-talk br {
        display: none;
    }
    .logo img {
        width: var(--logo-width-mobile);
        position: relative;
        top: 1px;
    }
    .footer-cols > div {
        margin: 0 50px 20px 0;
    }
    .footer-logo img {
        width: var(--logo-width-mobile);
    }
    .contact input[type=text],
    .contact input[type=email],
    .contact textarea,
    .contact button,
    .contact select {
        height: 60px;
        padding: 10px 20px;
        font-size: 20px;
    }
    .contact textarea {
        padding: 20px;
    }
    .select:after {
        right: 20px;
    }
    .clients-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .video-desc {
        padding: 30px;
    }
    .theVideo-dimensions {
        width: 300px !important;
        height: 170px !important;
    }
}