@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;700&display=swap");
/* Defaults
-------------------------------------------------------------- */
html {
  font-size: 16px;
}

body {
  color: #231F20;
  font-size: 1.25rem;
  direction: rtl;
  line-height: 1.2;
  font-weight: 400;
  font-family: "Assistant", sans-serif;
  text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  display: block;
  font-family: "Assistant", sans-serif;
  font-weight: 700;
  line-height: 1.5em;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

div,
p,
span,
a,
input,
input[type="submit"],
select,
textarea {
  font-family: "Assistant", sans-serif;
  max-width: 100%;
}

strong,
b {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

ul li,
ol li {
  text-align: right;
}

a,
input[type="submit"],
button,
.transition {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

a {
  text-decoration: none;
  color: #3B85B4;
}

a:hover,
a:focus {
  color: #3B85B4;
}

a:focus {
  text-decoration: none;
}

img, label {
  max-width: 100%;
}

img.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.wp-block-image img {
  height: auto;
}

.round {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.content ol,
.content ul {
  margin-left: 10px;
  padding-left: 10px;
  font-size: 1rem;
  line-height: 1.4em;
  margin-bottom: 8px;
}

.content ul {
  list-style: disc;
}

.content ol {
  list-style: decimal;
}

.content p {
  font-size: 1rem;
  line-height: 1.2em;
  margin-bottom: 0.6rem;
}

/****************************************************************
    LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT
****************************************************************/
.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
}

.flex_container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  z-index: 5555555;
  padding-top: 2rem;
}

/** Main Menu */
.wrap_main_menu {
  width: 100%;
}

ul#main-menu {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
  padding: 0;
  list-style: none;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  width: 100%;
  margin-top: 1.4rem;
}

ul#main-menu > li {
  position: relative;
}

ul#main-menu > li > a {
  position: relative;
  display: block;
  font-size: 1.25rem;
  color: #000;
  line-height: 1.667rem;
  padding: 5px 20px;
  overflow: hidden;
}

ul#main-menu > li > a:after {
  width: 100%;
  height: 100%;
  background: #dce3e3;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 100%);
  transform-origin: top left;
  transition: .2s all ease-out;
  z-index: -1;
}

ul#main-menu > li > a:hover::after {
  transform: translate(0, 0);
  transition: .3s all ease-out;
}

ul#main-menu > li.current-menu-item > a {
  color: #000;
}

ul#main-menu > li > a:focus,
ul#main-menu > li > a:hover {
  text-decoration: none;
  color: #231F20;
}

/** Sub Menu  ***/
ul#main-menu ul.sub-menu {
  position: absolute;
  z-index: 10;
  right: -15px;
  padding: 0;
  top: calc( 100% + 1px);
  width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: all ease .3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transition: all ease .3s;
  right: 0;
}

ul#main-menu ul.sub-menu li {
  position: relative;
  display: block;
  background: #fff;
}

ul#main-menu ul.sub-menu li a {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 10px;
  color: #3B85B4;
  transition: all ease .2s;
}

ul#main-menu ul.sub-menu li a:hover,
ul#main-menu ul.sub-menu li a:focus {
  text-decoration: none;
  color: #231F20;
  background: #dce3e3;
  transition: all ease .2s;
}

ul#main-menu ul.sub-menu li:hover > a {
  color: #231F20;
}

.of-button {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  font-size: 1.2rem;
  padding: 8px 20px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.of-button:after {
  background-color: #fff;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: .2s all ease-out;
  z-index: -1;
}

.of-button:hover {
  color: #000;
  transition: all ease .2s;
  text-decoration: none;
}

.of-button:hover::after {
  transform: translate(0, 0);
}

.of-button.black {
  color: #000;
  border: 1px solid #000;
}

.of-button.black:after {
  background-color: #000;
}

.of-button.black:hover {
  color: #fff;
}

/************/
.acf-map {
  width: 100%;
  height: 400px;
  border: #ccc solid 1px;
  margin: 20px 0;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

/*------------- Home page -------------- */
#hp-top {
  height: 660px;
  margin-top: 50px;
  position: relative;
}

#hp-top img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  right: 0;
}

#hp-top .brush-stroke {
  text-align: center;
  position: relative;
  top: -70px;
}

#hp-top .brush-stroke svg .line-red, #hp-top .brush-stroke svg .line-yellow, #hp-top .brush-stroke svg .line-blue {
  stroke-dasharray: 2600;
  stroke-dashoffset: 2600;
  stroke-width: 400;
  animation: letter-animation 1.5s linear forwards;
}

#hp-top .brush-stroke svg .line-yellow {
  animation-delay: .3s;
}

#hp-top .brush-stroke svg .line-blue {
  animation-delay: .7s;
}

@keyframes letter-animation {
  0% {
    stroke-dashoffset: 2600;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

#hp-top .brush-stroke svg .brush-path-red {
  fill: #BF4C4C;
  mix-blend-mode: multiply;
}

#hp-top .brush-stroke svg .brush-path-yellow {
  fill: #BFA842;
  mix-blend-mode: multiply;
}

#hp-top .brush-stroke svg .brush-path-blue {
  fill: #3B85B4;
  mix-blend-mode: multiply;
}

.homepage {
  padding: 200px 0 100px;
}

.homepage #hp-about h1 {
  position: relative;
  font-size: 4rem;
}

.homepage #hp-about h1:before {
  background: url(../../images/blue_brush.svg) center center no-repeat;
  background-size: contain !important;
  content: '';
  width: 83px;
  height: 126px;
  position: absolute;
  right: -40px;
  top: -30px;
  z-index: -1;
}

.homepage #hp-about .hp-about-pic {
  mask: url(../../images/about_image_clip.svg);
  -webkit-mask: url(../../images/about_image_clip.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  padding-top: 125%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}

.homepage #hp-projects {
  padding-top: 100px;
}

.homepage #hp-projects h2 {
  display: table;
  margin: 20px auto;
  position: relative;
  font-size: 4rem;
}

.homepage #hp-projects h2:before {
  background: url(../../images/yellow_brush.svg) center center no-repeat;
  background-size: contain !important;
  content: '';
  width: 96px;
  height: 130px;
  position: absolute;
  right: -40px;
  top: -30px;
  z-index: -1;
}

.homepage #hp-projects .carousel-content {
  display: flex;
}

.homepage #hp-projects .carousel-content .hp-project-pic {
  background-size: cover !important;
  padding-top: 33.3%;
  flex: 0 0 50%;
  max-width: 50%;
}

.homepage #hp-projects .carousel-content .hp-project-info {
  flex: 0 0 50%;
  max-width: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.homepage #hp-projects .carousel-content .hp-project-info .hp-project-quote {
  color: #fff;
  font-size: 3rem;
  width: 70%;
  position: relative;
  padding-right: 100px;
  opacity: 0;
}

.homepage #hp-projects .carousel-content .hp-project-info .hp-project-quote:before {
  background: url(../../images/quotemark.svg) center center no-repeat;
  background-size: contain;
  content: '';
  width: 100px;
  height: 84px;
  position: absolute;
  right: -10px;
  top: -40px;
}

.homepage #hp-projects .carousel-content .hp-project-info p {
  text-align: right;
  width: 70%;
  padding: 20px 100px 0 0;
}

.homepage #hp-projects .carousel-content .hp-project-info p a {
  display: inline-block;
  opacity: 0;
}

.homepage #hp-projects .carousel-control-next, .homepage #hp-projects .carousel-control-prev {
  width: 5%;
}

.homepage #hp-projects .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='28' height='52' viewBox='0 0 28 52'%3e%3cpath d='M26,51.5c-0.4,0-0.8-0.1-1.1-0.4l-24-24c-0.6-0.6-0.6-1.5,0-2.1l24-24c0.6-0.6,1.5-0.6,2.1,0\a 		c0.6,0.6,0.6,1.5,0,2.1L4.1,26l22.9,22.9c0.6,0.6,0.6,1.5,0,2.1C26.8,51.4,26.4,51.5,26,51.5z'/%3e%3c/svg%3e");
}

.homepage #hp-projects .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='28' height='52' viewBox='0 0 28 52'%3e%3cpath d='M2,51.5c0.4,0,0.8-0.1,1.1-0.4l24-24c0.6-0.6,0.6-1.5,0-2.1l-24-24c-0.6-0.6-1.5-0.6-2.1,0\a 		c-0.6,0.6-0.6,1.5,0,2.1L23.9,26L0.9,48.9c-0.6,0.6-0.6,1.5,0,2.1C1.2,51.4,1.6,51.5,2,51.5z'/%3e%3c/svg%3e");
}

.homepage #hp-projects .carousel-control-next-icon, .homepage #hp-projects .carousel-control-prev-icon {
  width: 28px;
  height: 52px;
}

.homepage #hp-projects .all-projects {
  text-align: center;
  padding: 30px 0;
}

.homepage #hp-publishes {
  padding-top: 3rem;
}

.homepage #hp-publishes h2 {
  position: relative;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.homepage #hp-publishes h2.green-brush:before {
  background: url(../../images/green_brush.svg) center center no-repeat;
  background-size: contain !important;
  content: '';
  width: 50px;
  height: 83px;
  position: absolute;
  right: -20px;
  top: -20px;
  z-index: -1;
}

.homepage #hp-publishes h2.red-brush:before {
  background: url(../../images/red_brush.svg) center center no-repeat;
  background-size: contain !important;
  content: '';
  width: 79px;
  height: 97px;
  position: absolute;
  right: -30px;
  top: -20px;
  z-index: -1;
}

.homepage #hp-publishes .hp-press-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #aaa;
  padding: 10px;
  transition: all ease .3s;
}

.homepage #hp-publishes .hp-press-item:hover {
  background: #e1dddd;
  transition: all ease .3s;
}

.homepage #hp-publishes .hp-press-item a {
  color: #000;
}

.homepage #hp-publishes .hp-press-item a:hover {
  text-decoration: none;
}

.homepage #hp-publishes .hp-press-item .press-date {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  text-align: center;
}

.homepage #hp-publishes .hp-press-item .press-date .day {
  font-size: 2rem;
  font-weight: 800;
}

.homepage #hp-publishes .hp-press-item .press-date .month {
  font-size: 1rem;
}

.homepage #hp-publishes .hp-press-item .press-date .year {
  font-size: 1.25rem;
}

.homepage #hp-publishes .hp-press-item .press-icon {
  padding-top: 100%;
  max-width: 75px;
  background-size: cover !important;
}

.homepage #hp-publishes .hp-press-item h3 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.homepage #hp-publishes .hp-press-item .press-info {
  display: flex;
  justify-content: space-between;
}

.homepage #hp-publishes .hp-press-item .press-info .press-name, .homepage #hp-publishes .hp-press-item .press-info .press-tags {
  font-size: 1rem;
  font-weight: 300;
}

.homepage #hp-publishes .hp-press-item .press-info .press-tags span:last-child {
  display: none;
}

/*------------- Archive Projects -------------- */
#projects-top {
  position: relative;
  height: 225px;
  margin: 20px 0 0;
}

#projects-top .projects-top-bg {
  background: #DCE3E3;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 90%;
}

#projects-top .projects-top-image {
  background-size: cover !important;
  width: 90%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  opacity: .7;
}

#projects-top .projects-top-diag {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 100%;
}

#projects-top .projects-top-diag:after {
  background: url(../../images/top_diag.svg);
  content: '';
  width: 254px;
  height: 225px;
  position: absolute;
  top: 0;
  left: -100px;
}

#projects-top .projects-top-strips {
  width: 269px;
  height: 269px;
  background: url(../../images/top_strips.svg) center center no-repeat;
  background-size: cover;
  position: absolute;
  right: calc( 50% - 135px);
  top: -22px;
  mix-blend-mode: multiply;
}

#projects-top h1 {
  width: 100%;
  position: absolute;
  text-align: center;
  font-size: 5rem;
  top: 24%;
  color: #fff;
}

#projects-top h1.project-archive-title {
  line-height: 0.9;
  top: 14%;
}

#projects-cats {
  display: flex;
  justify-content: center;
  margin: 80px 0px 50px;
}

#projects-cats a {
  margin: 0 10px;
}

.projects {
  padding-bottom: 100px;
}

.projects .single-project {
  display: flex;
}

.projects .single-project:nth-child(even) {
  flex-direction: row-reverse;
}

.projects .single-project .hp-project-pic {
  background-size: cover !important;
  padding-top: 33.3%;
  flex: 0 0 50%;
  max-width: 50%;
}

.projects .single-project .hp-project-info {
  flex: 0 0 50%;
  max-width: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.projects .single-project .hp-project-info .hp-project-quote {
  color: #fff;
  font-size: 3rem;
  width: 70%;
  position: relative;
  padding-right: 100px;
}

.projects .single-project .hp-project-info .hp-project-quote:before {
  background: url(../../images/quotemark.svg) center center no-repeat;
  background-size: contain;
  content: '';
  width: 100px;
  height: 84px;
  position: absolute;
  right: -10px;
  top: -40px;
}

.projects .single-project .hp-project-info .hp-project-quote.title {
  padding-right: 0;
}

.projects .single-project .hp-project-info .hp-project-quote.title:before {
  content: none;
}

.projects .single-project .hp-project-info p {
  text-align: right;
  width: 70%;
  padding: 20px 100px 0 0;
}

.projects .single-project .hp-project-info p a {
  display: inline-block;
}

/*------------- Single Projects -------------- */
#single-projects-top {
  position: relative;
  margin-top: 2rem;
}

#single-projects-top .top-image {
  height: 780px;
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: gray;
  background-size: cover !important;
}

#single-projects-top .top-info {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
}

#single-projects-top .top-info .single-project-bg {
  width: 100%;
  height: 100%;
  opacity: .9;
}

#single-projects-top .top-info .single-project-quote {
  position: absolute;
  left: 0;
  top: 30%;
  color: #fff;
  font-size: 3rem;
  width: 85%;
  height: 80%;
  padding-right: 100px;
  padding-left: 50px;
}

#single-projects-top .top-info .single-project-quote:before {
  background: url(../../images/quotemark.svg) center center no-repeat;
  background-size: contain;
  content: '';
  width: 100px;
  height: 84px;
  position: absolute;
  right: -10px;
  top: -40px;
}

#single-projects-top .top-info .single-project-title {
  position: absolute;
  left: 0;
  top: 30%;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  width: 85%;
  height: 80%;
  padding-left: 50px;
}

#single-projects-top .top-info .construction {
  position: absolute;
  bottom: 0;
  right: 15%;
}

#single-projects-top .top-info .construction svg {
  height: 150px;
  width: 100px;
}

#single-project-info {
  padding-top: 5rem;
}

#single-project-info .info-repeater {
  width: 70%;
  height: 70%;
  position: absolute;
  right: 15%;
  top: 15%;
  color: #fff;
  font-size: 1.3rem;
}

#single-project-info .info-repeater p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1rem;
}

#single-project-info .info-repeater p .info-name {
  font-weight: 700;
}

#single-project-info .single-intro-text {
  line-height: 1.5;
}

#single-project-info .project-press {
  border-bottom: 1px solid #CECECE;
  border-top: 1px solid #CECECE;
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

#single-project-info .project-press span {
  margin-left: 1rem;
}

#single-project-info .project-press .press-text {
  border-right: 1px solid #000;
  padding-right: 1rem;
}

#single-project-info .project-press img {
  max-height: 60px;
}

#project-photos {
  margin-top: 2rem;
}

#project-photos .row {
  margin-bottom: 30px;
}

#project-photos .row .two-vertical {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#project-photos p.caption {
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
}

#next-project {
  text-align: center;
  padding: 1rem 0 3rem;
}

#next-project .container {
  border-top: 1px solid #bbb;
}

#next-project .next-project-pic {
  width: 333px;
  height: 154px;
  background-size: cover !important;
  mask: url(../../images/next_brush.svg);
  -webkit-mask: url(../../images/next_brush.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  margin: 3rem auto 1rem;
  transition: all ease .5s;
}

#next-project a:hover .next-project-pic {
  transform: scale(1.1);
  transition: all ease .5s;
}

/*------------- Archive Press -------------- */
.press {
  padding: 5rem 0;
}

.press .single-press {
  margin-bottom: 20px;
  border-bottom: 1px solid #aaa;
  padding: 10px;
  transition: all ease .3s;
}

.press .single-press:hover {
  background: #e1dddd;
  transition: all ease .3s;
}

.press .single-press a {
  color: #000;
}

.press .single-press a:hover {
  text-decoration: none;
}

.press .single-press .press-date {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  text-align: center;
}

.press .single-press .press-date .day {
  font-size: 2rem;
  font-weight: 800;
}

.press .single-press .press-date .month {
  font-size: 1rem;
}

.press .single-press .press-date .year {
  font-size: 1.25rem;
}

.press .single-press .press-icon {
  padding-top: 100%;
  max-width: 75px;
  background-size: cover !important;
}

.press .single-press h3 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.press .single-press .press-info {
  display: flex;
  justify-content: space-between;
}

.press .single-press .press-info .press-name, .press .single-press .press-info .press-tags {
  font-size: 1rem;
  font-weight: 300;
}

.press .single-press .press-info .press-tags span:last-child {
  display: none;
}

/*------------- Archive Blog -------------- */
.blog .page-wrap.blog {
  padding: 5rem 0;
}

.blog .blog-single-post {
  margin-bottom: 3rem;
}

.blog .blog-single-post a {
  text-decoration: none;
}

.blog .blog-single-post .blog-post-image {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.blog .blog-single-post .blog-post-image .post-image-inner {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  background-size: cover !important;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.blog .blog-single-post:hover .post-image-inner {
  -ms-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2) rotate(5deg);
}

.blog .blog-single-post p.post-date {
  padding-bottom: 0.3rem;
  margin: 1rem 0 0.3rem 0;
  border-bottom: 1px solid #aaa;
  font-size: 0.9rem;
  border-top: 1px solid #aaa;
  padding-top: .3rem;
  color: #aaa;
}

.blog .blog-single-post h2 {
  font-size: 1.4rem;
  line-height: 1.3;
}

.blog .blog-single-post .post-tags {
  font-size: 1rem;
}

.blog .blog-single-post .post-tags a {
  color: #000;
  text-decoration: none;
}

.blog .blog-single-post .post-tags a:hover {
  color: #3B85B4;
  text-decoration: none;
}

.blog .blog-single-post .post-tags span:last-child {
  display: none;
}

/*------------- Single Blog post -------------- */
.single-post-page {
  padding: 5rem 0;
}

.single-post-page .post-title {
  text-align: center;
  padding-bottom: 3rem;
}

.single-post-page .post-title h2 {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.2;
}

.single-post-page .post-title p.post-date {
  display: inline-block;
  color: #aaa;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  padding: .5rem 0;
}

.single-post-page .post-title .post-tags {
  display: flex;
  justify-content: center;
}

.single-post-page .post-title .post-tags span:last-child {
  display: none;
}

.single-post-page .post-title .post-tags a {
  text-decoration: none;
}

.single-post-page .post-content {
  line-height: 1.5;
  padding-bottom: 3rem;
}

.single-post-page .post-content .wp-block-quote {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}

.single-post-page .post-content .wp-block-quote:before {
  width: 48px;
  height: 40px;
  content: "";
  background: url(../../images/quotemark_black.svg) center center no-repeat;
  position: absolute;
}

.single-post-page .post-content .wp-block-quote p {
  padding-right: 60px;
}

/*------------- Contact page -------------- */
.page-wrap.contact {
  padding: 7rem 0 10rem;
  background: url(../../images/contact_bg.jpg) center bottom no-repeat;
  background-size: contain !important;
}

.page-wrap.contact h2 {
  font-size: 2.5rem;
}

.page-wrap.contact form {
  max-width: 400px;
}

.page-wrap.contact form label, .page-wrap.contact form input, .page-wrap.contact form textarea {
  width: 100%;
}

.page-wrap.contact form input[type=submit] {
  background: transparent;
  border: 1px solid #000;
  width: 100%;
  transition: all ease .2s;
  padding: 10px 5px;
}

.page-wrap.contact form input[type=submit]:hover {
  color: #fff;
  background: #000;
  transition: all ease .2s;
  text-decoration: none;
}

.page-wrap.contact form textarea {
  max-height: 130px;
}

.page-wrap.contact .info {
  background: #dce3e3;
  padding: 2rem;
  mix-blend-mode: multiply;
}

.page-wrap.contact .info h3 {
  font-size: 2rem;
}

.page-wrap.contact .info .contact-socials svg {
  transition: all ease .3s;
}

.page-wrap.contact .info .contact-socials svg path {
  fill: #3B85B4;
}

.page-wrap.contact .info .contact-socials svg:hover {
  transform: scale(1.1);
  transition: all ease .3s;
}

.page-wrap.contact .info .contact-socials a {
  margin-left: 1rem;
}

.page-wrap.contact .info .contact-socials a:hover {
  text-decoration: none;
}

/*------------- About page -------------- */
.page-wrap.about {
  padding: 7rem 0 15rem;
  background: url(../../images/about_bottom.jpg) center bottom no-repeat;
  background-size: contain !important;
}

.page-wrap.about .about-pic {
  mask: url(../../images/about_image_clip.svg);
  -webkit-mask: url(../../images/about_image_clip.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  padding-top: 125%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}

.page-wrap.about h2 {
  font-size: 3rem;
}

.page-wrap.about .about_text {
  line-height: 1.5;
}

.page-wrap.about .certificates {
  padding: 3rem 0 1rem;
}

.page-wrap.about .cert-image {
  border: 1px solid #ccc;
  transition: all ease .3s;
  cursor: pointer;
}

.page-wrap.about .cert-image:hover {
  transform: scale(1.1);
  transition: all ease .3s;
}

.halbasha {
  padding: 5rem 0;
}

.halbasha img {
  height: auto;
}

.halbasha .halbasha-item {
  text-align: center;
  margin-bottom: 2rem;
}

.halbasha .halbasha-item h3 {
  font-size: 1.6rem;
  margin-top: 1rem;
}

.halbasha .halbasha-item h3:after {
  content: "";
  height: 2px;
  width: 40px;
  margin: 1rem auto;
  background: #5f6062;
  display: block;
}

/*------------- Mail poet -------------- */
#mailpoet_form_2 .mailpoet_form_column:not(:first-child) {
  margin-right: 20px;
  margin-left: 0 !important;
}

/*------------- Recomandations page -------------- */
.recomendations {
  padding: 5rem 0;
}

.recomendations .recomend-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recomendations .recomend-title.collapsed svg {
  transform: rotate(0deg);
  transition: all ease .5s;
  flex: none;
}

.recomendations .recomend-title.collapsed h5 {
  color: #000;
}

.recomendations .recomend-title svg {
  transform: rotate(180deg);
  transition: all ease .5s;
  flex: none;
}

.recomendations .card {
  border: none;
}

.recomendations .card a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}

.recomendations .card a:hover h5 {
  color: #3B85B4;
}

.recomendations .card .card-header {
  background: transparent;
  border: none;
  padding-right: 0;
}

.recomendations .card h5 {
  padding-right: 40px;
  padding-left: 20px;
  position: relative;
  font-size: 2rem;
  line-height: 2rem;
  color: #3B85B4;
}

.recomendations .card h5 span {
  font-size: 1rem;
  color: #7c7d7d;
  font-weight: 400;
  line-height: 1rem;
}

.recomendations .card h5:before {
  width: 34px;
  height: 26px;
  content: "";
  background: url(../../images/quotemark_black.svg) center center no-repeat;
  position: absolute;
  right: 0;
  top: -8px;
  background-size: contain;
}

/*------------------------ Footer --------------------------- */
.footer {
  background: #3B85B4;
  padding: 50px 0;
}

.footer .footer-info img {
  mix-blend-mode: screen;
}

.footer .footer-info .footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer .footer-info .footer-contact p, .footer .footer-info .footer-contact a {
  color: #fff;
}

.footer .footer-info .footer-contact p {
  font-size: 1.25rem;
  margin: 0;
}

.footer .footer-info .footer-contact a {
  font-size: 1.1rem;
  transition: all ease .2s;
}

.footer .footer-info .footer-contact a:hover {
  text-decoration: none;
  color: #BFA842;
  transition: all ease .2s;
}

.footer .footer-info .footer-socials {
  display: flex;
}

.footer .footer-info .footer-socials .facebook, .footer .footer-info .footer-socials .instagram, .footer .footer-info .footer-socials .whatsapp {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  transition: all ease .2s;
}

.footer .footer-info .footer-socials .facebook:hover .st0, .footer .footer-info .footer-socials .instagram:hover .st0, .footer .footer-info .footer-socials .whatsapp:hover .st0 {
  fill: #BFA842;
  transition: all ease .2s;
}

.footer input[type=text], .footer input[type=email], .footer textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 1rem;
  width: 100%;
  padding: 8px;
}

.footer label {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  width: 100%;
}

.footer textarea {
  max-height: 50px;
}

.footer input[type=submit] {
  color: #fff;
  border: 1px solid #fff;
  font-size: 1.2rem;
  padding: 8px 20px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: transparent;
  width: 100%;
}

.footer input[type=submit]:hover {
  color: #000;
  background: #fff;
  transition: all ease .2s;
  text-decoration: none;
}

.footer .message label {
  margin-bottom: 0;
}

.footer label {
  display: flex;
}

.footer label .wpcf7-form-control-wrap {
  flex: 1 1 auto;
}

.footer .submit {
  display: flex;
}

.footer h3 {
  font-size: 2.5rem;
  color: #fff;
  line-height: 0.7;
  margin-bottom: 1.5rem;
}

a.bubble {
  position: relative;
}

a.bubble:hover {
  text-decoration: none;
}

a.bubble .speech-bubble {
  position: absolute;
  background: #BF4C4C;
  border-radius: .4em;
  width: 260px !important;
  padding: 1rem 1rem 0;
  color: #fff;
  top: -40px;
  left: -200px;
  transform: translateY(-100%);
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.4);
  display: table;
}

a.bubble .speech-bubble:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 70%;
  width: 0;
  height: 0;
  border: 37px solid transparent;
  border-top-color: #BF4C4C;
  border-bottom: 0;
  border-right: 0;
  margin-right: -18.5px;
  margin-bottom: -37px;
}

.bottom-share {
  text-align: center;
}

.bottom-share .container {
  border-top: 1px solid #bbb;
  padding-top: 1rem;
}

.bottom-share h3 {
  font-size: 2rem;
  text-align: center;
}

.bottom-share .heateor_sss_horizontal_sharing {
  display: flex;
  justify-content: center;
}

.bottom-share .heateor_sss_horizontal_sharing .heateor_sss_sharing_ul {
  padding: 0;
}

#scroll-top {
  display: flex;
  background-color: #BFA842;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 10px;
  transition: all ease .5s;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

#scroll-top.show {
  opacity: 1;
  visibility: visible;
  transition: all ease .5s;
}

#mailing-sticky {
  display: flex;
  background-color: #BF4C4C;
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 70px;
  transition: all ease .5s;
  z-index: 1000;
  cursor: pointer;
}

#mailing-sticky button {
  background: transparent;
  border: none;
}

#mailing-sticky .close {
  color: #fff;
  text-shadow: none;
}

.modal-header .close {
  padding: 0;
  margin: 0;
}

#mailchimp-signup {
  background: #BF4C4C;
  padding: 3rem 0;
}

#mailchimp-signup h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

#mailchimp-signup .row {
  align-items: baseline;
}

#mailchimp-signup label {
  color: #fff;
}

#mailchimp-signup input[type=text], #mailchimp-signup input[type=email] {
  background: transparent;
  border: 1px solid #fff;
  font-size: 1.25rem;
  padding: 6px 10px;
  color: #fff;
  width: 100%;
}

#mailchimp-signup input[type=submit] {
  background: #fff;
  color: #000;
  font-size: 1.25rem;
  padding: 6px 30px;
  border: 1px solid #fff;
}

#mailchimp-signup .wpcf7-not-valid-tip {
  color: #fff !important;
}

/* Edit Above Only*/
/*------------------------ Animations --------------------------- */
.active .kenburns-top {
  -webkit-animation: kenburns-top 5s ease-out both;
  animation: kenburns-top 5s ease-out both;
}

.active .text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.active .tracking-in-expand {
  -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 1s both;
  animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 1s both;
}

@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}

@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}

/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation swing-in-top-fwd
 * ----------------------------------------
 */
.swing-in-top-fwd {
  opacity: 0;
}

.animation-on.swing-in-top-fwd {
  -webkit-animation: swing-in-top-fwd 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  animation: swing-in-top-fwd 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@-webkit-keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
    transform: rotateX(-100deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}

@keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
    transform: rotateX(-100deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation scale-in-center
 * ----------------------------------------
 */
.scale-in-center {
  opacity: 0;
}

.animation-on.scale-in-center {
  -webkit-animation: scale-in-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-in-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-fwd-right
 * ----------------------------------------
 */
.slide-in-fwd-right {
  opacity: 0;
}

.animation-on.slide-in-fwd-right {
  -webkit-animation: slide-in-fwd-right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-fwd-right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-fwd-right {
  0% {
    -webkit-transform: translateZ(-1400px) translateX(1000px);
    transform: translateZ(-1400px) translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-fwd-right {
  0% {
    -webkit-transform: translateZ(-1400px) translateX(1000px);
    transform: translateZ(-1400px) translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    opacity: 1;
  }
}

.mobile_menu_button {
  position: relative;
  display: none;
}

.triggerMobileMenu {
  position: relative;
  width: 40px;
  height: 28px;
  padding: 0;
  border: 0;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  background: none;
  text-indent: -99999px;
}

.triggerMobileMenu span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #3B85B4;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.triggerMobileMenu span:nth-child(1) {
  top: 0px;
}

.triggerMobileMenu span:nth-child(2) {
  top: 11px;
}

.triggerMobileMenu span:nth-child(3) {
  top: 22px;
}

.triggerMobileMenu.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.triggerMobileMenu.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.triggerMobileMenu.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.button.triggerMobileMenu:focus,
.button.triggerMobileMenu:hover {
  background: none;
  outline: none;
}

/** off-cnavas (mobile menu wrapper) ****************/
.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform .5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #3B85B4;
  top: 0;
  width: 250px;
  height: 100%;
  overflow-y: auto;
}

.off-canvas.is-open {
  z-index: 9999;
  transform: translate(0);
}

.position-left {
  transform: translateX(-250px);
  left: 0;
}

.position-right {
  transform: translateX(250px);
  right: 0;
}

body.admin-bar .off-canvas {
  top: 32px;
}

/** Mobile Menu Style **************/
.mobile_menu_holder {
  position: relative;
}

.mobile_menu_title {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  padding: 10px 0;
  background: #3B85B4;
  border-bottom: 1px solid #3B85B4;
  font-weight: 500;
  color: #fff;
}

ul#mobile-menu {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 0;
}

ul#mobile-menu li {
  position: relative;
  display: block;
}

ul#mobile-menu li a {
  position: relative;
  display: block;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 10px 15px;
  color: #fff;
}

ul#mobile-menu ul.sub-menu {
  position: relative;
  display: block;
  padding-right: 15px;
}

ul#mobile-menu ul.sub-menu li a {
  padding: 0px 15px 10px 15px;
  font-size: 1rem;
}

/*
ul#mobile-menu ul.sub-menu li a:before{
    position: absolute;
    display: block;
    left: 0;
    top: 0px;
    content: '>>';
    font-size: 0.7rem;
}
*/
ul#mobile-menu > li > a:focus,
ul#mobile-menu > li.current-menu-item > a,
ul#mobile-menu ul.sub-menu li.current-menu-item a,
ul.mobile_menu > li a:hover {
  color: #fff;
}

.close-menu {
  text-align: left;
  padding: 20px;
}

.close-menu button {
  width: 25px;
  height: 25px;
  border: none;
  background: url(../../images/close.svg) center center no-repeat transparent;
}

/****************************************************************************************************************/
@media only screen and (max-width: 1440px) {
  .homepage #hp-projects .carousel-content .hp-project-info .hp-project-quote {
    font-size: 2.5rem;
    line-height: 1;
    padding-right: 70px;
  }
  .homepage #hp-projects .carousel-content .hp-project-info .hp-project-quote:before {
    width: 70px;
  }
  .homepage #hp-projects .carousel-content .hp-project-info p {
    padding-right: 70px;
  }
  #single-projects-top .top-image {
    height: 640px;
  }
  #single-projects-top .top-info .single-project-quote {
    font-size: 2rem;
    padding-right: 70px;
  }
  #single-projects-top .top-info .single-project-quote:before {
    width: 70px;
  }
  .projects .hp-project-info .hp-project-quote {
    font-size: 2.5rem !important;
    line-height: 1;
    padding-right: 70px !important;
  }
  .projects .hp-project-info .hp-project-quote:before {
    width: 70px !important;
  }
  .projects .hp-project-info p {
    padding-right: 70px !important;
  }
}

/* end of (max-width: 1200px) */
@media only screen and (max-width: 991px) {
  .homepage #hp-about h1 {
    font-size: 3rem;
  }
  .homepage #hp-about h1:before {
    width: 63px;
    right: -30px;
  }
  .homepage #hp-projects .carousel-content .hp-project-info .hp-project-quote {
    font-size: 2rem;
    line-height: 1;
    padding-right: 50px;
  }
  .homepage #hp-projects .carousel-content .hp-project-info .hp-project-quote:before {
    width: 50px;
  }
  .homepage #hp-projects .carousel-content .hp-project-info p {
    padding-right: 50px;
  }
  .homepage #hp-projects h2 {
    font-size: 3rem;
  }
  .homepage #hp-projects h2:before {
    width: 66px;
    right: -30px;
  }
  .homepage #hp-publishes h2 {
    font-size: 2.5rem;
  }
  .homepage #hp-publishes h2.red-brush:before {
    width: 55px;
    right: -20px;
  }
  .homepage #hp-publishes h2.green-brush:before {
    width: 40px;
    top: -15px;
  }
  #hp-top {
    height: 480px;
  }
  #hp-top .brush-stroke {
    height: 570px;
    top: -40px;
  }
  #hp-top .brush-stroke svg {
    max-height: 100%;
    max-width: 100%;
  }
  #single-projects-top .top-image {
    height: 380px;
  }
  #single-projects-top .top-info {
    width: 50%;
  }
  #single-projects-top .top-info .single-project-quote {
    font-size: 1.6rem;
    padding-right: 70px;
  }
  #single-projects-top .top-info .single-project-quote:before {
    width: 70px;
  }
  #single-projects-top .top-info .construction {
    right: -25%;
  }
  #single-projects-top .top-info .construction svg {
    height: 100px;
    width: 70px;
  }
  .projects .hp-project-info .hp-project-quote {
    font-size: 2rem !important;
    line-height: 1;
    padding-right: 50px !important;
  }
  .projects .hp-project-info .hp-project-quote:before {
    width: 50px !important;
  }
  .projects .hp-project-info p {
    padding-right: 50px !important;
  }
  .projects h2 {
    font-size: 3rem;
  }
  .projects h2:before {
    width: 66px;
    right: -30px;
  }
}

/* end of (max-width: 1200px) */
/****************************************************************************************************************/
@media only screen and (max-width: 768px) {
  .mobile_menu_button {
    display: block;
  }
  .wrap_main_menu {
    display: none;
  }
  body.admin-bar .off-canvas {
    top: 46px;
  }
  .homepage {
    padding-top: 100px;
  }
  .homepage #hp-projects .carousel-content .hp-project-info .hp-project-quote {
    font-size: 1.8rem;
    padding-right: 30px;
    width: 80%;
  }
  .homepage #hp-projects .carousel-content .hp-project-info .hp-project-quote:before {
    width: 30px;
  }
  .homepage #hp-projects .carousel-content .hp-project-info p {
    padding-right: 30px;
    width: 80%;
  }
  .homepage #hp-publishes h2.green-brush {
    margin-top: 4rem;
  }
  .projects .hp-project-info .hp-project-quote {
    font-size: 1.8rem !important;
    padding-right: 30px !important;
    width: 80% !important;
  }
  .projects .hp-project-info .hp-project-quote:before {
    width: 30px !important;
  }
  .projects .hp-project-info p {
    padding-right: 30px !important;
    width: 80% !important;
  }
  #hp-top {
    height: 360px;
  }
  #hp-top .brush-stroke {
    height: 440px;
    top: -40px;
  }
  .footer h3 {
    margin-top: 3rem;
  }
  .logo-col {
    text-align: center;
  }
  .nav-col {
    position: absolute;
  }
  #single-projects-top .top-image {
    height: 450px;
  }
  #single-projects-top .top-info {
    width: 100%;
    height: 40%;
    bottom: 0;
    top: auto;
  }
  #single-projects-top .top-info .construction {
    right: 15%;
    bottom: 180px;
  }
  #single-projects-top .top-info .single-project-title {
    font-size: 3rem;
    top: 20%;
  }
  #projects-top {
    margin-top: 50px;
  }
  .single-intro-text {
    margin-top: 40px;
  }
}

/* end of (max-width: 768px) */
/****************************************************************************************************************/
@media only screen and (max-width: 576px) {
  .col-6 {
    margin-bottom: 2rem;
  }
  .homepage #hp-projects .carousel-content {
    display: block;
  }
  .homepage #hp-projects .carousel-content .hp-project-info {
    max-width: 100%;
    position: relative;
    padding-top: 50px;
  }
  .homepage #hp-projects .carousel-content .hp-project-info .hp-project-quote {
    font-size: 1.8rem;
    padding-right: 30px;
    width: 80%;
  }
  .homepage #hp-projects .carousel-content .hp-project-info .hp-project-quote:before {
    width: 30px;
  }
  .homepage #hp-projects .carousel-content .hp-project-info p {
    padding-right: 30px;
    width: 80%;
  }
  .homepage #hp-projects .carousel-content .hp-project-pic {
    max-width: 100%;
    padding-top: 50%;
  }
  .projects .single-project {
    display: block;
  }
  .projects .single-project .hp-project-info {
    max-width: 100%;
    position: relative;
    padding-top: 50px;
  }
  .projects .single-project .hp-project-info .hp-project-quote {
    font-size: 1.8rem;
    padding-right: 30px;
    width: 80%;
  }
  .projects .single-project .hp-project-info .hp-project-quote:before {
    width: 30px;
  }
  .projects .single-project .hp-project-info p {
    padding-right: 30px;
    width: 80%;
  }
  .projects .single-project .hp-project-pic {
    max-width: 100%;
    padding-top: 50%;
  }
  #projects-top h1 {
    line-height: .9;
  }
  .page-wrap.about {
    background-size: 300% !important;
  }
  #scroll-top {
    margin: 0;
    right: 10px;
    bottom: 10px;
  }
  #mailing-sticky {
    bottom: 10px;
  }
  #project-photos .row {
    margin-bottom: 20px;
  }
  #project-photos .row .first-of-two {
    padding-bottom: 20px;
  }
  #single-projects-top .top-info .single-project-quote {
    padding-left: 20px;
    padding-right: 20px;
    top: 10%;
    height: 90%;
  }
  #single-projects-top .top-info .single-project-quote:before {
    right: -40px;
    top: -20px;
    width: 50px;
  }
}

/* end of (max-width: 640px) */
/****************************************************************************************************************/
@media only screen and (max-width: 480px) {
  #hp-top {
    height: 280px;
  }
  #hp-top .brush-stroke {
    height: 360px;
    top: -30px;
  }
}

/* end of (max-width: 480px) */
/****************************************************************************************************************/
@media only screen and (max-width: 400px) {
  #single-project-info .info-repeater {
    font-size: 1.1rem;
  }
  #single-project-info .info-repeater p {
    padding-bottom: 0.7rem;
  }
}

/* end of (max-width: 320px) */
/****************************************************************************************************************/
