body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Josefin Sans", sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 100%;
  width: 1000px;
  padding: 15px;
  box-sizing: border-box;
  position: relative;
  margin: auto;
  font-size: 1.2em;
}

.clear {
  clear: both;
}

.container {
  width: 85vw;
  margin: auto;
}
@media all and (max-width: 991px) {
  .container {
    width: 95vw;
  }
}

h1 {
  font-size: 2.5em;
}

p a, #page a {
  text-decoration: none;
  color: #46616D;
  display: inline-block;
  position: relative;
}
p a:after, #page a:after {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background: #FBE214;
  left: 15%;
  position: absolute;
  bottom: 0;
  transition: 0.3s;
}
p a:hover:after, #page a:hover:after {
  width: 90%;
  transform: translateX(-10%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: solid 3px #FBE214;
  color: #46616D;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 2rem;
  font-size: 1rem;
}
.button.full {
  background: rgba(255, 255, 255, 0.8);
}

.wp-block-quote {
  background: #fffcf6;
  font-style: italic;
  padding: 1rem;
}

header {
  position: fixed;
  z-index: 10;
  width: 100vw;
  height: 6.3em;
  transition: 0.3s;
  background: transparent;
  box-shadow: none;
}
@media all and (max-width: 991px) {
  header {
    height: 4.3rem;
  }
}
header #headerLogo {
  opacity: 0;
  transition: 0.3s;
}
header #headerLogo img {
  height: 100px;
  width: 100px;
  object-fit: contain;
}
@media all and (max-width: 991px) {
  header #headerLogo {
    opacity: 1;
    margin-right: 10px;
  }
  header #headerLogo img {
    position: relative;
    top: 7px;
    width: 60px;
    height: 60px;
  }
}
header .menu-menu-1-container {
  transition: 0.3s;
  transform: translateX(-100px);
}
header.fixed {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.2);
}
header.fixed #headerLogo {
  opacity: 1;
}
header.fixed .menu-menu-1-container {
  transition: 0.3s;
  transform: translateX(1rem);
}
header > .container {
  padding: 0em;
}
@media all and (max-width: 991px) {
  header > .container {
    width: 95vw;
  }
}
header #menu_first {
  padding: 2rem 15px 0 15px;
  display: flex;
  align-items: center;
  transform: translateY(-2rem);
  box-sizing: border-box;
}
header #menu_first .row {
  display: flex;
  align-items: center;
  width: 100%;
}
header #menu_first .row .col:first-child {
  flex: 1;
  flex-grow: 1;
}
@media all and (max-width: 991px) {
  header #menu_first #menu_desktop {
    display: none;
  }
}
header #menu_first .contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: solid 2px #46616D;
  padding: 0.3rem 1rem;
  color: #46616D;
  text-decoration: none;
  border-radius: 1rem;
  font-weight: 300;
  background: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  width: 220px;
  text-align: center;
  font-size: 1.1rem;
}
header #menu_first .contact-button:hover {
  color: #ffbe28;
  background: #46616D;
}
@media all and (max-width: 991px) {
  header #menu_first .contact-button {
    padding: 0.3rem;
  }
}
header #menu_first ul {
  list-style: none;
  padding: 0;
}
header #menu_first ul li {
  display: inline;
}
header #menu_first ul li a {
  color: #46616D;
  text-decoration: none;
  transition: 0.3s;
  margin-right: 4em;
  font-weight: 300;
}
header #menu_first ul li a:after {
  display: none;
}
header #menu_first ul li a:hover {
  color: #ffbe28;
}
header #menu_first ul li.current-menu-item a {
  color: #46616D;
  font-weight: 400;
  position: relative;
}
header #menu_first ul li.current-menu-item a:before {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  background: #ffbe28;
  position: absolute;
  left: 0;
  bottom: -5px;
}
header #toggle_menu_sec {
  position: relative;
  z-index: 999;
  float: right;
  margin-left: 1em;
  cursor: pointer;
  transition: 0.3s 0.6s;
  transition-delay: 0.6s;
  transition-property: left, top;
  display: none;
}
@media all and (max-width: 991px) {
  header #toggle_menu_sec {
    display: block;
  }
}
header #toggle_menu_sec span {
  display: block;
  width: 1em;
  height: 2px;
  background: #292929;
  border-radius: 5px;
  margin: 3px 0px;
  transition: 0.3s;
}
header #toggle_menu_sec:hover span {
  background: #ffbe28;
}
header #toggle_menu_sec.open {
  transition: 0.4s;
  left: 6em;
  top: -2em;
}
@media screen and (max-width: 1450px) {
  header #toggle_menu_sec.open {
    left: 4em;
  }
}
header #toggle_menu_sec.open span {
  position: relative;
  opacity: 1;
  background: #FFF;
}
header #toggle_menu_sec.open span:nth-child(2) {
  display: none;
  opacity: 0;
}
header #toggle_menu_sec.open span:first-child {
  transform: rotate(45deg);
  top: 2px;
}
header #toggle_menu_sec.open span:last-child {
  transform: rotate(-45deg);
  top: -3px;
}
header #menu_sec {
  position: fixed;
  width: 20vw;
  height: 100vh;
  top: 0;
  right: -20vw;
  transition: 0.6s;
  opacity: 0;
  visibility: hidden;
}
header #menu_sec > nav {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #ffbe28;
  transition: 0.5s;
  padding-top: 4em;
  padding-right: 2em;
}
header #menu_sec > nav ul {
  list-style: none;
  text-align: right;
}
header #menu_sec > nav ul li {
  padding: 0.3em 0em;
}
header #menu_sec > nav ul li a {
  font-size: 1.3em;
  color: #FFF;
  text-decoration: none;
  transition: 0.3s;
}
header #menu_sec > nav ul li a:hover {
  color: #292929;
}
header #menu_sec.open {
  opacity: 1;
  visibility: visible;
  right: 0;
}
header #menu_sec.open > nav {
  right: 0;
}

#break_header {
  height: 7em;
}

#social-sidebar {
  position: fixed;
  right: 2rem;
  height: 100vh;
  overflow: hidden;
  z-index: 99;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 991px) {
  #social-sidebar {
    display: none;
  }
}
#social-sidebar:after {
  content: "";
  display: block;
  width: 1px;
  background: #efe8d8;
  height: 70%;
  position: relative;
  top: 10px;
  align-self: center;
}
#social-sidebar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  border: solid 1px #efe8d8;
  margin-top: 2rem;
  color: #efe8d8;
  text-decoration: none;
}
#social-sidebar a:before {
  content: "";
  display: block;
  width: 1px;
  background: #efe8d8;
  height: 1rem;
  left: 7px;
  position: relative;
  top: calc(-25px - 1rem);
}
#social-sidebar a:first-child:before {
  height: 2rem;
  top: calc(-25px - 1.5rem);
}

#menu_responsive {
  display: flex;
  position: fixed;
  background-color: #46616D;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transition-delay: 0.3s;
}
#menu_responsive .close {
  color: #FFF;
  cursor: pointer;
  font-size: 1.5rem;
  margin-top: 2rem;
  transition: 0.3s;
  transform: translateY(1rem);
  opacity: 0;
}
#menu_responsive #responsive_logo {
  transition: 0.3s;
  transform: translateY(1rem);
  opacity: 0;
}
#menu_responsive #responsive_logo img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  max-width: 90vw;
}
#menu_responsive .social {
  display: flex;
  width: 100%;
  position: absolute;
  bottom: 20vh;
  align-items: center;
  justify-content: space-between;
}
#menu_responsive .social a {
  color: #FFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 15px;
  text-align: center;
  border-radius: 25px;
  border: solid 1px #FFF;
  transition: 0.3s;
  transform: translateY(1rem);
  opacity: 0;
}
#menu_responsive .social:before, #menu_responsive .social:after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
}
#menu_responsive nav ul {
  list-style: none;
  padding: 0;
}
#menu_responsive nav ul li {
  text-align: center;
  padding: 1rem 0;
  transition: 0.3s;
  transform: translateY(1rem);
  opacity: 0;
}
#menu_responsive nav ul li a {
  color: #FFF;
  text-decoration: none;
}
#menu_responsive.open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
#menu_responsive.open .close {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}
#menu_responsive.open #responsive_logo {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}
#menu_responsive.open nav ul li {
  opacity: 1;
  transform: translateY(0);
}
#menu_responsive.open nav ul li:nth-child(1) {
  transition-delay: 0.3s;
}
#menu_responsive.open nav ul li:nth-child(2) {
  transition-delay: 0.35s;
}
#menu_responsive.open nav ul li:nth-child(3) {
  transition-delay: 0.4s;
}
#menu_responsive.open nav ul li:nth-child(4) {
  transition-delay: 0.45s;
}
#menu_responsive.open nav ul li:nth-child(5) {
  transition-delay: 0.5s;
}
#menu_responsive.open .social a {
  opacity: 1;
  transform: translateY(0);
}
#menu_responsive.open .social a:nth-child(1) {
  transition-delay: 0.6s;
}
#menu_responsive.open .social a:nth-child(2) {
  transition-delay: 0.65s;
}
#menu_responsive.open .social a:nth-child(3) {
  transition-delay: 0.6s;
}

footer {
  background: transparent;
  position: relative;
  top: 1.1em;
  bottom: 0;
  width: 100%;
  color: #FFF;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media all and (max-width: 991px) {
  footer {
    height: auto;
    min-height: 60vh;
  }
}
footer .line {
  position: absolute;
  z-index: 1;
  width: 100vw;
  height: 12rem;
  top: -3rem;
  object-fit: cover;
}
footer .wave_footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@media all and (max-width: 991px) {
  footer .wave_footer {
    height: 175%;
  }
}
footer .container {
  position: relative;
  top: 4rem;
  height: 4rem;
  z-index: 2;
  font-size: 0.9rem;
}
@media all and (max-width: 991px) {
  footer .container {
    top: 3rem;
    height: auto;
    font-size: 0.8rem;
  }
}
footer .container .row {
  display: flex;
  flex-direction: row;
}
@media all and (max-width: 991px) {
  footer .container .row {
    flex-wrap: wrap;
  }
}
footer .container .row .col {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 33.3333%;
  justify-content: flex-end;
}
footer .container .row .col .row {
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 991px) {
  footer .container .row .col {
    width: 50%;
    flex: initial;
  }
}
footer .container .row .logo {
  width: 80px;
  height: 80px;
}
@media all and (max-width: 991px) {
  footer .container .row .logo {
    width: 60px;
    height: 60px;
  }
}
footer .container .row .col:nth-child(2) a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #FFF;
  width: 40px;
  height: 40px;
  margin: 0 1rem;
  border-radius: 2rem;
}
@media all and (max-width: 991px) {
  footer .container .row .col:nth-child(2) .row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  footer .container .row .col:nth-child(2) a {
    margin: 0.2rem 0;
    width: 30px;
    height: 30px;
  }
}
footer .container .row .col:last-child a {
  text-align: right;
  color: #FFF;
  margin-bottom: 1.2rem;
}
@media all and (max-width: 991px) {
  footer .container .row .col:last-child {
    margin-top: 1rem;
    padding-top: 1rem;
    width: 100%;
    border-top: solid 1px #FFF;
  }
}

#construct {
  width: 100%;
  height: 100%;
  background: #ffa928;
  background-size: 100% 100%;
  background-position: center;
  font-family: "Patrick Hand", cursive;
}
#construct #about {
  width: 40%;
  padding: 2em;
  box-sizing: border-box;
  background: #FFF;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  #construct #about {
    width: 60%;
  }
}
@media screen and (max-width: 991px) {
  #construct #about {
    width: 80%;
  }
}

#home {
  height: 90vh;
  position: relative;
  z-index: 1;
}

#home .image_presentation {
  width: 100vw;
  height: 85vh;
  position: absolute;
  object-fit: cover;
  z-index: 1;
}
@media all and (max-width: 991px) {
  #home .image_presentation {
    height: 90vh;
  }
}

#home .filter {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  top: 0;
  background: white;
  background: linear-gradient(52deg, white 0%, rgba(255, 255, 255, 0.6964986678) 58%, rgba(255, 255, 255, 0.2875350824) 100%);
}

#home .filter::after {
  content: "";
  display: block;
  position: relative;
  width: 10rem;
  height: 100%;
  background: white;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
}

#home .wave {
  width: 100vw;
  height: 30rem;
  position: relative;
  top: -20rem;
  z-index: 6;
}
@media all and (max-width: 991px) {
  #home .wave {
    top: -15rem;
  }
}
#home .wave .line {
  position: absolute;
  z-index: 1;
  width: 100vw;
  height: 12rem;
  top: 6rem;
  object-fit: cover;
}
#home .wave .wave_svg {
  position: relative;
  width: 100vw;
  height: 30rem;
  object-fit: cover;
}
#home .wave .custom-logo-link {
  position: absolute;
  right: 12vw;
  top: 25%;
  z-index: 2;
}
#home .wave .custom-logo {
  width: 180px;
  height: 180px;
  position: relative;
}
@media all and (max-width: 991px) {
  #home .wave .custom-logo {
    width: 130px;
    height: 130px;
  }
}

#home .container {
  position: relative;
  z-index: 5;
  height: 85vh;
  padding-top: 10rem;
}
@media all and (max-width: 991px) {
  #home .container {
    padding-top: 7rem;
  }
}
#home .container h3, #home .container p {
  color: #46616D;
}
#home .container h3 {
  font-size: 2rem;
  margin: 0;
  font-weight: 500;
}
#home .container p {
  display: inline-block;
  width: 40vw;
  line-height: 1.6rem;
}
@media all and (max-width: 991px) {
  #home .container p {
    width: 85vw;
  }
}

#presentation {
  position: relative;
  z-index: 2;
}
#presentation .container {
  padding: 5rem 0;
}
@media all and (max-width: 991px) {
  #presentation .container {
    padding-top: 0;
  }
}
#presentation .container .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#presentation .container .row img {
  width: 15rem;
  height: 15rem;
  object-fit: cover;
  border-radius: 30rem;
}
#presentation .container .row .info {
  padding-left: 2rem;
  width: 15rem;
  color: #46616D;
  font-size: 1.3rem;
}

#visit {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
#visit .content {
  text-align: right;
  padding-right: 2rem;
}
#visit .content p {
  width: 18rem;
  font-size: 1.4rem;
  color: #46616D;
  line-height: 1.8rem;
}
#visit img {
  width: 50vw;
  height: 400px;
  object-fit: cover;
}

#definition {
  background: #494949;
  color: #FFF;
  padding: 2rem;
  margin: 4rem 0;
  text-align: center;
  font-size: 1.8rem;
}
#definition .container {
  box-sizing: border-box;
  width: 900px;
  max-width: 100%;
  line-height: 2.6rem;
}

#sur-mesure .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
#sur-mesure .row img {
  width: 25vw;
  height: auto;
}
#sur-mesure .row div.content {
  padding: 1rem;
  font-size: 1.4rem;
  max-width: 23vw;
  line-height: 2rem;
  color: #46616D;
}

#header_page {
  height: 25vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media all and (max-width: 991px) {
  #header_page {
    height: 22vh;
  }
}

#header_page .image_presentation {
  width: 100vw;
  height: 25vh;
  position: absolute;
  object-fit: cover;
  z-index: 1;
}
@media all and (max-width: 991px) {
  #header_page .image_presentation {
    height: 22vh;
  }
}

#header_page .filter {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  top: 0;
  background: white;
  background: linear-gradient(52deg, white 0%, rgba(255, 255, 255, 0.6964986678) 58%, rgba(255, 255, 255, 0.2875350824) 100%);
}

#header_page .filter::after {
  content: "";
  display: block;
  position: relative;
  width: 10rem;
  height: 100%;
  background: white;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
}

#header_page .wave {
  width: 100vw;
  height: 20rem;
  position: relative;
  top: -6rem;
  z-index: 6;
}
@media all and (max-width: 991px) {
  #header_page .wave {
    top: -10rem;
  }
}
#header_page .wave .line {
  position: absolute;
  z-index: 1;
  width: 100vw;
  height: 12rem;
  top: -2rem;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.4;
}
#header_page .wave .wave_svg {
  position: relative;
  width: 100vw;
  height: 30rem;
  object-fit: cover;
}
#header_page .wave .custom-logo-link {
  position: absolute;
  right: 12vw;
  top: 25%;
  z-index: 2;
}
#header_page .wave .custom-logo {
  width: 180px;
  height: 180px;
  position: relative;
}

#page, #portfolio {
  min-height: 75vh;
  margin-top: -7.5vh;
  position: relative;
  z-index: 2;
}
#page h1, #portfolio h1 {
  color: #46616D;
  font-weight: 600;
  font-size: 1.8rem;
}
#page p, #portfolio p {
  color: #292929;
  line-height: 1.6rem;
}

#gallery {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
#gallery .project {
  width: calc(25% - 5px * 2);
  height: 300px;
  background-size: cover;
  background-color: #e1f1fc;
  margin: 5px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 0 !important;
  text-decoration: none;
  display: inline-block;
  color: #46616D;
}
@media all and (max-width: 991px) {
  #gallery .project {
    height: 200px;
    width: 100%;
  }
}
#gallery .project:first-child {
  border-top-left-radius: 4rem !important;
}
@media all and (max-width: 991px) {
  #gallery .project:first-child {
    border-top-left-radius: 0rem !important;
  }
}
#gallery .project:nth-child(4) {
  border-top-right-radius: 4rem !important;
}
@media all and (max-width: 991px) {
  #gallery .project:nth-child(4) {
    border-top-right-radius: 0rem !important;
  }
}
#gallery .project:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: 0;
  background: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
  opacity: 0.7;
  transition: 0.3s;
}
#gallery .project .content {
  position: absolute;
  z-index: 1;
  padding: 0.5rem;
  left: 0;
  bottom: -1rem;
  width: 100%;
  transition: 0.3s;
  box-sizing: border-box;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#gallery .project .content a {
  text-decoration: none;
  color: #FFF;
}
#gallery .project .content h2, #gallery .project .content a, #gallery .project .content span {
  transition: 0.3s;
}
#gallery .project .content h2 {
  font-size: 1.2rem;
  font-weight: 500;
}
#gallery .project .content span.more {
  opacity: 0;
  transform: translateX(-1rem);
  transition: 0.3s;
}
#gallery .project:hover {
  border-radius: 0.5rem !important;
}
#gallery .project:hover:before {
  transition: 0.3s;
  opacity: 1;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(70, 97, 109, 0.8) 100%);
}
#gallery .project:hover .content {
  transform: translateY(-1rem);
  color: #FFF;
}
#gallery .project:hover .content h2 {
  transform: translateY(-0.5rem);
}
#gallery .project:hover .content h2, #gallery .project:hover .content a, #gallery .project:hover .content span {
  color: #FFF;
}
#gallery .project:hover .content span.more {
  opacity: 1;
  transform: translateX(0);
  position: absolute;
  right: 2rem;
}

#header_post {
  height: 20vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#header_post .image_presentation {
  width: 100vw;
  height: 20vh;
  position: absolute;
  object-fit: cover;
  z-index: 1;
}

#header_post .filter {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  top: 0;
  background: white;
  background: linear-gradient(52deg, white 0%, rgba(255, 255, 255, 0.6964986678) 58%, rgba(255, 255, 255, 0.2875350824) 100%);
}

#header_post .filter::after {
  content: "";
  display: block;
  position: relative;
  width: 10rem;
  height: 100%;
  background: white;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
}

#header_post .wave {
  width: 100vw;
  height: 15rem;
  position: relative;
  top: -10rem;
  background: #FFF;
  z-index: 6;
}
#header_post .wave .line {
  position: absolute;
  z-index: 1;
  width: 100vw;
  height: 12rem;
  top: -2rem;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.4;
}
#header_post .wave .wave_svg {
  position: relative;
  width: 100vw;
  height: 30rem;
  object-fit: cover;
}
#header_post .wave .custom-logo-link {
  position: absolute;
  right: 12vw;
  top: 25%;
  z-index: 2;
}
#header_post .wave .custom-logo {
  width: 180px;
  height: 180px;
  position: relative;
}

#postThumbnail {
  width: 100%;
  height: 20vh;
  object-fit: cover;
}

.contentProject {
  display: flex;
  padding: 4rem 0;
  align-items: flex-start;
  justify-content: center;
  box-shadow: 0 20px 30px -30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}
.contentProject .col-md-4 {
  width: 33.3333333333%;
}
.contentProject .col-md-4 h1 {
  margin: 0;
}
.contentProject .col-md-8 {
  width: 66.6666666667%;
  color: #636a73;
  line-height: 1.8rem;
}
@media all and (max-width: 991px) {
  .contentProject {
    flex-direction: column;
    padding: 2rem 0;
    margin-bottom: 1rem;
  }
  .contentProject > div {
    width: 100% !important;
  }
}

#projectGallery {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#projectGallery a:after {
  display: none;
}
#projectGallery .image {
  width: 800px;
  height: 500px;
  margin: 1rem 0;
  transition: 0.3s;
  overflow: hidden;
}
@media all and (max-width: 991px) {
  #projectGallery .image {
    max-width: 90vw;
    height: auto;
  }
}
#projectGallery .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
#projectGallery .image:hover {
  box-shadow: 0 0px 15px 3px rgba(70, 97, 109, 0.3);
  border-radius: 1rem;
}
#projectGallery .image:hover img {
  transform: scale(1.06);
}

/*# sourceMappingURL=main.css.map */
