/* set variables */
:root {
  --text: 'Jost', sans-serif;
  --icons: 'Font Awesome 6 Pro';
  --white: #ffffff;
  --black: #2b2b2b;
  --grey: #e2e8ea;
  --darkblue: #006583;
  --blue: #007fa5;
  --lightblue: #9ae0f5;
  --transition-fast: all 100ms ease-out;
  --transition-normal: all 200ms ease-out;
  --transition-slow: all 400ms ease-out;
}

/* box sizing rules */
*,*::before,*::after {
  box-sizing: border-box;
}

/* set html core defaults */
html {
  min-height: 100%;
  overflow-y: scroll;
	scroll-behavior: smooth;
}

/* remove default margin */
body,h1,h2,h3,h4,p,ul,ol,li,figure,figcaption,blockquote,dl,dd {
  margin: 0;
}

/* set core body defaults */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
	height: 100%;
  margin: 0 auto;
  text-rendering: optimizeSpeed;
  background: var(--white);
  font-family: var(--text);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
}

/* change focus outline */
:focus {
  outline: 1px dotted var(--lightblue);
}

/* remove list styles, padding, and margins on ul, ol elements without a class attribute */
ul:not([class]),ol:not([class]) {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* remove list styles on ul, ol elements with a class attribute */
ul[class],ol[class] {
  list-style-type: none;
	padding: 0;
}

/* make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.main img {
  border-radius: 32px;
}

/* inherit fonts for inputs and buttons */
input,button,textarea,select {
  font: inherit;
}

/* remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* color of highlight */
::-moz-selection {
  background: var(--lightblue);
  color: var(--darkblue);
  text-shadow: none;
}
::selection {
  background: var(--lightblue);
  color: var(--darkblue);
  text-shadow: none;
}

/* default font styles */

.kicker {
  display: block;
	font-size: 22px;
  font-weight: 400;
  color: var(--blue);
	line-height: 1.1;
  letter-spacing: 1px;
  margin: 0 0 15px;
}
.uppercase {
  text-transform: uppercase;
}
h1 {
  position: relative;
  font-family: var(--text);
	font-size: 54px;
  font-weight: 600;
  color: var(--darkblue);
	line-height: 1;
  text-align: center;
  padding-bottom: 15px;
  margin: 0;
}
  h1:after,
  h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 2px;
    background: var(--blue);
  }
  h1:after {
    left: 50%;
    transform: translateX(-50%);
  }
  body.home h1:after {
    left: 0;
    transform: translateX(0);
  }
h2 {
  position: relative;
  font-family: var(--text);
  font-size: 38px;
  font-weight: 600;
  color: var(--darkblue);
  line-height: 1;
  padding-bottom: 15px;
  margin: 0 0 30px;
}
  body.home h2 {
    font-size: 58px;
  }
  h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 2px;
    background: var(--blue);
  }
  h2.centered:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .blue-bg h2:after {
    background: var(--lightblue);
  }
h3 {
  font-family: var(--text);
  font-size: 32px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1;
  margin: 0 0 20px;
}
h4 {
  font-family: var(--text);
  font-size: 28px;
  font-weight: 400;
  color: var(--darkblue);
  line-height: 1.2;
  margin: 0 0 20px;
}
h5 {
  font-family: var(--text);
  font-size: 26px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.2;
  margin: 0 0 20px;
}
h6 {
  font-family: var(--text);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 20px;
}
p a {
  font-weight: 700;
  text-decoration: 1px underline dotted;
}
@media screen and (max-width: 768px) {
  body.home h2 {
    font-size:42px;
  }
}
@media screen and (max-width: 580px) {
  h1,h2,h3,h4,h5,h6 {
    word-break: break-word;
  }
}

/* default link styles */

a {
  color: var(--blue);
  text-decoration: none;
  text-decoration-skip-ink: auto;
	transition: var(--transition-normal);
}
a:hover,
a:focus {
  color: var(--darkblue);
  text-decoration: none;
}
@media screen and (max-width: 400px) {
	a {
    word-break: break-word;
  }
}

/* default element styles */

.container {
  position: relative;
  width: auto;
  max-width: 1440px;
  padding: 0 10px;
  margin: 0 auto;
}
.main:after {
  content: '';
  clear: both;
  display: table;
}
.main .column > ul,
.image-content ul {
  list-style: outside none;
  margin: 0 0 40px;
}
.image-content ul {
  margin: 0 0 20px 20px;
}
.main h2 + ul,
.image-content h2 + ul {
  margin-top: 25px;
}
  .main ul:not(.contact-info):not(#work-gallery) > li,
  .image-content ul > li {
    display: flex;
    align-items: baseline;
    padding-left: 22px;
    margin-bottom: 5px;
  }
  .main ol > li {
    margin-bottom: 10px;
  }
  .main ul.location-info > li {
    margin-bottom: 5px;
  }
  .main ul:not(.contact-info):not(#work-gallery) > li:before,
  .image-content ul > li:before {
    position: relative;
    top: 2px;
    left: -22px;
    content: '\f0a9';
    font-family: var(--icons);
    font-size: 24px;
    color: var(--red);
  }
  .image-content.blue-bg ul > li:before {
    color: var(--lightblue);
  }
  .main ul ul {
    list-style: outside circle;
    padding: 5px 0;
  }
.main ol {
  list-style: outside decimal;
  margin: 0 0 40px 20px;
}
hr {
  width: 100%;
  height: 2px;
  color: var(--grey);
  background: var(--grey);
  border: 0;
  padding: 0;
  margin: 80px 0;
}
  hr::after {
    content: '';
    clear: both;
    display: table;
  }
.wp-block-image .alignleft {
  float: left;
  margin: 0 40px 40px 0;
}
.wp-block-image .aligncenter {
  float: none;
}
.wp-block-image img.aligncenter {
  margin: 0 auto 40px;
}
  .wp-block-image .aligncenter > img {
    margin: 0 auto 40px;
  }
.wp-block-image .alignright {
  float: right;
  margin: 0 0 40px 40px;
}
.wp-block-image figcaption {
  font-size: 14px;
  font-style: italic;
}
.centered {
  grid-column: 1 / -1;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin: 0 0 40px;
}
.wp-block-image .alignleft,
.wp-block-image .aligncenter,
.wp-block-image .alignright,
embed,
iframe,
object {
  max-width: 100%;
}
embed,
iframe,
object {
  display: block;
  margin: 0 auto;
}
.to-top-btn {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  font-size: 22px;
  color: var(--lightblue);
  text-align: center;
  background: var(--black);
  border-radius: 12px 12px 0 0;
  transition: var(--transition-fast);
}
#topcontrol {
  z-index: 10;
}
	.to-top-btn:hover,
  .to-top-btn:focus {
    height: 52px;
	  color: var(--white);
	  background: var(--black);
	}
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px 17px;
  margin: 0 0 30px;
  font-family: var(--text);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.5px;
  background: var(--blue);
  border-radius: 36px;
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
}
  .button:hover,
  .button:focus {
    color: var(--white);
    background: var(--darkblue);
  }
  .button:after {
    position: relative;
    top: 1px;
    content: '\f178';
    font-family: var(--icons);
    font-size: 18px;
    margin-left: 10px;
  }
@media screen and (max-width: 1366px) {
  .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1200px) {
	.container {
    padding: 0 40px;
  }
	img {
	  max-width: 100%;
	  height: auto;
	}
	.attachment-post-thumbnail {
	  max-width: 100%;
	  height: auto;
	}
}
@media screen and (max-width: 1024px) {
	.wp-block-image .alignleft,
  .wp-block-image .aligncenter,
  .wp-block-image .alignright {
    float: none;
    width: 100%;
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 1201px) {
  
}
@media screen and (min-width: 1025px) {
	.slide-up {
    position: relative;
	  top: 90px;
	  opacity: 0;
	}
	.slide-up.in-view {
	  animation: slideUp 1s 1 ease-out forwards;
	}
    .slide-up.delayed.in-view {
      animation-delay: 200ms !important;
    }
    .slide-up.delayed-02.in-view {
      animation-delay: 400ms !important;
    }
    .slide-up.delayed-03.in-view {
      animation-delay: 600ms !important;
    }
    .slide-up.delayed-04.in-view {
      animation-delay: 800ms !important;
    }
  .blur-in {
	  opacity: 0;
	}
	.blur-in.in-view {
	  animation: blurIn 750ms 1 ease-out forwards;
	}
  .slide-up.blur-in.in-view {
	  animation: blurIn 750ms 1 ease-out forwards, slideUp 1s 1 ease-out forwards;
	}
  .fade-in {
    filter: blur(4px);
	  opacity: 0;
	}
	.fade-in.in-view {
	  animation: fadeIn 1s 1 ease-out forwards;
	}
  .fade-in.delayed.in-view {
    animation-delay: 200ms;
	}
  .fade-in.delayed.in-view.more {
    animation-delay: 400ms;
	}
  .fade-in.delayed.in-view.most {
    animation-delay: 600ms;
	}
	@keyframes slideUp {
		0% {
      filter: blur(5px);
		  top: 90px;
		  opacity: 0;
		}
    40% {
		  top: 70px;
		  opacity: 0;
		}
		100% {
      filter: blur(0px);
		  top: 0;
		  opacity: 1;
		}
	}
  @keyframes fadeIn {
		0% {
      filter: blur(4px);
		  opacity: 0;
		}
		100% {
      filter: blur(0);
		  opacity: 1;
		}
	}
  @keyframes blurIn {
		0% {
		  filter: blur(6px);
      opacity: 0;
		}
		100% {
		  filter: blur(0px);
      opacity: 1;
		}
	}
}
@media screen and (max-width: 1200px) {
	.attachment-post-thumbnail,
	.alignleft,
	.aligncenter,
	.alignright {
	  float: none;
	  display: block;
    width: auto !important;
	  max-width: 100%;
	  margin: 0 auto 30px;
	}
  .alignleft img,
	.aligncenter img,
	.alignright img {
	  margin: 0 auto;
	}
}
@media screen and (max-width: 580px) {
  .to-top-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .container {
    padding: 0 20px;
  }
}

/* main content styles */

.main {
  padding: 60px 0;
}
.blue-bg {
  background-color: var(--blue);
}
  .blue-bg * {
    color: var(--white);
  }
.grey-bg {
  background-color: var(--grey);
}
.main p,
.main ul,
.main ol {
  margin-bottom: 30px;
}
@media screen and (min-width: 1201px) {
  body.home .main {
    padding: 100px 0 80px;
  }
  .main {
    padding: 80px 0 60px;
  }
}

/* drawer */

#drawer .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 7px 40px 12px;
  background: var(--darkblue);
  border-radius: 0 0 30px 30px;
}
  #drawer .left,
  #drawer .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #drawer .left {
    flex-direction: row;
  }
    #drawer .left li:not(:last-child) {
      margin-right: 30px;
    }
  #drawer a,
  #drawer span {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
  }
    #drawer a:hover {
      color: var(--lightblue);
    }
@media screen and (min-width: 1025px) {
  #drawer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 7px 40px 12px;
    background: var(--darkblue);
    border-radius: 0 0 30px 30px;
  }
}
@media screen and (min-width: 769px) {
  #drawer .left li:not(:last-child) {
    margin-right: 40px;
  }
  #drawer .right li:not(:first-child) {
    margin-left: 40px;
  }
  #drawer .left,
  #drawer .right {
    display: flex;
    flex-direction: row;
  }
}
@media screen and (max-width: 580px) {
  #drawer .container {
    padding: 12px 20px 17px;
    border-radius: 0;
  }
  #drawer .left,
  #drawer .right {
    line-height: 1.1;
  }
  #drawer .left {
    flex-direction: column;
  }
  #drawer .left li:not(:last-child) {
    margin: 0;
  }
}

/* header */

#header {
  position: relative;
  z-index: 10;
  padding: 30px 0;
  background: var(--white);
  transition: var(--transition-normal);
}
#header.sticky {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  box-shadow: 0 6px 12px 0 rgba(0,0,0,0.35);
}
.admin-bar #header.sticky {
  top: 32px;
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  #header .logo {
    position: relative;
    z-index: 9;
    display: block;
    width: 200px;
    height: auto;
  }
    #header .logo img {
      width: 100%;
      max-width: none;
    }
  #header .button {
    margin: 0;
  }
@media screen and (min-width: 581px) {
  #header .logo {
    width: 290px;
  }
}
@media screen and (max-width: 1200px) {
  #header .container {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-areas: 'logo menu';
    justify-content: space-between;
  }
  #header .logo {
    grid-area: logo;
  }
  #header .menu {
    grid-area: menu;
  }
  #header .button {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  #header .container {
    justify-content: space-between;
  }
}

/* hero banner */

#hero {
  position: relative;
  background: #d2e0e9;
  padding: 160px 0;
}
#hero:not(.interior) .container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  text-align: left;
}
#hero > picture,
#hero > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}
  #hero > picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #hero img {
    opacity: 0.6;
  }
  #hero:not(.interior) h1 {
    text-align: left;
  }
  #hero p {
    margin: 0 0 40px;
  }
@media screen and (min-width: 1025px) {
  #hero:not(.interior) .container {
    grid-template-columns: 5fr 4fr;
  }
  #hero:not(.interior) h1 {
    font-size: 72px;
    margin: 0 0 30px;
  }
  #hero img {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  #hero .container {
    text-align: center;
  }
  #hero img {
    object-position: 85% 100%;
    opacity: 0.2;
    mix-blend-mode: luminosity;
  }
}
@media screen and (max-width: 768px) {
  #hero:not(.interior) .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  #hero:not(.interior) h1 {
    text-align: center;
  }
}

/* interior hero banner */

#hero.interior {
  padding: 0;
  background-color: var(--darkblue);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top center;
}
  #hero.interior:after {
    opacity: 1;
    mix-blend-mode: hard-light;
    background-color: #2b373d;
  }
#hero.interior .container {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 205px;
  padding-top: 50px;
  padding-bottom: 50px;
}
#hero.interior h1 {
  color: var(--white);
  padding: 0 0 10px;
  margin: 0;
}
  #hero.interior h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--blue);
  }
#hero.interior h2 {
  font-family: var(--text);
  font-size: 20px;
  font-weight: 500;
  color: var(--lightblue);
  padding: 0;
  margin: 20px 0 0;
}
  #hero.interior h2:after {
    display: none;
  }

/* hp intro */

#hp-intro .container {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}
#hp-intro .button {
  margin: 0;
}
#hp-intro .intro-images {
  position: relative;
}
  #hp-intro .intro-images img {
    object-fit: cover;
  }
  #hp-intro .intro-images picture {
    width: 45%;
    height: 250px;
  }
    #hp-intro .intro-images picture img {
      width: 100%;
      height: 100%;
    }
  #hp-intro picture:not(.large):before,
  #hp-intro picture.large:after {
    content: '';
    position: absolute;
    z-index: 9;
    display: block;
  }
  #hp-intro picture:not(.large):before {
    top: 20%;
    left: 90%;
    width: 126px;
    height: 34px;
    background: url(../images/light-blue-dots.png) no-repeat top left;
  }
  #hp-intro picture.large:after {
    bottom: 25%;
    left: -25%;
    width: 221px;
    height: 58px;
    background: url(../images/blue-dots.png) no-repeat top left;
  }
#hp-intro .text {
  padding-top: 5%;
}
@media screen and (max-width: 1365px) {
  #hp-intro .intro-images {
    display: flex;
    justify-content: space-evenly;
    gap: 10%;
  }
  #hp-intro picture:not(.large):before {
    left: auto;
    right: -20px;
    opacity: 0.5;
  }
  #hp-intro picture.large:after {
    left: -20px;
    opacity: 0.5;
  }
}
@media screen and (min-width: 1366px) {
  #hp-intro .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 110px;
  }
  #hp-intro .intro-images {
    padding-bottom: calc(40px + 15%);
  }
  #hp-intro .intro-images picture:not(.large) {
    position: absolute;
  }
  #hp-intro .intro-images picture.large {
    position: relative;
    left: 250px;
    top: 30%;
  }
  #hp-intro .intro-images picture:not(.large) img {
    width: 360px;
    height: 300px;
  }
  #hp-intro .intro-images picture.large img {
    width: 420px;
    height: 346px;
  }
}
@media screen and (max-width: 580px) {
  #hp-intro .intro-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #hp-intro .intro-images picture {
    width: 100%;
    height: 250px;
  }
}

/* services ctas */

#services-ctas .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 30px;
  justify-items: center;
}
#services-ctas h2.centered {
  grid-column: 1 / -1;
  padding-bottom: 20px;
}
  #services-ctas .cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    border: 6px solid rgba(255,255,255,0.2);
    border-radius: 10px;
  }
  #services-ctas .cta i {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 48px;
    color: var(--darkblue);
    line-height: 100px;
    text-align: center;
    background: var(--white);
    transition: var(--transition-normal);
  }
  #services-ctas .cta h3 {
    font-size: 26px;
    line-height: 1.1;
    text-align: center;
    padding: 0 10px;
    margin: 0;
  }
  #services-ctas .cta p {
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    margin: 0;
  }
#services-ctas .button {
  border: 3px solid var(--white);
}
  #services-ctas .button:hover,
  #services-ctas .button:focus {
    background: var(--white);
    color: var(--darkblue);
  }
@media screen and (min-width: 1367px) {
  #services-ctas h2.centered {
    padding: 0 20% 20px;
  }
}
@media screen and (min-width: 1201px) {
  #services-ctas .cta:first-of-type:hover i,
  #services-ctas .cta:first-of-type:focus i,
  #services-ctas .cta:nth-of-type(2):hover i,
  #services-ctas .cta:nth-of-type(2):focus i {
    transform: scale(1.1) rotate(5deg);
  }
  #services-ctas .cta:nth-of-type(3):hover i,
  #services-ctas .cta:nth-of-type(3):focus i {
    transform: scale(1.1);
  }
  #services-ctas .cta:nth-of-type(4):hover i,
  #services-ctas .cta:nth-of-type(4):focus i,
  #services-ctas .cta:nth-of-type(5):hover i,
  #services-ctas .cta:nth-of-type(5):focus i {
    transform: scale(1.1) rotate(-5deg);
  }
  #services-ctas .button {
    grid-column: 1 / -1;
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 1200px) {
  #services-ctas .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  #services-ctas .button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    padding: 30px 20px;
    background: var(--white);
    border: 6px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    font-size: 44px;
    color: var(--darkblue);
  }
  #services-ctas .button:after {
    font-size: 32px;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  #services-ctas .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 580px) {
  #services-ctas .container {
    grid-template-columns: 1fr;
  }
  #services-ctas .cta,
  #services-ctas .button {
    width: 100%;
  }
  #services-ctas .button {
    padding: 20px;
  }
}

/* footer */

#footer {
  padding: 60px 0;
  margin-top: auto;
  background: var(--darkblue);
}
#footer .container {
  display: grid;
  gap: 30px;
  justify-content: center;
}
#footer ul {
  display: flex;
  gap: 5px;
  font-size: 18px;
  color: var(--white);
  text-align: center;
}
#footer p {
  font-size: 15px;
  color: var(--white);
  text-align: center;
}
  #footer p a {
    font-weight: 400;
    text-decoration: none;
  }
#footer a {
  color: var(--white);
}
#footer a:hover,
#footer a:focus {
  color: var(--lightblue);
}
@media screen and (min-width: 1025px) {
  #footer ul {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #footer ul {
    flex-direction: column;
  }
}

/* contact page */

#contact-page .container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
}
#contact-page ul.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
#contact-page ul.contact-info li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding-left: 0;
}
  #contact-page ul.contact-info li:before {
    display: none;
  }
#contact-page ul.contact-info i {
  width: 80px;
  height: 80px;
  background: var(--darkblue);
  border-radius: 50%;
  font-size: 32px;
  color: var(--white);
  line-height: 80px;
  text-align: center;
}
#contact-page ul.contact-info a {
  color: var(--black);
}
  #contact-page ul.contact-info a:hover,
  #contact-page ul.contact-info a:focus {
    color: var(--blue);
  }
@media screen and (max-width: 580px) {
  #contact-page .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  #contact-page .gform_button.button {
    width: 100%;
  }
}

/* our work */

#work-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
}
  #work-gallery a img {
    display: block;
    border: 4px solid var(--white);
    transition: var(--transition-normal);
  }
  #work-gallery a:hover img,
  #work-gallery a:focus img {
    border: 4px solid var(--blue);
  }