/*--------------------------------------------
              CSS RESET SECTION
---------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ v2.0b2 | 201101 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym,
address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead,
tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, menu, nav, output,
ruby, section, summary, time, mark,
audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
img{vertical-align: top;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, menu, nav,
section, canvas, main, video { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
html, body {width: 100%; height: 100%;}
html{box-sizing: border-box;}
*, *:before, *:after{box-sizing: inherit;}

html, body{
    width: 100%;
    height: 100%;
}


/*--------------------------------------------
              FONTS SECTION
---------------------------------------------*/

@font-face {
    font-family: 'ITC Kabel Std';
    src: url('fonts/ITCKabelStd-Medium.eot');
    src: url('fonts/ITCKabelStd-Medium.eot?#iefix') format('embedded-opentype'),
    url('fonts/ITCKabelStd-Medium.woff2') format('woff2'),
    url('fonts/ITCKabelStd-Medium.woff') format('woff'),
    url('fonts/ITCKabelStd-Medium.ttf') format('truetype'),
    url('fonts/ITCKabelStd-Medium.svg#ITCKabelStd-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'ITC Kabel Std';
    src: url('fonts/ITCKabelStd-Book.eot');
    src: url('fonts/ITCKabelStd-Book.eot?#iefix') format('embedded-opentype'),
    url('fonts/ITCKabelStd-Book.woff2') format('woff2'),
    url('fonts/ITCKabelStd-Book.woff') format('woff'),
    url('fonts/ITCKabelStd-Book.ttf') format('truetype'),
    url('fonts/ITCKabelStd-Book.svg#ITCKabelStd-Book') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Tahoma';
    src: url('fonts/Tahoma.eot');
    src: url('fonts/Tahoma.eot?#iefix') format('embedded-opentype'),
    url('fonts/Tahoma.woff2') format('woff2'),
    url('fonts/Tahoma.woff') format('woff'),
    url('fonts/Tahoma.ttf') format('truetype'),
    url('fonts/Tahoma.svg#Tahoma') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tahoma';
    src: url('fonts/Tahoma-Bold.eot');
    src: url('fonts/Tahoma-bold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Tahoma-Bold.woff2') format('woff2'),
    url('fonts/Tahoma-Bold.woff') format('woff'),
    url('fonts/Tahoma-Bold.ttf') format('truetype'),
    url('fonts/Tahoma-Bold.svg#Tahoma') format('svg');
    font-weight: bold;
    font-style: normal;
}


/*--------------------------------------------
              GENERAL SECTION
---------------------------------------------*/

/* -- flexbox utilities -- */
.flexCont { display: flex; }
.justifyFlexEnd {justify-content: flex-end;}
.justifyFlexStart {justify-content: flex-start;}
.justifyCenter {justify-content: center;}
.justifyBetween {justify-content: space-between;}
.justifyAround {justify-content: space-around;}
.justifyEvenly {justify-content: space-evenly;}
.alignItemsCenter {align-items: center;}

.inner {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

p {
    font-family: 'Tahoma', sans-serif;
    color: #4D4D4F;
    font-size: 0.95em;
    line-height: 1.5em;
    padding-bottom: 30px;
}

p.no-padding {
    padding-bottom: 0;
}

a {
    font-weight: bold;
    color: inherit;
    text-decoration: underline;
}

a.standard {
    font-weight: normal;
}

a:hover {
    color: #840B55;
    transition: all 0.3s ease-in;
}

a.virtual {
    text-decoration: none;
}

a.virtual:hover {
    color: #40B1A1;
}

a.teal:hover {
    color: #40B1A1;
}

b {
    font-weight: bold;
}

h1 {
    font-family: 'ITC Kabel Std', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #ffffff;
    font-size: 3.6em;
    line-height: 1.2em;
    text-align: left;
    margin: 0;
    padding: 0 0 30px 0;
}

h2 {
    font-family: 'ITC Kabel Std', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.8em;
    line-height: 1.2em;
    text-align: left;
    margin: 0 0 30px;
}

h3 {
    font-family: 'ITC Kabel Std', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #ffffff;
    font-size: 1.1em;
    line-height: 1.4em;
    text-align: left;
}

h4 {
    font-family: 'Tahoma', sans-serif;
    font-style: normal;
    color: #4D4D4F;
    font-size: 1.1em;
    line-height: 1.4em;
    text-align: left;
    padding: 0 0 30px 0;
}

h5 {
    font-family: 'ITC Kabel Std', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.2em;
    line-height: 1.2em;
    text-align: left;
}

.modal-button {
    font-family: 'Tahoma', sans-serif;
    font-style: normal;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    border: solid 2px #ffffff;
    color: #ffffff;
    background-color: transparent;
    display: inline-block;
    padding: 8px 35px;
    margin-top: 20px;
    text-align: center;
    cursor: pointer;
}

.modal-button:hover {
    background-color: #ffffff;
    color: #174A5B;
    transition: all 0.3s ease-in;
}

.arrow {
    border: solid #FFFFFF;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
}

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

.grey {
    color: #4D4D4F;
}

.white {
    color: #ffffff;
}

.purple {
    color: #840B55;
}

hr {
    border: none;
    border-top: 3px dotted #840B55;
    width: 100%;
}

.stat {
    font-size: 2em;
}


/*--------------------------------------------
              MAIN SECTION
---------------------------------------------*/

.header-block {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-image: url(../img/banner.svg);
}

.virtual-block {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-image: url(../img/virtual-meetings.svg);
}

.white-block {
    background-color: #ffffff;
    padding: 50px 0 50px 0;
}

.blue-block {
    background-color: #174A5B;
    padding: 50px 0 50px 0;
}

.purple-block {
    background-color: #840B55;
    padding: 50px 0 50px 0;
}

.grey-block {
    background-color: #ECEEEF;
    padding: 50px 0 50px 0;
}

.mobile-header-block {
    display: none;
}

.title {
    width: 100%;
    max-width: 350px;
    background-color: #174A5B;
    padding: 50px 30px 35px;
}

.pro-bono-intro {
    padding-bottom: 68px;
}

.icon-top {
    margin: 0 30px 0 0;
    padding: 0 0 20px 0;
}

.icon-bottom {
    margin: 0 30px 0 0;
}

.padding-bottom {
    padding: 0 0 30px 0;
}

.icon-margin {
    margin: 0 30px 30px 0;
}

.icon-sml {
    margin: 0 15px 15px 0;
}

.image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.even-column-left {
    width: 50%;
    padding: 0 20px 0 0;
}

.even-column-right {
    width: 50%;
    padding: 0 0 0 20px;
}

.even-column-right.purple-block {
    width: 45%;
    background-color: #840B55;
    padding: 20px 20px 0 20px;
    margin-left: 40px;
}

.gif-column-left {
    width: 50%;
}

.gif-column-right {
    width: 50%;
}

/*--------------------------------------------
               MODAL SECTION
---------------------------------------------*/

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 125px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    position: relative;
    background-color: #FFFFFF;
    margin: auto;
    padding: 0;
    width: 800px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

.modal-content.scroll-height {
    height: 600px;
}

@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

.close {
    color: #174A5B;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding-top: 0;
}

.close:hover,
.close:focus {
    color: #840B55;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.modal-header {
    padding: 30px 40px;
    background-color: #FFFFFF;
}

.modal-body {
    padding: 10px 40px 30px 40px;
}

.modal-column {
    width: 100%;
    padding: 0 20px 0 30px;
}

.modal-column.scroll {
    height: 460px;
    overflow: scroll;
}

/*--------------------------------------------
              CAROUSEL SECTION
---------------------------------------------*/

/* Set a container that the cards will fill */
.container {
    margin: auto;
    width: 918px;
}
@media (min-height: 770px) {
    .container {
        width: 918px;
    }
}
@media (max-width: 1012px) {
    .container {
        width: 738px
    }
}
@media (max-width: 767px) {
    .container {
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.cards {
//
}

.cards .cards-inner {
    padding-bottom: 10px;
    color: #ffffff;
}

.cards .cards-carousel {
    box-sizing: border-box;
    padding: 0 60px;
}
@media (max-width: 1012px) {
    .cards .cards-carousel {
        padding: 0 45px;
    }
}
@media (max-width: 767px) {
    .cards .cards-carousel {
        padding: 0 30px;
    }
}

.cards .cards-item {
    /*padding: 20px;*/
    box-sizing: border-box;
    /*border: solid 1px #e5e5e5;*/
    position: relative;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1012px) {
    .cards .cards-item {
        padding: 15px;
    }
}
@media (max-width: 767px) {
    .cards .cards-item {
        padding: 10px;
    }
}


.cards .cards-item 	p {
    font-family: 'ITC Kabel Std', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.4em;
    margin: 20px 0 0 0;
    /*padding-top: -50px;*/
    /*padding-left: 30px;*/
    /*background-color: #ffffff;*/
}
@media (max-width: 1012px) {
    .cards .cards-item 	p {
        margin-top: 15px;
    }
}
@media (max-width: 767px) {
    .cards .cards-item 	p {
        margin-top: 10px;
    }
}

.cards .cards-item 	p a {
    color: #ffffff;
    text-decoration: none;
}

.cards .cards-item 	p a:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


.cards .owl-carousel .owl-nav button.owl-prev,
.cards .owl-carousel .owl-nav button.owl-next {
    margin: 0;
    padding: 0;
    width: 20px;
    height: 33px;
    background-color: transparent;
    border-radius: 0;
    background-image: url(../img/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    outline: none;
}

.cards .owl-carousel .owl-nav button.owl-prev:hover,
.cards .owl-carousel .owl-nav button.owl-next:hover {
    background-color: transparent;
    background-image: url(../img/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
}

.cards .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 35%;
    left: 0;
    margin-top: -15px;
    transform: rotate(180deg);
}
.cards .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 35%;
    right: 0;
    margin-top: -15px;
}

.cards .owl-dots {
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    text-align: center;
}

.cards .owl-dots button.owl-dot {
    display: inline-block;
    margin: 0 4px;
    outline: none;
}

.cards .owl-dots button.owl-dot.active span,
.cards .owl-dots button.owl-dot:hover span {
    background-color: white;
    opacity: 1;
}

.cards .owl-dots button.owl-dot span {
    display: block;
    background-color: white;
    opacity: 0.3;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}


/* Set a container that the testimonials will fill */
.container {
    margin: auto;
    width: 918px;
}
@media (min-height: 770px) {
    .container {
        width: 918px;
    }
}
@media (max-width: 1012px) {
    .container {
        width: 738px
    }
}
@media (max-width: 767px) {
    .container {
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
}



.testimonials {
//
}

.testimonials .testimonials-inner {
    padding-bottom: 40px;
}

.testimonials .testimonials-carousel {
    box-sizing: border-box;
    padding: 0 60px;
}
@media (max-width: 1012px) {
    .testimonials .testimonials-carousel {
        padding: 0 45px;
    }
}
@media (max-width: 767px) {
    .testimonials .testimonials-carousel {
        padding: 0;
    }
}

.testimonials .testimonials-item {
    display: flex;
    flex-flow: row wrap;
}

.testimonials .testimonials-image {
    flex: 0 0 80px;
    margin: 0 30px 0 0;
}
@media (max-width: 1012px) {
    .testimonials .testimonials-image {
        flex: 0 0 85px;
    }
}
@media (max-width: 767px) {
    .testimonials .testimonials-image {
        display: none;
    }
}

.testimonials .testimonials-image img {
    width: 60px;
}
@media (max-width: 1012px) {
    .testimonials .testimonials-image img {
        width: 55px;
    }
}

.testimonials .testimonials-quote {
    flex: 1;
    box-sizing: border-box;
    padding-left: 30px;
    border-left: solid 3px #A1206A;
}

.testimonials blockquote {
    padding: 10px 0;
    margin: 0;
}

.testimonials p {
    font-family: 'ITC Kabel Std', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.5em;
    color: #A1206A;
    padding: 0 0 10px 0;
}

.testimonials cite {
    font-family: 'ITC Kabel Std', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1.3em;
    color: #840B55;
    margin-top: 15px;
    display: block;
}

@media (max-width: 767px) {
    .testimonials .owl-carousel .owl-nav {
        display: none;
    }
}

.testimonials .owl-carousel .owl-nav button.owl-prev,
.testimonials .owl-carousel .owl-nav button.owl-next {
    margin: 0;
    padding: 0;
    width: 20px;
    height: 33px;
    background-color: transparent;
    border-radius: 0;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    outline: none;
}

.testimonials .owl-carousel .owl-nav button.owl-prev:hover,
.testimonials .owl-carousel .owl-nav button.owl-next:hover {
    background-color: transparent;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
}

.testimonials .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -15px;
}
.testimonials .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -15px;
    transform: rotate(180deg);
}

.testimonials .owl-dots {
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    text-align: center;
}

.testimonials .owl-dots button.owl-dot {
    display: inline-block;
    margin: 0 4px;
    outline: none;
}

.testimonials .owl-dots button.owl-dot.active span,
.testimonials .owl-dots button.owl-dot:hover span {
    background-color: #840B55;
    opacity: 1;
}

.testimonials .owl-dots button.owl-dot span {
    display: block;
    background-color: #840B55;
    opacity: 0.3;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}


/*--------------------------------------------
              MOBILE SECTION
---------------------------------------------*/

@media screen and (min-device-width : 768px) and (max-device-width : 1024px) {

    .image {
        width: 100%;
    }

    .gif {
        width: 100%;
    }

    .even-column-right.purple-block {
        margin-left: 32px;
    }

}

@media screen and (max-device-width : 600px) {

    .header-block {
        display: none;
    }

    .mobile-header-block {
        display: block;
        background-color: #174A5B;
    }

    .mobile-title {
        width: 100%;
        padding: 25px 0 20px 0;
    }

    p {
        font-size: 0.8em;
        line-height: 1.5em;
        padding-bottom: 20px;
    }

    p.no-padding {
        padding-bottom: 20px;
    }

    hr {
        border-top: 2px dotted #840B55;
    }

    .title {
        max-width: 200px;
        padding: 12px;
    }

    h1 {
        font-size: 2.2em;
        padding: 0 0 10px 0;
    }

    h2 {
        font-size: 1.5em;
        margin: 10px 0 10px;
    }

    h3 {
        font-size: 0.9em;
    }

    h4 {
        font-size: 0.9em;
        padding-bottom: 20px;
        margin: 20px 0 0;
    }

    h5 {
        font-size: 1.1em;
    }

    .testimonials p {
        font-size: 1em;
    }

    .testimonials cite {
        font-size: 0.9em;
    }

    .cards .cards-inner {
        padding-bottom: 0;
    }

    .cards .owl-dots {
        bottom: 5px;
    }

    .even-column-left  {
        width: 100%;
        padding: 0;
    }

    .even-column-right {
        width: 100%;
        padding: 0;
    }

    .even-column-right.purple-block {
        width: 100%;
        padding: 20px 20px 0 20px;
        margin-left: 0;
    }

    .even-column-left.virtual-events  {
        width: 75%;
    }

    .gif-column-left {
        width: 100%;
    }

    .gif-column-right {
        width: 100%;
    }

    .white-block {
        padding: 20px 0 15px 0;
    }

    .blue-block {
        padding: 20px 0 15px 0;
    }

    .purple-block {
        padding: 20px 0 15px 0;
    }

    .grey-block {
        padding: 20px 0 15px 0;
    }

    .purple-block.virtual-block {
        margin-top: 10px;
    }

    .video {
        max-width: 290px;
        max-height: 164px;
    }

    .gif {
        max-width: 330px;
    }

    .image {
        max-width: 330px;
    }

    .icon-top {
        margin: 5px 20px 5px 0;
        max-width: 60px;
        padding: 0;
    }

    .icon-bottom {
        margin: 5px 20px 5px 0;
        max-width: 60px;
    }

    .icon-margin {
        margin: 5px 15px 5px 0;
        max-width: 80px;
    }

    .modal {
        padding-top: 10px;
    }

    .modal-content {
        width: 90%;
    }

    .modal-content.scroll-height {
        height: auto;
    }

    .close {
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .modal-header {
        padding-top: 10px;
    }

    .modal-body {
        padding: 0 20px 10px;
    }

    .modal-column {
        padding: 0;
        margin: 0;
    }

    .modal-column.scroll {
        height: auto;
        overflow: auto;
    }

    .modal-button {
        margin-bottom: 10px;
    }

    .image.sophie {
        padding-bottom: 10px;
    }

    .pro-bono-intro {
        padding-bottom: 30px;
    }

}
