/*
Colors used:
Primary Color:
Secondary Color:
Tertiary Color:
Background Color (white): #FFFFFF
Text Colors (dark grey, black): #606060; #313131; #474747; #ffffff
*/
/* Global Styles============================*/
* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #606060;
}

h1 {
  font-size: 1.85em;
  font-weight: 700;
  color: #313131;
  margin-top: 0;
  padding-top: 2em;
}

.update {
  padding-top: 0.67em;
}

h2 {
  font-size: 1.5em;
  font-weight: 700;
  color: #474747;
  margin: 0.83em 0;
  padding: 0 0;
}

img {
  width: 100%;
}

/* Links and Buttons ============================ */
a {
  color: #CE2180;
  text-decoration: underline;
  transition: 0.2s color;
}

a:visited {
  color: #CE2180;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #632680;
}

a:active {
  color: #44DDCB;
}

.button {
  display: inline-block;
  background-color: #CE2180;
  color: #ffffff !important;
  padding: 10px;
  border-radius: 3px;
  border-bottom: 2px solid #632680;
  transition: 0.2s opacity;
  text-decoration: none;
  transition: 0.2s opacity;
}

.button:hover {
  opacity: 0.8;
}

.button.contact {
  background-color: transparent;
  color: #CE2180 !important;
  text-transform: uppercase;
  border: 2px solid #CE2180;
}

.button.contact:hover {
  background-color: #CE2180;
  opacity: 1;
  color: #ffffff !important;
}

.button.contact:active {
  background-color: #ffffff;
  color: #44DDCB !important;
  border: 2px solid #44DDCB;
}

/* Header
==================================== */
header {
  background-color: #A5E7E7;
  text-align: center;
  /* This seems enough to center the logo.*/
  padding: 10px 0;
  position: fixed;
  width: 100%;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(50, 50, 50, 0.75);
  -moz-box-shadow: 0px 0px 6px 0px rgba(50, 50, 50, 0.75);
  box-shadow: 0px 0px 6px 0px rgba(50, 50, 50, 0.75);
}

.logo a {
  font-size: 1.5em;
  color: #632680;
  text-decoration: none;
  font-weight: 600;
}

nav>ul {
  list-style-type: none;
  padding: 0;
}

nav>ul>li {
  display: inline-block;
}

nav>ul>li>a {
  padding: 0 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #632680;
  transition: 0.2s color;
  text-decoration: none;
}

nav>ul>li>a:visited {
  color: #632680;
}

nav>ul>li>a:hover, a:focus {
  color: #CE2180;
}

nav>ul>li>a:active {
  color: #44DDCB;
}

nav {
  display: inline-block;
  width: 100%;
}

/* Main
==================================== */
#hero {
  background-color: #ECFCFB;
  padding: 0 0 20px 0;
  display: inline-block;
  width: 100%
}

#hero span {
  display: block;
  font-weight: 500;
}

main {
  padding-top: 123px;
}

.row span {
  display: block;
  font-weight: 500;
  text-align: center;
  padding-left: 15px;
}

/* Main CSS Animation
==================================== */
/* Footer
==================================== */
footer {
  background-color: #A5E7E7;
}

.copyright {
  display: inline-block;
  width: 100%;
}

#contact h2 {
  margin: 0;
  padding: 0.83em 0;
}

footer ul {
  list-style-type: none;
  padding: 0;
}

/* Containers & Columns
==================================== */
.container {
  padding: 0 15px;
}

.column-mid {
  padding-left: 15px;
}

/* Layout styling
=====================================*/
.row {
  margin: 25px 0;
}

#work .row {
  padding-bottom: 40px;
  border-bottom: 1px solid #606060;
  margin-bottom: 25px;
}

#work .row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.center {
  text-align: center;
}

/* Media Queries
=====================================*/
@media only screen and (min-width: 640px) {
  header {
    text-align: unset;
    padding: 30px 0 23px;
  }
  .logo {
    display: inline-block;
  }

  main {
    padding-top: 98px;
  }

  nav {
    width: auto;
    float: right;
    margin-top: 9px;
  }

  nav ul {
    margin: 0;
  }

  #hero {
    padding-top: 20px;
  }

  body {
    font-size: 17px;
  }

  .col-md-6 {
    width: 50%;
  }

  [class*="col-"] {
    float: left;
    padding: 0 10px;
    margin-top: 25px;
  }

  [class*="col-"] h3 {
    margin-top: 0;
  }

  .col-left {
    padding-left: 0;
  }

  .col-right {
    padding-right: 0;
  }

  .row {
    margin: 0 -10px;
  }

  .row::after {
    content: "";
    clear: both;
    display: table;
  }
}
  @media only screen and (min-width: 1024px) {
    body {
      font-size: 18px;
    }

    .col-lg-7 {
      width: 58.33%;
    }

    .col-lg-5 {
      width: 41.66%;
    }

    .container {
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
  }

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