/*-- full-page-layout --*/
/*-- font layout --*/
/*-- main navigation --*/
/*-- page layout --*/
/* ------------------- 
	Imports
---------------------*/
/* Colors */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Slab:wght@100..900&family=Sacramento&display=swap');
/* Font Sizes */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

h1 {
  font-size: 2.8em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.3em;
}

h4 {
  font-size: 1.1em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 1em;
}

strong {font-weight:400;}

/* BACKGROUND GRADIENT */
/* BOX SIZING */
/* TRANSITIONS */
/* BOX SHADOW */
/* BORDER RADIUS */
/* OPACITY */
/* TRANSFORM */
.portfolio-grid {
  margin: 40px auto 0 auto;
}

.view {
  width: 33.33333%;
  height: auto;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.view .mask, .view .content {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.view img {
  width: 100%;
  display: block;
  position: relative;
}

.view h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
  font-style: normal;
  text-shadow: 0 -1px 0 #2eb7a5;
  font-size: 1.6em;
  letter-spacing: -0.03em;
  color: white;
  text-align: center;
  position: relative;
  padding: 10px;
  padding-bottom: 0;
  margin: 80px 0 0 0;
}

.view p {
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
  font-style: normal;
  text-shadow: 0 -1px 0 #2eb7a5;
  position: relative;
  color: white;
  padding: 0 20px 20px;
  text-align: center;
}

.view a {
  text-decoration: none;
}

.view a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  background: #e65c5c;
  color: white;
  text-transform: uppercase;
  -webkit-box-shadow: 0 0 1px #2b2b2b;
  -moz-box-shadow: 0 0 1px #2b2b2b;
  box-shadow: 0 0 1px #2b2b2b;
}

.view a.info:hover {
  -webkit-box-shadow: 0 0 5px #2b2b2b;
  -moz-box-shadow: 0 0 5px #2b2b2b;
  box-shadow: 0 0 5px #2b2b2b;
}

/* ------ Hover Styles ------ */
.view-first img {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: 0 auto;
}

.view-first .mask {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  background-color: rgba(71, 209, 191, 0.9);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.view-first h2 {
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  transform: translateY(-100px);
  -o-transform: translateY(-100px);
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.view-first p {
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  transform: translateY(100px);
  -o-transform: translateY(100px);
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.view-first:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
}

.view-first a.info {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.view-first:hover .mask {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.view-first:hover h2,
.view-first:hover p,
.view-first:hover a.info {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
  -o-transform: translateY(0px);
}

.view-first:hover p {
  -webkit-transition: transition-delay, 0.1s;
  -moz-transition: transition-delay, 0.1s;
  -ms-transition: transition-delay, 0.1s;
  -o-transition: transition-delay, 0.1s;
  transition: transition-delay, 0.1s;
}

.view-first:hover a.info {
  -webkit-transition: transition-delay, 0.2s;
  -moz-transition: transition-delay, 0.2s;
  -ms-transition: transition-delay, 0.2s;
  -o-transition: transition-delay, 0.2s;
  transition: transition-delay, 0.2s;
}

/* ------ GRID ------ */
.portfolio-grid .view {
  width: 33%;
  float: left;
  text-align: center;
  border-top: 1px solid #cbcbcb;
}

/* we are using a combination of borders and box shadows to control the grid lines */
.portfolio-grid .view:nth-child(-n+3) {
  border-top: none;
}

.portfolio-grid .view:nth-child(3n-1),
.portfolio-grid .view:nth-child(3n-2) {
  box-shadow: 1px 0 0 #cbcbcb;
}

section.masthead {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background: url(../../img/background.jpg) repeat #2b2b2b;
  max-height: 820px;
}
section.masthead .container {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background: url(../../img/background-glow.png) no-repeat center top;
  max-height: 620px;
}
section.masthead .container header {
  text-align: center;
  width: 100%;
  overflow: hidden;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
section.masthead .container header #logo {
  margin: 0 auto 2em auto;
  width: 236px;
}
section.masthead .container header #logo img {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 236px;
  height: inherit;
}
section.masthead .container header .tagline {
  font-size: 2.1em;
  color: white;
  text-shadow: 0 -1px 0 #000;
  line-height: 1.5;
  margin: 0 auto 30px auto;
  width: 19em;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

/* Sticky Header */
section.masthead {
  width: 100%;
}
section.masthead.sticky {
  position: fixed;
  top: 0;
  left: 0;
  text-align: left;
  padding-top: 10px;
  height: 65px;
  z-index: 1;
}
section.masthead.sticky .container {
  padding: 0 20px;
  max-width: none;
}
section.masthead.sticky .container #logo {
  float: left;
}
section.masthead.sticky .container #logo img {
  width: 50px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
section.masthead.sticky .container .tagline {
  display: none;
}
section.masthead.sticky .container nav {
  float: right;
  padding-right: 20px;
}
section.masthead.sticky .container nav ul {
  margin-top: 10px;
}
section.masthead.sticky .container nav li {
  text-align: center;
}

/* ------------------- 
	footer
---------------------*/
footer.footer {
  background: #2b2b2b;
  -webkit-box-shadow: inset 0 1px 0 #454545;
  -moz-box-shadow: inset 0 1px 0 #454545;
  box-shadow: inset 0 1px 0 #454545;
  font-size: .8em;
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
  font-style: normal;
  text-align: left;
}
footer.footer .container {
  padding: 40px 100px;
  max-width: 75em;
}
footer.footer .container aside.copyright {
  float: left;
  width: 50%;
}
footer.footer .container aside.info {
  float: left;
  text-align: right;
  width: 50%;
  margin: 0;
}
footer.footer .container a {
  color: white;
  text-decoration: none;
}
footer.footer .container a:hover {
  color: #e65c5c;
}

/* ---------------  FORM  --------------- */
.control-group input, .control-group textarea {
  background: none repeat scroll 0% 0% #e9e9e9;
  border: medium none;
  margin-bottom: 40px;
  color: #2eb7a5;
  display: block;
  font-family: 'Open Sans',sans-serif;
  font-size: 1.4em;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 10px;
  width: 100%;
}

.control-group textarea {
  min-height: 200px;
  max-height: 300px;
  max-width: 370px;
}

.control-group.no-margin.bp-mc-submit-wrap {
  clear: both;
  text-align: center;
  padding-top: 20px;
}

.cbp-mc-column {
  width: 42%;
  padding: 10px 0 0 20px;
  float: left;
}
.cbp-mc-column:first-child {
  padding: 10px 60px 10px 0;
}

.control-group input.radio {
  display: inline;
  width: 30px;
}

.contact-form label.error, div#errors {
  background: none repeat scroll 0 0 #f07f73;
  color: #ffffff;
  margin-bottom: 3px;
  padding-left: 5px;
  position: relative;
  top: -35px;
  clear: both;
}

#msg_submitting h2,
#msg_submitted h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
  font-style: normal;
  color: white;
  margin: 0;
  padding: 0;
}

#msg_submitted p {
  color: white;
}

.hidden {
    display: none !important; /* Hide the modal when the 'hidden' class is applied */
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.modal-content button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.modal-content button:hover {
    background-color: #0056b3;
}


/* ---------------  RADIO BUTTONS --------------- */
.ac-custom {
  width: 120%;
  margin: -20px 0 0 0;
}

.ac-custom h2 {
  font-size: 3em;
  font-weight: 300;
  padding: 0 0 0.5em;
  margin: 0 0 30px;
}

.ac-custom ul,
.ac-custom ol {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px auto;
  max-width: 800px;
}

.ac-custom li {
  margin: 0 auto;
  position: relative;
  padding: 16px 0;
  width: 50%;
  display: inline-block;
  float: left;
}

.ac-custom label {
  display: inline-block;
  position: relative;
  padding: 0 0 0 45px;
  vertical-align: top;
  color: #2b2b2b;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 0.9em;
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
  font-style: normal;
}

.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"],
.ac-custom label::before {
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  margin-top: -12px;
  position: absolute;
  cursor: pointer;
}

.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"] {
  opacity: 0;
  -webkit-appearance: none;
  display: inline-block;
  vertical-align: middle;
  z-index: 100;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.ac-custom label::before {
  content: '';
  border: 4px solid white;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.ac-radio label::before {
  border-radius: 50%;
}

.ac-custom input[type="checkbox"]:checked + label,
.ac-custom input[type="radio"]:checked + label {
  font-weight: 700;
}

.ac-custom input[type="checkbox"]:checked + label::before,
.ac-custom input[type="radio"]:checked + label::before {
  opacity: 0.8;
  background: #f94949;
}

/* General SVG and path styles */
.ac-custom svg {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  left: 5px;
  pointer-events: none;
}

.ac-custom svg path {
  stroke: #fdfcd3;
  stroke-width: 13px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Box Fill */
.ac-boxfill svg path {
  stroke-width: 8px;
}

.contact-form #msg_submitting {
  display: none;
}

.contact-form #msg_submitted {
  display: none;
}

/* ---------------  BUTTON --------------- */
input.submit_button {
  border: 0;
  background: #e65c5c;
  box-shadow: 5px 5px 0 #2eb7a5;
  color: white;
  cursor: pointer;
  font: inherit;
  margin: 0;
  outline: 0;
  padding: 12px 20px;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  width: auto;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}
input.submit_button:hover {
  box-shadow: 4px 4px 0 #2eb7a5;
  -webkit-transform: translate(1px, 1px);
  -moz-transform: translate(1px, 1px);
  transform: translate(1px, 1px);
  -o-transform: translate(1px, 1px);
  background: #e44f4f;
}
input.submit_button:active {
  box-shadow: 2px 2px 0 #2eb7a5;
  -webkit-transform: translate(3px, 3px);
  -moz-transform: translate(3px, 3px);
  transform: translate(3px, 3px);
  -o-transform: translate(3px, 3px);
}

/* ---------------  RESPONSIVE --------------- */
@media screen and (max-width: 70em) {
  .cbp-mc-column {
    width: 50%;
  }

  .cbp-mc-column:nth-child(3) {
    width: 100%;
  }
}
@media screen and (max-width: 48em) {
  .cbp-mc-column {
    width: 100%;
    padding: 10px;
  }
}
nav {
  display: inline-block;
  margin: 0 auto;
  width: 100%;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
nav ul {
  margin: 0;
  padding: 0;
  margin-top: 50px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
nav ul li {
  display: inline;
  margin-left: 20px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
nav ul li:first-child {
  margin-left: 0;
}
nav ul li a {
  background: url(../../img/nav_bg.png) no-repeat 0 0;
  line-height: 1.3em;
  border: #2b2b2b;
  color: white;
  font-size: 1em;
  text-shadow: 0 -1px 0 #000;
  text-decoration: none;
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
  font-style: normal;
  display: inline-block;
  width: 140px;
  padding: 7px 0;
  -webkit-box-shadow: 0 0 3px #121212;
  -moz-box-shadow: 0 0 3px #121212;
  box-shadow: 0 0 3px #121212;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
nav ul li a:hover {
  background: url(../../img/nav_bg.png) no-repeat 0 -41px;
  width: 140px;
  padding: 7px 0;
}
nav ul li a:selected {
  background: url(../../img/nav_bg.png) no-repeat 0 -41px;
  width: 140px;
  padding: 7px 0;
}
nav#navigation {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #191919;
  height: 65px;
}
nav#navigation .nav-logo {
  float: left;
  display: block;
  margin-top: 11px;
  width: 200px;
}
nav#navigation .nav-logo img {
  display: block;
  padding-left: 20px;
}
nav#navigation ul {
  float: right;
  margin: 12px 20px 0 0;
  text-align: center;
  width: auto;
}
nav#internal-navigation {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #191919;
  height: 65px;
}
nav#internal-navigation .nav-logo {
  float: left;
  display: block;
  margin-top: 11px;
  width: 200px;
}
nav#internal-navigation .nav-logo img {
  display: block;
  padding-left: 20px;
}
nav#internal-navigation ul {
  float: right;
  margin: 12px 20px 0 0;
  text-align: center;
  width: auto;
}

/* -----------------------------------------------------------------------
	Media Queries
------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  nav#internal-navigation {
    background: #191919;
  }
  nav#internal-navigation ul {
    height: 60px;
    display: block;
    z-index: 1;
  }
  nav#internal-navigation ul li {
    margin-left: 10px;
  }
  nav#internal-navigation ul li:first-child {
    margin-left: 0;
  }
  nav#internal-navigation ul li a {
    width: 90px;
  }
}
@media screen and (max-width: 565px) {
  nav#internal-navigation .nav-logo {
    overflow: hidden;
    width: 70px;
  }
}
@media screen and (max-width: 420px) {
  nav#internal-navigation .nav-logo {
    display: none;
  }
  nav#internal-navigation ul {
    float: none;
    margin: 11px 0 0;
  }
}
/* ------------------- 
	Home Page 
---------------------*/
body {
  font-size: 20px;
  font-family: 'Roboto Slab', serif;
  font-weight: 200;
  font-style: normal;
  line-height: 1.8rem;
  margin: 0;
  padding: 0;
  color: white;
  min-width: 320px;
}

#wrapper {
  position: absolute;
  right: 0;
  left: 0;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
  /* for IE6&7 */
}

section.masthead .container header h3 {
  color: black;
  position: absolute;
  text-indent: -9999px;
}

/* ------------------- 
	General
---------------------*/
#awwwardsaward {
  position: fixed;
  right: 0;
  top: 25%;
}

header.title {
  font-family: 'Roboto Slab', serif;
  font-weight: 100;
  font-style: normal;
  font-size: 2.8em;
  text-align: center;
  line-height: 1em;
  color: #2b2b2b;
}
header.title span {
  font-family: 'Sacramento', cursive;
  font-weight: 400;
  font-style: normal;
  color: #a4a4a4;
  font-size: 0.7em;
}

.container {
  max-width: 60em;
  padding: 100px 0;
  margin: 0 auto;
  line-height: 1.7em;
}
.container p a {
  color: #e65c5c;
  font-weight: 300;
  text-decoration: none;
}
.container p a:hover {
  color: #ff7676;
}

/* ------------------- 
	Services
---------------------*/
section.services {
  background: #f1f1f1;
  border-bottom: 1px solid #d7d7d7;
  color: #2b2b2b;
}
section.services .inner {
  margin: 40px auto 0 auto;
}
section.services .inner ul.services_list {
  margin-top: 80px;
  padding: 0;
}
section.services .inner ul.services_list li.services_item {
  width: 27.02703%;
  padding: 0 3%;
  float: left;
  list-style: none;
  text-align: center;
  letter-spacing: .04em;
}
section.services .inner ul.services_list li.services_item:last-child {
  padding-right: 0;
}
section.services .inner ul.services_list li.services_item h2 {
  color: #e65c5c;
  font-size: 1.5em;
  font-family: 'Roboto Slab', serif;
  font-weight: 200;
  font-style: normal;
}

/* ------------------- 
	Portfolio
---------------------*/
section.portfolio {
  background: #e4e4e4;
  -webkit-box-shadow: inset 0 1px 0 #ececec;
  -moz-box-shadow: inset 0 1px 0 #ececec;
  box-shadow: inset 0 1px 0 #ececec;
}
section.portfolio header {
  font-family: 'Roboto Slab', serif;
  font-weight: 100;
  font-style: normal;
  font-size: 3em;
  text-align: center;
}

/* ------------------- 
	Contact Sidebar
---------------------*/
section.contact {
  -webkit-box-shadow: inset 0 1px 0 #ececec;
  -moz-box-shadow: inset 0 1px 0 #ececec;
  box-shadow: inset 0 1px 0 #ececec;
  color: #2b2b2b;
  display: flex;/* Flexbox to align both sections in a row */
  justify-content: space-between; /* Space between the sections */
}
.about, .contact {
    flex: 1; /* Ensure both sections grow to take up equal space */
}
section.contact h5 {
  margin: 0;
  padding: 0;
}
section.contact aside.about {
  background: #c1f0ea;
  float: left;
  width: 59.5%;
  padding: 100px 0 100px 0;

}
section.contact aside.about .wrapper {
  float: right;
  margin-right: 60px;
  width: 46rem;
}
section.contact aside.about .contact-form {
  margin-top: 40px;
}
section.contact aside.values {
  background: #47d1bf;
  float: left;
  width: 40.5%;
  margin: 0;
  padding: 100px 0 100px 0;

}
section.contact aside.values .wrapper {
  float: left;
  margin-left: 60px;
  width: 16.5em;
  font-size: 1.2rem;
}
section.contact aside.values .wrapper p {
  font-size: 0.95em;
  line-height: 1.7rem;
  margin: .5rem 0rem;
}
section.contact .wrapper h4 {
  font-weight: 400;
  margin: 0;
  padding: 0;
}
section.contact aside.values .wrapper img.bio-img {
  float: left;
  width: 40%;
  margin: 0 10px 0 0;
}
section.contact aside.about .wrapper img.bio-img {
  float: left;
  margin: 0 30px 10px 0;
  width: 150px; /* Set a fixed width */
  height: 150px; /* Set a fixed height (same as width to make it a circle) */
  border-radius: 50%; /* Make the corners rounded, forming a circle */
  object-fit: cover; /* Ensure the image fills the circle while maintaining aspect ratio */
  overflow: hidden; /* Ensure the image stays within the bounds of the circle */
}
section.contact aside.values .wrapper header.sm_title {
  font-size: 2rem;
  font-weight: 200;
  line-height: 2.2rem;
  margin-bottom: 20px;
}
section.contact aside.values .wrapper ul.contact-info {
  margin: 0;
  padding: 0;
  margin-top: 30px;
}
section.contact aside.values .wrapper ul.contact-info li {
  padding-bottom: 10px;
  list-style: none;
}
section.contact aside.values .wrapper ul.contact-info .contact-icons {
  background: url("../../img/contact-sprite.png") no-repeat scroll 0 0 transparent;
  display: block;
  float: left;
  height: 25px;
  margin-right: 5%;
  width: 25px;
}
section.contact aside.values .wrapper ul.contact-info .contact-icons.phone {
  background-position: 0 0;
}
section.contact aside.values .wrapper ul.contact-info .contact-icons.email {
  background-position: 0 -25px;
}
section.contact aside.values .wrapper ul.contact-info .contact-icons.location {
  background-position: 0 -50px;
}
section.contact aside.values .wrapper ul.contact-info p {
  display: block;
  overflow: hidden;
  text-decoration: none;
}
section.contact aside.values .wrapper ul.contact-info a {
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 300;
}
section.contact aside.values .wrapper ul.contact-info a:hover {
  color: #47d1bf;
}
section.contact header {
  font-family: 'Roboto Slab', serif;
  font-weight: 100;
  font-style: normal;
  font-size: 2.8em;
  text-align: left;
  margin-bottom: 40px;
}
section.contact p {
  text-align: left;
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
  font-style: normal;
}

/* -----------------------------------------------------------------------
	Client Portfolios
------------------------------------------------------------------------*/
section.client-header {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background: url(../../img/background.jpg) repeat #2b2b2b;
  -webkit-box-shadow: inset 0 1px 0 #ececec;
  -moz-box-shadow: inset 0 1px 0 #ececec;
  box-shadow: inset 0 1px 0 #ececec;
}
section.client-header .container {
  padding: 80px 0 10px;
}
section.client-header .container header.title h1 {
  font-size: 1.38em;
  line-height: 0.7em;
  color: white;
}

section.client-portfolio {
  background: #f1f1f1;
  border-bottom: 1px solid #d7d7d7;
  color: #2b2b2b;
}
section.client-portfolio header.title h1 {
  font-size: 1.5em;
  line-height: 0.7em;
}
section.client-portfolio img {
  width: 94%;
}
section.client-portfolio .project-details {
  margin-top: 80px;
}
section.client-portfolio .project-details .col-3 {
  width: 33.333%;
  float: left;
  padding: 0 25px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5em;
  font-size: 0.9em;
}
section.client-portfolio .project-details .col-3 ul li {
  padding-bottom: 5px;
}

section.client-testimonial {
  background: #47d1bf;
  color: #2b2b2b;
  text-align: center;
}
section.client-testimonial .container {
  max-width: 40em;
  padding: 100px 0 60px 0;
}
section.client-testimonial .container p.signature {
  font-family: 'Sacramento', cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
}

section.interested {
  background: #c1f0ea;
  color: #2b2b2b;
}
section.interested .container {
  max-width: 50em;
  padding: 100px 0 80px 0;
}
section.interested .container p {
  text-align: center;
  margin: 40px auto 0;
}
section.interested .container .button {
  border: 0;
  background: #e65c5c;
  box-shadow: 5px 5px 0 #70dbcd;
  color: white;
  cursor: pointer;
  font: inherit;
  margin: 0;
  outline: 0;
  padding: 12px 20px;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  width: 140px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  margin-top: 20px;
}
section.interested .container .button:hover {
  box-shadow: 4px 4px 0 #70dbcd;
  -webkit-transform: translate(1px, 1px);
  -moz-transform: translate(1px, 1px);
  transform: translate(1px, 1px);
  -o-transform: translate(1px, 1px);
  background: #e44f4f;
}
section.interested .container .button:active {
  box-shadow: 2px 2px 0 #70dbcd;
  -webkit-transform: translate(3px, 3px);
  -moz-transform: translate(3px, 3px);
  transform: translate(3px, 3px);
  -o-transform: translate(3px, 3px);
}
section.interested .container a {
  text-decoration: none;
}

section.next-project {
  background: #777777;
}
section.next-project .container {
  color: #2b2b2b;
  padding: 60px 0;
  text-align: center;
  font-family: 'Sacramento', cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5em;
}
section.next-project .container h5 {
  margin: 0;
}
section.next-project .container a {
  color: #e4e4e4;
  text-decoration: none;
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
  font-style: normal;
  font-size: 0.6em;
}
section.next-project .container a:hover {
  color: #47d1bf;
}

/* -----------------------------------------------------------------------
	Media Queries
------------------------------------------------------------------------*/
@media screen and (max-width: 1380px) {
  section.contact aside.about {
    float: none;
    min-height: unset;
    padding: 50px 0 0;
  }
  section.contact aside.about .wrapper {
    width: auto;
    float: none;
    margin: 0 40px 60px 40px;
  }
  section.contact aside.about .wrapper .contact-form {
    padding-bottom: 30px;
  }
  section.contact aside.about .wrapper .contact-form .cbp-mc-column {
    padding: 0;
    margin-right: 3%;
    width: 47%;
  }
  section.contact aside.about .wrapper .contact-form .control-group input, section.contact aside.about .wrapper .contact-form .control-group textarea {
    padding: 5px 0 5px 10px;
  }
  section.contact aside.about .wrapper .contact-form .control-group .ac-custom label {
    font-size: 1em;
  }
  section.contact aside.about .wrapper .contact-form .control-group textarea {
    max-width: unset;
    width: 100%;
  }
  section.contact aside.about .wrapper .contact-form .control-group.no-margin.bp-mc-submit-wrap {
    padding-top: 0;
  }
  section.contact aside.about .wrapper .contact-form .control-group.no-margin.bp-mc-submit-wrap input.submit_button {
    padding: 5px 10px;
  }
  section.contact aside.values {
    float: none;
    min-height: unset;
    padding: 50px 0 0;
  }
  section.contact aside.values .wrapper {
    float: none;
    width: auto;
    margin: 0 40px;
  }
  section.contact aside.values .wrapper header {
    margin-bottom: 20px;
  }
  section.contact aside.values .wrapper p {
    width: 60%;
    float: left;
  }
  section.contact aside.values .wrapper img.bio-img {
    width: 35%;
    margin-right: 5%;
  }
  section.contact aside.values .wrapper ul.contact-info {
    float: left;
    margin: 1% 0 0 0;
  }
  section.contact aside.values .wrapper ul.contact-info p {
    width: auto;
    float: none;
    margin: 10px 0;
  }
  section.contact aside.values .wrapper ul.contact-info li {
    padding-bottom: 20px;
  }

  footer.footer .container {
    max-width: unset;
    padding: 20px 40px;
  }
  footer.footer .container aside.copyright, footer.footer .container aside.info {
    float: none;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 845px) {
/*  section.contact aside.values .wrapper ul.contact-info {
    width: 35%;
  }*/
}
@media screen and (max-width: 768px) {
  body {
    font-size: 18px;
    min-width: 320px;
  }

  #glow > #wrapper {
    width: 100%;
    overflow: hidden;
  }

  section .container {
    padding: 50px 0;
  }
  section.masthead {
    max-height: none;
  }
  section.masthead .container {
    height: inherit;
    padding: 50px 0  20px;
  }
  section.masthead .container header #logo {
    margin: 2.5em auto 1.5em;
  }
  section.masthead .container header .tagline {
    width: auto;
    padding: 0 3%;
  }
  section.masthead .container header nav {
    position: fixed;
    top: 0;
    height: 60px;
    background: #191919;
    display: block;
    width: 100%;
    z-index: 1;
  }
  section.masthead .container header nav ul {
    margin: 11px 0 0;
  }
  section.masthead #navigation {
    display: none !important;
  }
  section.services .inner ul.services_list {
    margin-top: 0;
  }
  section.services .inner ul.services_list li.services_item {
    padding: 0 20px;
  }
  section.services .inner ul.services_list li.services_item img {
    width: 75%;
  }
  section.portfolio .view h2 {
    display: none;
  }
  section.portfolio .view p {
    line-height: 7.25em;
  }
  
   /*---------------------
      singular portfolio stack
      -------------------*/ 
      .portfolio-grid
      {margin-bottom:20px;}
   section.portfolio .container {
    padding: 50px 0 20px 0;
  }
  section.portfolio .container header {
    letter-spacing: -0.03em;
  }
  section.portfolio .container .portfolio-grid .view {
    width: auto;
  }
  section.portfolio .container .portfolio-grid .view .mask, section.portfolio .container .portfolio-grid .view .content {
    height: 100%;
  }
  section.portfolio .container .portfolio-grid .view h2 {
    display: block;
    margin: 100px 0 0;
  }
  section.portfolio .container .portfolio-grid .view p {
    line-height: 1em;
  }
  section.portfolio .container .portfolio-grid .view.view-first {
    border: none !important;
    box-shadow: none !important;
    float: none;
    margin: 0 auto;
    width: auto;
    border-top: 1px solid #d5d5d5 !important;
  }
  section.portfolio .container .portfolio-grid .view img {
    width: auto;
  }
   /*---------------------
      end singular portfolio stack
      -------------------*/ 
      
  /*section.contact aside.about {
    width: 100%;
    float: none;
    min-height: unset;
    padding: 50px 0 0;
  }*/
  
   /*---------------------
      Added to stack about me section
      -------------------*/ 
    section.contact {
        display: block;
        padding: 0; /* Removed padding from section.contact */
    }

    section.contact aside.about,
    section.contact aside.values {
        float: none; /* Remove float for stacking */
        width: 100%; /* Set each section to 100% width */
        margin: 0;
        padding: 50px 0 40px; /* Add some spacing */
    }

    section.contact aside.about .wrapper,
    section.contact aside.values .wrapper {
        width: 100%; /* Ensure wrapper takes full width */
        margin: 0;
        font-size: 1em;
    }
      
    /* For the contact-info section */
    section.contact aside.about .wrapper ul.contact-info {
        margin-top: 20px; /* Adjust spacing */
        font-size:18px;
    }
    
    /*----------------------
       end fix attempt 
    -----------------------*/
  section.contact aside.about .wrapper {
    float: none;
    margin: 0 40px;
    width: auto;
  }
  section.contact aside.about .wrapper .contact-form {
    padding-bottom: 30px;
  }
  section.contact aside.about .wrapper .contact-form .cbp-mc-column {
    padding: 0;
    margin-right: 0;
    width: 100%;
  }
  section.contact aside.about .wrapper .contact-form .control-group input, section.contact aside.about .wrapper .contact-form .control-group textarea {
    padding: 5px 0 5px 10px;
  }
  section.contact aside.about .wrapper .contact-form .control-group .ac-custom label {
    font-size: 1em;
  }
  section.contact aside.about .wrapper .contact-form .control-group textarea {
    max-width: unset;
    width: 100%;
  }
  section.contact aside.about .wrapper .contact-form .control-group.no-margin.bp-mc-submit-wrap {
    padding-top: 0;
  }
  section.contact aside.about .wrapper .contact-form .control-group.no-margin.bp-mc-submit-wrap input.submit_button {
    width: 100%;
  }
  section.contact aside.values {
    width: 100%;
    float: none;
    padding: 50px 0 30px;
  }
  section.contact aside.values .wrapper {
    float: none;
    width: auto;
    margin: 0 40px;
  }
  section.contact aside.values .wrapper p {
    font-size: 1em;
  }
  section.contact aside.values .wrapper img.bio-img {
    margin: 0 5px 0 0;
    width: 35%;
  }
  section.client-testimonial .container {
    padding: 7% 7% 3%;
    width: auto;
  }
  section.interested .container {
    padding: 10% 7% 7%;
    width: auto;
  }
  section.next-project .container {
    padding: 1.5em 0;
  }

  .footer .container {
    max-width: unset;
    padding: 20px 40px;
  }
  .footer .container aside.copyright, .footer .container aside.info {
    float: none;
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
}
@media screen and (max-width: 654px) {
  body {
    /*font-size: 16px;*/
  }

  section.services .inner ul.services_list {
    margin-top: 0;
  }
  section.services .inner ul.services_list li.services_item {
    padding: 0;
    float: none;
    width: 75%;
    margin: 60px auto;
  }
  section.services .inner ul.services_list li.services_item:first-child {
    margin-top: 20px;
  }
  section.services .inner ul.services_list li.services_item:last-child {
    margin-bottom: 0;
  }
  section.services .inner ul.services_list li.services_item img {
    width: auto;
  }
  section.portfolio .container {
    padding: 50px 0 20px 0;
  }
  section.portfolio .container header {
    letter-spacing: -0.03em;
  }
  section.portfolio .container .portfolio-grid .view {
    width: auto;
  }
  section.portfolio .container .portfolio-grid .view .mask, section.portfolio .container .portfolio-grid .view .content {
    height: 100%;
  }
  section.portfolio .container .portfolio-grid .view h2 {
    display: block;
    margin: 100px 0 0;
  }
  section.portfolio .container .portfolio-grid .view p {
    line-height: 1em;
  }
  section.portfolio .container .portfolio-grid .view.view-first {
    border: none !important;
    box-shadow: none !important;
    float: none;
    margin: 0 auto;
    width: auto;
    border-top: 1px solid #d5d5d5 !important;
  }
  section.portfolio .container .portfolio-grid .view img {
    width: auto;
  }
  section.contact {
      flex-direction: column;
  }
  section.contact header {
    margin-bottom: 20px;
    line-height: 1em;
  }
  section.contact aside.about .wrapper {
    margin: 0 40px 0 30px;
  }
 
  section.contact aside.values .wrapper p {
    float: none;
    width: auto;
  }
  section.contact aside.values .wrapper img.bio-img {
    width: 33%;
  }
  section.contact aside.values .wrapper ul.contact-info {
    float: none;
    width: auto;
    margin-top: 40px;
  }
  section.client-header .container header.title h1 {
    font-size: 1.3em;
  }
  section.client-portfolio .project-details .col-3 {
    width: 100%;
  }
    footer.footer .container aside.copyright, footer.footer .container aside.info {
      font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .header {
    font-size: 1.7em;
    padding: 0 40px 80px 40px;
  }

  section.masthead .container header #logo {
    width: 50%;
  }
  section.masthead .container header #logo img {
    width: 100%;
  }
  section.masthead .container header .tagline {
    font-size: 1.5em;
  }
  section.masthead .container header .tagline strong {
    font-weight: 300;
  }
  section.masthead .container header nav ul li {
    margin-left: 10px;
  }
  section.masthead .container header nav ul li:first-child {
    margin-left: 0;
  }
  section.masthead .container header nav ul li a {
    width: 90px;
  }
  section.portfolio .container {
    padding: 50px 0 20px 0;
  }
  section.portfolio .container header {
    letter-spacing: -0.03em;
  }
  section.portfolio .container .portfolio-grid .view {
    width: 100%;
  }
  section.portfolio .container .portfolio-grid .view h2 {
    display: block;
    margin: 70px 0 0;
  }
  section.portfolio .container .portfolio-grid .view p {
    line-height: 1em;
  }
  section.portfolio .container .portfolio-grid .view.view-first {
    width: 100% !important;
  }
  section.portfolio .container .portfolio-grid .view img {
    width: 100%;
  }
  section.contact aside.values .wrapper img.bio-img {
    width: 40%;
    min-width: 100px;
  }
  section.client-header .container header.title {
    font-size: 2em;
  }
  section.client-header .container header.title h1 {
    line-height: 1em;
  }
  section.client-header .container header.title h1 span {
    line-height: 0.6em;
    position: relative;
    top: -10px;
  }
  section.client-portfolio .project-details {
    margin-top: 40px;
  }
  section.next-project .container {
    padding: 1em 0;
  }

}
