/* Created by Anthony Hall */
/* Updated on March 19, 2024 */

/* Start default configurations */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: transparent;
}

:root {
  --orange-color: #E56D0C;
  --purple-color: #584EA1;
  --light-purple-color: #D9D7E6;
  --light-orange-color: #F1D4BD;
  --black-color: #424440;
  --dark-grey-color: #9B9AA3;
  --light-grey-color: #EBEBEB;
  --white-color: #FFFFFF;
  --swiper-theme-color: #E56D0C;
}

/* Clear the float to prevent layout issues */
.callOutAutoLeft {
    display: flex; 
    margin: 2rem 1rem;
}

.callOutAutoRight {
    display: flex; 
    margin: 2rem 1rem; 
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

body { 
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
}

a {
    color: var(--orange-color);
    text-decoration: underline;
}

a:hover {
    opacity: .5;
    text-decoration: none;
}

button {
    height: 2.75rem;
    padding: 0.625rem 1.125rem;
    gap: 0.5rem;
    border-radius: 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 128%; /* 1.12rem */
    background: var(--orange-color);
    background-color: var(--orange-color);
    color: var(--white-color);
    border: 2px solid var(--orange-color);
}

button:hover {
    cursor: pointer;
    background: transparent;
    background-color: transparent;
    color: var(--orange-color);
    border: 2px solid var(--orange-color);
}

button.secondary {
    background: transparent;
    background-color: transparent;
    color: var(--orange-color);
    border: 2px solid var(--orange-color);
}

button.secondary:hover {
    background: var(--orange-color);
    background-color: var(--orange-color);
    color: var(--white-color);
    border: 2px solid var(--orange-color);
}

button.arrow {
    width: 18rem;
}

button.arrow2 {
    width: 16rem;
}

ul {
    list-style: disc;
    margin: 1rem 4rem 1rem 3rem;
}

ul.callOut {
    list-style:decimal;
    margin: 1rem .5rem 1rem 1rem;
}

ul.callOut>li {
    font-weight: 400;
    color: var(--black-color);
}

ul.navUl {
    list-style: none;
    padding: 12% 6% 6% 6%;
    margin: 0;
    /* width: 68%; */
}

ul.textBullets {
    list-style-type: disc;
    margin: 0 2rem;
    padding: 0;
}

li {
    color: var(--purple-color);
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 138%; /* 1.44rem */
    margin: 1rem 0;
}

ul.textBullets > li {
    color: var(--purple-color);
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 138%;
    margin: 1rem 0;
}

li > span.menuText {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--orange-color);
    height: 2rem;
    margin: 2rem 0;
    font-family: 'Lora', serif;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 128%; /* 2.24rem */
}
  
li > span.menuText:hover {
    text-decoration: none;
    opacity: .1;
    transition: .15s ease-out;
}

.noCircle {
    opacity: 0.9;
}

li.circle::before {
    position: absolute;
    content: '';
    background-color: var(--orange-color);
    border-radius: 50%;
    width: 10px;
    margin-left: -20px;
    margin-top: 10px;
    height: 10px;
    display: inline-block; /* To make it inline with the text */
}

div.menuItem.circle2::after {
    position: absolute;
    content: '';
    background-color: var(--purple-color);
    border-radius: 50%;
    width: 10px;
    margin-left: 24px;
    margin-top: -4px;
    height: 10px;
    display: inline-block; /* To make it inline with the text */
}

div.menuItem.circle3::after {
    position: absolute;
    content: '';
    background-color: var(--purple-color);
    border-radius: 50%;
    width: 10px;
    margin-left: 38px;
    margin-top: -4px;
    height: 10px;
    display: inline-block; /* To make it inline with the text */
}

div.menuItem.circle4::after {
    position: absolute;
    content: '';
    background-color: var(--purple-color);
    border-radius: 50%;
    width: 10px;
    margin-left: 52px;
    margin-top: -4px;
    height: 10px;
    display: inline-block; /* To make it inline with the text */
}

div.menuItem.circle5::after {
    position: absolute;
    content: '';
    background-color: var(--purple-color);
    border-radius: 50%;
    width: 10px;
    margin-left: 38px;
    margin-top: -4px;
    height: 10px;
    display: inline-block; /* To make it inline with the text */
}

form {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

input[type="text"] {
    height: 2.75rem;
    padding: 0.625rem 1.125rem;
    gap: 0.5rem;
    border-radius: 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 128%; /* 1.12rem */
    border: none;
    color: var(--dark-grey-color);
    background-color: var(--light-grey-color);
}

input[type="submit"] {
    height: 2.75rem;
    padding: 0.625rem 1.125rem;
    gap: 0.5rem;
    border-radius: 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 128%; /* 1.12rem */
    border: none;
    color: var(--white-color);
    background-color: var(--orange-color);
}

input[type="submit"]:hover {
    opacity: .5;
    cursor: pointer;
}

input:focus::placeholder {
    opacity: 0;
}
/* End default configurations */

/* Start of lite version */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
/* End lite version */

/* Start font definitions */
.title {
    /* Title (Mobile) */
    color: var(--purple-color);
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 116%; /* 2.9rem */
    letter-spacing: 0.05rem;
}

.quote {
    /* Title (Mobile) */
    color: var(--dark-grey-color);
    font-family: 'Lora', serif;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 116%; /* 2.9rem */
    letter-spacing: 0.05rem;
}

h1 {
    /* H1 (Mobile) */
    color: var(--black-color);
    font-family: 'Roboto', sans-serif;
    font-size: 2.225rem;
    font-style: normal;
    font-weight: 700;
    line-height: 108%; /* 2.9925rem */
    margin-top: .5rem;
}

h2 {
    /* H2 (Mobile) */
    color: var(--purple-color);
    font-family: 'Lora', serif;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 128%; /* 2.24rem */
}

h3 {
    /* H3 (Mobile) */
    color: var(--black-color);
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 128%; /* 1.44rem */
}

div.lg-fonts>h3 {
    margin: 0.28rem 0 1.42rem 0;
}

h4 {
    /* H4 (Mobile) */
    color: var(--purple-color);
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 138%;
    margin-top: 2rem;
}

h4.caseStudyStyle {
    /* H4 (Mobile) */
    color: var(--purple-color);
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 138%;
    margin-top: 1rem;
}

p {
    /* P */
    color: var(--black-color);
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 138%;
    margin: .5rem 0;
    padding: .5rem 0 0 0;

}

.small {
    /* P Small */
    color: var(--dark-grey-color);
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 128%; /* 1.12rem */
    margin: .5rem 0;
    padding: .5rem 0 0 0;
}

.descriptor {
    /* Descriptor */
    color: var(--black-color);
    font-family: 'Space Mono', monospace;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 128%; /* 1.12rem */
    text-transform: uppercase;
    margin: .5rem 0;
}
/* End font definitions */

/* Start header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px;
    background-color: transparent;
    /* position: -webkit-sticky; */
    position: static;
    top: 0;
    padding: 0 8.33%;
    z-index: 10000;
    /* Existing styles... */
    transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
}

header:hover {
    background-color: transparent;
    transition: background-color .5s ease-in-out;
    -moz-transition: background-color .5s ease-in-out;
    -webkit-transition: background-color .5s ease-in-out;
    -o-transition: background-color .5s ease-in-out;
}

header.grey:hover {
    background-color: var(--light-grey-color);
    transition: background-color .5s ease-in-out;
    -moz-transition: background-color .5s ease-in-out;
    -webkit-transition: background-color .5s ease-in-out;
    -o-transition: background-color .5s ease-in-out;
}

.currentNav {
    color: var(--white-color)!important;
}

/* Define the logo styles  */
.logoContainer {
    width: 52px;
    height: 52px;
}

.logoContainer > svg {
    width: 52px;
    height: 52px;
}
  
.logoContainer:hover {
    opacity: .5;
    cursor: pointer;
}

.logoContainerFooter {
    width: 52px;
    height: 52px;
    display: none;
}

.logoContainerFooter > svg {
    width: 52px;
    height: 52px;
}

.panicContainerFooter {
    display: none;
}

#dotsMenu {
    display: block;
}

#dotsMenu:hover {
    opacity: .5;
    cursor: pointer;
    transform: translate(-2px, -6px) rotate(0.5turn);
}

.menu-path {
    fill: var(--orange-color); /* Original color of the paths */
    transition: all 0.3s; /* Smooth transitions */
}

#navMenu {
    display: none;
}

#overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 95%;
    height: 100%;
    z-index: 200000;
    background-color: var(--purple-color);
    transition: right 0.5s;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.snackBar {
    display: flex;
    justify-content:space-between;
    align-items: center;
    background-color: var(--light-orange-color);
    border-radius: 1rem;
    padding: .64rem 2rem 1rem 2rem;
    margin: 0;
}

.snackBar:hover {
    cursor: pointer;
    opacity: .5;
}

.snackBar>div {
    margin: 0;
}

.snackBar>div>svg {
    margin: .64rem 0 0 0;
}

.cardPromo {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    flex-direction: column;
    border: 2px solid var(--light-purple-color);
    border-radius: 1rem;
    padding: 1rem 2rem 1rem 2rem;
    margin: 0;
}

#overlayNeedHelp {
    display: inline-block;
    position: flex;
    justify-content: center;
    align-items: flex-start;
}

#restartLink, #backLink {
    position: flex;
}

#jumpToTop:hover {
    cursor: pointer;
}

#restartLink > p > a, #backLink > p > a {
    text-decoration: none;
}

#closeIcon, #closeIconModal, #closeIconNeedHelp {
    position: absolute;
    display: none;
    background-color: transparent;
    z-index: 1000;
    right: 9.33%;
    top: 4.33%;
}

#closeIcon > svg, #closeIconModal > svg, #closeIconNeedHelp > svg {
    width: 46px;
    height: 46px;
    background-color: transparent;
    border-radius: 50%;
}

#closeIcon:hover, #closeIconModal:hover, #closeIconNeedHelp:hover {
    opacity: .5;
    transition: .25s ease-out;
    cursor: pointer;
}

#nav {
    margin: 0;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}
/* End header */

/* Start video styles */
#videoPlayerContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 6% 4.165%;
}

#videoPlayerContainer div#videoPlayerInside {
    overflow: hidden;
    border-radius: 1rem;
}

#sizzle {
    height: 100%;
    width: 100%;
    z-index: -10;
}

.forMobile {
    display: inline;
}

.forDesktop {
    display: none;
}

.adjustCaption {
    position: absolute;
    bottom: 2rem;
    left: 8.33%;
}

#staticImageCaption {
    margin: 0 4.165%;
}

#videoPlayerCaption {
    margin: 0 4.165% 1rem 4.165%;
}

#youTubeCaption {
    position: relative;
    top: -1rem;
    left: 8.33%;
    width: 83.33%;
}

.videoPlayerCaption {
    position: absolute;
    bottom: 10%;
    left: 8.33%;
    width: 83.33%;
    height: auto;
    color: var(--white-color);
    z-index: 10000;
}

.responsiveVideos {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}
  
.responsiveVideos iframe {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 91.67%;
    height: 91.67%;
    border: 0;
    border-radius: 1rem;
}
/* End video styles */

/* Start spacing */
.widthFull {
    width: 100%;
}

.widthFull-desktop {
    width: 100%;
}

.widthOne {
    width: 83.34%; 
}

.widthTwo {
    width: 66.68%;
}

.widthThree {
    width: 50.02%;
}

.widthFour {
    width: 33.36%;
}


.widthFourCaseStudy {
    width: 91.66%;
}

.widthFive {
    width: 16.66%;
}

.widthSix {
    width: 8.33%;
}

.heightEight {
    margin: 8rem 0;
}

.widthThirty {
    width: 100%;
    margin: 1rem 0;
}

#caseStudyProServices > div, #caseStudyPrivateClubs > div, #caseStudyFamilyOffices > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#caseStudyProServices:hover, #caseStudyFamilyOffices:hover {
    opacity: .74;
    cursor: pointer;
}

#caseStudyProServices > div > p:nth-child(4), #caseStudyPrivateClubs > div > p:nth-child(4), #caseStudyFamilyOffices > div > p:nth-child(4) {
    margin-top: 1.68rem;
}

.heightCaseCards {
    min-height: auto;
}

.heightEightBottom {
    margin: 0 0 8rem 0;
}

.heightEightTop {
    margin: 8rem 0 2rem 0;
}

.heightFour {
    margin: 4rem 0;
    height: 2rem 0;
}

.heightTwo {
    margin: 2rem 0;
}

.heightOne {
    margin: 1rem 0;
}

.heightZero, .colZero {
    margin: 0;
}

.colHalf {
    margin: 0 4.166%;
}

.colOne {
    margin: 0 8.33%;
}

.colLanding, .colLandingOne {
    margin: 0 8.33%;
}

.colTen {
    margin: 0 10%;
}


.colOne-mobile {
    margin: 0;
}

.colTwo {
    margin: 0 16.66%;
}

.colTwoLanding {
    margin: 0 8.33%;
}

.colThree {
    margin: 0 24.99%;
}

.colThree-mobile {
    margin: 0 8.33%;
}

.colFour {
    margin: 0 33.32%;
}

/* Start margin controls */
.marginHalf {
    margin: .5rem;
}

.marginHalfTop {
    margin-top: .5rem;
}

.marginHalfBottom {
    margin: 0 0 2rem 0;
    padding: 0;
}

.marginOne {
    margin: 1rem;
}

.marginOneLeftRight {
    margin: 0 1rem;
}

.marginOneTop {
    margin-top: 1rem;
}

.marginOne-mobile, .marginOneA-mobile  {
    margin: 1rem 0 0 0;
}

.marginOneTopMobile {
    margin-top: 1rem;
}

.marginHelp {
    margin: 1rem;
}

.marginOneHalfTop {
    margin-top: 1.5rem;
}

.marginTwoLeftRight {
    margin: 0 2rem;
}

.marginTwoHalfLeftRight {
    /* margin: 0 0 0 2.5rem; */
}

.marginZero, .marginTwoRight {
    margin: 0;
}

.marginTwo {
    margin: 2rem;
}

.marginFour {
    margin: 2rem;
}

.marginTwoFiveLeftRight {
    margin: 0 2.5rem;
}

.marginTwoFiveLeftRight-mobile {
    margin: 2rem 8.33% 0 8.33%;
}

.marginOneLeftRight-desktop {
    margin: 2rem 0 0 0;
}

.marginOneLeftRight-mobile {
    margin: 2rem 0 0 0;
}

.marginTwoTop {
    margin-top: 2rem;
}

.marginFourTop-mobile {
    padding-top: 4rem;
}

.marginTwoBottom-mobile {
    padding-bottom: 2rem;
}

.marginTwoTop-mobile {
    padding-top: 2rem;
}

.marginTwoTop-desktop {
    margin-top: 0;
}

.marginThreeTop {
    margin-top: 3rem;
}

.paddingThreeBottom {
    padding-bottom: 3rem;
}

.marginFourTop {
    margin-top: 4rem;
}

.marginSixTop {
    margin-top: 6rem;
}

.marginSixTop-mobile {
    margin-top: 4rem;
}

.marginTwoTopBottom {
    margin: 1.25rem 0;
}

/* End margin controls */

/* Start padding controls */
.paddingEightTopBottom {
    padding: 8rem 0;
}

.paddingEight {
    padding: 8rem;
}

.paddingEightTop {
    padding: 8rem 0 0 0;
}

.paddingEightBottom {
    padding: 0 0 8rem 0;
}

.paddingFourAll {
    padding: 4rem;
}

.paddingFour {
    padding: 4rem 0;
}

.paddingFourTop {
    padding: 4rem 0 0 0;
}

.paddingFourBottom {
    padding: 0 0 4rem 0;
}

.paddingTwelvePerTop {
    padding: 4rem 0 0 0;
}

.paddingFourTopEightBottom {
    padding: 4rem 0 8rem 0;
}

.paddingFourTopTwoLeft {
    padding: 4rem 2rem;
}

.paddingTwoTopOneBottom {
    margin: 2rem 0 1rem 0;
}

.paddingOne {
    margin: 1rem;
}

.paddingOneTop {
    margin: 1rem 0 0 0;
}

.paddingOneTopBottom {
    margin: 1rem 0;
}

.paddingOneTopBottomA {
    padding: 2rem 0 0 0;
} 

.paddingOneTopBottomB {
    padding: 0 0 2rem 0;
}

.paddingTwo {
    margin: 2rem 0;
}

.paddingTwoAll {
    padding: 2rem;
}

.paddingTwoTop {
    margin: 2rem 0 0 0;
}

.paddingOneTop {
    margin: 1rem 0 0 0;
}

.paddingHalfTop {
    margin: .5rem 0 0 0;
}

.paddingOneTopTwoBottom {
    margin: 1rem 0 2rem 0;
}

.paddingZero {
    padding: 0;
}
/* End padding controls */

/* Start global */
.hideItem {
    display: none;
    opacity: 0;
}

.startHidden {
    opacity: 0;
}
  
.fade-in {
    opacity: 1!important;
}

.hideSpan {
    display: none;
}

.noLine {
    text-decoration: none;
}

.fontItalic {
    font-style: italic;
}

.fontStrike {
    text-decoration: line-through;
}

.fontBold {
    font-weight: 700;
}

.fontNormal {
    font-weight: 400;
}

.fontCenter {
    text-align: center;
}

.fontLeft {
    text-align: left;
}

.fontRight {
    text-align: right;
}

.fontMedium {
    font-size: 3rem;
}

.fontBig {
    font-size: 5rem;
}

.borderRadiusOne {
    border-radius: 1rem;
}

.borderRadiusTwo {
    border-radius: 2rem;
}

.cursor {
    border-right: 4px solid var(--black-color);
    height: 1em; /* Adjust as needed for cursor height */
    margin-left: 2px; /* Adjust as needed for cursor spacing */
}

.cursor-purple {
    border-right: 4px solid var(--purple-color);
    height: 1em; /* Adjust as needed for cursor height */
    margin-left: 2px; /* Adjust as needed for cursor spacing */
}

.blink {
    animation: blink-animation 0.5s infinite;
}

@keyframes blink-animation {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.blockFadeIn {
    animation: fadeIn .25s ease-in;
}

.blockFadeOut {
    animation: fadeOut .25s ease-out;
}

hr {
    border-top: 1px dotted var(--dark-grey-color);
    width: 83.34%;
}

.learnMoreButton {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0 1rem 0;
}

#homeServicesCard1:hover, #homeServicesCard2:hover, #homeServicesCard3:hover, #homeServicesCard4:hover {
    cursor: pointer;
    opacity: .5;
}

.line {
    display: flex;
    justify-content: center!important;
    align-items: center;
}

.mainTextInside {
    margin: 0 8.33% 12% 8.33%;
}

.purpleIcon {
    width: auto;
    height: auto;
}

.purpleIcon > svg {
    width: 90px;
    height: 90px;
}
/* End global */

/* Start text colors */
.black {
    color: var(--black-color)!important;
}

.purple {
    color: var(--purple-color)!important;
}

.white {
    color: var(--white-color)!important;
}

.orange {
    color: var(--orange-color);
}

.dark-grey {
    color: var(--dark-grey-color);
}

.light-grey {
    color: var(--light-grey-color);
}
/* End text colors */

/* Start background colors */
.light-grey-background {
    background-color: var(--light-grey-color)!important;
}

.orange-background {
    background-color: var(--orange-color)!important;
}

.purple-background {
    background-color: var(--purple-color)!important;
    border: 1px solid var(--purple-color)!important;
}

.white-background {
    background-color: var(--white-color)!important;
}

.light-grey-border {
    border: 2px solid var(--light-grey-color);
}

.transparent {
    background-color: transparent!important;
}

#errorMessage {
    height: 400px;
}

.background404 {
    position: relative;
    background-image: url('/images/404.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    background-position: center;
}

.widthThreeHundred {
    width: 280px;
    margin-bottom: 2rem;
}

.widthThreeHundredExactly {
    width: 360px;
    margin: 1rem;

}

/* End background colors */

/* Start sections */
#typewriterTextInside {
    text-align: left;
    height: 380px;
    width: 83.34%;
    margin: 24% 8.33% 6% 8.33%;
}

#servicesContainer, #reviewsContainer, #salesContainer, #typewriterTextContainer, #mainTextContainer, #businessLeadership, #dontPanic {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
}

#helpButtons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

#engagementsBlog {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
}

#aboutContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

#hotTechnology {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap; 
}

#successContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#nameMeansContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

#engagementsProcess {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.borderAdd {
    border: 1px solid black;
}

#aboutReviewsContainer {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
}

#cookieSection {
    z-index: 2000000;
    width: auto;
    height: auto;
    position: fixed;
    bottom: 2.0825%;
    left: 2.0825%;
    background-color: var(--light-grey-color);
    color: var(--black-color);
}

.gridLeftContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.gridContainerSocialLanding {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.gridContainerInnerSocialLanding {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.fontCenterLanding {
    text-align: center;
}

.ctaBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--light-grey-color);
    border-radius: 1rem;
    flex-direction: column;
}

#contactContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#cookieContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#engagementsContainer {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center; 
    flex-wrap: wrap;
}

#securityContainer {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center; 
    flex-wrap: wrap;
}

#caseStudiesContainer {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
}

#newsletterContainer, #youTubeVideo, #landingFullImage {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gridCenterContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#reviewStarsContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#reviewStarsContainer > div {
    margin: .25rem 0;
}

#footer {
    border-radius: 1rem;
}

.insideColumn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--purple-color);
    border-radius: 1rem 1rem 0 0;
}

.heightFull {
    height: 100%;
}

.gridSpaceBetween {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gridSpaceBetweenPanic {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.leftSplitFiftyPanic {
    width: 83.33%;
    margin: 2rem 0 0 0;
    padding: 1rem;
    height: auto;
}

.rightSplitThirtyPanic {
    width: auto;
    margin: 0 0 2rem 0;
    padding: 1rem;
    height: auto;
}

.gridSpaceBetweenCaseStudies {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gridSpaceBetweenCenter {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 1rem;
}

.gridSpaceBetweenAbout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gridSpaceBetweenContactModal {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.gridSpaceBetweenContactModalOther {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 0;
}

.gridSpaceBetweenContactModalRow {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 1.25rem;
}

.gridSpaceBetweenContactModalRowOther {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    /* padding: 1.25rem; */
}

.gridSpaceBetweenFooter {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gridSpaceBetweenRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gridCenterRow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gridCenterColumn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.gridCenterColumn > div:nth-child(1) {
    text-align: center;
}

.gridCenterColumn > div:nth-child(3) {
    text-align: center;
}

.gridCenterColumn > div:nth-child(2) {
    text-align: center;
}

.gridCenterColumnAbout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem;
}

.gridCenterColumnLanding {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
    margin: 2rem;
}

.gridServices {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-evenly;
}

.gridLeftColumn {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center; 
}

.imageCover {
    width: 100%;
    height: 100%;
    /* object-fit: fill; */
    border-radius: 1rem;
}

.mapContact {
    width: 91.67%;
    height: 431px;
    position: relative;
    background-image: url('/images/42-map.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    background-position: center;
}

.caseStudyHeroImage {
    width: 95.83%;
    height: 95.83%;
    border-radius: 1rem;
    margin: .48rem 0 .18rem 0;
}

.officeTeam {
    /* width: 83.34%; */
    width: 91.67%;
    height: 548px;
    position: relative;
    background-image: url('/images/office-team.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    background-position: center;
}

.successOffice {
   width: 91.67%;
    height: 548px;
    position: relative;
    background-image: url('/images/dsc_0552.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    background-position: center; 
}

.developmentFullImage {
    width: 91.67%;
     height: 548px;
     position: relative;
     background-image: url('/images/development-landing.jpg');
     background-repeat: no-repeat;
     background-size: cover;
     border-radius: 1rem;
     background-position: center; 
 }

 .strategyFullImage {
    width: 91.67%;
     height: 548px;
     position: relative;
     background-image: url('/images/strategy-landing.jpg');
     background-repeat: no-repeat;
     background-size: cover;
     border-radius: 1rem;
     background-position: center; 
 }

.imageCoverVideo {
    position: relative;
    bottom: 60px;
    margin: auto;
    text-align: center;
}

.imageCoverVideo:hover {
    cursor: pointer;
}
/* End sections */

/* Start split columns */
.leftSplit {
    width: auto;
    /* margin: 0 3% 0 8.33%; */
    height: auto;
}

.leftSplitSeventy {
    width: 70%;
    margin: 0 3% 0 8.33%;
    height: auto;
}

.leftSplitSixty {
    width: 83.34%;
    margin: 0 8.33%;
    height: auto;
}

.leftSplitFiftyFive {
    width: 55%;
    margin: 0 1% 0 8.33%;
    height: auto;
}

.leftSplitFifty {
    width: 83.33%;
    /* margin: 8.33%; */
    height: auto;
}

.leftSplitFortyFive {
    width: 100%;
    padding: 0 8.33%;
    height: auto;
    margin: 0 0 4rem 0;
}

.leftSplitForty {
    width: 100%;
    margin: 0 8.33%;
    height: auto;
}

.leftSplitThirty {
    width: 30%;
    margin: 0 1% 0 8.33%;
    height: auto;
}

.rightSplit {
    width: auto;
    margin: 0;
    height: auto;
}

.rightSplitFifthFive, .rightSplitThirty, .rightSplitForty {
    width: 100%;
    padding: 0 8.33%;
    height: auto;
}

/* End split columns */

/* Start cards */
.purpleCard {
    border-radius: 1rem;
    background-color: var(--purple-color);
    width: 83.33%;
    height: 300px;
    border: 1px solid var(--purple-color);
}

.contactCard {
    position: absolute;
    border-radius: 1rem;
    background-color: var(--purple-color);
    border: 1px solid var(--purple-color);
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    margin: -178px -115px;
}

#helpSurvey {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    opacity: 1;
}

#engagementsBlog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
    justify-items: center;
    align-items: center;
    min-height: auto;
    padding: 20px;
}

.blogCard {
    border-radius: 1rem;
    background-color: var(--light-grey-color);
    width: auto;
    min-width: 308px;
    max-width: 100%;
    height: 760px;
}

.blogCardGrid {
    border-radius: 1rem;
    background-color: var(--light-grey-color);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    padding: 1rem;
    margin: 1rem;
    width: 100%;
    height: 100%;
}

.cardSizeFull {
    border-radius: 1rem;
    width: 100%;
    height: auto;
}

.cardSizeThree {
    border-radius: 1rem;
    background-color: var(--light-grey-color);
    width: 100%;
    min-width: 246px;
    height: 246px;
    margin: 2rem;
    padding: 0;
}

.gridSpaceBetweenAlternativeSuccess {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
    justify-items: center;
    align-items: center;
    min-height: auto;
    padding: 20px;
}

.gridSpaceBetweenAlternative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
    justify-items: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.gridCenterContainerData {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
    justify-items: center;
    align-items: center;
    min-height: auto;
    padding: 20px;
}

.gridLeftColumData {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    padding: 2rem;
    margin: 1rem;
    width: 83.33%;
    height: 100%;
    border-radius: 1rem;
    background-color: var(--white-color);
}

.cardSizeThreeAlternativeSuccess {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    padding: 1rem;
    margin: 1rem;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    background-color: var(--white-color);
}

.cardSizeThreeAlternative {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 2rem;
    margin: 1rem;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    background-color: var(--white-color);
}

.cardSizeThreeLanding {
    flex: 0 0 calc(50% - 20px);
    margin: 1rem 0;
    padding: 2rem;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    border-radius: 1rem;
    background-color: var(--white-color);
}

.cardSizeForm {
    border-radius: 1rem;
    background-color: var(--light-grey-color);
    width: 100%;
    min-width: 246px;
    height: auto;
    border: 1px solid var(--light-grey-color);
    margin: 1rem 0;
}

.cardSizeOne {
    border-radius: 1rem;
    background-color: var(--light-grey-color);
    width: 100%;
    height: auto;
    min-width: 246px;
    border: 1px solid var(--white-color);
}

.cardSizeFourSixteen {
    border-radius: 1rem;
    background-color: var(--light-grey-color);
    width: 100%;
    height: 16rem;
    margin: 1rem 0;
}

.cardSizeFourFourteen {
    border-radius: 1rem;
    background-color: var(--white-color);
    width: 100%;
    height: 14rem;
}

.cardSizeFourTen {
    border-radius: 1rem;
    background-color: var(--white-color);
    width: 48%;
    height: 10rem;
}
/* End cards */

.boxGroupOuter {
    display: flex;
}


/* Start Swiper JS customizations */
.swiper {
    width: 100%;
    height: 100%;
    margin: 0;
}

.swiper-slide {
    background-color: var(--orange-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
}

.swiper-pagination-elvis {
    position: absolute;
    bottom: 1rem!important;
    text-align: center;
    z-index: 2000001;
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,44px))!important;
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,44px))!important;
    text-align: center;
    line-height: 44px;
    font-size: .85rem;
    color: var(--black-color)!important;
    opacity: 1!important;
    background: var(--dark-grey-color)!important;
    z-index: 200000!important;
}

.swiper-pagination-bullet-active {
    color: #fff!important;
    background: var(--orange-color)!important;
}

.reviewCard {
    width: 100%;
    height: 32rem;
}

.swiper-slide:hover {
    /* opacity: .8; */
    /* cursor: pointer; */
}

.reviewContent > h3 {
    color: var(--light-grey-color);
    margin: 0 4rem 1rem 4rem;
    text-align: left;
}

.reviewContent > h2 {
    color: var(--black-color);
    text-align: left;
    margin: 0 4rem;
}

.reviewContent > h4 {
    color: var(--black-color);
    text-align: left;
    margin: 0 4rem;
}

.reviewsSvg {
    margin: 4rem 0 2rem 0;
    text-align: center;
}

.swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='44' height='44' viewBox='0 0 42 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M29.8889 21.0003H12.1111M12.1111 21.0003L18.7778 27.6669M12.1111 21.0003L18.7778 14.3336M41 20.9999C41 32.0456 32.0457 40.9999 21 40.9999C9.95431 40.9999 0.999998 32.0456 0.999998 20.9999C0.999998 9.95419 9.95431 0.999881 21 0.999881C32.0457 0.999881 41 9.95419 41 20.9999Z' stroke='%23EBEBEB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e")!important;
    height: 44px!important;
    width: 44px!important;
}

.swiper-button-next {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='44' height='44' viewBox='0 0 42 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.1111 20.9997L29.8889 20.9997M29.8889 20.9997L23.2222 14.3331M29.8889 20.9997L23.2222 27.6664M0.999998 21.0001C0.999998 9.95442 9.9543 1.00012 21 1.00012C32.0457 1.00012 41 9.95442 41 21.0001C41 32.0458 32.0457 41.0001 21 41.0001C9.9543 41.0001 0.999998 32.0458 0.999998 21.0001Z' stroke='%23EBEBEB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e")!important;
    height: 44px!important;
    width: 44px!important;
}

.swiper-button-prev:after, .swiper-button-next:after {
    opacity: 0;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: .5;
    cursor: pointer;
}

/* Media Queries */
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-width: 768px) {

    .gridSpaceBetweenAlternativeSuccess {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-auto-rows: 1fr;
        gap: 20px;
        justify-items: center;
        align-items: center;
        min-height: auto;
        padding: 20px;
    }

    .cardSizeThree {
        width: 100%;
        min-width: 246px;
        height: 258px;
        margin: 1rem 0;
    }

    .marginOneTopMobile {
        margin-top: 1rem;
    }

    .cardSizeForm {
        width: 100%;
        min-width: 246px;
        height: auto;
        margin: 1rem 0;
    }

    .blogCard {
        height: 800px;
        width: 47%;
    }

    .marginTwoFiveLeftRight-mobile {
        margin: 0 8.33%;
    }
    
    #aboutContainer {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .marginOneLeftRight-mobile {
        margin: 2rem 1rem 0 1rem;
    }

    .gridCenterRow {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .gridCenterRow2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
    }

    .gridCenterRowFixed {
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: start;
        flex-wrap: wrap;
    }

    .marginOne-mobile {
        margin: 1rem;
    }

    .marginOneA-mobile {
        margin: 1rem 1rem 1rem 0;
    }

    .marginTwo-mobile {
        margin: 2rem;
    }

    .marginFour {
        margin: 4rem;
    }

    #youTubeCaption {
        top: -2rem;
    }

    #successContainer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .reviewCard {
        width: 100%;
        height: 45rem;
    }
    
    /* Cards */
    .cardSizeFourSixteen {
        width: 100%;
        margin: 1rem 0;
        height: 18rem;
    }

    .gridCenterContainer {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }

    .gridCenterContainerData {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-auto-rows: 1fr;
        gap: 20px;
        justify-items: center;
        align-items: center;
        min-height: auto;
        padding: 20px;
    }

    .gridLeftColumData {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        flex-direction: column;
        padding: 2rem;
        margin: 1rem;
        width: 100%;
        height: 100%;
        border-radius: 1rem;
        background-color: var(--white-color);
    }

    /* Start header */
    header {
        height: 104px;
    }

    .logoContainer {
        width: 62px;
        height: 62px;
    }

    .logoContainer > svg {
        width: 62px;
        height: 62px;
    }

    /* End header */

    /* Start font definitions */
    .title {
        /* Title (Tablet) */
        font-size: 3.5rem;
        line-height: normal;
        letter-spacing: 0.07rem;
    }

    .quote {
        /* Title (Tablet) */
        font-size: 2.75rem;
        line-height: normal;
        letter-spacing: 0.07rem;
    }

    h1 {
        /* H1 (Tablet) */
        font-size: 3rem;
        line-height: 118%; /* 3.54rem */
    }

    h2 {
        /* H2 (Tablet) */
        font-size: 1.9375rem;
        line-height: 128%; /* 2.48rem */
    }

    h3 {
        /* H3 (Tablet) */
        font-size: 1.3125rem;
        line-height: 128%; /* 1.68rem */
        margin: .5rem 0 0 0;
    }

    ul.textBullets {
        list-style-type: disc;
        margin: 0 2rem;
        padding: 1rem;  
    }
    
    ul.textBullets > li {
        color: var(--purple-color);
        font-family: 'Roboto', sans-serif;
        font-size: 1.3125rem;
        font-style: normal;
        font-weight: 700;
        line-height: 128%;
        margin: 1rem 0;
    }

    h4 {
        /* H4 (Tablet) */
        font-size: 1.125rem;
        line-height: 138%;
    }

    h4.caseStudyStyle {
        /* H4 (Tablet) */
        color: var(--purple-color);
        font-family: 'Lora', serif;
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 700;
        line-height: 138%;
        margin-top: 0;
    }
    
    /* End font definitions */
}

@media only screen and (min-width: 1024px) {

    .colTwoLanding {
        margin: 0 16.66%;
    }

    .paddingOneTopBottomA, .paddingOneTopBottomB {
        padding: 1rem 0;
    }

    .ctaBox {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: var(--light-grey-color);
        border-radius: 1rem;
        flex-direction: row;
    }

    .colLanding {
        margin: 0 24.99%;
    }
    
    .widthThirty {
        width: 30%;
        margin: 1rem 0;
    }

    .heightCaseCards {
        height: auto;
        min-height: 420px
    }

    .caseStudyHeroImage {
        width: 91.67%;
        height: 91.67%;
        border-radius: 1rem;
        margin: 1.4rem 0 .18rem 0;
    }
    
    .contactCard {
        margin: -178px -115px;
    }

    .marginTwoRight {
        margin: 0 5rem 0 0;
    }
    
    .blogCard {
        height: 830px;
        width: 47%;
    }

    .marginSixTop-mobile {
        margin-top: 4rem;
    }

    .purpleCard {
        width: 200px;
        height: 380px;
    }

    .rightSplit {
        width: auto;
        margin: 0 0 0 1%;
        height: auto;
    }

    .cardSizeFourFourteen {
        border-radius: 1rem;
        background-color: var(--white-color);
        width: 22.33%;
        height: 14rem;
    }

    .cardSizeFourTen {
        border-radius: 1rem;
        background-color: var(--white-color);
        width: 22.33%;
        height: 10rem;
    }

    /* .leftSplitSixty {
        width: 60%;
        margin: 0 3% 0 8.33%;
        height: auto;
    } */
    
    #aboutReviewsContainer {
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
    }

    #reviewStarsContainer {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
    }
    
    #reviewStarsContainer > div {
        margin: 1rem .25rem;
        height: 56px;
    }
    
    #reviewStarsContainer > div > span > svg {
        /* margin-top: .5rem; */
    }
    
    .colOne-mobile {
        margin: 0 8.33%;
    }
    
    #engagementsProcess {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: nowrap;
    }

    .callOutAutoLeft {
        float: left; 
        margin: 0 2rem 1rem .5rem;
    }
    
    .callOutAutoRight {
        float: right;
        margin: 0 .5rem 1rem 2rem; 
    }

    .widthFourCaseStudy {
        width: 33.36%;
    }

    .colThree-mobile {
        margin: 0 24.99%;
    }

    #contactContainer {
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
    }

    .marginOneLeftRight-desktop {
        margin: 2rem 1rem 0 1rem;
    }

    .marginTwoBottom-mobile {
        padding-bottom: 0;
    }

    .leftSplitFifty {
        width: 50%;
        margin: 0 3% 0 8.33%;
        height: auto;
    }

    #youTubeCaption {
        top: -3rem;
    }

    .logoContainerFooter {
        width: 62px;
        height: 62px;
        display: flex;
    }

    .logoContainerFooter > svg {
        width: 62px;
        height: 62px;
    }

    .panicContainerFooter {
        display: flex;
        width: 52px;
        height: 66px;
    }

    .panicContainerFooter > svg {
        width: 52px;
        height: 66px;
    }

    .gridSpaceBetween {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .gridSpaceBetweenLanding {
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .cardSizeThree {
        width: 30%;
        height: auto;
        margin: 1rem;
        padding: 2rem;
    }

    .cardSizeForm {
        width: 30%;
        min-width: auto;
        height: auto;
    }

    .reviewCard {
        width: 100%;
        height: 35rem;
    }
    
    /* Start cards */
    .cardSizeFourSixteen {
        width: 22.33%;
        height: 22rem;
        margin: 0;
    }
    
    /* Start video sizzle section */
    .forMobile {
        display: none;
    }

    .forDesktop {
        display: block;
    }
    /* End video sizzle section */

    /* Start sections */
    #typewriterTextInside {
        text-align: left;
        height: 380px;
        width: 83.34%;
        margin: 3% 8.33%;
    }

    .mainTextInside {
        margin: 0 22.66% 0 8.33%;
    }
    
    /* End sections */
}

@media only screen and (min-width: 1280px) {
    .gridSpaceBetweenPanic {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .leftSplitFiftyPanic {
        width: 50%;
        margin: 2rem 2% 2rem 8.33%;
        padding: 1rem;
        height: auto;
    }

    .rightSplitThirtyPanic {
        width: auto;
        margin: 2rem 8.33% 2rem 2%;
        padding: 1rem;
        height: auto;
    }

    .gridSpaceBetweenAlternativeSuccess {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-auto-rows: 1fr;
        gap: 20px;
        justify-items: center;
        align-items: center;
        min-height: auto;
        padding: 20px;
    }
    
    .contactCard {
        margin: -178px -115px;
    }

    .fontCenterLanding {
        text-align: left;
    }
    
    .cardSizeThree {
        width: 30%;
        height: auto;
        margin: 1rem;
        padding: 2rem;
    }

    .cardSizeThreeLanding {
        flex: 0 0 calc(30% - 20px);
        margin: 1rem 0;
        padding: 2rem;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        border-radius: 1rem;
        background-color: var(--white-color);
    }

    .gridContainerInnerSocialLanding {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: left;
    }

    .gridContainerSocialLanding {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .heightCaseCards {
        height: auto;
        min-height: 352px
    }

    .cardSizeForm {
        width: 30%;
        min-width: 246px;
        height: auto;
    }

    .purpleCard {
        height: 352px;
    }

    #youTubeCaption {
        top: -4rem;
    }
    
    #engagementsContainer {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center; 
        flex-wrap: nowrap;
    }

    #securityContainer {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start; 
        flex-wrap: wrap;
    }

    .reviewCard {
        width: 100%;
        height: 50rem;
    }

    #caseStudiesContainer {
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
    }

    .leftSplitFortyFive {
        width: 45%;
        margin: 0 3% 0 8.33%;
        padding: 0;
        height: auto;
    }

    .leftSplitForty {
        width: 40%;
        margin: 0 1% 0 8.33%;
        height: auto;
    }

    .rightSplitForty {
        width: 40%;
        margin: 0 8.33% 0 1%;
        padding: 0;
        height: auto;
    }

    .rightSplitFifthFive {
        width: 55%;
        margin: 0 8.33% 0 1%;
        padding: 0;
        height: auto;
    }

    .rightSplitThirty {
        width: 33.43%;
        margin: 0 8.33% 0 1%;
        padding: 0;
        height: auto;
    }

    #nameMeansContainer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .marginTwoTop-desktop {
        margin-top: .5rem;
    }

    .marginFourTop-mobile {
        margin-top: 0;
        padding: 0;
    }

    .marginTwoTop-mobile {
        padding-top: 0;
    }
    
    /* Start header */
    header {
        height: 150px;
    }

    .logoContainer {
        width: 72px;
        height: 72px;
    }
    
    .logoContainer > svg {
        width: 72px;
        height: 72px;
    }

    .logoContainerFooter {
        width: 72px;
        height: 72px;
    }
    
    .logoContainerFooter > svg {
        width: 72px;
        height: 72px;
    }

    .panicContainerFooter {
        display: flex;
        width: 62px;
        height: 79px;
    }

    .panicContainerFooter > svg {
        width: 62px;
        height: 79px;
    }

    #navMenu {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .menuItem {
        padding: 0 0 0 2rem;
    }

    #dotsMenu {
        display: none;
    }

    #overlay {
        display: none;
    }
    /* End header */
    
    /* Start font definitions */
    .title {
        /* Title */
        font-size: 4.5rem;
        line-height: normal;
        letter-spacing: 0.09rem;
    }

    .quote {
        /* Title (Mobile) */
        font-size: 3.75rem;
        line-height: normal;
        letter-spacing: 0.09rem;
    }

    h1 {
        /* H1 */
        font-size: 3.25rem;
        line-height: 118%; /* 3.835rem */
    }

    div.caseStudy>h1 {
        margin-top: 0;
    }

    h2 {
        /* H2 */
        font-size: 2.125rem;
        line-height: 128%; /* 2.72rem */ 
    }

    h3 {
        font-size: 1.5rem;
        line-height: 128%; /* 1.92rem */
        margin: 1rem 0;
    }
    
    ul.textBullets {
        list-style-type: disc;
        margin: 0 2rem;
        padding: 0 1rem 2rem 1rem;
    }

    ul.textBullets > li {
        color: var(--purple-color);
        font-family: 'Roboto', sans-serif;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 700;
        line-height: 128%;
        margin: 1rem 0;
    }

    h4 {
        /* H4 */
        font-size: 1.125rem;
        line-height: 138%;
    }

    h4.caseStudyStyle {
        /* H4 (Tablet) */
        color: var(--purple-color);
        font-family: 'Lora', serif;
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 700;
        line-height: 138%;
        margin-top: 0;
    }
    /* End font definitions */
}

@media only screen and (min-width: 1440px) {
    .contactCard {
        margin: -178px -115px;
    }
    
    .reviewCard {
        width: 100%;
        height: 40rem;
    }

    .widthFull-desktop {
        width: 66.67%;
    }

    #youTubeCaption {
        top: -4rem;
    }

}