@charset "UTF-8";
body {
  margin-top: 6rem;
}
@media screen and (min-width: 62em) {
  body {
    margin-top: 7.7rem;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-rendering: optimizeLegibility;
  color: #404040;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 1.6rem;
  }
}

h1, h2, h3, h4 {
  font-family: "Albert Sans", sans-serif;
  font-size: 4rem;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-rendering: optimizeLegibility;
  color: #2f2f2f;
}
@media screen and (min-width: 480px) {
  h1, h2, h3, h4 {
    font-size: 4.4rem;
  }
}
@media screen and (min-width: 768px) {
  h1, h2, h3, h4 {
    font-size: 4.6rem;
  }
}

h2 {
  font-size: 3.4rem;
  line-height: 1.25;
}
@media screen and (min-width: 480px) {
  h2 {
    font-size: 3.8rem;
  }
}

h3 {
  font-size: 2.4rem;
  line-height: 1.25;
}
@media screen and (min-width: 480px) {
  h3 {
    font-size: 2.6rem;
  }
}

h4 {
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 600;
  color: #717171;
}
@media screen and (min-width: 480px) {
  h4 {
    font-size: 2.2rem;
  }
}

li {
  list-style: none;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  li {
    font-size: 1.6rem;
  }
}

.main_header {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 3px 16px #8a8a8a;
  z-index: 2;
}
.main_header .main-navigation {
  display: grid;
  background-color: #f8f8f8;
  grid-template-columns: 1fr;
  grid-template-areas: "branditem toggleitem";
  position: relative;
}
.main_header .main-navigation .brand {
  grid-area: branditem;
  align-self: center;
}
.main_header .main-navigation .brand a {
  padding-left: 3rem;
}
.main_header .main-navigation .toggle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9rem;
  height: 6rem;
  cursor: pointer;
  background: #f8f8f8;
  grid-area: toggleitem;
  justify-self: end;
  outline: none;
  border: none;
}
.main_header .main-navigation .toggle .btn_burger {
  width: 3rem;
  height: 0.4rem;
  background: #8a8a8a;
  border-radius: 0.2rem;
  transition: all 0.5s ease-in-out;
}
.main_header .main-navigation .toggle .btn_burger::before, .main_header .main-navigation .toggle .btn_burger::after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 0.4rem;
  background: #8a8a8a;
  border-radius: 0.2rem;
  transition: all 0.5s ease-in-out;
  transform: translate(-15px, -8px);
}
.main_header .main-navigation .toggle .btn_burger::after {
  transform: translate(-15px, 8px);
}
.main_header .main-navigation .toggle.open .btn_burger {
  transform: translateX(-4rem);
  background: transparent;
}
.main_header .main-navigation .toggle.open .btn_burger::before {
  transform: rotate(45deg) translate(18px, -18px);
}
.main_header .main-navigation .toggle.open .btn_burger:after {
  transform: rotate(-45deg) translate(18px, 18px);
}
.main_header .main-navigation .wrap_menu {
  position: absolute;
  grid-area: wrapmenuitem;
  padding-left: 70px;
  padding-top: 0.9rem;
  height: 90px;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  transition: all 0.3s ease-out;
  left: -100%;
  border-right: 1px solid #000000;
}
.main_header .main-navigation .wrap_menu .logo-mobile {
  padding-bottom: 0.9rem;
  padding-left: 5rem;
}
.main_header .main-navigation .wrap_menu.show {
  left: -90px;
}
.main_header .main-navigation .wrap_menu ul.nav-menu {
  border-top: 1px solid #2e2e2e;
  border-bottom: 1px solid #2e2e2e;
  padding-left: 2rem;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li {
  list-style: none;
  border-bottom: 1px solid #2e2e2e;
  /* SUB-MENU */
}
.main_header .main-navigation .wrap_menu ul.nav-menu li a {
  transition: all 0.3s;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li a:hover {
  padding-left: 4rem;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li.menu-item-has-children {
  cursor: pointer;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li.menu-item-has-children > a {
  background: no-repeat url("../images/op-cl-arr-mob.svg") 95% 0%;
  transition: padding 0.3s;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li.menu-item-has-children.arrow > a {
  background: no-repeat url("../images/op-cl-arr-mob.svg") 95% 100%;
  background-color: #000000;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li.menu-item-has-children.current-menu-parent.arrow > a {
  background-color: #008fbe;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li a {
  color: whitesmoke;
  text-decoration: none;
  display: block;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  padding: 0.75rem 0;
  padding-left: 3rem;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-item a, .main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-parent a, .main_header .main-navigation .wrap_menu ul.nav-menu li.current_page_item a {
  background-color: #008fbe;
  color: #f8f8f8;
  font-weight: 500;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li:last-child {
  border: 0px;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu {
  display: none;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu.active {
  display: block;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu.active > a::before, .main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu.active a::after {
  border-bottom: 1px solid #2e2e2e;
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  top: -2px;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu.active > li a::before {
  content: "·";
  font-size: 40px;
  position: absolute;
  top: -8px;
  left: 50px;
  color: #2e2e2e;
  transition: all 0.3s;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu.active > li a:hover::before {
  left: 60px;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu a {
  padding-left: 6.5rem;
  color: #2e2e2e;
  font-weight: 500;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu a:hover {
  padding-left: 7.5rem;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu > li {
  position: relative;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu > li a {
  background-color: #f8f8f8;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu > li.current-menu-item a {
  color: #008fbe;
  font-weight: 600;
}
.main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu > li.current-menu-item a::before {
  color: #008fbe;
}

@media screen and (min-width: 62em) {
  .main_header .main-navigation {
    display: flex;
    position: initial;
    height: 7.7rem;
    max-width: 96rem;
    margin: 0 auto;
    background-color: #ffffff;
  }
  .main_header .main-navigation .brand {
    padding-left: 3rem;
  }
  .main_header .main-navigation .brand a {
    padding-left: 0;
  }
  .main_header .main-navigation .toggle {
    display: none;
  }
  .main_header .main-navigation .wrap_menu {
    position: relative;
    display: flex;
    justify-content: end;
    margin: 0 auto;
    padding: 0;
    padding-right: 3rem;
    height: initial;
    background: none;
    transition: none;
    left: initial;
    border-right: 0;
  }
  .main_header .main-navigation .wrap_menu .logo-mobile {
    display: none;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu {
    border: none;
    padding: 0;
    display: flex;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li {
    border: none;
    align-self: center;
    align-items: center;
    /*SUB-MENU*/
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li a {
    padding: 2.8rem 2rem;
    color: #2e2e2e;
    font-weight: 500;
    transition: initial;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li a:hover {
    padding: 2.8rem 2rem;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li a::after {
    content: "";
    display: block;
    margin: auto;
    height: 3px;
    width: 0;
    top: 5px;
    background: transparent;
    transition: all 0.3s;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li a:hover::after {
    width: 100%;
    background: #2e2e2e;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-item a, .main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-parent a, .main_header .main-navigation .wrap_menu ul.nav-menu li.current_page_item a {
    background-color: transparent;
    color: #008fbe;
    padding-left: 2rem;
    font-weight: 600;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-item a:hover, .main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-parent a:hover, .main_header .main-navigation .wrap_menu ul.nav-menu li.current_page_item a:hover {
    color: #008fbe;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-item a:hover::after, .main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-parent a:hover::after, .main_header .main-navigation .wrap_menu ul.nav-menu li.current_page_item a:hover::after {
    width: 100%;
    background: #008fbe;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-parent.menu-item-has-children > a {
    transition: initial;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-parent.menu-item-has-children > a:hover::after {
    width: 100%;
    background: #008fbe;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-parent.menu-item-has-children > a:hover, .main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-parent.menu-item-has-children > a:active, .main_header .main-navigation .wrap_menu ul.nav-menu li.current-menu-parent.menu-item-has-children > a:visited {
    background: none;
    background-color: transparent;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li.menu-item-has-children > a {
    background: transparent;
    transition: initial;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu {
    display: none;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu.active {
    display: none;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu a, .main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu a:hover {
    padding: 2rem 3rem;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu > li {
    background-color: #ffffff;
    text-align: center;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu > li a {
    background-color: #ffffff;
    color: #2e2e2e;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu > li a:hover {
    color: #2e2e2e;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu > li a:hover::after {
    width: 100%;
    background: #2e2e2e;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu > li.current-menu-item a {
    background-color: #ffffff;
    font-weight: 600;
    color: #008fbe;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li ul.sub-menu > li.current-menu-item a:hover::after {
    width: 100%;
    background: #008fbe;
  }
  .main_header .main-navigation .wrap_menu ul.nav-menu li:hover ul {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    z-index: 1;
    height: inherit;
    width: inherit;
    overflow: inherit;
    clip: inherit;
    display: block;
  }
}
.banner-home {
  max-width: 96rem;
  margin: 0 auto;
  padding: 4rem 3rem 2rem 3rem;
}
.banner-home .banner__svg {
  text-align: center;
  padding-bottom: 1rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.banner-home .banner__svg img {
  max-width: 240px;
  height: auto;
}
.banner-home .banner__svg .engine_gears {
  position: absolute;
  bottom: 30px;
  right: -2px;
}
.banner-home .banner__svg .engine_gears li {
  position: absolute;
  line-height: normal;
  font-size: 0;
}
.banner-home .banner__svg .engine_gears li:nth-child(1) {
  right: 0;
  bottom: 28px;
  border-radius: 50%;
}
.banner-home .banner__svg .engine_gears li:nth-child(1) img {
  max-width: 54px;
}
.banner-home .banner__svg .engine_gears li:nth-child(2) {
  right: 30px;
  bottom: 2px;
  border-radius: 50%;
}
.banner-home .banner__svg .engine_gears li:nth-child(2) img {
  max-width: 31px;
}
.banner-home .banner__svg .engine_gears li:nth-child(3) {
  right: 4px;
  bottom: 2px;
  border-radius: 50%;
}
.banner-home .banner__svg .engine_gears li:nth-child(3) img {
  max-width: 24px;
}
.banner-home .banner__tag {
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  color: #000000;
  font-weight: 400;
}
.banner-home .banner__tag .banner__tag__container {
  overflow: hidden;
  height: 40px;
  padding: 0;
}
.banner-home .banner__tag .banner__tag__container .banner__tag__container__list {
  margin-top: 0;
  text-align: left;
  list-style: none;
  -webkit-animation-name: change;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-name: change;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}
.banner-home .banner__tag .banner__tag__container .banner__tag__container__list .banner__tag__container__list__item {
  margin: 0;
  font-size: 1.8rem;
  line-height: 40px;
  text-align: center;
}

@media screen and (min-width: 30em) {
  .banner-home .banner__svg img {
    max-width: 280px;
  }
  .banner-home .banner__svg .engine_gears {
    bottom: 35px;
    right: 0;
  }
  .banner-home .banner__svg .engine_gears li:nth-child(1) {
    bottom: 30px;
  }
  .banner-home .banner__svg .engine_gears li:nth-child(1) img {
    max-width: 58px;
  }
  .banner-home .banner__svg .engine_gears li:nth-child(2) {
    right: 35px;
  }
  .banner-home .banner__svg .engine_gears li:nth-child(2) img {
    max-width: 35px;
  }
  .banner-home .banner__svg .engine_gears li:nth-child(3) {
    bottom: 0;
  }
  .banner-home .banner__svg .engine_gears li:nth-child(3) img {
    max-width: 28px;
  }
  .banner-home .banner__tag .banner__tag__container .banner__tag__container__list .banner__tag__container__list__item {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 48em) {
  .banner-home {
    display: grid;
    grid-template-columns: 280px 1fr;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .banner-home .banner__tag {
    margin: 0;
    align-self: center;
  }
  .banner-home .banner__tag .banner__tag__container .banner__tag__container__list .banner__tag__container__list__item {
    font-size: 2.7rem;
    text-align: left;
  }
}
@media screen and (min-width: 60em) {
  .banner-home {
    max-width: 90rem;
    margin: 0 auto;
  }
  .banner-home .banner__tag .banner__tag__container .banner__tag__container__list .banner__tag__container__list__item {
    font-size: 3.6rem;
    font-weight: 500;
  }
}
@keyframes opacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes change {
  0%, 20.66%, 100% {
    transform: translate3d(0, 0, 0);
  }
  24.66%, 45.32% {
    transform: translate3d(0, -35%, 0);
  }
  49.32%, 69.98% {
    transform: translate3d(0, -70%, 0);
  }
  73.98%, 94.64% {
    transform: translate3d(0, -35%, 0);
  }
}
/* Define the animation keyframes */
@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
    transform-origin: center;
    transform-box: fill-box;
  }
  100% {
    transform: rotate(360deg);
    transform-origin: center;
    transform-box: fill-box;
  }
}
/* Apply the animation to the SVG element */
ul.engine_gears li {
  animation: rotateAnimation 3s linear infinite;
}

@keyframes rotateAnimationTop {
  0% {
    transform: rotate(360deg);
    transform-origin: center;
    transform-box: fill-box;
  }
  100% {
    transform: rotate(0deg);
    transform-origin: center;
    transform-box: fill-box;
  }
}
ul.engine_gears li:nth-child(1) {
  animation: rotateAnimationTop 3s linear infinite;
}

.wrap-featured .title-featured {
  max-width: 96rem;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4rem 6rem 0 3rem;
  line-height: 1;
}

.wrap-featured .grid_area .box.boxAnimation {
  opacity: 0;
  transition: all 1s;
}
.wrap-featured .grid_area .box.boxAnimation:nth-child(1) {
  opacity: 1;
}
.wrap-featured .grid_area .box.showTop {
  animation: showTop 1s ease;
}
@keyframes showTop {
  0% {
    transform: translateY(60px);
  }
  100% {
    transform: translateY(0);
  }
}

@media screen and (min-width: 48em) {
  .wrap-featured .grid_area .box.boxAnimation {
    opacity: 0;
  }
  .wrap-featured .grid_area .box.boxAnimation:nth-child(1) {
    opacity: 0;
  }
}
.nav-menu-work {
  display: flex;
  max-width: 96rem;
  margin: 0 auto;
  padding: 0rem 3rem 3rem 3rem;
}
.nav-menu-work li {
  margin-right: 1.25rem;
}
.nav-menu-work li a {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #2e2e2e;
  font-weight: 600;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .nav-menu-work li a {
    font-size: 2.1rem;
  }
}
.nav-menu-work li a:hover {
  color: #008fbe;
}
.nav-menu-work li.current-menu-item a, .nav-menu-work li.current-menu-parent a {
  color: #008fbe;
}

.single-portfolio ul li:first-child a {
  color: #2e2e2e;
}

body .all-work h1 {
  font-size: 5rem;
  line-height: 1.25;
  padding: 4rem 3rem 0rem 3rem;
  max-width: 96rem;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 480px) {
  body .all-work h1 {
    font-size: 5.6rem;
  }
}
@media screen and (min-width: 768px) {
  body .all-work h1 {
    font-size: 6.2rem;
  }
}
body .all-work h1 span {
  font-size: 65%;
}
body.term-designer .work-section .grid_area {
  display: block;
}

.wrap-featured {
  background-color: whitesmoke;
}
.wrap-featured.work-section .grid_area {
  padding-top: 4rem;
}
.wrap-featured .grid_area {
  max-width: 96rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  padding: 2.5rem 3rem 4rem 3rem;
}
.wrap-featured .grid_area .box {
  padding: 1.5rem;
  border: 1px solid #d7d7d7;
}
.wrap-featured .grid_area .box h2 {
  display: none;
}
.wrap-featured .grid_area .box .post-thumbnail {
  overflow: hidden;
}
.wrap-featured .grid_area .box .post-thumbnail img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.wrap-featured .grid_area .box .post-thumbnail:hover img {
  transform: scale(1.1);
}

@media screen and (min-width: 48em) {
  .wrap-featured .grid_area,
  .work-section.wrap-featured .grid_area {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 60em) {
  .wrap-featured .grid_area,
  .work-section.wrap-featured .grid_area {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
body.page-template-page-contact-us, body.page-template-page-about-me, body.single-portfolio {
  background-color: whitesmoke;
}
body .contact-form-page,
body .about-page,
body .single-work {
  max-width: 77rem;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem;
  background-color: whitesmoke;
  position: relative;
}
body .contact-form-page h1,
body .about-page h1,
body .single-work h1 {
  font-size: 3.75rem;
  max-width: 96rem;
  margin: 0 auto;
  margin-bottom: 2rem;
  letter-spacing: -3px;
  padding-top: 4rem;
}
body .contact-form-page h1 span,
body .about-page h1 span,
body .single-work h1 span {
  font-size: 65%;
}
body .contact-form-page .contact-form-section,
body .contact-form-page .single-work-section,
body .contact-form-page .about-section,
body .about-page .contact-form-section,
body .about-page .single-work-section,
body .about-page .about-section,
body .single-work .contact-form-section,
body .single-work .single-work-section,
body .single-work .about-section {
  background-color: whitesmoke;
  border-top: 2px solid #ffffff;
}
body .contact-form-page .contact-form-section .grid-area,
body .contact-form-page .single-work-section .grid-area,
body .contact-form-page .about-section .grid-area,
body .about-page .contact-form-section .grid-area,
body .about-page .single-work-section .grid-area,
body .about-page .about-section .grid-area,
body .single-work .contact-form-section .grid-area,
body .single-work .single-work-section .grid-area,
body .single-work .about-section .grid-area {
  max-width: 77rem;
  margin: 0 auto;
}
body .contact-form-page .contact-form-section .grid-area .post-thumbnail img,
body .contact-form-page .contact-form-section .grid-area .about-image img,
body .contact-form-page .single-work-section .grid-area .post-thumbnail img,
body .contact-form-page .single-work-section .grid-area .about-image img,
body .contact-form-page .about-section .grid-area .post-thumbnail img,
body .contact-form-page .about-section .grid-area .about-image img,
body .about-page .contact-form-section .grid-area .post-thumbnail img,
body .about-page .contact-form-section .grid-area .about-image img,
body .about-page .single-work-section .grid-area .post-thumbnail img,
body .about-page .single-work-section .grid-area .about-image img,
body .about-page .about-section .grid-area .post-thumbnail img,
body .about-page .about-section .grid-area .about-image img,
body .single-work .contact-form-section .grid-area .post-thumbnail img,
body .single-work .contact-form-section .grid-area .about-image img,
body .single-work .single-work-section .grid-area .post-thumbnail img,
body .single-work .single-work-section .grid-area .about-image img,
body .single-work .about-section .grid-area .post-thumbnail img,
body .single-work .about-section .grid-area .about-image img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 30em) {
  body .contact-form-page h1,
  body .about-page h1 {
    font-size: 5rem;
    line-height: 1.25;
  }
}
@media screen and (min-width: 30em) and (min-width: 480px) {
  body .contact-form-page h1,
  body .about-page h1 {
    font-size: 5.6rem;
  }
}
@media screen and (min-width: 30em) and (min-width: 768px) {
  body .contact-form-page h1,
  body .about-page h1 {
    font-size: 6.2rem;
  }
}
@media screen and (min-width: 48em) {
  body .contact-form-page h1,
  body .about-page h1 {
    line-height: 1;
    padding-top: 5rem;
  }
  body .contact-form-page .contact-form-section .grid-area,
  body .contact-form-page .about-section .grid-area,
  body .about-page .contact-form-section .grid-area,
  body .about-page .about-section .grid-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    align-items: start;
  }
}
@media screen and (min-width: 62em) {
  body.single-portfolio, body.page-template-page-contact-us, body.page-template-page-about-me {
    background-color: #ffffff !important;
  }
}
body.single-portfolio {
  background-color: whitesmoke;
}
body .single-work h1 {
  font-size: 5rem;
  line-height: 1.25;
  padding: 4rem 0rem 0rem 0rem;
  margin-bottom: 0.5rem;
  letter-spacing: normal;
}
@media screen and (min-width: 480px) {
  body .single-work h1 {
    font-size: 5.6rem;
  }
}
@media screen and (min-width: 768px) {
  body .single-work h1 {
    font-size: 6.2rem;
  }
}
body .single-work .nav-menu-work {
  padding-left: 0;
  padding-right: 0;
}
body .single-work .single-work-section .grid-area {
  display: grid;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  padding: 3rem 0;
  padding-bottom: 5rem;
}
body .single-work .single-work-section .grid-area h3 {
  font-size: 2.4rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #008fbe;
}
@media screen and (min-width: 480px) {
  body .single-work .single-work-section .grid-area h3 {
    font-size: 2.6rem;
  }
}
body .single-work .single-work-section .grid-area .post-thumbnail {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #d7d7d7;
}
body .single-work .single-work-section .grid-area .post-thumbnail img {
  display: block;
}
body .single-work .single-work-section .grid-area .website-link {
  margin-bottom: 1.5rem;
}
body .single-work .single-work-section .grid-area .website-link a {
  display: block;
}
body .single-work .single-work-section .grid-area .website-link a img {
  position: relative;
  z-index: 1;
}
body .single-work .single-work-section .grid-area .website-link a::after {
  content: "";
  display: block;
  margin: auto;
  height: 18px;
  width: 100%;
  top: 6px;
  background: #008fbe;
  position: absolute;
}
body .single-work .single-work-section .grid-area .website-link.tooltip {
  position: relative;
  display: inline-block;
  text-align: center;
}
body .single-work .single-work-section .grid-area .website-link.tooltip .tooltiptext {
  visibility: hidden;
  min-width: 100px;
  background-color: #beefff;
  color: #2e2e2e;
  text-align: center;
  border-radius: 6px;
  padding: 0.5rem 2rem;
  position: absolute;
  z-index: 1;
  top: -18px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
body .single-work .single-work-section .grid-area .website-link.tooltip:hover .tooltiptext {
  visibility: visible;
}
body .single-work .single-work-section .grid-area .plugins h4, body .single-work .single-work-section .grid-area .work-images h4 {
  text-transform: capitalize;
  margin-top: 1.5rem;
}
body .single-work .single-work-section .grid-area .plugins ul li, body .single-work .single-work-section .grid-area .work-images ul li {
  padding-left: 1.5rem;
  font-style: italic;
}
body .single-work .single-work-section .grid-area .plugins ul li::before, body .single-work .single-work-section .grid-area .work-images ul li::before {
  content: "·";
  font-size: 40px;
  position: relative;
  top: 8px;
  left: -8px;
  color: #2e2e2e;
  line-height: 0.75rem;
}
body .single-work .single-work-section .grid-area .plugins ul li.images, body .single-work .single-work-section .grid-area .work-images ul li.images {
  padding-left: 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
body .single-work .single-work-section .grid-area .plugins ul li.images::before, body .single-work .single-work-section .grid-area .work-images ul li.images::before {
  content: "";
}
body .single-work .single-work-section .grid-area .plugins ul li.images img, body .single-work .single-work-section .grid-area .work-images ul li.images img {
  max-width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
}
body .single-work .single-work-section .grid-area .work-images {
  margin-top: 3rem;
}
body .single-work .single-work-section .grid-area .work-images ul li.image-1 {
  margin-bottom: 3rem;
}

@media screen and (min-width: 30em) {
  body .single-work .single-work-section .grid-area .work-images ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    grid-template-areas: "img1 img2";
  }
  body .single-work .single-work-section .grid-area .work-images ul li.image-1 {
    grid-area: img1;
    margin-bottom: 0;
  }
  body .single-work .single-work-section .grid-area .work-images ul li.image-2 {
    grid-area: img2;
  }
}
body.page-template-page-about-me {
  background-color: whitesmoke;
}
body .about-page .about-section {
  padding-bottom: 3rem;
}

@media screen and (min-width: 48em) {
  body .about-page h1 {
    line-height: 1;
    padding-top: 5rem;
  }
  body .about-page .about-section .grid-area {
    grid-template-areas: "atitle atitle" "ainfo aimg";
  }
  body .about-page .about-section .grid-area .about-title {
    grid-area: atitle;
    justify-self: start;
  }
  body .about-page .about-section .grid-area .about-info {
    grid-area: ainfo;
  }
  body .about-page .about-section .grid-area .about-image {
    grid-area: aimg;
  }
}
body.page-template-page-contact-us {
  background-color: whitesmoke;
}
body .contact-form-page .contact-form-section .grid-area img {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
body .contact-form-page .contact-form-section .grid-area form {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
body .contact-form-page .contact-form-section .grid-area form .contact-form-talk {
  font-weight: 600;
  font-size: 1.8rem;
  display: block;
  margin-bottom: -1rem;
}
body .contact-form-page .contact-form-section .grid-area form input, body .contact-form-page .contact-form-section .grid-area form textarea {
  width: 100%;
  border: 0;
  padding: 1rem;
}
body .contact-form-page .contact-form-section .grid-area form input:focus, body .contact-form-page .contact-form-section .grid-area form textarea:focus {
  outline: 0;
}
body .contact-form-page .contact-form-section .grid-area form input.wpcf7-submit, body .contact-form-page .contact-form-section .grid-area form textarea.wpcf7-submit {
  width: 16rem;
  background-color: #008fbe;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
body .contact-form-page .contact-form-section .grid-area form input.wpcf7-submit:hover, body .contact-form-page .contact-form-section .grid-area form textarea.wpcf7-submit:hover {
  cursor: pointer;
  background-color: #007ca5;
}

@media screen and (min-width: 48em) {
  body .contact-form-page h1 {
    line-height: 1;
    padding-top: 5rem;
  }
  body .contact-form-page .contact-form-section .grid-area {
    grid-template-areas: "ctitle ctitle" "cinfo cform";
  }
  body .contact-form-page .contact-form-section .grid-area .contact-title {
    grid-area: ctitle;
    justify-self: start;
  }
  body .contact-form-page .contact-form-section .grid-area .contact-info {
    grid-area: cinfo;
  }
  body .contact-form-page .contact-form-section .grid-area .wp-block-contact-form-7-contact-form-selector {
    grid-area: cform;
  }
  body .contact-form-page .contact-form-section .grid-area form {
    padding-top: 0;
  }
}
body footer .footer-info {
  padding: 4rem 3rem 4rem 3rem;
  text-align: center;
  border-top: 1px solid #f0f0f0;
  background-color: #ffffff;
}
body footer .footer-info p {
  margin-bottom: 0.5rem;
}
body footer .footer-info p.copyright {
  margin-bottom: 0;
}/*# sourceMappingURL=main.css.map */