/*
    font-family: proxima-nova, sans-serif; //body
    font-family: proxima-nova-condensed, sans-serif;
    font-family: jubilat, serif; //titles
    font-family: jubilat-thin, serif; 

    teal:       #8ED1C0     rgba(142,209,192,1)
    light blue  #C5E7E7     rgba(197,231,231,1)
    red:        #EF3E39     rgba(239,62,57,1)
    yellow:     #FFD65C     rgba(255,214,92,1)    
    dark gray:  #3C3C3D     rgba(60,60,61,1)
*/
/*#region keyframes*/
@keyframes fadeIn {
    0% {
        opacity: 0;        
    }

    100% {
        opacity: 1;
    }
}
@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in-move-down {
    0% {
        opacity: 0;
        transform: translateY(-3rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-move-up {
    0% {
        opacity: 0;
        transform: translateY(3rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes move-down {
    0% {        
        transform: translateY(-3rem);
    }
    100% {       
        transform: translateY(0);
    }
}

@keyframes move-up {
    0% {
        transform: translateY(3rem);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fade-in-move-right {
    0% {
        opacity: 0;
        transform: translateX(-3rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-move-left {
    0% {
        opacity: 0;
        transform: translateX(3rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoom-in {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes fadeIn-zoom {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@-moz-keyframes fadeIn-zoom {
    0% {
        opacity: 0;
        -moz-transform: scale(1);
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1.1);
    }
}

@-webkit-keyframes fadeIn-zoom {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1.1);
    }
}

@-o-keyframes fadeIn-zoom {
    0% {
        opacity: 0;
        -o-transform: scale(1);
    }

    100% {
        opacity: 1;
        -o-transform: scale(1.1);
    }
}

@-ms-keyframes fadeIn-zoom {
    0% {
        opacity: 0;
        -ms-transform: scale(1);
    }

    100% {
        opacity: 1;
        -ms-transform: scale(1.1);
    }
}

@keyframes borderGrow {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}



/*#endregion*/

/*#region general styles*/
#form2 {
    overflow:hidden;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0
}

.fade-in-text {
    animation: fadeIn linear .25s;
    -webkit-animation: fadeIn linear .25s;
    -moz-animation: fadeIn linear .25s;
    -o-animation: fadeIn linear .25s;
    -ms-animation: fadeIn linear .25s;
}

.blueText {
    color: #C5E7E7;
}
.tealText {
    color: #8ED1C0;
}
.redText {
    color: #EF3E39;
}
.yellowText {
    color: #FFD65C;
}
.grayText {
    color: #3C3C3D;
}

/* Track */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #FFD65C;
    border-radius: 5px;
}

.revealCustom {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: .75s all ease;
}
.revealCustom.active {
    transform: translateY(0);
    opacity: 1;
}
.revealNewsItem {
    position: relative;
    transform: translateX(3000px);
    transition: .75s all ease;
}
.revealNewsItem.active {
    transform: translateX(0);
    -webkit-animation: fadeIn 2.5s ease-out;
    -moz-animation: fadeIn 2.5s ease-out;
    -o-animation: fadeIn 2.5s ease-out;
    animation: fadeIn 2.5s ease-out;
    transition: all .75s ease-in-out;
}
.revealNewsItem:nth-of-type(1).active {
    transition-delay: .25s;
       
}
.revealNewsItem:nth-of-type(2).active {
    transition-delay:.45s;
}
.revealNewsItem:nth-of-type(3).active {
    transition-delay: .65s;
}
.revealNewsItem:nth-of-type(4).active {
    transition-delay: .85s;
}
.revealNewsItem:nth-of-type(5).active {
    transition-delay: .95s;
}

.revealCustomZoom {
    transition: all .75s ease-in-out;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.revealCustomZoom.active {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
/*#endregion*/

/*#region hero area*/
#sectionHeroImage {
    padding-top:4rem;
}
.slide-container, .hero-imageBoxImage {
    height: 45vh; /*line 515 with the video section control*/
}
#heroInnerContainer {
    position: relative; 
    overflow:hidden;
}
#homeimages_UpdatePanel1 {    
    position: relative;
    z-index: 5;
}
#sliderLeft {
    position: relative;
    overflow:hidden;
}

#sliderRight {
    position: relative;
    z-index: 1;
}
#hero-contentbox {
    padding: 3rem 1rem 2rem 2rem;
    position: absolute;
    right: 0;
    width: 100%;
    max-width:50rem;
}

.herotheTitle, .herotheTagLine {
    /*padding-left: 5rem;*/
}
.herotheTitle, .herotheTitle p {
    color: #00334A;
    font-size: 4.875rem;
    /*font-size: 4.8rem;*/
    line-height: 1;
    letter-spacing: 0px;
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    text-decoration: none;
    /*text-shadow: 2px 4px 3px rgba(0,0,0,.3);*/        
    -webkit-animation: fade-in-move-down .75s; 
    -moz-animation: fade-in-move-down .75s; 
    -ms-animation: fade-in-move-down .75s; 
    -o-animation: fade-in-move-down .75s; 
    animation: fade-in-move-down .75s;        
}
.herotheTagLine {
    position: relative;
    font-family: jubilat, serif;
    color: #00334A;
    font-weight: 300;
    font-size: 4rem;
    line-height: 5.5rem;
    animation-delay: 2s;
   
    -webkit-animation: fade-in-move-up .75s; 
    -moz-animation: fade-in-move-up .75s; 
    -ms-animation: fade-in-move-up .75s; 
    -o-animation: fade-in-move-up .75s; 
    animation: fade-in-move-up .75s;
    
}
.herotheTagLine p {
    font-weight: 300;
    font-size: 4rem;
    line-height: 5.5rem;
}
.herotheButton {
    position: relative;
    z-index: 10;
    margin-top: 1rem;
    background: #009A9C;
    color: #FFF;
    font-size: 1.25rem;
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    letter-spacing: .25rem;
    text-transform: uppercase;
    max-width: 500px;
    display: inline-block;
    text-align: center;
    /*padding: 1rem 2rem;*/
    border-radius: 14px;
    text-shadow: none;
    transition: all .75s ease-in-out;
}
.herotheButton a {
    color: #FFF;
}
.herotheButton:hover {
    background: #FFD65C;
}
.herotheTitleSAVE-ANIMATION {
    color: #3C3C3D;
    font-weight: 700;
    font-size: 6.625rem;
    line-height: 1;
    letter-spacing: 3px;
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    text-decoration: none;
    -webkit-animation: fade-in-move-right .75s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fade-in-move-right .75s; /* Firefox < 16 */
    -ms-animation: fade-in-move-right .75s; /* Internet Explorer */
    -o-animation: fade-in-move-right .75s; /* Opera < 12.1 */
    animation: fade-in-move-right .75s;
}
.hero-imageBoxImage {
    z-index: 10;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 12px 0px 0px 12px;
}
.hero-imageBox img {
    border-radius: 12px 0px 0px 12px;
    width: 100%;
    height:100%;
    object-fit: cover;
    object-position: center center;
    -webkit-animation: fadeIn-zoom 1.5s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeIn-zoom 1.5s; /* Firefox < 16 */
    -ms-animation: fadeIn-zoom 1.5s; /* Internet Explorer */
    -o-animation: fadeIn-zoom 1.5s; /* Opera < 12.1 */
    animation: fadeIn-zoom 1.5s;
    animation-fill-mode: both;
}
.herotheTitle .redText {
    position: relative;
    animation: fadeIn linear 2.75s;
    -webkit-animation: fadeIn linear 2.75s;
    -moz-animation: fadeIn linear 2.75s;
    -o-animation: fadeIn linear 2.75s;
    -ms-animation: fadeIn linear 2.75s;
}
    .herotheTitle .redText::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 0;
        left: 0;
        bottom: 1.5rem; /* <- distance */
        border-bottom: 4px solid #C5E7E7;
        -webkit-animation: borderGrow 1.5s; /* Safari, Chrome and Opera > 12.1 */
        -moz-animation: borderGrow 1.5s; /* Firefox < 16 */
        -ms-animation: borderGrow 1.5s; /* Internet Explorer */
        -o-animation: borderGrow 1.5s; /* Opera < 12.1 */
        animation: borderGrow 1.5s;
    }

#homeimages_btnPrevious{
    right: 47vw;
}
#homeimages_btnNext {
    right: 45vw;
}
#pauseplay {
    position: absolute;
    bottom: 1rem;
    right: 1.275rem;
    padding: 1rem;
    height: 50px;
    width: 50px;
    z-index: 40;
}
#pauseplay i {
    font-size: 2rem;  
}
#pauseplay a {
    color: #222
}
#homeimages_btnPrevious, #homeimages_btnNext {
    position: absolute;
    padding: 0 .5rem;
    bottom: 1rem;
    z-index: 40;
    font-size: 2.5rem;
    color: #FFF;
    transition: all .75s ease-in-out;
    text-shadow: 0 3px 16px rgba(0,0,0,0.47);
}
#homeimages_btnPrevious:hover, #homeimages_btnNext:hover, #pauseplay a:hover {
    color: #FFD65C;
}

/***********  6.16.23 video addition     ************/
#sectionHeroImage video {
    width: 100%;
}
.slide-container, .hero-imageBoxImage {
    height: 55vh;
    height: 520px;
}
/***********  6.16.23 video addition end ************/


/*#endregion*/

/*#region featured work*/
#sectionfeaturedWork {
    margin-top: -15vh;
    padding-top: 13vh;
    margin-top: -140px;
    padding-top: 125px;
    padding-bottom: 5rem;
    background: #EF3E39;
    background-image: url(/img/odney-red-bg3.png?format=webp);
    /* background-position: top; */
    background-size: 50%;
    background-repeat: repeat;
}

#featuredInner {
    padding: 0 2rem; 
}

#featuredInner h2 {
    font-size: 1.5rem;
    letter-spacing: 5px;
    font-family: proxima-nova, sans-serif;
    color: #FFD65C;
    margin-bottom:0;
    text-align:left;
}

#featuredInner h3 {
    font-size: 3rem;
    font-family: Jubilat, serif;
    font-weight: 600;
    color: #FFF;
    text-align:left;
}

#featureGridContainer {
    position: relative;
    padding: 1rem;
}

.featuredItemContain {
    position: relative;
    height: 700px;
    overflow: hidden;
    -webkit-animation: fadeIn 2.5s ease-out;
    -moz-animation: fadeIn 2.5s ease-out;
    -o-animation: fadeIn 2.5s ease-out;
    animation: fadeIn 2.5s ease-out;
    padding:0 .5rem 0 .5rem;
}

.featuredItem {
    /*padding: 0 0 0 .5rem;*/
}
#featuredLeft {
    padding-left:1rem;
    padding-right:1rem;
}
#featuredRight {
    padding:0 1rem 0 0;
}

.featuredItemTopTwo {
    /*padding: 0 .5rem 0 0;*/
}

.featuredImageTopTwo {
    position: relative;
    height: 338px;
    overflow: hidden;
    border-radius: 12px;
}

.featuredImageTopTwo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    position: relative;
}

.featuredItemTopTwo:nth-child(odd) {
    padding-right:.5rem;
}
.featuredItemTopTwo:nth-child(even) {
    padding-left: .5rem;
}

.featuredItemFour {
    padding: 1rem 0 0 0;
}

.featuredImageFour {
    position: relative;
    height: 346px;
    overflow: hidden;
    border-radius: 12px;
}

.featuredImage {
    position: relative;
    height: 700px;
    overflow: hidden;
    border-radius: 12px;
}

.featuredImage img, .featuredImageFour img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    position: relative;
}

.featuredTitle {
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    background: rgba(60,60,61,.2);
    overflow: hidden;
    transition: all .75s ease-in-out;
}
    .featuredTitle h4 {
        font-family: Jubilat, serif;
        font-weight: 500;
        text-shadow: 2px 2px 6px rgba(0,0,0,.8);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        color: white;
        width: 100%;
        left: 0;
        padding: 1rem;
        font-size: calc(1rem + 1vw);
        line-height: calc(1.25rem + 1vw);
        opacity: 1;
        transition: all .75s ease-in-out;
    }
.featuredItem h4 {
    font-size: calc(1rem + 3vw);
    line-height: calc(1.25rem + 3vw);
}
.featuredTitle:hover h4 {
    opacity: 0;
}
.featuredTitle reveal {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    /* background: #8ED1C0; */
    /*border: 1px solid #EF3E39; */
    padding: 1rem;
    color: white;
    text-align: center;
    font-size: 1rem;
    line-height: 1.25;
    transition: all .75s ease-in-out;
    padding: 1rem;
}
.featuredItem reveal {
    font-size: calc(1rem + 1vw);
    line-height: calc(1.25rem + 1vw);
}
.featuredTitle:hover {
    background: rgba(60,60,61,.4);
}
.featuredTitle:hover reveal {
    opacity:1;
}
.featuredImage:hover img, .featuredImageTopTwo:hover img, .featuredImageFour:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

#featuedViewAll {
    padding: 1rem 2rem 3rem 2rem;
}
#featuedViewAll a {
    color:#FFF;
}
#featuedViewAll a:hover {
    color: #FFD65C;
}
#featuedViewAll h2 {
    font-size: 1.5rem;
    letter-spacing: 5px;
    font-family: proxima-nova, sans-serif;
    margin-bottom: 0
}


#teamViewAll {
    padding: 0 2rem;
    position: relative;
    top: -4rem;
}
#teamViewAll a {
    color: #00334A;
}
#teamViewAll a:hover {
    color: #EF3E39;
}
#teamViewAll h2 {
    font-size: 1.5rem;
    letter-spacing: 5px;
    font-family: proxima-nova, sans-serif;
    margin-bottom: 0
}

/*#endregion*/

/*#region services*/
#sectionServices {
}
#servicesInnerContainer {
    padding: 0 2rem;
}

#servicesInner {
    position: relative;
    top: -4rem;
    border-radius: 12px;
    padding: 2rem 2rem 2rem 6rem;
    background:#00334A;
    color: #fff;
}
#servicesInner h2 {
    font-size: 1.2rem;
    letter-spacing: 5px;
    font-family: proxima-nova, sans-serif;
    color: #3C3C3D;
    margin-bottom: 0;
}
#servicesInner h3 {
    font-size: 2.75rem;
    font-family: Jubilat, serif;
    font-weight: 600;
    color: #C4E7E6;
    margin-bottom: 1rem;
    text-align:center;
}
#servicesList ul {
    list-style: square;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    margin-left: 2rem;
}
#servicesList ul li {
    font-family: Proxima-nova, sans-serif;
    color: #C4E7E6;
    font-size: 1.6rem;
    padding-bottom: 0.5rem;
}
#servicesList ul li a {
    color: #fff;
    font-family: Proxima-nova, sans-serif;
}
#servicesList ul li a:hover {
    color: #8ED1C0;
}
.servicesLearnMore {
    color: #8ED1C0;
    letter-spacing: 0px;
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    padding-left: .5rem;
    transition: all .75s ease-in-out;
}
.servicesLearnMore:hover {
    color:#EF3E39;
}
/*#endregion*/

/*#region Client*/
#sectionClients {
}

#clientsInner {
    position: relative;
    top: 0;
    padding: 2rem;
    color: #FFF;
}

#clientsInner h2 {
    font-size: 1.2rem;
    letter-spacing: 5px;
    font-family: proxima-nova, sans-serif;
    color: #3C3C3D;
    margin-bottom: 0;
}

#clientsInner h3 {
    font-size: 3rem;
    font-family: Jubilat, serif;
    font-weight: 600;
    color: #EF3E39;
    margin-bottom: 2rem;
    text-align:center;
}

#teamMessage {
    width:70%;
    margin:0 auto;
}

#sponsorContainer {
    text-align: center;
    padding: 2rem;
    -webkit-animation: fade-in-move-up .75s;
    -moz-animation: fade-in-move-up .75s;
    -ms-animation: fade-in-move-up .75s;
    -o-animation: fade-in-move-up .75s;
    animation: fade-in-move-up .75s;
}

.sponsorLogo {
    display: inline-block;
    padding: 1.5rem;
}
/*#endregion*/

/*#region team*/






#sectionTeam {
    background: #f7f7f7;
    background-image: url('/img/bkg_gray_pattern.jpg?format=webp');
    background-position: right top;
    border-radius: 12px;
}
#teamInner {    
    padding: 4rem 2rem;
}

#teamInner h2 {
    font-size: 2rem;
    letter-spacing: 10px;
    font-family: proxima-nova, sans-serif;
    color: #3C3C3D;
    margin-bottom: 0;
}
    #teamInner h3 {
        font-size: 3rem;
        font-family: Jubilat, serif;
        font-weight: 600;
        color: #EF3E39;        
        margin-bottom: 2rem;
        text-align: center;
    }
#teamMessage {
    font-size: 1.35rem;
    color: #3C3C3D;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    max-width: 1100px;
}

#teamGridContainer {
    position: relative;
    top: 2rem;
    padding-bottom: 4rem;
}
.teamItemContain {
    position: relative;
    height: 700px;
    overflow: hidden;
    -webkit-animation: fadeIn 2.5s ease-out;
    -moz-animation: fadeIn 2.5s ease-out;
    -o-animation: fadeIn 2.5s ease-out;
    animation: fadeIn 2.5s ease-out;
    padding:0 .5rem 0 0;
}


.teamItemTopTwo:nth-child(odd) {
    padding-right:.5rem;
}
.teamItemTopTwo:nth-child(even) {
    padding-left: .5rem;
    padding-right: .5rem;
}

.teamItemFour {
    padding: 1rem .5rem 0 0;
}

.teamImageTopTwo {
    position: relative;
    height: 338px;
    overflow: hidden;
    border-radius: 12px;
}
.teamImageFour {
    position: relative;
    height: 346px;
    overflow: hidden;
    border-radius: 12px;
}
.teamImage {
    position: relative;
    height: 700px;
    border-radius: 12px;
    overflow: hidden;
}

.teamImage img, .teamImageFour img, .teamImageTopTwo img  {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    position: relative;
}
#imgOdneyTeam {
    border-radius:12px;
}
/*#endregion*/
/*#region news*/
#sectionNews {
    padding: 2rem 0;
    background: #f9f9f9;
}
#newsInner {    
    padding:2rem;
}
#newsInner h2 {
    font-size: 2rem;
    letter-spacing: 5px;
    font-family: proxima-nova, sans-serif;
    color: #3C3C3D;
    margin-bottom: 0;
}

#newsInner h3 {
    font-size: 3rem;
    font-family: Jubilat, serif;
    font-weight: 600;
    color: #EF3E39;
    margin-bottom: 2rem;
}

#newsContainer {
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.newsItem {
    width: 33.3333333%;
    padding: 2rem 2rem 2rem 0;
    text-align: center;
}

.newsImage {
    border: 1px solid #707070;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 12px;
}

    .newsImage img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center center;
        transition: all .75s ease-in-out;
    }

.newsTitle {
    font-family: proxima-nova, sans-serif;
    padding: 1rem;
    text-align: left;
    color: #00334A;
    font-size: 1.35rem;
    font-weight: 300;
}

a:hover .newsTitle, a:focus .newsTitle, a:active .newsTitle {
    color: #3C3C3D;
}

a:hover .newsImage, a:active .newsImage, a:focus .newsImage {
    border: 1px solid #3C3C3D;
}

.newsItem:hover .newsImage img {
    transform: scale(1.1);
}
/*#endregion*/



/*#region Who We Are NOT BEING USED*/
#sectionWhoWeAre {
    background: #EF3E39;
    margin-top: -200px;
    padding-bottom: 5rem;
}

#whoWeAreInner {
    max-width: 85rem;
    margin: 0 auto;
    color: #FFF;
}

    #whoWeAreInner h2 {
        color: #FFF;
        margin: 0;
        font-size: 3rem;
        letter-spacing: 3px;
        font-family: proxima-nova-condensed, sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        text-decoration: none;
        animation: fadeIn linear .75s;
        -webkit-animation: fadeIn linear .75s;
        -moz-animation: fadeIn linear .75s;
        -o-animation: fadeIn linear .75s;
        -ms-animation: fadeIn linear .75s;
    }

    #whoWeAreInner h3 {
        color: #FFF;
        margin: 0;
        font-size: 4rem;
        font-family: proxima-nova-condensed, sans-serif;
        font-weight: 600;
        animation: fadeIn linear .75s;
        -webkit-animation: fadeIn linear .75s;
        -moz-animation: fadeIn linear .75s;
        -o-animation: fadeIn linear .75s;
        -ms-animation: fadeIn linear .75s;
    }

#whoWeAreMessage {
    color: #FFF;
    font-size: 4rem;
    font-family: proxima-nova-condensed, sans-serif;
    font-weight: 600;
}

#whoWeAreInner video {
    width: 100%;
    height: auto;
}
/*#endregion*/

/*#region media points*/
@media(max-width:1850px) {
    .slide-container, .hero-imageBoxImage {
        height: 470px;
    }
    .herotheTitle, .herotheTitle p {
        font-size: 4.4rem;
    }
    .herotheTagLine p {
        font-size: 3.6rem;
        line-height: 4.95rem;
    }
    .herotheTitle .redText::after {
        bottom: 1.4rem; /* <- distance */
        border-bottom: 3px solid #C5E7E7;
    }
    #sectionfeaturedWork {
        margin-top: -120px;
        padding-top: 100px;       
    }
    
}
@media(max-width:1700px) {
    .slide-container, .hero-imageBoxImage {
        height: 420px;
    }
    .herotheTitle, .herotheTitle p {
        font-size: 4.25rem;
    }
    .herotheTagLine p {
        font-size: 3.5rem;
        line-height: 4.8rem;
    }
    #sectionfeaturedWork {
        margin-top: -80px;
        padding-top: 60px;
    }   
}
@media(max-width:1500px) {
    .slide-container, .hero-imageBoxImage {
        height: 370px;
    }
    #hero-contentbox {
        padding: 2rem 1rem 2rem 2rem;        
    }
    .herotheTitle, .herotheTitle p {
        font-size: 4rem;
    }
    .herotheTagLine p {
        font-size: 3.25rem;
        line-height: 4.468rem;
    }
    .herotheTitle .redText::after {
        bottom: 1.2rem; /* <- distance */
        border-bottom: 3px solid #C5E7E7;
    }
    #sectionfeaturedWork {
        margin-top: -60px;
        padding-top: 40px;
    }
    #featuredInner h3, #servicesInner h3, #clientsInner h3, #teamInner h3, #newsInner h3 {
        font-size: 2.7rem;
    }
    #featuredInner h2, #featuedViewAll h2, #teamViewAll h2, #newsInner h2 {
        font-size: 1.35rem;
    }    
}
@media(max-width:1350px) {
    .slide-container, .hero-imageBoxImage {
        height: 320px;
    }
    .herotheTitle, .herotheTitle p {
        font-size: 3.65rem;
    }
    .herotheTagLine p {
        font-size: 3rem;
        line-height: 4.125rem;
    }    
    .herotheTitle .redText::after {
        bottom: 1.2rem; /* <- distance */
        border-bottom: 2px solid #C5E7E7;
    }
    #sectionfeaturedWork {
        margin-top: -42px;
        padding-top: 2rem;
    }
    #featuredInner h3, #servicesInner h3, #clientsInner h3, #teamInner h3, #newsInner h3 {
        font-size: 2.43rem;
    }
    #featuredInner h2, #featuedViewAll h2, #teamViewAll h2, #newsInner h2 {
        font-size: 1.35rem;
    }
}
@media(max-width:1200px) {
    .slide-container, .hero-imageBoxImage {
        height: 270px;
    }
    #hero-contentbox {
        padding: 1.5rem 1rem 2rem 2rem;
    }
    .herotheTitle, .herotheTitle p {
        font-size: 3.4rem;
    }
    .herotheTagLine p {
        font-size: 2.788rem;
        line-height: 3.833rem;
    }    
    .herotheTitle .redText::after {
        bottom: 1.1rem; /* <- distance */
        border-bottom: 2px solid #C5E7E7;
    }
    #featuredInner h3, #servicesInner h3, #clientsInner h3, #teamInner h3, #newsInner h3 {
        font-size: 2.18rem;
    }
    #featuredInner h2, #featuedViewAll h2, #teamViewAll h2, #newsInner h2 {
        font-size: 1.21rem;
    }
    
}
@media(max-width:1125px) {
    #sliderLeft, #sliderRight {
        width:100%;
    }
    #sliderLeft {
        height:300px;
    }
    .slide-container, .hero-imageBoxImage {
        height: auto;
    }
    
    #hero-contentbox {
        position: relative;
        padding: 1rem 1rem 2rem 2rem;
    }
    .herotheTitle, .herotheTitle p {
        font-size: 4.875rem;
    }
    .herotheTagLine {
        font-size: 4rem;
        line-height: 5.5rem;
    }
    .herotheTitle .redText::after {        
        bottom: 1.5rem; /* <- distance */
        border-bottom: 4px solid #C5E7E7;
    }
    .hero-imageBoxImage {
        border-radius: 12px 12px 0 0;
        height: auto;
    }
    #sectionfeaturedWork {
        margin-top: -2rem;
        padding-top: 2rem;
        border-radius: 12px 12px 0 0;
        z-index: 20;
        position: relative;
    }
    #featuredInner h2, #featuedViewAll h2, #teamViewAll h2, #newsInner h2 {
        font-size: 1.25rem;
    }
    #featuredInner h3, #servicesInner h3, #clientsInner h3, #teamInner h3, #newsInner h3 {
        font-size: 1.9rem;
        line-height: 1.25;
    }
    #sectionServices {
        z-index: 30;
        position: relative;
    }
    #teamMessage {
        font-size: 1.25rem;
    }
    .sponsorLogo {
        padding: .75rem;
    }
}

@media(max-width:1023px) {
    .featuredItemContain {
        height:auto;
    }
    .featuredImage {
        height: 346px;
    }
    #featuredRight {
        padding: 1rem 1rem 0 1rem;
    }
    #servicesInner {
        padding:2rem;
    }
    #servicesInner h3 {        
        text-align: left;
    }
    #servicesList ul {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        margin-left: 4rem;
    }
    #servicesList ul li {            
        font-size: 1.4rem;
    }
    #sectionNews {       
        height: 650px;
    }
    .newsItem {
        width: 50%;        
    }

}

@media(max-width:830px) {
    #hero-contentbox {
        position: relative;
        padding: 1rem 3.3rem 2rem 2rem;
    }
    .herotheTitle, .herotheTitle p {
        font-size: 4rem;
    }
    .herotheTagLine p {
        font-size: 3.25rem;
        line-height: 4.468rem;
    }
    .herotheTitle .redText::after {
        bottom: 1.2rem; /* <- distance */
        border-bottom: 3px solid #C5E7E7;
    }
    #servicesList ul {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        margin-left: 2.5rem;
    }   
}
@media(max-width:680px) {
    #sliderLeft {
        height: 230px;
    }

    #hero-contentbox {
        position: relative;
        padding: 0 1rem 2rem 2rem;
    }

    .herotheTitle, .herotheTitle p {
        font-size: 3.7rem;
    }

    .herotheTagLine p {
        font-size: 3.034rem;
        line-height: 4.18rem;
    }
    .herotheTitle .redText::after {
        bottom: 1.1rem; /* <- distance */
        border-bottom: 2px solid #C5E7E7;
    }
    #sectionNews {
        height: auto;
    }
    .newsItem {
        width: 100%;
        padding: 1rem;
    }
    .newsImage {      
        height: 250px;
    }

    .revealNewsItem {
        position: relative;
        transform: translateX(3000px);
        transition: .75s all ease;
    }

    .revealNewsItem.active {
        transform: translateX(0);
        -webkit-animation: fadeIn .75s ease-out;
        -moz-animation: fadeIn .75s ease-out;
        -o-animation: fadeIn .75s ease-out;
        animation: fadeIn .75s ease-out;
        transition: all .75s ease-in-out;
    }

    .revealNewsItem:nth-of-type(1).active {
        transition-delay: .05s;
    }

    .revealNewsItem:nth-of-type(2).active {
        transition-delay: .25s;
    }

    .revealNewsItem:nth-of-type(3).active {
        transition-delay: .45s;
    }

    .revealNewsItem:nth-of-type(4).active {
        transition-delay: .65s;
    }

    .revealNewsItem:nth-of-type(5).active {
        transition-delay: .85s;
    }


}
@media(max-width:639px) {
    .featuredItemTopTwo:nth-child(2n+1) {
        padding-right: 0;
    }
    .featuredItemTopTwo:nth-child(2n) {
        padding-left: 0;
        padding-top:1rem;
    }
    .sponsorLogo {
        padding: 0;
    }
    #sectionHeroImage {
        padding-top: 2rem;
    }
}

@media(max-width:610px) {   
    .herotheTitle, .herotheTitle p {
        font-size: 3.4rem;
        line-height:1.15;
    }
    .herotheTagLine p {
        font-size: 2.788rem;
        line-height: 3.833rem;
    }    
}

@media(max-width:570px) {
    #sectionHeroImage {
        padding-top: 3rem;
    }
    #sliderLeft {
        height: 200px;
    }    
    .herotheTitle, .herotheTitle p {
        font-size: 3rem;
    }
    .herotheTagLine p {
        font-size: 2.46rem;
        line-height: 3.3825rem;
    }
    .herotheTitle .redText::after {
        bottom: .8rem; /* <- distance */
        border-bottom: 2px solid #C5E7E7;
    }
    .newsImage {
        height: 200px;
    }
}

@media(max-width:500px) {
    #sliderLeft {
        height: 180px;
    }

    #hero-contentbox {
        position: relative;
        padding: 0 1.5rem 2rem 2rem;
    }

    .herotheTitle, .herotheTitle p {
        font-size: 2.5rem;
    }

    .herotheTagLine p {
        font-size: 2.05rem;
        line-height: 2.818rem;
    }

    .herotheTitle .redText::after {
        bottom: .6rem; /* <- distance */
        border-bottom: 2px solid #C5E7E7;
    }
}
@media(max-width:430px) {
    #sliderLeft {
        height: 150px;
    }
    #hero-contentbox {
        position: relative;
        padding: 0 1rem 2rem 2rem;
    }

    .herotheTitle, .herotheTitle p {
        font-size: 2.15rem;
    }

    .herotheTagLine p {
        font-size: 1.75rem;
        line-height: 2.818rem;
    }

    .herotheTitle .redText::after {
        bottom: .6rem; /* <- distance */
        border-bottom: 2px solid #C5E7E7;
    }
    #sectionfeaturedWork {
        margin-top: -2rem;
        padding-top: 3rem;        
    }
}
@media(max-width:360px) {   
    #hero-contentbox {
        position: relative;
        padding: 0 1rem 2rem 2rem;
    }
    .herotheTitle, .herotheTitle p {
       font-size: 2rem;
    }
    .herotheTagLine p {
        font-size: 1.6rem;
        line-height: 2.25rem;
    }
}
  