/* fonts */

h1 {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.875em;
  line-height: 3.625em
}

h2 {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.250em;
  line-height: 1.750em;
}

h3 {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.750em;
  margin-bottom: 1.250em;
}

h4 {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.15em;
  line-height: 1.5em;
}

p, li {
  font-family: europa, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125em;
  line-height: 1.750em;
  
}

span {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.875em;
  text-transform: uppercase;
}

caption {
  font-family: europa, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.125em;
  line-height: 1.750em; 
}

.nameLink {
  color: #000;
  text-decoration: none;
}

.nameLink:hover {
  color: #000;
  text-decoration: none;
}

/*.overlay {
  background: #28294D;
  position: fixed;
  height: 0;
  left: 0;
  width: 100%;
  z-index: 15;
}

/* page load animation */
/*.overlay-2 {
  background: #28294D;
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  overflow: hidden;
  bottom: 0;
  z-index: 15;
}*/

/*body .overlay-2 {
  animation: overlayAnimation 1.2s;
  -moz-animation: overlayAnimation 1.2s;
  -webkit-animation: overlayAnimation 1.2s;
  -o-animation: overlayAnimation 1.2s; 
  height: 0;
} 

@keyframes overlayAnimation {0% {height: 100vh;}  100% {height: 0;}}
@-moz-keyframes overlayAnimation {0% {height: 100vh;}  100% {height: 0;}}
@-webkit-keyframes overlayAnimation {0% {height: 100vh;}  100% {height: 0;}}
@-o-keyframes overlayAnimation {0% {height: 100vh;}  100% {height: 0;}}*/

/* navigation */
div.main {
  position: relative;
  z-index: 2;
  /* fix bug on iOS */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.7s;
  -moz-transition: -moz-transform 0.7s;
  transition: transform 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -moz-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
}

svg.navIcon {
  width: 100px;
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

path {
  fill: none;
  -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
  -moz-transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
  -o-transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
  -ms-transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
  transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
  stroke-width: 10px;
  stroke: #000;
  stroke-dashoffset: 0px;
}

path#top,
path#bottom {
  stroke-dasharray: 240px 950px;
}

path#middle {
  stroke-dasharray: 240px 240px;
}

#anas {
  color: #000;
  text-decoration: none;
}

.cross path#top,
.cross path#bottom {
  stroke-dashoffset: -650px;
  stroke-dashoffset: -650px;
  stroke: #fff;
}

.cross path#middle {
  stroke-dashoffset: -115px;
  stroke-dasharray: 1px 220px;
  stroke: #fff;
}

.cross .nameLink {
  color: #fff;
}

.navigation-is-open div.main {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}

.navi-trigger {
  z-index: 3;
}

.navi-trigger .navi-icon::before, .navi-trigger .navi-icon:after {
  /* upper and lower lines of the menu icon */
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.navi-trigger svg {
  position: absolute;
  top: 0;
  left: 0;
}

.no-touch .navigation-is-open .navi-trigger:hover .navi-icon::after, .no-touch .navigation-is-open .navi-trigger:hover .navi-icon::before {
  top: 0;
}

.navi {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #28294D;
  background-image: url("./images/path-about.svg");
  background-repeat: no-repeat;
  background-position: 40px 0px;
  background-size: 100%;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.7s;
  -moz-transition: visibility 0s 0.7s;
  transition: visibility 0s 0.7s;
}

.navi .navigation-wrapper {
  /* all navigation content */
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 10em;
  padding: 40px 5% 40px calc(5% + 80px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.7s;
  -moz-transition: -moz-transform 0.7s;
  transition: transform 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
}

.navigation-is-open .navi {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}

.navigation-is-open .navi .navigation-wrapper {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
}


.no-js div.main {
  overflow: visible;
}

.no-js .navi {
  visibility: visible;
}

.no-js .navi .navigation-wrapper {
  height: auto;
  overflow: visible;
  padding: 200px 5%;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.navigationList {
  list-style: none;
}

.nav-headshot {
  width: 108px;
  height: 108px;
  margin-bottom: 50px;
}

.contact {
  margin-top: 50px;
  color: #FFE7D8;
}

.nav-links {
  text-align: right;
}

.nav-link {
  color: #fff;
}

.nav-link:hover {
  color: #FFE7D8;
}

img.email {
  margin-top: 20px;
  margin-bottom: 100px;
}



/* colors */
.backgroundPink{
    background-color: #FFE7D8;
}

.backgroundDarkBlue {
    background-color: #28294D;
}

.darkBlue {
    color: #28294D;
}

.colorBlack{
    color: #000000;
}

.colorPink{
    color: #FF707E;
}

.colorOrange{
    color: #FF9A52;
}
.colorGrey{
    color: #7C7C7C;
}

.colorWhite{
    color: white !important;
}

.colorLightBlue{
    color: #38C1D6;
}
.borderWhite{
border: 1px solid white;
}


.topnav {
  padding-left: 2.5em;
  padding-right: 2.5em;
  padding-top: 1.875em;
  padding-bottom: 1.875em;
  z-index: 4;
}

#navButton{
  float: right;
}

.nav-toggle-name {
  color: #D8D8D8;
}

.centerformat{
  text-align: center;
  margin: auto;
}


.wrapper{
    display: flex;
    align-items: center;
}

.footerMarginTop{
    /*margin-top: 3.125em;*/
    width: 100%;
}

.footerHeight{
    height: 10.4375em;
}

.copyright {
  font-family: europa, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #fff;
}

#buttonposition{
  text-align: center;
  margin-bottom: 60px;
  margin-top: 60px;
  /*transform: translate(0px);
  animation: buttonAnimation 2s;
  -moz-animation: buttonAnimation 2s;
  -webkit-animation: buttonAnimation 2s;
  -o-animation: buttonAnimation 2s;*/
}

@keyframes buttonAnimation {
  0% {transform: translateY(-50px);} 
  100% {transform: translateY(0px);}
}
@-moz-keyframes buttonAnimation {
  0% {transform: translateY(-50px);} 
  100% {transform: translateY(0px);}
}
@-webkit-keyframes buttonAnimation {
  0% {transform: translateY(-50px);} 
  100% {transform: translateY(0px);}
}
@-o-keyframes buttonAnimation {
  0% {transform: translateY(-50px);} 
  100% {transform: translateY(0px);}
}

#myWorkButton{
    background: transparent none!important;
    border: 1px solid #979797 !important;
    font-weight: 400;
    border-radius: 32.5px;
    font-size: 24px;
    text-transform: none;
    text-shadow: none!important;
    padding-top: 18px;
    padding-bottom: 18px;
    margin: auto;
    width: 190px;
}

.cardHome{
    height: 24.75em; 
    background-color: #EEF0F0; 
    border: none;
    transform: translate(0px, 0px);
    transition-timing-function: ease-in-out;
    transition: 0.4s;
}

.pathForPages{
  left: 6.7em; 
  width: 55%;
  position: absolute;
  z-index: -50;
  min-height: 35.9375em;
}


path.home-bg {
  stroke-width: 1px;
  stroke: #D8D8D8;
}


.pathForHome{
    left: 7.5em; 
    width: 669px;
    width: 45.4%;
    position: absolute;
    z-index: -50;
    top: 4.75em;
    max-height: 819px;
    height: 83%;    
}

.aboutMarginTop {
  margin-top: 90px;
}

.marginTopBottomAuto{
    margin-top: auto !important; 
    margin-bottom: auto !important;
}

.aboutBoxHeight{
    height: 30.438em;
}

.aboutImg {
  height: 30.438em;
}

.displayFlex{
    display: flex;
}

.aboutLogoHeight{
    height: 1.1875em;
}

.aboutMiddleLogoMargins{
    margin-left: 1.25em;
    margin-right: 1.25em;
}

#marginTopAboutImageText{
    margin-top: 5em;
}

.marginLeftRightAuto{
    margin-left: auto;
    margin-right: auto;
}

#aboutMarginTopAuto{
   margin-top: auto;
}

.timeLineBoxes{
    margin-top: 1em; 
    height: 14.125em;
}

.timeLineBoxesText{
    text-align: center;
     margin-top: 3em; 
     position: relative;
}

.timelineDateMargin{
    margin-top: 1.125em;
}

.aboutTitleTopMargin{
    margin-top: 1.1875em;
}

.aboutCompanyLogosHeight{
    height: 9.375em;
}


#backgroundLightBlueBox{
    z-index: -1; 
    min-height: 47em;
    width: 100% !important;
    background-color: #F3F5F6;
    top: 53.75em; 
    position: absolute; 
    display: block;
}

.backgroundLigtBlue{
  background-color: rgba(216, 237, 255, 0.3)

  ;
}


.aboutCompanyLogosStyling{
    margin: auto !important; 
    display:block !important; 
    float:none !important;
}

.titlePageHead{
    margin-bottom: 1.5em;
}

.titlePageHeadTop{
    margin-top: 5.625em;
}

.FloatRight{
    float: right;
}

.crossfitImg {
  margin-top: 40px;
  width: 400px;
}


#homeImgText{
    z-index: 0; 
    margin-top: 10.125em; 
    position: relative;
}


.homeWhyDo{
    margin-top: -1em;
}

#homeMyImage{
  z-index: 2;
  text-align: center;
  width: 70%;
  animation: homeImgAnimation 2s;
  -moz-animation: homeImgAnimation 2s;
  -webkit-animation: homeImgAnimation 2s;
  -o-animation: homeImgAnimation 2s;
}

@keyframes homeImgAnimation {
  0% {transform:translateY(-75px);} 
  100% {transform:translateY(0px);}
}
@-moz-keyframes homeImgAnimation {
  0% {transform:translateY(-75px);} 
  100% {transform:translateY(0px);}
}
@-webkit-keyframes homeImgAnimation {
  0% {transform:translateY(-75px);} 
  100% {transform:translateY(0px);}
}
@-o-keyframes homeImgAnimation {
  0% {transform:translateY(-75px);} 
  100% {transform:translateY(0px);}
}

.zindex2{
    z-index: 2;
}

.homePink{
    top: 970px;
}

#pinkSize{
    position: relative;
    margin-top: 40px;
    height: 100%;
    padding-bottom: 5%;
}

.cardHomeStyle{
    width: 100%;
    margin-top: 10px;
}

.textAlignCenter{
    text-align: center;
}

#homeImgPosition{
    margin-top: 5.75em;
}

#homeRecentWork{
    margin-top: 65px;
    margin-bottom: 50px; 
    text-align: center;
}

#homeRecentWorkContainerHeight{
    min-height: 400px;
}

.recentworkpd {
  padding-left: 40px;
  padding-top: 80px;
  position: absolute; 
  z-index: 1;
    
}

.recentworktitle {
  padding-left: 40px;
  line-height: 38px; 
  padding-top: 100px; 
  position: absolute; 
  z-index: 2;
}

.recentworkimages {
    height: 200px;
    float: right;
    margin-top: 85px;
}

.recentworkview {
  padding-left: 40px;
  padding-top: 300px; 
  position: absolute;
  z-index: 1;
}

.linkArrow {
  margin-left: 6px;
}

.cardLink {
  width: 100%;
}

.cardHome:hover, .cardHome:hover:after {
/*  box-shadow: 0 10px 20px 0 rgba(32, 32, 36, 0.12);*/
  transform: translate(0px, -15px);
  transition-timing-function: ease-in-out;
  transition: 0.4s;
}



.pinkTop{
    /*margin-top: 280px;*/
}
/* zero-rule */
.zeroRulesBG {
  background-image: url('./images/path-about.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 40px 0px;
}

.zeroImageHeightCol4 {
    width: 100%;
}

.zeroImageHeightCol4:hover {
  opacity: 75%;
}

.zeroRulesImages {
    margin-bottom: 40px;
}

.zeroRulesHeader {
  margin-bottom: 60px;
}

.zeroRulesHeader > div > h1 {
  line-height: 14px;
}

/* deloitte-travel */
.backgroundTop{
    width: 100%;
    height: 38.813em;
    background-color: #EEF0F0;
    z-index: -20;
    position: absolute;
    background-image: url("./images/deloitte-travel/Project\ BG\ path.svg");
}

.pathForPagesTravel{
    height: 38.813em;
    z-index: -19;
    position: absolute;
    left: 226px;
}

.macHeight{
    height: 314px;
/*    top: -50px;*/
    position: absolute;
}

.anasFooter {
  color: #fff;
}

.anas::hover {
  text-decoration: none;
}

/* home */
.myWorkBtn {
  width: 190px;
  height: 65px;
  border-radius: 100px;
  border: 1px #979797 solid;
  padding: 18px 40px 18px 40px;
  font-size: 1.500em;
  font-family: europa, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
}

.introHeader {
  /* transform: translate(0px); */
  animation: headerAnimation 2s;
  -moz-animation: headerAnimation 2s;
  -webkit-animation: headerAnimation 2s;
  -o-animation: headerAnimation 2s;
}

.introHeader-large {
  font-size: 3em;
}

.centerText {
  padding-top: 100px;
}

@keyframes headerAnimation {
  0% {transform: translateY(-50px);} 
  100% {transform: translateY(0px);}
}
@-moz-keyframes headerAnimation {
  0% {transform: translateY(-50px);} 
  100% {transform: translateY(0px);}
}
@-webkit-keyframes headerAnimation {
  0% {transform: translateY(-50px);} 
  100% {transform: translateY(0px);}
}
@-o-keyframes headerAnimation {
  0% {transform: translateY(-50px);} 
  100% {transform: translateY(0px);}
}

.scroll-down {
  width: 85px;
  height: 85px;
  background: #A5CCFF;
  position: absolute;
  background-image: url('./images/Arrow - down.svg');
  background-repeat: no-repeat;
  background-position: center;
  left: 48%;
  z-index: 3;
  top: -4em;
  animation: heightAnimation 2s;
  -moz-animation: heightAnimation 2s;
  -webkit-animation: heightAnimation 2s;
  -o-animation: heightAnimation 2s;
}

@keyframes heightAnimation {
  0% {height: 0;} 
  100% {height: 85px;}
}
@-moz-keyframes heightAnimation {
  0% {height: 0;} 
  100% {height: 85px;}
}
@-webkit-keyframes heightAnimation {
  0% {height: 0;} 
  100% {height: 85px;}
}
@-o-keyframes heightAnimation {
  0% {height: 0;} 
  100% {height: 85px;}
}


.aboutBtn {
  color: #28294D;
  font-family: europa, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.500em;
  border-radius: 100px;
  border: 1px #28294D solid;
  padding: 10px 40px 10px 40px;
}

.skillsList {
  list-style: none;
  padding: 0;
}

.skillsSize{
  width: 100px;
  margin-top: 20px;
}

.skillsList li.skillsListHeader {
  color: #FF6461;
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.125em;
  text-transform: uppercase;
  margin-bottom: 1em;
}

.skillsList li {
  color: #28294D;
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.125em;
  line-height: 2em;
}

/* Deloitte-travel */
#background {
  top: 0px;
  left: 0px;
  width: 50%;
  height: 900px;
  z-index: 1;
}

#backgroundFull {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 60%;
  z-index: 1;
}

#backgroundFullFull {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}


#content {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 80px;
}

.Deloitte-Travels-jo {
  font-family: Europa;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #7c7c7c;
  margin-top: 20px;
}

.Alberta-is-a-provinc {
  font-family: Europa;
  font-size: 21px;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
  line-height: 1.52;
  letter-spacing: normal;
  color: #7c7c7c;
  background: url(./images/AlbertaCannabis/quote.svg);
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-left: 20px;
  margin-top: 40px;
}

.journeyMapDeloitte {
  width: 100%;
}

.spacing {
  margin-top: 90px;
}

.sliderImportance {
  padding-top: 20px;
}

.sliderImportance2 {
  padding-top: 50px;
}

.sliderImportance3 {
  padding-top: 90px;
}

.sliderSvg {
  padding-top: 20px;
}

.centerDivs {
  justify-content: center;
}

.personaContainer {
  display: flex;
}

.personaImg {
  /*width: 115px;
  height: 115px;*/
}

.cannabisPersonas {
  list-style: none;
}

.cannabisPersonas > li > h3 {
  margin-bottom: 10px;
  margin-top: 0px;
  line-height: 1.5em;
}

.infoCards {
  border:4px solid #756DE1;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  padding: 40px;
  height: 540px;
}

.personaCard {
  height: 425px;
}

.personaQuotes {
  font-family: europa, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.125em;
  line-height: 1.750em;
  margin-bottom: 20px;
  color: #7C7C7C;
}

.personaQuotesNeville {
  font-family: europa, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.125em;
  line-height: 1.750em;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #7C7C7C;
}

.behaviourCard {
  margin-top: 40px;
  height: 640px;
}

.cardMyWork {
  background: #eef0f0;
  height: 780px;
  padding: 40px;
  transform: translate(0px, 0px);
  transition-timing-function: ease-in-out;
  transition: 0.4s;
}


.cardMyWork:hover, .cardMyWork:hover:after {
/*  box-shadow: 0 10px 20px 0 rgba(32, 32, 36, 0.12);*/
  transform: translate(0px, -15px);
  transition-timing-function: ease-in-out;
  transition: 0.4s;
}

.deloitteTravelLarge {
  padding-top: 160px;
  padding-bottom: 140px;
}

.projectTitle {
  line-height: 38px;
}

.albertaLarge {
  padding-top: 120px;
  padding-bottom: 100px;
}

.landroverLarge {
  padding-top: 140px;
  padding-bottom: 140px;
}

.largeCardLink {
  text-decoration: none;
}

.largeCardLink:hover {
  text-decoration: none;
}

.logoImgs {
  margin-top: 40px;
}

.logoImgs > img {
  width: 100%;
}

.albertaImg {
  width: 100%;
  margin-bottom: 30px;
}

.brandList {
  list-style: none;
  padding: 0px;
}

.brandList > li {
  margin-bottom: 30px;
}

.wireframeAlberta {
  width: 100%;
  margin-top: 20px;
}

.personaTitle {
  margin-top: 40px;
}

.personaTitle > p {
  padding-top: 20px;
}

.screenShots {
  width: 100%;
}

.testingImg {
  width: 100%;
}

.learningBG {
  margin-top: 90px;
  background-color: #F5F9FA;
  padding-bottom: 90px;
}

.largeSliderBG {
  background-color: #F3F5F6;
  margin-top: 90px;
  margin-bottom: 90px;
  padding-bottom: 90px;
  padding-top: 90px;
  text-align: center;
}

.sliderImgLarge {
  width: 610px;
}

.bottomBorder {
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 36px;
  margin-bottom: 36px;
}

.challenge {
  line-height: 42px;
}

.container::after {
  content: "";
  display: block;
  clear: both;
}

.insightText {
  margin-top: 40px;
  margin-bottom: 90px;
}

.description {
  margin-top: 20px;
}

.reviewImg {
  width: 100%;
}

.wireframeLandRover {
  width: 100%;
  margin-top: 26px;
}

.appImgs{
  width: 100%;
  margin-top: 20px;
}

.sliderImgLR {
  width: 400px;
}

.flexsliderFull { 
  background: none !important;
  border: none !important;
}

.flex-control-nav {
  display: none !important;
}

.flex-prev {
  width: 60px !important;
  height: 60px !important;
  background-image: url(./images/arrow-prev.svg) !important;
  background-color: #fff !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 1 !important;
  border: 1px #28284d solid !important;
}

.flex-next {
  width: 60px !important;
  height: 60px !important;
  background-image: url(./images/arrow-next.svg) !important;
  background-color: #fff !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 1 !important;
  border: 1px #28284d solid !important;
}

.flex-direction-nav a:before {
  content: '' !important;
}

.logoImg {
  width: 100%;
}

.recent-work {
  display: flex;
  justify-content: center;
  margin-bottom: 3.125em;
}

.myWorkTitle {
  height: 60vh;
}

.myWorkText {
  position: absolute;
  top: 30%;
}

 @media only screen and (max-width: 500px) {
  #homeMyImage {
    width: 100%;
  }

  .aboutImg {
    width: 100%;
    object-fit: cover;
  }

  .backgroundPink {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  #backgroundLightBlueBox {
    height: 120em;
  }

  .caseStudyWrapper {
    margin-top: 20px;
  }

  .d-none {
    display: none;
  }
} 

@media only screen and (max-width: 1280px) {
  .hidden-md-down {
    display: none;
  }

  .myWorkTitle {
    height: 30vh;
  }
  
  .myWorkTitle > div {
    top: 0px;
  }

  .recent-work {
    display: block;
  }

  .infoCards {
    height: auto;
  }

  .caseStudyWrapper {
    margin-top: 20px;
  }

  .introHeader-large {
    font-size: 2.250em;
  }

  .centerText {
    padding-top: 0px;
  }


}

@media only screen and (min-width: 1279px) {
  .hidden-lg-up {
    display: none;
  }

  .caseStudyWrapper {
    margin-top: 40px;
  }

}

.content-media--video {
   background-color: #ddd;
   display: block;
   position: relative;
/*   padding: 0 0 56.25% 0;*/
}
.content-media--video iframe {
    position: absolute;
    border-radius: 20px;
/*    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;*/
}

#featured-video {
  transition: width .2s ease-in-out, height .2s ease-in-out, transform .38s ease-in-out;
}
/** Use .sticky */
#featured-video.is-sticky {
  position: fixed;
  top: 15px;
  left: auto;
  max-width: 280px;
  max-height: 158px;
  width: 280px;
  height: 158px;
  border-radius: 20px;
  z-index: 5;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
@media screen and (min-width: 1120px) {
   #featured-video.is-sticky {
      transform: translateX(80%);
   }
}
@media screen and (min-width: 1300px) {
   #featured-video.is-sticky {
      transform: translateX(300%);
   }
}

.cardSpacing {
  margin-bottom: 30px;
}

.linkBtn {
  border-radius: 100px;
  border: 1px #28294D solid;
  padding: 10px 40px 10px 40px;
  text-align: center;
}

.profileLogos:hover {
  text-decoration: none;
}

.overlay_pwd {
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:9999;
  background-color:#EEF0F0;
  color:white;
  padding:10% 0;
  text-align:center;
  color: black;
}

.overlay_pwd, input {
  padding: 15px;
  border-radius: 50px;
  border-style: none;
  font-family: europa, sans-serif;
  font-weight: 400;
}

.overlay_pwd, button {
  padding: 15px;
  border-radius: 50px;
  border-style: none;
  font-family: europa, sans-serif;
  font-weight: 400;
}

.coverImg {
  width: 100%;
  height: 100%;
}

.caseStudyBtn {
  width: 190px;
  height: 65px;
  border-radius: 100px;
  border: 1px #979797 solid;
  padding: 18px 40px 18px 40px;
  font-size: 1.200em;
  font-family: europa, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
}

.headings {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.750em;
  margin-bottom: 1.250em;
  color: #756DE1;
}

.subHeadings {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.250em;
  margin-bottom: 1.250em;
  color: #756DE1;
}

.challengeWarpper {
  text-align: center;
  padding: 40px;
  background: white;
  box-shadow: 0px 4px 20px #756DE1;
}

.deliverablesIconsWrapper {
  display: flex;
}

.deliverablesIcons {
  text-align: center;
}

.deliverablesIcons > img {
  width: 80px;
}

.containToDiv {
  width: 100%;
  /*height: 100%;*/
}

ol li.painNumber::before {
  content: "";
  color: #DA2C2E;
  font-weight: 700;
}

ol li.painNumber::marker {
  color: #DA2C2E;
  font-weight: 700;
}

ol li.oppNumber::marker {
  color: #219D2D;
  font-weight: 700;
}

.socialIconsWrapper {
  display: flex;
  padding-left: 40px;
  margin-top: 20px;
}

.socialIcon {
  width: 30px;
  height: 30px;
  margin-right: 30px;
}


