/* Written by Mel Colton for Sophie Hanbury */

  /* CSS FOR ALL PAGES */
body,h1,h2,h3,h4,h5,h6 {
 font-family: "Lato", sans-serif;
 }
 
body, html {
 height: 100%;
 color: #666;
 line-height: 1.8;
 font-size: 14px;
 padding: 0;
}
.w3-container {
    position: relative;
    display: block;
}
body {
 margin: 0px;
  padding-bottom: 200px;
}
.allButFooter {
 min-height: calc(100vh -300);
}
hr.rounded {
  border-top: 2px solid #bbb;
  margin-left: 22px;
  margin-right: 22px;
}
hr.rounded-visible {
  border-top: 2px solid #bbb;
  margin-left: 22px;
  margin-right: 22px;
}
.remove-margin {
 position: absolute;
 padding: 0px 0px 0px 0px;
 margin: 0px 0px 0px 0px;
 width: 100%;
}
.img {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 1;
  }
#main-img {
 height: 100%;
 width: 100%;
 } 
.rounded-button {
  height: 30px;
  background-color: none;
  border: 1px solid #627595;
  border-radius: 30px;
  padding: 6px 20px 6px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #627595;
  cursor: pointer;
 }
.rounded-button:hover {
  color: rgba(218, 210, 160, 1.0);
  background-color: #627595;
  border: none;
}
.spacer {
display: absolute;
padding-block: 44px;
background-color: none;
height: 300px;
}

.co-spacer {
display: absolute;
padding-block: 24px;
background-color: none;
height: 30px;
}

.header-text-container {
    background-color: none;
    width: 100%;
    height: 86%;   
}
.overlay-one {
 position: absolute;
 left: 26.5%;
 background: rgba(124, 132, 179, 0.3);
 width: 100%;
 height: 100%;
}

/* --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- FOR INDEX PAGE --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- */
.mission-statement {
  position: absolute;
  background-color: rgba(218, 210, 160, 0.4);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 200px;
  color: #627595;
  letter-spacing: 8px;
  text-transform: uppercase;
  opacity: 0.7;
  padding-left: 22px;
  padding-right: 22px;
  animation: text;  
  animation-delay: 0.5s;  
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: both; 
  animation-duration: 1.5s;	
}
.sophie-online-text {
    font-family: 'Roboto', sans-serif;
	color: white;
	letter-spacing: 10px;
	text-transform: uppercase;
	position: absolute;	
	text-shadow: 2px 2px 4px #777;
	z-index: 2;
}
.sophie-online-text-alt {
    font-family: 'Roboto', sans-serif;
	color: white;
	letter-spacing: 10px;
	text-transform: uppercase;
	text-shadow: 2px 2px 4px #777;	
}
.parallax-header-text {
   font-size: 32px;
   font-family: 'Roboto', sans-serif ;
   color: #fff;
   letter-spacing: 6px;
   text-transform: uppercase;
   text-align: center;
     text-shadow: 2px 2px 5px #333;
   width: 100%;
   position: relative;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);

}

/* --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- FOOTER --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- */
#footer {
 display: block;
 padding: 22px;
 margin-bottom: 30;
 background-color: #222;
 height: 270px;
}

.test{
 width: 80%;
 height: auto;
 display: block;
 align-content: center;
 margin: 12px auto 0px auto;
}
.sophie-text {
 text-align: center;
 color: #fff;
 /* color: rgba(218, 210, 160, 1); */
 font-family: 'Roboto Condensed 900', sans-serif;
 font-size: 1.5rem;
 text-transform: uppercase;
 letter-spacing: 3px;
 margin: 0px auto 0px auto;
}
.copyright-details {
 margin: 32px 6px 16px 6px;
 color: #999;
 text-align: center;
 font-family: 'Roboto Condensed 700', sans-serif;
 font-size: 1rem;
 letter-spacing: 1px;
}

/* --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- ANIMATIONS --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- */
@keyframes text {
  0% {
	  opacity: 0;
	  min-width: 100%; 
	  }	  
 100% {
	   transform: scale3d(1.2, 1.2, 1.2) translate3d(50px, 10px, 0px);
       min-width: 112%;
       opacity: 1;
       padding-left: 22%; 
       }
}
@keyframes image-ani {
   0% {
       opacity: 1;
       min-width: 100%; 
       }
   100% {
    transform: scale3d(1.05, 1.05, 1.05) translate3d(-30px, 0px, 0px);
    min-width: 105%;
    }
}
@keyframes text-alt {
  0% {
	  opacity: 0;
	  min-width: 20%; 
	  }	  
 100% {
	   transform: scale3d(1.1, 1.1, 1.1) translate3d(30px, 10px, 0px);
       min-width: 60%;
       opacity: 1;
       padding-left: 22%; 
       }
}

.fade-in {
animation: fadeIn ease 6s;
-webkit-animation: fadeIn ease 6s;
-moz-animation: fadeIn ease 6s;
-o-animation: fadeIn ease 6s;
-ms-animation: fadeIn ease 6s;
}
@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;}
}

/* --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- Main content section --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- */
.section-header-text {
   font-size: 22px;
   font-family: 'Roboto', sans-serif;
   color: #627595;
   letter-spacing: 10px;
   text-transform: uppercase;
   position: relative;
   left: 14px;
}
.content-container-main {
 background-position: center;
 background-size: cover;
 background-repeat: no-repeat;
 padding-bottom: 10px;
 margin: none; 
}
.column-content {
 float: left;
 padding: 0px;
 display: flex;
}
.left {
 width: 20%;
}
.middle {
 width: 30%;
}
.right {
 width: 50%;
 height: 500px;
}
.right-alt {
 width: 65%;
}
.row-content:after {
 content: "";
 display: table;
 clear: both;
}
.text-pad {
padding-left: 22px;
padding-right: 2rem;
}
.text-list {
 padding-left: 5rem;
 padding-right: 2rem;
}
.fa {
font-size: 28px;
color: #627595;
position: relative;
top: 5px;
}

/* --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- IMAGES --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- */

.product-image {
 background-image: url(images/newsPhone.png);
 background-repeat: no-repeat;
 background-size: 100% 100%;
 flex: 1;
}
.small-product-image {
 margin-top: 6%;
 background-image: url(images/newsPapers.png);
 background-repeat: no-repeat;
 background-size: 50% 50%;
 flex: 2;
}
.img-circular{
 width: 100px;
 height: 100px;
 margin-left: auto;
 margin-right: auto;
 background-image: url('images/sophieRound.png');
 background-size: cover;
 border-radius: 50px;
 -webkit-border-radius: 50px;
 -moz-border-radius: 50px;
 }
.img-linkedIn{
 width: 90px;
 height: 30px;
 display: block;
 align-content: center;
 margin-left: auto;
 margin-right: auto;
 background-image: url('images/linkedInLogo.png');
 background-size: contain;
 background-repeat: no-repeat;
 }
.header-image {
  background-image: url(images/widerWorldHeader.png);
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  height: 74%;
  }
.case-study-one-image {
   background-image: url(images/caseStudyImages/parlementLarge.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 80%;
   }
.case-study-two-image {
   background-image: url(images/caseStudyImages/archiveAlt.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 80%;
   }
.case-study-three-image {
   background-image: url(images/caseStudyImages/envelope.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 80%;
   }
.case-study-four-image {
   background-image: url(images/caseStudyImages/bridge.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 80%;
   }
.case-study-five-image {
   background-image: url(images/caseStudyImages/interview.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 80%;
   }
.case-study-six-image {
   background-image: url(images/caseStudyImages/dayOfTheDead.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 80%;
   }
   
.personal-development-image {
   background-image: url(images/caseStudyImages/developmentOneAlt.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 80%;
   }
   
 .introduction-image {
   background-image: url(images/sophieMain.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 80%;
   } 

/* --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- NAVIGATION --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- */
.topnav {
  background: rgba(124, 132, 179, 0.1);
  overflow: hidden;
}
.topnav a {
  float: left;
  display: block;
  text-align: center;
  padding: 22px 26px;
  text-decoration: none;
  font-size: 14px;
  border-right: 1px solid #bbb;
  color: white;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.topnav a:hover {
  background-color: rgba(218, 210, 160, 0.4);
  color: #cce6ff;
}
.topnav a:last-child {
  border-right: none;
  }
.topnav a.active {
  background-color: #627595;
  color: white;
  border-right: none;
}
.topnav .icon {
  display: none;
  }
  
.topnav-alt {
  background: #627595;
  /* background: rgba(124, 132, 179, 0.9); */
  overflow: hidden;
  z-index: 99;
  }
.topnav-alt a {
  float: left;
  display: block;
  text-align: center;
  padding: 18px 26px;
  text-decoration: none;
  font-size: 14px;
  border-right: 1px solid #bbb;
  color: white;
  letter-spacing: 4px;
  text-transform: uppercase;
  }
.topnav-alt a:hover {
  background-color: rgba(218, 210, 160, 1);
  color: #627595;
  }
.topnav-alt a:last-child {
  border-right: none;
  }
.topnav-alt a.active {
  background: rgba(124, 132, 179, 1);
  color: white;
  }
.topnav-alt .icon {
  display: none;
  color: rgba(218, 210, 160, 1);
  }
  
  
/* --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- COACHING PAGE --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- */
.co-col-content {
  display: flex;
  flex-flow: row wrap;
  justify-content: left;
  margin: -6px 0;
  }
  
.co-content-half {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 48%;
  margin: 5px 0;
  }

.co-section-left {
  float: left;
  width: 30%;
  margin-top: 16px;
  margin-right: 16px;
  }

.co-small-image {
  /* border: 1px solid gray; */
  width: 100%;
  }

.co-section-middle {
  display: inline-block;
  width: 65%;
  }

.co-section-right {
  float: right;
  width: 33%;
  padding-left: 16px;
  }
  
.co-callout {
  color: #666;
  font-style: italic;
  font-size: 14px;
  }
  
.uppercase {
  text-transform: uppercase;
  }
  
h7 {
   font-size: 22px;
   font-family: 'Roboto', sans-serif;
   color: #627595;
   letter-spacing: 10px;
   text-transform: uppercase;
   position: relative;
   }
   
.right-alt-coaching {
   width: 77%;
   }
   
.co-main-title {
    position: relative;
    margin-top: 14%;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 180px;
	color: #627595;
	line-height: 10rem;
    height: 1rem;
	letter-spacing: 8px;
	text-transform: uppercase;
	text-align: left;
	opacity: 0.7;
	z-index: 3;
	animation: text-alt;  
    animation-delay: 0.5s;  
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: both; 
    animation-duration: 1.5s;
}

/* --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- CASE STUDY PAGE --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- */
.multi-column-content {
 float: left;
 padding-left: 3%;
 padding-right: 3%;
 display: flex;
}
.multi-column-generic-col {
width: 19%;
flex: 1;
}
.one {
 width: 65%;
}
.two {
 width: 30%;
}
#indent {
padding-left: 1rem;
}
.multi-row-content:after {
 content: "";
 display: table;
 clear: both;
}
.text-pad {
padding: 1rem;
}
.multi-text-list {
 padding-left: 1rem;
 padding-right: 1rem;
}  
.header-text {
    background-color: none;
    width: 70%;
    height: 100%;   
}
.cs-main-title {
    position: relative;
    margin-top: 14%;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 180px;
	color: #627595;
	line-height: 10rem;
    height: 1rem;
	letter-spacing: 8px;
	text-transform: uppercase;
	text-align: left;
	opacity: 0.7;
	z-index: 3;
	animation: text-alt;  
    animation-delay: 0.5s;  
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: both; 
    animation-duration: 1.5s;
}
.cs-title-background {
  position: relative;
  margin-top: 10%;
  height: 75%;
  width: 70%;
  background-color: rgba(107, 150, 89, 0.2);
}
.cs-column {
display: flex;
}
.cs-col-left {
 flex: 1;
}
.cs-col-right {
background-color: rgba(124, 132, 179, 0.5);
width: 27%;
margin-right: 3%;
padding: 10% 2% 2% 1%;
z-index: 1;
}
.cs-col-content {
display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 5px 0;
}
.cs-section-small {
	flex: 1;
	margin-right: 22px;
	padding: 10px;
	&:first-child { margin-left: 0;}
	&:second-child {margin-left: 0;}
	&:last-child { margin-right: 10px; }
}
.cs-small-image {
 border: 1px solid gray;
 width: 100%;
}
.cs-overlay {
 position: relative;
 top: -36%;
 background: rgba(124, 132, 179, 0.3);
 width: 75%;
 height: 60%;
}
.cs-section-left {
float: left;
width: 25%;
margin-top: 16px;
margin-right: 16px;
}
.cs-section-middle {
display: inline-block;
width: 33%;
}
.cs-section-right {
float: right;
width: 33%;
padding-left: 16px;

}
.cs-linkouts li {
  align-content: start;
  list-style-type: none;
  padding-right: 16px;
  display: inline-block;
}
.gallery {
 margin-right: 6px;
 float: left;
 width 30px
}
.gallery img {
width: 50%;
height: auto;

}
.cs-link {
  background: rgba(124, 132, 179, 0.6);
  overflow: hidden;
}
.cs-link a {
  float: left;
  display: block;
  text-align: center;
  padding: 6px 16px;
  text-decoration: none;
  font-size: 12px;
  border-right: 2px solid #fff;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cs-link a:hover {
  background-color: rgba(124, 132, 179, 1.0);
  color: #fff;
}

/* --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- WIDER WORLD PAGE --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- */


 @keyframes wider-world {
  0% {
	  opacity: 0;
	  min-width: 80%; 
	  }	  
 100% {
	   transform: scale3d(1.2, 1.2, 1.2) translate3d(50px, 10px, 0px);
       min-width: 100%;
       opacity: 1;
       padding-left: 8%; 
       }
}
@keyframes image-ani {
   0% {
       opacity: 1;
       min-width: 100%; 
       }
   100% {
    transform: scale3d(1.05, 1.05, 1.05) translate3d(-30px, 0px, 0px);
    min-width: 105%;
    }
}
@keyframes text-alt {
  0% {
	  opacity: 0;
	  min-width: 20%; 
	  }	  
 100% {
	   transform: scale3d(1.1, 1.1, 1.1) translate3d(30px, 10px, 0px);
       min-width: 60%;
       opacity: 1;
       padding-left: 8%; 
       }
}

   
.grid-header {
 display: flex;
 }
.header-col-one {
 flex: 1;
 
 }
.grid-container {
 display: flex; /* inline block for mobile*/
 max-width: 100%;
 margin: 16px;
 background-color: none;
}
.ten {
 flex-grow: 1;
 float: left;
 margin: 3px 6px 0px 6px;
 padding: 12px;
 background-color: #627595;
 color: rgba(218, 210, 160, 1);
 text-align: center;
 display: inline-block;
 font-family: 'Roboto Condensed 700', sans-serif;
 font-size: 1.5rem;
 text-transform: uppercase;
}
.twenty {
 flex-grow: 2;
 float: left;
 margin: 3px 6px 0px 6px;
 padding: 12px;
 background-color: rgba(124, 132, 179, 0.8);
 color: rgba(218, 210, 160, 1);
 text-align: center;
 display: inline-block;
 font-family: 'Roboto Condensed 700', sans-serif;
 font-size: 1.5rem;
 text-transform: uppercase;
}
.thirty {
 flex-grow: 3;
 float: left;
 margin: 3px 6px 0px 6px;
 padding: 12px;
 background-color: rgba(124, 132, 179, 0.8);
 color: rgba(218, 210, 160, 1);
 text-align: center;
 display: inline-block;
 font-family: 'Roboto Condensed 700', sans-serif;
 font-size: 1.5rem;
 text-transform: uppercase;
}
.fifty {
 flex-grow: 5;
 float: left;
 margin: 3px 6px 0px 6px;
 padding: 12px;
 background-color: rgba(107, 150, 89, 0.5);
 color: #fff;
 text-align: center;
 display: inline-block;
 font-family: 'Roboto Condensed 700', sans-serif;
 font-size: 1.5rem;
 text-transform: uppercase;
}
.background-panel {
   position: absolute;
   background-color: rgba(124, 132, 179, 0.3);
   margin-top: -20%;
   margin-left: 10%;
   width: 56%;
   height: 42%;
   z-index: 1;
} 
.header-text {
 position: relative;
 display: inline-block;
 font-family: 'Roboto Condensed', sans-serif;
 font-size: 10rem;
 line-height: 10rem;
 height: 1rem;
 color: #627595;
 letter-spacing: 6px;
 text-transform: uppercase;
 margin-top: 10%;
 margin-left: 12%;
 z-index: 3;
 
 animation: wider-world;  
  animation-delay: 0.5s;  
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: both; 
  animation-duration: 1.5s;

}
.sub-header-text {
 position: relative;
 display: inline-block;
 font-size: 16px;
 color: #fff;
 letter-spacing: 2px;
 margin-top: 5%;
 margin-left: 17%;
 margin-right: 37%;
 z-index: 2;
}

/* --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- MEDIA QUERIES --~~~~~~~~~~~~~~~~~~~~~~~~~~~-- */
@media only screen and (max-width: 636px) {
  .topnav {
    background: none;
    overflow: hidden;
    }
  .topnav a:not(:first-child) {
    display: none;
    }
  .topnav a.icon {
    float: right;
    display: block;
    }
  .topnav.responsive {
    position: relative;
    }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
    }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    background-color: rgba(124, 132, 179, 0.4);
  }
  
  .topnav-alt a:not(:first-child) {
  display: none;
  }
  .topnav-alt a.icon {
    float: right;
    display: block;
    color: rgba(218, 210, 160, 1);
    }
  .topnav-alt.responsive {
    position: relative;
    }
  .topnav-alt.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
    }
  .topnav-alt.responsive a {
    float: none;
    display: block;
    text-align: left;
    background-color:  rgba(107, 150, 89, 0.4);
    }
    
  .fade-in {
     animation: none;
     -webkit-animation: none;
     -moz-animation: none;
     -o-animation: none;
     -ms-animation: none;
     }
  .header-text-container {
    background-color: none;
    width: 100%;
    height: 100%; 
    margin-top: -10%;
    z-index: -4;  
    }
   #main-img {
    background-image: url(images/truffleHoundTall.png);
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
    height: 100%;
    }
    
  .introduction-image {
   background-image: url(images/sophieTall.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   } 
   
  .header-image {
    height: 90%;
    }
    
  .case-study-one-image {
   background-image: url(images/caseStudyImages/parlementTall.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   }
  .case-study-two-image {
   background-image: url(images/caseStudyImages/archiveTall.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   }
  .case-study-three-image {
   background-image: url(images/caseStudyImages/envelopeTall.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   }
  .case-study-four-image {
   background-image: url(images/caseStudyImages/bridgeTall.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   }
  .case-study-five-image {
   background-image: url(images/caseStudyImages/interviewTall.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   }
  .case-study-six-image {
   background-image: url(images/caseStudyImages/dayOfTheDeadTall.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   }
   
   .personal-development-image {
   background-image: url(images/caseStudyImages/developmentOneTallAlt.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   }
     
   .sophie-online-text {
   position: relative;
   margin-top: 10%;
   margin-left: 20%;
   margin-right: 3%;
   display: block;
   font-size: 22px;
   }
   .overlay-one {
   position: absolute;
   flex: 2;
   padding: none;
   width: 100%;
   height: 70%;
   }
   .cs-overlay {
    visibility: hidden;
    }
   .cs-link a {
     display: flex;
     flex-direction: column;
     width: 100%;
     height: 30px;
     text-align: center;
     padding-left: 0px;
     padding-top: 14px;
     border-bottom: 4px solid #fff;
     }
   .sophie-online-text-alt {
   position: relative;
   margin-top: 10%;
   margin-left: 30%;
   margin-right: 3%;
   display: block;
   font-size: 20px;
   color: #627595;
   }
   .mission-statement {
   position: absolute;
   background-color: rgba(218, 210, 160, 0.4);
   font-family: 'Roboto Condensed', sans-serif;
   font-size: 70px;
   color: #627595;
   letter-spacing: 6px;
   text-transform: uppercase;
   opacity: 0.8;
   margin-top: 30%;
   margin-left: -14%;
   margin-right: 3%;
   z-index: 1;
   } 
   .cs-section-left {
   float: none;
   width: 100%;
   margin-left: 16px;
   margin-top: 6px;
   }
   .cs-section-middle {
   display: block;
   width: 100%;
   padding: 16px;
   }
   .cs-section-right {
   float: none;
   width: 100%;
   padding: 16px;
   }
   .cs-main-title {
    position: absolute;
    font-size: 7rem;
    letter-spacing: 0px;
    line-height: 6rem;
    height: 1rem;
    margin-top: 2rem;
    margin-left: -14%;
    margin-right: 3%;
    z-index: 3;
    }
    
    .co-main-title {
    position: absolute;
    font-size: 5rem;
    letter-spacing: 0px;
    line-height: 5rem;
    height: 1rem;
    margin-top: 2rem;
    margin-left: 8px;
    margin-right: 3%;
    z-index: 3;
    }

   .mobile-position {
    margin-top: 14rem;
    margin-left: 10px;
    font-size: 16px;
    }
   .cs-col-content {
   width: 100%;
   flex: 1;
   }
   .cs-column {
   display: flex;
   }
   .cs-col-right {
   background-color: rgba(124, 132, 179, 0.5);
   width: 70%;
   margin-right: 3%;
   padding: 10% 2% 2% 1%;
   color: #fff;
   z-index: 1;
   }
   .cs-small-image {
	border: 1px solid gray;
	width: 100%;
	}  
	
	.co-col-content {
	width: 100%;
	margin: 0px 0px -6px 0px;
	}
	
	.co-content-half {
	width: 100%;
	background-color: #bfa07c;
	justify-content: left;
	margin: 0;
	
	}
	
	.co-section-left {
	width: 100%;
	}
	
	.co-small-image {
	width: 110%;
	margin-top: -16px;
	}
	
	.co-callout {
	margin: 18px;
	font-size: 18px;
	text-align: center;
	color: white;
	}
	
	.co-section-middle {
	width: 100%;
	color: white;
	font-size: 16px;
	margin-left: 36px;
	margin-right: 36px;
	}
	
	.co-spacer {
	height: 0;
	background-color: #bfa07c;
	}

   .left {
   width: 100%;
   }
   .middle {
   width: 100%;
   }
   .right {
   width: 100%;
   height: none;  
   }
   .right-alt {
   width: 100%;
   height: none;  
   }
   .multi-column-content {
   display: block;
   float: none;
   align-content: center;
   }
   .multi-row-content {
   align-content: center;
   }
   .multi-column-generic-col {
   width: 100%;
   align-content: center;
   }
   .multi-text-list {
   align-content: center;
   }
   #indent {
   padding-right: 5%;
   }
   .section-header-text {
   font-size: 16px;
   padding-bottom: 6px;
   }
   h7 {
   font-size: 16px;
   font-family: 'Roboto', sans-serif;
   color: white;
   letter-spacing: 8px;
   text-transform: uppercase;
   position: relative;
   }
   .rounded {
   visibility: hidden;
   }
   .spacer {
     height: 22px;
   }
   .top-spacer {
     height: 1px;
     }
   .copyright-details {
     margin-left: 6px;
     margin-right: 6px;
     font-size: 12px;
     }
   
  .grid-container {
    display: inline-block;
    background-color: none;
    }
  .ten {
    width: 100%;
    margin-top: 6px;
    margin-bottom: 6px;
    }
  .twenty {
   width: 100%;
   margin-top: 6px;
   margin-bottom: 6px;
   }
  .thirty {
    width: 100%;
    margin-top: 6px;
    margin-bottom: 6px;
    }
  .fifty {
    width: 100%;
    margin-top: 6px;
    margin-bottom: 6px;
    }
  .header-text {
    position: relative;
    font-size: 7rem;
    line-height: 6rem;
    height: 1rem;
    margin-top: 10%;
    margin-left: 12%;
    }
  .sub-header-text {
    position: relative;
    font-size: 16px;
    margin-top: 12%;
    margin-left: 23%;
    margin-right: 17%;
    }
  .background-panel {
    position: relative;
    margin-top: -80%;
    margin-left: 10%;
    width: 80%;
    height: 66%;
    } 
  
} 

@media only screen and (max-width: 1042px) and (min-width: 637px) {

	.background-panel {
	  margin-top: -92%;
	  margin-left: 10%;
	  width: 56%;
	  height: 70%;
	  z-index: 1;
	  }

	.header-text {
	  font-size: 6rem;
	  line-height: 6rem;
	  height: 10rem;
	  margin-top: -70%;
	  margin-left: 12%;
	  }
 
	.sub-header-text {
	  font-size: 16px;
	  margin-top: 20%;
	  margin-left: 17%;
	  margin-right: 7%;
	  }
}

@media only screen and (max-width: 1197px) and (min-width: 637px) {
  .topnav {
    background: rgba(124, 132, 179, 1.0);
    overflow: hidden;
    }
  .topnav a:not(:first-child) {
    display: none;
    }
  .topnav a.icon {
    float: right;
    display: block;
    }
  .topnav.responsive {
    position: relative;
    }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
    }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    color: #cce6ff;
    background-color: rgba(124, 132, 179);
  }
  .topnav a:hover {
  background-color: rgba(218, 210, 160, 0.3);
  color: #cce6ff;
}
  .topnav a:last-child {
  border-right: none;
  }
  .topnav a.active {
  background-color: none;
  color: #cce6ff;
  border-right: none;
}
  
  .topnav-alt {
   background: rgba(124, 132, 179, 1.0);
   overflow: hidden;
   }
  .topnav-alt a:not(:first-child) {
  display: none;
  }
  .topnav-alt a.icon {
   float: right;
   display: block;
   }
  .topnav-alt.responsive {
   position: relative;
   }
  .topnav-alt.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav-alt.responsive a {
    float: none;
    display: block;
    text-align: left;
    color: #cce6ff;
    background-color: rgba(124, 132, 179);
  }
  .topnav-alt a:hover {
  background-color: rgba(218, 210, 160, 0.3);
  color: #cce6ff;
}
  .topnav-alt a:last-child {
  border-right: none;
  }
  .topnav-alt a.active {
  background-color: none;
  color: #cce6ff;
  border-right: none;
}
  
 .header-text-container {
    background-color: none;
    width: 100%;
    height: 75%;   
}

.header-text {
    position: relative;
    font-size: 8rem;
    line-height: 8rem;
    height: 1rem;
    margin-top: 10%;
    margin-left: 12%;
    }

 .sophie-online-text-alt {
   position: absolute;
   margin-top: 20%;
   margin-left: 46%;
   margin-right: 3%;
   display: block;
   font-size: 20px;
   color: #627595;
   z-index: 1;
   }
 .cs-main-title {
   position: absolute;
   font-size: 8rem;
   line-height: 7rem;
   height: 1rem;
   margin-top: 30%;
   margin-left: -14%;
   margin-right: 3%;
   z-index: 3;
   }
   
  .co-main-title {
   position: absolute;
   font-size: 8rem;
   line-height: 7rem;
   height: 1rem;
   margin-top: 60%;
   margin-left: -8%;
   margin-right: 3%;
   z-index: 3;
   }

    
 .intro-text {
  margin-top: 1rem;
  color: #fff;
  font-size: 18px
  }  
  
 .cs-col-right {
   background-color: rgba(124, 132, 179, 0.5);
   width: 40%;
   margin-right: 3%;
   padding: 10% 2% 2% 1%;
   color: #fff;
   z-index: 1;
   }
 .cs-overlay {
    margin-top: 30rem;
    width: 70%;
    }

	.co-col-content {
	width: 100%;
	margin: 0px 0px -6px 0px;
	
	}
	
	.co-content-half {
	width: 49%;
	background-color: white;
	justify-content: center;
	margin: 8px 0 0 0;
	border-left: 1px solid #ccc8c4;
	align-content: initial;
	}
	
	.co-section-left {
	width: 90%;
	display: flex;
	justify-content: flex-start;
	}
	
	.co-small-image {
	width: 101%;
	margin-left: 6px;
	
	}
	
	.co-section-middle {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	color: #666;
	font-size: 16px;
	text-align: center;
	margin-left: 22px;
	margin-right: 22px;
	}
	
	.co-spacer {
	height: 0;
	background-color: #fff;
	}
 
 #main-img {
   background-image: url(images/truffleHound.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   max-height: 70%;
   } 
 .case-study-one-image {
   background-image: url(images/caseStudyImages/parlementTall.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   }
 .case-study-two-image {
   background-image: url(images/caseStudyImages/archiveTall.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   }
 .case-study-three-image {
   background-image: url(images/caseStudyImages/envelopeTall.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   }
 .case-study-four-image {
   background-image: url(images/caseStudyImages/bridgeTall.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   }
 .case-study-five-image {
   background-image: url(images/caseStudyImages/interviewTall.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -1;
   }
 .case-study-six-image {
   background-image: url(images/caseStudyImages/dayOfTheDead.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 100%;
   z-index: -3;
   } 
 
 .cs-link a {
   display: flex;
   flex-direction: column;
   width: 100%;
   height: 30px;
   text-align: center;
   padding-left: 0px;
   padding-top: 14px;
   border-bottom: 4px solid #fff;
   }
   
 .sophie-online-text {
   position: absolute;
   margin-top: 22%;
   margin-left: 12%;
   margin-right: 70%;
   display: block;
   font-size: 16px;
   z-index: 1;
   }
 .mission-statement {
   position: absolute;
   font-size: 124px;
   margin-top: 6%;
   margin-left: 3%;
   }
 .overlay-one {
    position: absolute;
    flex: 2;
    padding: none;
    width: 100%;
    height: 60%;
    }
 .left {
     width: 30%;
     }
 .middle {
     margin-left: 2%;
     width: 60%;
     }
 .right {
     width: 100%;
     height: none; 
     }  
 .multi-column-content {
    display: block;
    float: none;
    align-content: center;
    }
 .multi-row-content {
    align-content: center;
    }
 .multi-column-generic-col {
    margin-left: 20%;
    width: 50%;
    align-content: center;
    }
 .multi-text-list {
    align-content: center;
    }
 #indent {
    padding-right: 5%;
    }
 .section-header-text {
    font-size: 14px;
    padding-right: 30%;
    margin-left: 10%;
    }
    h7 {
   font-size: 14px;
   font-family: 'Roboto', sans-serif;
   color: #627595;
   letter-spacing: 6px;
   text-transform: uppercase;
   position: relative;
   }
 .rounded {
    visibility: hidden;
    }
 .spacer {
     height: 22px;
     }
 .top-spacer {
     height: 12%;
     }
}

@media only screen and (min-width: 1200px) {
 #main-img {
   background-image: url(images/truffleHound.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 85%;
   }  
 .mission-statement {
   position: absolute;
   font-size: 200px;
   margin-top: 7%;
   max-height: 36%;
   padding-left: 22px;
   padding-right: 22px;
   }
 .section-header-text {
    font-size: 16px;
    }
 h7 {
   font-size: 16px;
   font-family: 'Roboto', sans-serif;
   color: #627595;
   letter-spacing: 8px;
   text-transform: uppercase;
   position: relative;
   }
 .overlay-one {
   position: absolute;
   left: 26.5%;
   background: rgba(124, 132, 179, 0.2);
   width: 100%;
   height: 80%;
   }
 .intro-text {
   margin-top: 0.1%;
   color: #fff;
   font-size: 18px
   } 
   
 .cs-col-right {
   background-color: rgba(124, 132, 179, 0.5);
   width: 55%;
   margin-right: 1.4%;
   padding: 10% 1.5% 2% 1%;
   color: #fff;
   z-index: 1;
   }
   
 .spacer {
   height: 24px;
   }
 .sophie-online-text {
   margin-top: 20%;
   margin-left: 6%;
   font-size: 20px;
   }
 .left {
   width: 20%;
   }
 .middle {
   width: 40%;
   }
 .right {
   width: 40%;
   height: none;   
   }
 .top-spacer {
   height: 8%;
   }
 .case-study-three-image {
   height: 90%;
   }

 .cs-main-title {
   margin-top: 48%;
   margin-right: 3%;
   }
 .co-main-title {
   margin-top: 48%;
   margin-right: 3%;
   }

 .cs-overlay {
   margin-top: -6%;
   height: 56%;
   }
 .cs-link a {
     display: flex;
     flex-direction: column;
     width: 100%;
     height: 30px;
     text-align: center;
     padding-left: 0px;
     padding-top: 14px;
     border-bottom: 4px solid #fff;
     border-left: 40px solid #fff;
     border-right: 40px solid #fff;
     }
  .header-text {
    font-size: 7.5rem;
    line-height: 7.5rem;
    
    }
}

@media screen and (min-width: 1400px) {
 #main-img {
   background-image: url(images/truffleHound.png);
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 100%;
   height: 65%;
   } 
 .sophie-online-text {
   margin-top: 15%;
   margin-left: 7%;
   }
 .mission-statement {
   position: absolute;
   font-size: 200px;
   margin-top: 7%;
   padding-left: 22px;
   padding-right: 22px;
   }
   
 .cs-col-right {
   background-color: rgba(124, 132, 179, 0.5);
   width: 38%;
   margin-right: 6%;
   padding: 10% 1.5% 2% 1%;
   color: #fff;
   z-index: 1;
   
   } 
 .cs-main-title {
   margin-top: 37%;
   }
 .co-main-title {
   margin-top: 37%;
   }

 .cs-overlay {
   margin-top: -6%;
   }
 .case-study-three-image {
   height: 90%;
   }
 .intro-text {
   margin-top: 0.1%;
   color: #fff;
   font-size: 18px
   } 
 .overlay-one {
   position: absolute;
   left: 26.5%;
   background: rgba(124, 132, 179, 0.3);
   width: 100%;
   height: 80%;
   }
 .spacer {
   height: 63px;
   }
}











