:root {
  --black: #333;
  --royal-blue: #3765a3;
  --steel-blue: #3765a3;
  --medium-sea-green: #3bc984;
  --cornflower-blue: #f4f6f7;
  --firebrick: #c92228;
  --pale-violet-red: #e04c86;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  z-index: 10;
  color: #fff;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 45px;
  position: relative;
}

h2 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

p {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

a {
  color: #25ac6a;
  text-decoration: underline;
  transition: color .4s;
}

a:hover {
  color: #000;
}

ul {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  list-style-type: none;
}

li {
  margin-bottom: 3px;
  list-style-type: disc;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  color: #666;
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 22px;
}

.hero-section {
  background-image: url('../images/design-desk.jpg');
  background-position: 50%;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 145px;
  position: relative;
}

.hero-section.about-page {
  background-image: url('../images/Blog-Banner-for-Website-Content-1.png');
  background-position: 50%;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}

.hero-section.blog-hero {
  background-image: url('../images/service-small.jpeg');
  background-position: 50%;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-section.portfolio-hero {
  background-image: url('../images/service-small.jpeg');
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-section.blog-post-hero {
  padding-bottom: 150px;
}

.hero-section.home-page-hero {
  background-image: url('../images/Blog-Banner-for-Website-Content.png');
  background-position: 50%;
  background-size: cover;
}

.nav {
  background-color: #f8f3f3;
  padding-top: 20px;
  padding-bottom: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.logo-text {
  color: #fff;
  margin-top: 11px;
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
}

.logo-text.footer-logo {
  margin-top: 3px;
}

.nav-link {
  opacity: .6;
  color: #060505;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  transition: opacity .35s;
}

.nav-link:hover {
  opacity: 1;
  color: var(--royal-blue);
}

.nav-link.w--current {
  opacity: 1;
  color: #040404;
}

.nav-link.contact {
  background-color: #ffffff4d;
  border: 1px solid #060606;
  border-radius: 2px;
  margin-top: 9px;
  margin-left: 30px;
  padding: 10px;
  font-size: 12px;
  line-height: 18px;
}

.nav-link.footer-link {
  float: right;
  color: #f9f2f2;
  margin-top: 0;
  padding: 10px;
  text-decoration: none;
}

.nav-link.footer-link.w--current {
  color: #f2efef;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
  font-weight: 700;
}

.section.top-section {
  padding-top: 0;
  padding-bottom: 0;
}

.section.top-section.home-page {
  font-size: 24px;
  line-height: 30px;
}

.section.gray-section {
  background-color: #ececec;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-container {
  background-color: #fff;
  padding: 5px;
  position: relative;
  top: -70px;
}

.hero-container.project-container {
  padding: 10px;
}

._60block {
  float: left;
  width: 20%;
  height: 300px;
  padding: 5px;
}

.hero-tile {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tile-image {
  background-image: url('../images/about-image.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
  transition: transform 1s;
  position: absolute;
  inset: 0;
}

.tile-image:hover {
  transform: scale(1.03);
}

.tile-image.hire {
  background-image: url('../images/camera-front.jpg');
}

.tile-text {
  z-index: 20;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 6px #0000005e;
  font-size: 27px;
  font-weight: 900;
  line-height: 30px;
  position: absolute;
  bottom: 24px;
  left: 25px;
}

._40block {
  float: left;
  width: 40%;
  height: 300px;
  padding: 5px;
  position: relative;
}

._33block {
  float: left;
  width: 33.33%;
  height: 300px;
  padding: 5px;
}

.social-block {
  float: left;
  background-color: #55acee;
  background-image: url('../images/twitter.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50px;
  width: 50%;
  height: 145px;
  transition: background-color .4s;
}

.social-block:hover {
  background-color: #3d90cf;
}

.social-block.facebook {
  background-color: #3765a3;
  background-image: url('../images/facebook.svg');
  background-size: 50px;
}

.social-block.facebook:hover {
  background-color: #23528f;
}

.social-block.pinterest {
  background-color: #c92228;
  background-image: url('../images/pinterest.svg');
  background-size: 50px;
}

.social-block.pinterest:hover {
  background-color: #aa1217;
}

.social-block.dribbble {
  background-color: #e04c86;
  background-image: url('../images/dribbble.svg');
  background-size: 50px;
  display: inline-block;
}

.social-block.dribbble:hover {
  background-color: #c02c67;
}

.footer-section {
  background-color: #2a2a2a;
  padding-top: 23px;
  padding-bottom: 23px;
}

.tile-link {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.contact-overlay {
  z-index: 9999;
  opacity: 0;
  text-align: center;
  background-color: #000000e6;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  display: none;
  position: fixed;
  inset: 0;
  transform: scale(1.1);
}

.close-link {
  opacity: .5;
  color: #fff;
  margin-bottom: 20px;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .4s;
  display: block;
}

.close-link:hover {
  opacity: 1;
  color: #fff;
}

.text-field {
  background-color: #ffffff1a;
  border: 1px solid #000000b3;
  border-radius: 3px;
  height: 50px;
  font-size: 16px;
}

.text-field:focus {
  color: #fff;
  border-color: #ffffff4d;
}

.text-field.text-area {
  height: 120px;
}

.form-wrapper {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.submit-button {
  background-color: #55acee;
  border-radius: 3px;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 17px;
  transition: background-color .4s;
  display: block;
}

.submit-button:hover {
  background-color: #3765a3;
}

.contact-heading {
  color: #fff;
  font-family: Varela, sans-serif;
  font-size: 30px;
  line-height: 32px;
}

.small-divider {
  opacity: .2;
  background-color: #fff;
  width: 80px;
  height: 2px;
  margin: 10px auto;
  display: block;
}

.small-divider.dark-divider {
  background-color: #000;
}

.contact-text {
  opacity: .7;
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
}

.success-message {
  background-color: #2bab68;
}

.success-text {
  color: #fff;
  margin-bottom: 0;
}

.hero-overlay {
  background-color: #55acee00;
  height: 100%;
  position: static;
  inset: 0% auto auto 0%;
}

.cta-section {
  text-align: center;
  background-color: #3ba8c9;
  padding-top: 60px;
  padding-bottom: 60px;
}

.cta-heading {
  color: #fff;
  margin-bottom: 18px;
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
}

.button {
  background-color: var(--steel-blue);
  text-transform: uppercase;
  padding: 15px 40px;
  font-size: 14px;
  transition: background-color .4s;
}

.button:hover {
  color: #fff;
  background-color: #088347;
}

.project-image {
  background-color: #011840;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 3px;
  height: 250px;
  transition: transform .7s;
}

.project-image:hover {
  transform: scale(1.04);
}

.project-block {
  padding: 8px;
}

.project-title {
  color: #fff;
  text-shadow: 1px 1px 6px #0006;
  background-color: #030d24ed;
  font-size: 22px;
  line-height: 24px;
  position: absolute;
  bottom: 25px;
  left: 25px;
}

.project-tag {
  opacity: 1;
  color: #fff;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 9px 10px 8px;
  font-size: 12px;
  line-height: 12px;
  position: absolute;
  top: 25px;
  right: 25px;
}

.project-link {
  color: #333;
  text-decoration: none;
  transition: color .4s;
  display: block;
  overflow: hidden;
}

.project-link:hover {
  color: #55acee;
}

.project-link.blog-link {
  height: 340px;
}

.project-link.blog-link:hover {
  color: #333;
}

.alternate-image {
  object-fit: fill;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  flex-wrap: nowrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  width: 717px;
  height: 300px;
  margin-bottom: 15px;
  margin-left: 100px;
  display: block;
  overflow: visible;
}

.project-text {
  width: 80%;
  margin-left: 0;
  margin-right: auto;
  font-weight: 400;
  display: block;
}

.center {
  text-align: center;
}

.blog-block {
  padding: 10px;
  position: relative;
}

.blog-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
  margin-bottom: 10px;
  position: relative;
}

.blog-title {
  margin-bottom: 5px;
  padding-right: 5px;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

.blog-description {
  color: #666;
  margin-bottom: 10px;
}

.blog-date {
  z-index: 10;
  color: #fff;
  position: absolute;
  top: 13px;
  left: 10px;
}

.blog-author {
  color: #888;
  margin-right: 3px;
  font-style: italic;
  display: inline-block;
}

.blog-category {
  z-index: 10;
  background-color: var(--medium-sea-green);
  opacity: 1;
  color: #fff;
  border-radius: 3px;
  padding: 7px 8px;
  line-height: 14px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.blog-post-wrapper {
  padding-top: 30px;
}

.blog-details {
  opacity: .7;
  color: #fff;
  margin-left: 8px;
  margin-right: 8px;
  font-size: 16px;
  display: inline-block;
}

.hero-text-wrapper {
  z-index: 10;
  text-align: center;
  position: relative;
}

.author-wrapper {
  text-align: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  display: block;
}

.author-image {
  border-radius: 200px;
  width: 150px;
  margin-bottom: 5px;
}

.author-name {
  color: #444;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}

.author-bio {
  color: #666;
  font-size: 17px;
  line-height: 23px;
}

.home-page-heading {
  color: #070707;
  letter-spacing: 0;
  text-transform: none;
  background-color: #93bfca00;
  font-size: 55px;
  font-weight: 700;
  line-height: 60px;
}

.tile-overlay {
  background-color: #0003;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.blog-image-wrapper {
  height: 180px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.grid {
  grid-row-gap: 16px;
}

.grid-2 {
  grid-template: "Area Area-2 Area-3 Area-4 Area-5 Area-6"
                 ". . . . . ." minmax(auto, 1fr)
                 / 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-top: 20px;
  padding-top: 0;
}

.grid-3 {
  grid-template: "Area Area-2" .25fr
                 ". ."
                 / 1.75fr 1fr;
  grid-auto-flow: row;
}

.grid-4 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "Area Area-2 Area-3";
}

.grid-5 {
  grid-template-columns: 2fr 1fr;
}

.grid-6 {
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: minmax(0, 1fr);
  grid-auto-columns: minmax(200px, 1fr);
}

.grid-7 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-areas: "Area Area-2 Area-3"
                       "Area-4 . .";
  margin-top: 40px;
  margin-bottom: 40px;
}

.grid-8 {
  grid-template-columns: .5fr 1fr;
  grid-template-areas: ". Area";
}

.grid-9 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "Area Area-2 Area-3 Area-4 Area-5 Area-6";
}

.image {
  margin-top: 411px;
  margin-left: 1216px;
  padding-left: 0;
}

.image-2 {
  margin-bottom: -15px;
}

.image-3 {
  margin-top: -17px;
  margin-bottom: -15px;
  margin-left: 0;
  padding-left: 0;
  font-style: italic;
  position: static;
}

.navbar {
  background-color: #fff;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo-title {
  float: left;
  text-transform: uppercase;
  margin-top: 13px;
  font-family: Oswald, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.nav-link-2 {
  color: #404040;
  text-transform: uppercase;
  border-bottom: 2px solid #0000;
  margin-top: 23px;
  margin-left: 34px;
  padding: 0;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 400;
  transition: border-color .3s;
}

.nav-link-2:hover {
  border-bottom-color: #7ec4bd;
}

.heading {
  color: #efeef5;
  letter-spacing: 5px;
  background-color: #64588e;
  font-family: Varela, sans-serif;
  font-size: 60px;
  font-weight: 400;
}

.bold-text {
  color: #fbf7f7;
  background-color: #2175a6fa;
  font-family: Varela Round, sans-serif;
  font-size: 46px;
}

.section-title-group {
  margin-top: 40px;
  margin-bottom: 60px;
}

.section-heading {
  margin-top: 0;
  margin-bottom: 16px;
}

.section-heading.centered {
  color: #676770;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: Varela, sans-serif;
  font-size: 30px;
  font-weight: 300;
}

.section-subheading.center {
  color: var(--royal-blue);
  text-align: left;
  letter-spacing: 3px;
  text-transform: none;
  font-family: Varela, sans-serif;
  font-size: 18px;
  font-weight: 400;
  display: block;
}

.rich-text-block {
  font-size: 18px;
}

.white-box {
  text-align: center;
  background-color: #fff;
  border: 1px solid #dcebf7;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 50px;
  padding: 15px;
}

.heading-2 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hollow-button-2 {
  color: #2e80b6;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #ecf0f1;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 30px;
  font-weight: 300;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: inline-block;
}

.hollow-button-2:hover {
  color: #2e9dff;
  border-color: #2e9dff;
}

.paragraph, .heading-3 {
  text-align: left;
}

.paragraph-2 {
  text-align: center;
  font-weight: 400;
}

.paragraph-3, .paragraph-4 {
  text-align: left;
  font-weight: 400;
}

.list-item {
  font-size: 20px;
}

.list-item-2, .list-item-3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.list-item-4, .list-item-5 {
  font-size: 20px;
}

.image-4 {
  text-align: left;
  margin-bottom: 40px;
  margin-left: auto;
}

.heading-4 {
  color: var(--steel-blue);
}

.list-item-6, .list-item-7, .list-item-8, .list-item-9, .list-item-10, .list-item-11, .list-item-12 {
  font-size: 20px;
}

.rich-text-block-2 {
  font-size: 16px;
}

.rich-text-block-3, .rich-text-block-4 {
  font-size: 18px;
}

.bold-text-2 {
  font-weight: 300;
}

.paragraph-5 {
  text-align: left;
  font-weight: 300;
}

.text-block {
  transition: opacity .2s;
}

.tabs-content {
  position: static;
}

.tabs-wrapper {
  text-align: center;
}

.fullwidth-image {
  width: 100%;
  margin-bottom: 20px;
  padding-right: 20px;
  display: inline;
}

.section-title-group-2 {
  margin-bottom: 60px;
}

.tab-menu {
  text-align: center;
  margin-bottom: 40px;
}

.heading-5 {
  text-align: left;
  margin-top: 40px;
}

.section-2 {
  text-align: center;
  background-color: #fff;
  padding: 80px 10px;
  position: relative;
}

.column {
  padding-right: 20px;
}

.button-2 {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #676770;
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s;
  display: inline-block;
}

.button-2:hover {
  background-color: #2e9dff;
}

.button-2.w--current {
  background-color: #2e80b6;
}

.button-2.tab {
  background-color: #92a0ad;
  margin-left: 8px;
  margin-right: 8px;
}

.button-2.tab:hover {
  background-color: #2e80b6;
}

.button-2.tab.w--current {
  background-color: #af4173;
}

.button-3 {
  text-align: left;
}

.heading-6 {
  margin-top: 20px;
  font-family: Lato, sans-serif;
}

.rich-text-block-5 {
  text-align: left;
  text-transform: none;
  column-count: 0;
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.rich-text-block-5 p {
  color: var(--black);
  font-family: Lato, sans-serif;
}

.rich-text-block-5 li {
  line-height: 25px;
  list-style-type: disc;
}

.headingpg2 {
  color: #e5e9ef;
  background-color: #0000;
  font-family: Lato, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
}

.bold-text-3 {
  color: #292a2b;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 60px;
}

.heading-8 {
  color: #060505;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 60px;
  font-weight: 400;
}

.bold-text-4 {
  color: #031834;
}

.paragraph-6 {
  font-family: Lato, sans-serif;
}

.paragraph-7 {
  font-family: Varela, sans-serif;
}

.image-5, .image-6 {
  border-radius: 40px;
}

.body {
  object-fit: fill;
}

.heading-9 {
  text-align: center;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-weight: 700;
}

.bold-text-5 {
  color: #f2f5f9;
  background-color: #020738a6;
  font-family: Lato, sans-serif;
  font-size: 50px;
  line-height: 78px;
}

.bold-text-6 {
  background-color: #17043fa8;
}

.heading-10 {
  color: var(--black);
  font-family: Lato, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

.columns {
  margin-bottom: 100px;
}

.grid-10 {
  float: left;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-content: start;
  position: static;
}

.grid-11 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 60px;
  margin-bottom: 0;
}

.heading-11 {
  font-size: 14px;
}

.text-block-2, .text-block-3 {
  font-size: 18px;
}

.column-2 {
  position: relative;
}

.heading-12 {
  text-align: left;
}

.heading-13 {
  background-color: #062145ba;
  font-weight: 700;
}

.list-item-13, .list-item-14, .list-item-15 {
  font-family: Varela, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.columns-3 {
  margin-bottom: 0;
}

.paragraph-8 {
  color: #022048;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.paragraph-9 {
  color: var(--black);
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

.list-item-16 {
  margin-bottom: 3px;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

.list-item-17 {
  margin-bottom: 3px;
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
}

.list-item-18 {
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
}

.list, .paragraph-10 {
  color: var(--black);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

.container {
  margin-bottom: 40px;
}

.text-span {
  font-size: 50px;
}

.container-2 {
  font-size: 18px;
}

.heading-14 {
  font-size: 50px;
}

.heading-15 {
  font-family: Lato, sans-serif;
  font-size: 50px;
  font-weight: 700;
}

.bold-text-7 {
  background-image: linear-gradient(#00000080, #00000080);
  font-size: 70px;
}

.list-2 {
  color: var(--black);
  margin-left: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  list-style-type: square;
}

.list-item-19 {
  color: var(--black);
  font-weight: 400;
  line-height: 25px;
}

.list-item-20, .list-3, .list-4 {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.paragraph-11 {
  color: var(--black);
  font-weight: 400;
}

.list-5 {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.paragraph-12, .paragraph-13 {
  color: var(--black);
  font-weight: 400;
}

.list-6 {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.columns-4 {
  margin-top: 60px;
}

.list-item-21 {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

.list-7 {
  padding-left: 60px;
  font-size: 24px;
  line-height: 30px;
  list-style-type: square;
}

.list-item-22 {
  list-style-type: square;
}

.list-8 {
  font-size: 24px;
  line-height: 30px;
}

.list-9 {
  padding-left: 60px;
  font-size: 24px;
  line-height: 30px;
  list-style-type: square;
}

.list-item-23, .list-item-24, .list-item-25, .list-item-26, .list-item-27, .list-item-28 {
  list-style-type: square;
}

.list-10, .paragraph-14, .list-11 {
  font-size: 24px;
  line-height: 30px;
}

.list-item-29 {
  margin-top: 10px;
  list-style-type: none;
}

.list-12 {
  padding-left: 80px;
  font-size: 24px;
  line-height: 30px;
}

.list-13 {
  font-size: 24px;
  line-height: 30px;
}

.list-item-30, .list-item-31 {
  margin-top: 10px;
  list-style-type: none;
}

.columns-5 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.efi-ftr-02-footer-wrapper {
  align-items: center;
  display: flex;
}

.efi-paragraph-light {
  color: #ffffff9e;
  font-size: 15px;
}

.efi-ftr-02-footer-centre {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.efi-footer-link-white {
  color: #fff;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
}

.efi-footer-link-white:hover {
  opacity: .5;
}

.efi-ftr-02-link-wrap {
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 40px;
  display: flex;
}

.efi-social-link {
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  padding: 10px;
  display: flex;
}

.efi-ftr-02 {
  background-color: #0813f5;
  padding: 20px 0% 20px 5%;
}

.efi-ftr-02-container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.cell {
  align-items: center;
  padding-top: 60px;
}

.heading-16 {
  color: #f8f7f7;
  font-size: 24px;
}

.paragraph-15 {
  color: var(--cornflower-blue);
}

.quick-stack {
  padding-top: 10px;
  padding-bottom: 10px;
}

.image-7 {
  max-width: 100%;
}

.paragraph-16 {
  text-align: center;
}

.cell-2 {
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .hero-section {
    padding-top: 88px;
  }

  .hero-section.home-page-hero {
    padding-top: 110px;
    padding-left: 114px;
    padding-right: 114px;
  }

  .nav {
    padding-top: 10px;
  }

  .nav-link.contact {
    background-color: #fff0;
    margin-bottom: 11px;
  }

  .nav-link.footer-link {
    margin-top: 9px;
  }

  .section.top-section {
    padding-bottom: 0;
  }

  .tile-text {
    font-size: 30px;
    line-height: 33px;
    bottom: 22px;
    left: 22px;
  }

  .menu-button {
    color: var(--steel-blue);
  }

  .menu-button.w--open {
    background-color: #55acee;
  }

  .nav-menu {
    background-color: #f2eded;
  }

  .contact-overlay {
    opacity: 0;
    display: none;
    transform: scale(1.1);
  }

  .form-wrapper {
    width: 70%;
  }

  .project-text {
    width: 90%;
  }

  .blog-block {
    padding: 4px;
  }

  .blog-image-wrapper {
    height: 170px;
    margin-bottom: 10px;
  }

  .nav-menu-2 {
    background-color: #f5f5f5;
  }

  .nav-link-2 {
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link-2:hover {
    border-bottom-color: #0000;
  }

  .menu-button-2 {
    margin-top: 7px;
    padding: 10px;
    font-size: 32px;
  }

  .menu-button-2.w--open {
    color: #7ec4bd;
    background-color: #0000;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 41px;
  }

  .hero-section {
    padding-bottom: 25px;
  }

  .hero-section.blog-post-hero {
    padding-bottom: 70px;
  }

  .hero-section.home-page-hero {
    padding-bottom: 60px;
    padding-left: 46px;
    padding-right: 46px;
  }

  .logo-text {
    margin-bottom: 19px;
  }

  .nav-link.contact {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding: 20px;
  }

  .nav-link.footer-link, .nav-link.footer-link.contact {
    float: none;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.top-section.home-page {
    padding-left: 5px;
    padding-right: 5px;
  }

  .hero-container {
    padding: 5px 0;
    top: auto;
  }

  .tile-text {
    font-size: 23px;
    line-height: 29px;
    bottom: 14px;
    left: 17px;
  }

  .social-block, .social-block.facebook, .social-block.pinterest, .social-block.dribbble {
    background-size: 40px;
  }

  .logo-footer {
    float: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .footer-link-col {
    text-align: center;
  }

  .form-wrapper {
    width: 80%;
  }

  .project-title {
    font-size: 25px;
    line-height: 28px;
  }

  .project-link.blog-link {
    height: auto;
    margin-bottom: 10px;
    padding-bottom: 15px;
  }

  .project-text {
    width: 100%;
  }

  .blog-post-wrapper {
    padding-top: 0;
  }

  .author-wrapper {
    width: 90%;
    margin-bottom: 39px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo-title {
    margin-top: 6px;
  }

  .nav-link-2 {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
  }

  .menu-button-2 {
    margin-top: 0;
  }

  .white-box {
    margin-bottom: 30px;
  }

  .button-2.tab {
    font-size: 12px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    text-shadow: 1px 1px 6px #00000061;
    font-size: 24px;
    line-height: 32px;
  }

  .hero-section.blog-hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-section.portfolio-hero {
    padding: 80px 20px 40px;
  }

  .hero-section.blog-post-hero {
    padding-bottom: 60px;
  }

  .hero-section.home-page-hero {
    padding-left: 10px;
    padding-right: 10px;
  }

  .logo-text {
    font-size: 26px;
  }

  .nav-link.footer-link {
    font-size: 13px;
    display: block;
  }

  .nav-link.footer-link.contact {
    padding: 9px;
    font-size: 13px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  ._60block {
    width: 100%;
  }

  .tile-text {
    font-size: 35px;
    line-height: 35px;
    bottom: 30px;
    left: 30px;
  }

  ._40block, ._33block {
    width: 100%;
  }

  .close-link:hover {
    color: #fff;
  }

  .form-wrapper {
    width: 90%;
  }

  .cta-heading {
    font-size: 28px;
  }

  .project-block {
    padding-left: 0;
    padding-right: 0;
  }

  .project-title {
    font-size: 20px;
    line-height: 25px;
    bottom: 25px;
    left: 15px;
  }

  .project-tag {
    right: 18px;
  }

  .project-link.blog-link {
    margin-bottom: 15px;
  }

  .blog-block {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-details {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 14px;
  }

  .author-wrapper {
    width: 100%;
  }

  .home-page-heading {
    font-size: 45px;
    line-height: 50px;
  }

  .section-subheading.center {
    line-height: 30px;
  }

  .button-2 {
    margin-bottom: 25px;
  }

  .efi-ftr-02-footer-wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

#w-node-f842c63b-ea88-b753-9ed7-0da1e01ca1fa-3e493fa8, #w-node-fc98629e-9d1e-6dcc-fb76-1c7112a5f748-d4493fab {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_936074e2-27f8-e121-32d3-beeb39959e22-bc2fa1a1 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.75fr 1fr;
}

#w-node-_829cb9ef-d387-ed70-8648-2cbbd7de08d3-bc2fa1a1 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-efd02f78-3aa6-a865-4dc5-47052db48e31-47b74b60, #w-node-_57111ce2-8ccc-09da-e5ff-5aec9079f194-47b74b60, #w-node-_761c6952-dead-da42-e781-6e4cb49a2904-47b74b60 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.75fr;
}

#w-node-fc98629e-9d1e-6dcc-fb76-1c7112a5f748-47b74b60 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}


