:root {
  --primary: #abb48e;
  --primaryLight: #ffd675;
  --secondary: #6c584c;
  --secondaryLight: #2c3c33;
  --headerColor: #6c584c;
  /* #d4a373; #6c584c */
  --workingColor1: #e9edc9;
  --buttonActive: #a98467;
  --bodyBackColor: #fef9d8;
  --bodyBackColor2: #faedcd;
  --bodyTextColor: #344e41;
  --bodyTextColorWhite: #fbfbf8;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  background-color: #fefae0ff;
}

a:link {
  text-decoration: none;
  color: #e9edc9ff;
}

/* Style the header */
.header {

  padding: 30px;
  text-align: center;
  font-size: 35px;
}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;

}

/* Create three equal columns that sits next to each other */
.column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;

  /* height: 300px;  Should be removed. Only for demonstration */
  /* border: 1px solid Black; */
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 300px;


}

.column-styled {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  /*border: 1px solid green; */
}

p {
  text-align: center;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.cs-title {
  text-align: center;
  max-width: 50rem;
  line-height: 1.2em;
}

.column h2 {
  font-family: "HARRINGTON", Arial, Helvetica, sans-serif;
  ;
}

.column .picture {
  box-sizing: border-box;
  background-color: #DAB692;
  overflow: hidden;
  border: 8px solid var(--primary);
  border-radius: calc(260/16 * 1rem);
  position: absolute;
  right: 0;
  z-index: -1;
}

.column img {
  margin-top: calc(24/16 * 1em);
  box-sizing: border-box;

  position: relative;
  z-index: 1;
}


.left-sub-heading {
  color: #ccd5aeff;
  text-align: left;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.middle-sub-heading {
  margin: 0;
  padding: 3em;
  color: #ccd5aeff;
  text-align: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.image-center {
  margin: auto;
  display: block;
  align-items: center;
  justify-content: center;
}

.image-responsive {
  width: 100%;
  height: auto;
}

.color-one {
  background-color: #ccd5aeff;
}

.color-two {
  background-color: #e9edc9ff;
}

.color-three {
  background-color: #fefae0ff;
}

.color-four {
  background-color: #faedcdff;
}

.color-five {
  background-color: #d4a373ff;
}

/* Style the footer */
.footer {
  padding: 10px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 480px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  img {
    width: 90%;
  }
}

/*-- -------------------------- -->
<---    Final Call To Action    -->
<--- -------------------------- -*/
#cta {
  .cta-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 300px;
    margin: 40px auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

  }

  /* This image behaves like a background */
  .cta-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: calc(14/16 * 1rem);
    /* background-color: rgba(0, 0, 0, 0.4);  */


  }

  /* Overlay text container */
  .cta-text-overlay {
    position: relative;
    z-index: 2;
    color: var(--headerColor);
    text-shadow: 2px 2px 4px var(--headerColor);
    text-align: center;
    padding: 15px;


  }

  .cta-text-overlay h2 {
    font-size: 3.3rem;
    margin-bottom: 0.2em;
  }

  .cta-text-overlay p {
    font-size: 1.8em;

  }
}

/* Responsive scaling */
@media (max-width: 768px) {
  .cta-center-container {
    height: 200px;
  }

  .cta-text-overlay h2 {
    font-size: 1.5em;

  }

  .cta-text-overlay p {
    font-size: 1.1em;
    color: var(--headerColor);
    margin: 1em 0;
  }
}

.cs-button-solid {
  z-index: 1;
  position: relative;
  display: inline-block;
  background-color: var(--headerColor);
  width: auto;
  padding: 0 calc(30 / 16 * 1rem);
  text-decoration: none;
  text-transform: uppercase;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(50 / 16 * 1em);
  font-weight: bold;

  // Transition Properties
  color: #e9edc9;
  transition: color 0.3s;
  transition-delay: 0.1s;
  text-align: center;

  &:hover {
    color: #fff;

    &:before {
      width: 100%;
    }
  }

  &:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 1;
    display: block;
    background-color: var(--buttonActive);
    height: 100%;

    //Transition properties
    width: 0;
    transition: width 0.3s;
  }
}