/**
 * Custom Styles
 */

/* Common Styles */
.d-flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

@media screen and (min-width: 768px) {
  .flex-row-sm {
    flex-direction: row;
  }

  .flex-column-sm {
    flex-direction: column;
  }

  .justify-content-start-sm {
    justify-content: flex-start;
  }

  .justify-content-end-sm {
    justify-content: flex-end;
  }

  .justify-content-center-sm {
    justify-content: center;
  }

  .justify-content-between-sm {
    justify-content: space-between;
  }

  .align-items-center-sm {
    align-items: center;
  }
}

@media screen and (min-width: 992px) {
  .flex-row-md {
    flex-direction: row;
  }

  .flex-column-md {
    flex-direction: column;
  }

  .justify-content-start-md {
    justify-content: flex-start;
  }

  .justify-content-end-md {
    justify-content: flex-end;
  }

  .justify-content-center-md {
    justify-content: center;
  }

  .justify-content-between-md {
    justify-content: space-between;
  }

  .align-items-center-md {
    align-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .flex-row-lg {
    flex-direction: row;
  }

  .flex-column-lg {
    flex-direction: column;
  }

  .justify-content-start-lg {
    justify-content: flex-start;
  }

  .justify-content-end-lg {
    justify-content: flex-end;
  }

  .justify-content-center-lg {
    justify-content: center;
  }

  .justify-content-between-lg {
    justify-content: space-between;
  }

  .align-items-center-lg {
    align-items: center;
  }
}

.mobile-visible {
  display: block;
}

.mobile-hidden {
  display: none;
}

@media screen and (min-width: 768px) {
  .mobile-visible {
    display: none;
  }

  .mobile-hidden {
    display: block;
  }
}

/* Header Styles */
.opener {
  right: 15px;
}

#header {
  padding: 5px 0;
}

#header .logo {
  float: none;
  margin: 0;
  padding: 0;
}

#nav {
  padding-top: 0;
}

#nav .menu-item {
  overflow: hidden;
}

.opener {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.opener span {
  top: 2px;
}

.opener:after,
.opener:before {
  margin-top: 0;
}

.opener:before {
  top: 8px;
}

.opener:after {
  top: 16px;
}

body.active .opener {
  position: absolute;
  margin-top: -5px;
}

@media only screen and (max-width: 64em) {
  #nav ul {
    display: block;
    justify-content: unset;
  }

  #nav ul li {
    margin: 0 0 0 30px;
  }
}

@media only screen and (max-width: 991px) {
  #nav ul {
    padding-top: 20px;
  }

  #nav ul li {
    margin: 0;
    padding: 15px 15px 15px 20px;
  }
}

@media screen and (min-width: 768px) {
  #nav {
    overflow: auto;
    background: #373a47;
    position: fixed;
    width: 280px;
  }

  #nav ul li {
    margin: 0;
    -webkit-transform: translate3d(0, 500px, 0);
    -moz-transform: translate3d(0, 500px, 0);
    -o-transform: translate3d(0, 500px, 0);
    transform: translate3d(0, 500px, 0);
    display: block;
    padding: 15px 15px 15px 20px;
  }

  .opener,
  .overlay {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  #nav {
    overflow: hidden;
    background: none;
    position: static;
    width: auto;
  }

  #nav ul li {
    margin: 0 0 0 30px;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
    display: inline-block;
    vertical-align: top;
    padding: 0;
  }

  .opener,
  .overlay {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  #nav .menu-item>a {
    position: relative;
    -webkit-transition: color 0.25s ease;
    -moz-transition: color 0.25s ease;
    -o-transition: color 0.25s ease;
    transition: color 0.25s ease;
  }

  #nav .menu-item.active>a {
    color: #ffb81c;
  }

  #nav .menu-item>a:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ffb81c;
    position: absolute;
    bottom: -1px;
    left: -1px;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: transform 0.25s ease;
    -moz-transition: transform 0.25s ease;
    -o-transition: transform 0.25s ease;
    transition: transform 0.25s ease;
  }

  #nav .menu-item.active>a:before,
  #nav .menu-item>a.anchor-active:before,
  #nav .menu-item>a:hover:before {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@media screen and (min-width: 768px) {
  #header .logo {
    margin: 0;
  }
}

@media screen and (min-width: 1024px) {
  #header .logo {
    margin: 0;
    padding: 0;
  }
}

/* Footer Styles */
#footer>.container {
  padding: 30px 0;
}

#footer .nav {
  font-size: 16px;
  margin-left: 0;
  padding: 0;
}

#footer .nav li {
  display: block;
  margin: 0 0 15px 0;
}

#footer .social-networks li {
  display: block;
  position: relative;
  margin-left: 0;
  margin-right: 16px;
}

#footer .social-networks li:last-child {
  margin-right: 0;
}

#footer .social-networks li a {
  font-size: 20px;
}

#footer .social-networks li.twitter a>i {
  position: relative;
  top: -1px;
}

@media screen and (min-width: 768px) {
  #footer>.container {
    padding: 15px;
  }

  #footer .nav li {
    margin: 0 40px 0 0;
  }

  #footer .social-networks li {
    margin-right: 16px;
    top: 3px;
  }
}

@media screen and (min-width: 992px) {

  #footer .nav,
  #footer .social-networks {
    margin-left: 0;
    margin-bottom: 0;
    float: none;
  }

  #footer .nav li {
    margin-right: 50px;
  }
}

@media screen and (min-width: 1200px) {
  #footer .nav {
    font-size: 18px;
  }

  #footer .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #footer .nav {
    margin-left: 0;
  }

  #footer .nav li {
    margin-right: 60px;
  }

  #footer .social-networks li {
    margin-right: 24px;
    top: 4px;
  }

  #footer .social-networks li a {
    font-size: 24px;
  }
}

#footer .nav>li {
  overflow: hidden;
}

#footer .nav>li>a {
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
}

#footer .nav>li>a:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffb81c;
  position: absolute;
  bottom: 1px;
  left: -1px;
  -webkit-transform: translateX(-500%);
  -moz-transform: translateX(-500%);
  -o-transform: translateX(-500%);
  transform: translateX(-500%);
  -webkit-transition: transform 0.25s ease;
  -moz-transition: transform 0.25s ease;
  -o-transition: transform 0.25s ease;
  transition: transform 0.25s ease;
}

#footer .nav>li>a:hover:before {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

#footer .nav>li.footer-company-name {
  position: relative;
  overflow: visible;
}

#footer .nav>li.footer-company-name>.icon-registered {
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  top: -4px;
  right: -14px;
}

#footer sup {
  font-size: 15px;
  top: -3px;
}

/* Home Page Styles */
body.home #main .container {
  padding-top: 0;
  padding-bottom: 0;
}

body.home #main .help-area .container {
  padding: 0 15px;
  text-align: center;
}

@media screen and (min-width: 850px) {

  body.home #main .help-area .container,
  .cta-block .container {
    padding: 0px !important;
  }
}

body.home main>section {
  padding: 50px 0;
}

body.home section.work-info {
  padding: 50px 0;
}

body.home section.work-info p {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  body.home main>section {
    padding: 70px 0;
  }

  body.home section.work-info {
    padding: 70px 0;
  }
}

body.home h1 {
  font-size: 30px;
  margin-bottom: 15px;
}

body.home .intro {
  margin-bottom: 40px;
  padding: 0;
}

body.home .clients .intro {
  margin-top: 0;
}

body.home section.our-team {
  padding-left: 15px;
  padding-right: 15px;
}

body.home section.projects {
  padding-bottom: 0;
}

body.home section.contact-area #contact-form {
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (min-width: 768px) {
  body.home section.our-team {
    padding-left: 30px;
    padding-right: 30px;
  }

  body.home section.contact-area #contact-form {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (min-width: 992px) {
  body.home .intro {
    padding: 0;
  }

  body.home section.work-info {
    padding: 0;
  }

  body.home section.work-info .intro {
    position: absolute;
    top: 50%;
    margin: 0;
    max-width: 550px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  body.home section.our-team {
    padding-left: 0;
    padding-right: 0;
  }

  body.home section.contact-area #contact-form {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 1200px) {
  body.home .clients .intro {
    margin-top: 0;
  }
}

body.home .clients {
  max-width: 100%;
}

body.home .clients .client-logos {
  margin-bottom: 50px;
}

/* body.home .clients .client-logos .slideset .slick-track {
  -webkit-transition: transform 0.75s ease !important;
  -moz-transition: transform 0.75s ease !important;
  -o-transition: transform 0.75s ease !important;
  transition: transform 0.75s ease !important;
} */
body.home .clients .client-logos .slideset .slick-arrow {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

body.home .clients .client-logos .slick-slider {
  position: relative;
  padding: 0 50px;
}

@media screen and (max-width: 40em) {

  body.home .clients .client-logos .slideset .slick-prev:before,
  body.home .clients .client-logos .slideset .slick-next:before {
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  body.home .clients .client-logos .slick-slider {
    padding: 0 40px;
  }

  body.home .clients .client-logos .slideset .slick-arrow {
    -webkit-transition: transform 0.25s ease;
    -moz-transition: transform 0.25s ease;
    -o-transition: transform 0.25s ease;
    transition: transform 0.25s ease;
  }

  body.home .clients .client-logos .slideset .slick-next {
    -webkit-transform: translate(-10px, -50%);
    -moz-transform: translate(-10px, -50%);
    -o-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%);
  }

  body.home .clients .client-logos .slideset .slick-prev {
    -webkit-transform: translate(10px, -50%);
    -moz-transform: translate(10px, -50%);
    -o-transform: translate(10px, -50%);
    transform: translate(10px, -50%);
  }

  body.home .clients .client-logos .slideset .slick-arrow:hover {
    -webkit-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
  }
}

body.home .slick-slide:focus {
  outline: none;
}

body .projects {
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .project-grid>.col {
    width: 100% !important;
  }
}

body .projects>col {}

body .projects .boxes {
  margin-top: 30px;
  padding-bottom: 60px;
}

body .projects .loading:before,
body.home .contact-area .loading:before {
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 767px) {
  body .projects .nice-select {
    min-width: 152px !important;
  }

  .filter-form .level.d-flex {
    flex-direction: column;
  }

  .filter-form .level-left.d-flex {
    display: block !important;
    width: 100%;
  }

  .filter-form .level-left.d-flex .nice-select {
    display: block;
    float: none;
    width: 100%;
  }

  .filter-form .level-left.d-flex .nice-select:first-of-type {
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 768px) {
  body .projects .nice-select {
    min-width: 205px !important;
  }
}

body.home .testimonials {
  padding-bottom: 70px;
}

body.home .testimonials .intro {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  body.home .testimonials {
    padding-bottom: 120px;
  }

  body.home .help-area {
    padding: 80px 0;
  }

  body.home .help-area p {
    margin-top: 30px;
  }
}

body.home .slider {
  padding: 0;
}

body.home .slider .slick-dots {
  top: auto;
  bottom: 30px;
}

@media screen and (min-width: 992px) {
  body.home .slider .image img {
    width: 90%;
  }
}

body.home section.slider .slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  text-align: center;
  border: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: background-color 0.25s ease;
  -moz-transition: background-color 0.25s ease;
  -o-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body.home section.slider .slick-arrow:focus {
  outline: none;
}

body.home section.slider .slick-arrow>i {
  position: relative;
  font-size: 24px;
  color: #000;
  -webkit-transition: color 0.25s ease;
  -moz-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

body.home section.slider .slick-arrow:hover {
  background-color: #ffb81c;
}

body.home section.slider .slick-arrow:hover>i {
  color: #fff;
}

body.home section.slider .slick-arrow.slick-prev {
  left: 30px;
}

body.home section.slider .slick-arrow.slick-next {
  right: 30px;
}

body.home section.slider .slick-arrow.slick-prev>i {
  top: 0px;
  left: -1px;
}

body.home section.slider .slick-arrow.slick-next>i {
  top: 0px;
  right: -1px;
}

@media screen and (max-width: 767px) {
  body.home section.slider .slick-arrow.slick-prev {
    left: 8px;
  }

  body.home section.slider .slick-arrow.slick-next {
    right: 8px;
  }

  body.home section.slider .slideset .slick-list .slick-track .slide>.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 132px);
  }

  .slider .image {
    text-align: center;
    position: relative;
    top: -20px;
  }

  .slider .image img {
    width: 80%;
    height: auto;
    display: inline-block;
  }
}

/* body.home section.slider .slideset .slick-list {
    height: 100% !important;
}
body.home section.slider .slideset,
body.home section.slider .slideset .slick-list .slick-track,
body.home section.slider .slideset .slick-list .slick-track .slide,
body.home section.slider .slideset .slick-list .slick-track .slide > .container {
    height: 100%;
}
body.home section.slider .slideset .slick-list .slick-track .slide > .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto !important;
}
body.home section.slider {
    height: calc(100vh - 72px) !important;
} */
/* @media screen and (min-height: 500px) {
    body.home section.slider {
        height: calc(100vh - 72px) !important;
    }
} */
@media screen and (max-width: 767px) {
  #main .slider .container {
    padding: 0;
  }

  /* body.home section.slider .sliderset {
			position: relative;
	} */
  /* body.home section.slider .slideset.slick-slider {
			padding: 0 30px;
	} */
  body.home section.slider .slide.last .bottom {
    padding: 15px 0 0;
  }

  body.home section.slider .slide.last .col:first-child span,
  body.home section.slider .slide.last .col:first-child strong,
  body.home section.slider .slide.last .right p span,
  body.home section.slider .slide.last .right p strong,
  body.home section.slider .slide.last .bottom .text-info p span,
  body.home section.slider .slide.last .bottom .text-info p strong {
    font-size: 18px;
    line-height: 1.5;
    padding-left: 2px;
    padding-right: 2px;
  }

  body.home section.slider .slide.last .num {
    font-size: 25px;
    line-height: 1;
    margin-top: 10px;
  }
}

@media screen and (min-width: 768px) {
  body.home section.slider .slide {
    min-height: calc(100vh - 90px);
  }

  body.home section.slider .container-holder {
    margin-top: 5px;
  }

  body.home section.slider .slide.last .cols {
    display: flex;
    align-items: center;
  }

  body.home section.slider .slide.last .cols .col {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.home section.slider .slide.last .cols .col:last-child {
    display: flex;
    align-items: center;
  }

  body.home section.slider .slide.last .col:after {
    height: 94%;
    margin-top: 5px;
  }

  body.home section.slider .slide.last .cols .num {
    line-height: 1;
  }

  body.home section.slider .slide.last .right {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  body.home section.slider .slide.last .col:first-child>span,
  body.home section.slider .slide.last .col:first-child>strong,
  body.home section.slider .slide.last .right span.year,
  body.home section.slider .slide.last .right p strong {
    font-size: 30px;
    line-height: 1;
  }

  body.home section.slider .slide.last .col:first-child p span,
  body.home section.slider .slide.last .col:first-child p strong,
  body.home section.slider .slide.last .right p span {
    font-size: 20px;
    line-height: 1;
  }

  body.home section.slider .slide.last .num {
    font-size: 90px;
    line-height: 1;
  }

  body.home section.slider .slide.last .bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body.home section.slider .slide.last .bottom .text-info p span {
    font-size: 40px;
  }

  body.home section.slider .slide.last .bottom .num {
    padding-top: 25px;
  }

  body.home section.slider .slide.last .bottom .text-info {
    padding: 0;
  }

  body.home section.slider .slide.last .top span,
  body.home section.slider .slide.last .top strong,
  body.home section.slider .slide.last .bottom .text-info p strong {
    font-size: 36px;
    line-height: 1;
  }

  body.home section.slider .slide.last .col:after {
    margin-top: -2px;
  }
}

body.home .tab-content i {
  font-size: 80px;
}

body.home .tab-content .list li:after {
  top: 2px;
}

body.home .tabset {
  display: flex;
  justify-content: center;
  align-items: center;
}

body.home .icon {
  display: block;
  width: auto;
  height: auto;
}

@media screen and (max-width: 459px) {
  body.home section.slider .textarea .text>p {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 18px;
    line-height: 1.5;
  }

  body.home section.slider .slide.last .textarea .text>p {
    padding: 0;
  }

  body.home section.slider .slide.last .top,
  body.home section.slider .slide.last .bottom {
    padding-left: 2px;
    padding-right: 2px;
  }

  body.home section.slider .slide.last .top span,
  body.home section.slider .slide.last .top strong {
    font-size: 18px;
  }

  body.home section.slider .year {
    font-size: 18px;
  }

  body.home section.slider .slide.last .top:after,
  body.home section.slider .slide.last .col:after,
  body.home section.slider .slide.last .bottom:after {
    width: 75%;
    margin: 0 auto;
  }

  body.home section.slider .slide.last .right {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  body.home .tabset {
    display: block;
  }

  body.home .tabset a {
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }

  body.home .tabs-area {
    padding: 0 15px;
  }

  body.home .tabs-area .tabset li .icon {
    margin: 0 30px 0 0;
  }

  body.home .tabs-area .tabset li .icon>i {
    -webkit-transition: color 0.25s ease;
    -moz-transition: color 0.25s ease;
    -o-transition: color 0.25s ease;
    transition: color 0.25s ease;
  }

  body.home .tabset a>span {
    position: relative;
    font-size: 18px;
    top: -6px;
  }

  body.home .tabset li.active a,
  body.home .tabs-area .tabset li a:hover {
    color: #ffb81c;
  }

  body.home .tabset li.active a span,
  body.home .tabs-area .tabset li a:hover span {
    color: unset;
    font-weight: normal;
  }

  body.home .tab-content h2 {
    font-size: 24px;
    line-height: 30px;
  }

  body.home .icon {
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media screen and (min-width: 992px) {
  body.home .tabset a>span {
    font-size: 20px;
  }

  body.home .tabs-area {
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  body.home .tabs-area .tabset li .icon {
    width: 60px;
    margin: -10px 24px 0 0;
  }
}

body.home .btn-reset-filters {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -webkit-transition: color 0.25s ease;
  -moz-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

body.home .btn-reset-filters:hover {
  color: #ffb81c;
}

body.home .btn-reset-filters>i {
  position: relative;
  top: 1px;
}

body.home .filter-form .nice-select>span {
  line-height: 42px;
}

@media screen and (min-width: 1024px) {
  .contact-area .contact-holder {
    padding: 0 0 60px;
  }
}

@media screen and (max-width: 768px) {
  .level-left+.level-right {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .level-left+.level-right {
    margin-top: 1.5rem;
  }
}

body.home .contact-area #contact-form .error {
  border: 1px solid rgb(185, 74, 72);
}

body.home .contact-area #contact-form button[type="submit"] {
  position: relative;
}

body.home .contact-area #contact-form button[type="submit"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 0;
  pointer-events: all;
  z-index: 10;
}

body.home .contact-area #contact-form button[type="submit"]:disabled:before {
  opacity: 0.6;
  pointer-events: none;
}

body.home .contact-area #contact-form button[type="submit"]:disabled:hover {
  background: #ffb81c;
  color: #253746;
  border-color: #ffb81c;
}

body.home .contact-area input[type="email"] {
  max-width: calc(100% - 10px);
}

/* Project Page Styles */
.single-project .projects .two-cols .text-holder .project-title {
  line-height: 36px;
  margin-bottom: 60px;
}

.single-project .projects .content ul.paging {
  margin-left: 0;
}

.single-project .projects .content ul.paging li {
  margin-top: 0;
  margin-bottom: 0 !important;
}

.single-project .projects .content ul.paging li.paging-control {
  margin-top: -2px !important;
}

.single-project .projects .content ul.paging li:last-child {
  margin-right: 0;
}

.single-project .projects .content ul.paging li:first-child {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .single-project .projects .two-cols .image-area .col {
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .single-project section.projects>.container>.two-cols>.content {
    width: 50%;
    margin-right: 5%;
  }

  .single-project section.projects>.container>.two-cols>.image-area>.col {
    margin-right: 0;
  }
}

@media screen and (min-width: 992px) {
  .single-project section.projects>.container>.two-cols>.content {
    width: 55%;
  }
}

@media screen and (min-width: 1200px) {
  .single-project section.projects>.container>.two-cols>.content {
    width: 60%;
    margin-right: 7%;
  }
}

/* Blog */
#wrapper .blog-list .breadcrumb ul a {
  font-size: 1rem;
}

/* New contact form */
.row {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  clear: both;
}

.col {
  width: calc(50% - 15px);
  text-align: left;
}

.col-full {
  width: 100%;
}

.row label {
  display: block;
  font-weight: 600;
}

.row .col:nth-child(odd) {
  margin-right: 15px;
}

.row .col:nth-child(even) {
  margin-left: 15px;
}

.col input[type="text"],
.col input[type="email"],
.col input[type="tel"] {
  width: 100%;
  max-width: unset !important;
  height: 50px;
  margin-top: 5px;
  border-color: silver;
  border-radius: 3px;
}

.col input[type="text"]:active,
.col input[type="email"]:active,
.col input[type="tel"]:active,
.col-full textarea:active,
.page-template-_epm .nice-select.open {
  border-color: #ffb81c;
}

.col-full textarea {
  width: 100%;
  height: 100px;
  margin-top: 5px;
  border-color: silver;
  border-radius: 3px;
}

#contact-form {
  max-width: 800px;
  margin: auto;
}

.recaptcha--wrapper {
  float: left;
<<<<<<< HEAD
=======
  text-align: left;
}

#contact-form span#contact_success {
  display: block;
  text-align: center;
  color: #253746;
  font-weight: 600;
  font-size: 16px;
}

#contact-form span#contact_success .cb-icon-checked {
  color: #253746;
  font-size: 20px;
  position: relative;
  top: 3px;
  margin-right: 5px;
>>>>>>> redo-contact-form
}

#contact-form .btn-submit--wrapper {
  float: right;
}

#contact-form button[type="submit"] {
  margin-top: 30px;
  color: #253746;
  display: block;
  background-color: #ffb81c;
}

#contact-form button[type="submit"]:hover {
  color: #ffb81c;
  background-color: #253746;
  border-color: #253746;
}

.contact-area .popup-message {
  display: none;
  margin-top: 10px;
}

#contact-form span {
  color: red;
}

@media screen and (max-width: 767px) {
  .row {
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .col {
    width: 100%;
    margin: 15px 0 !important;
  }

  .recaptcha--wrapper {
    float: none;
  }

  #contact-form .btn-submit--wrapper {
    float: none;
  }
}

.page-template-page-project main {
  padding: 50px 0 0 !important;
}

.tags-list {
  margin-top: 40px !important;
}

.tags-list a {
  display: inline-block;
  margin: 0 7.5px;
  color: #ffb81c;
  font-weight: 600;
  text-decoration: underline;
}

.tags-list a:hover {
  opacity: 0.8;
}

.page-template-_epm .content {
  color: #253746;
  text-align: justify;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.page-template-_epm .nice-select {
  display: block;
  width: 100%;
  min-width: unset !important;
  margin-top: 5px;
  margin-bottom: 15px;
  height: 50px;
  border-radius: 3px;
  line-height: 50px;
  background-color: white;
  border: 1px solid silver;
}

.page-template-_epm .nice-select span.current {
  font-family: Lato, sans-serif;
  font-size: 16px;
  color: black !important;
  font-weight: 400;
}

.page-template-_epm .intro {
  font-style: unset;
}

.page-template-_epm .intro h1,
.page-template-_epm .intro h2,
.page-template-_epm .intro h3,
.page-template-_epm .intro h4 {
  color: black;
}

.page-template-_epm .nice-select li:hover,
.page-template-_epm .nice-select li.selected {
  background-color: #ffb81c !important;
}

.page-template-_epm .quotes {
  height: 300px;
  background: #FFB81C;
  text-align: center;
  background-image: url('../images/epm-quote-left.svg'), url('../images/epm-quote-right.svg');
  background-position: top left, bottom right;
  background-repeat: no-repeat;
  display: flex !important;
  padding-left: 50px;
  padding-right: 50px;
}

.page-template-_epm .quotes h3 {
  font-size: 32px;
  font-weight: 600;
  color: white;
  position: relative;
  width: fit-content;
  margin: auto;
}

.page-template-_epm .quotes h3 .quote-start {
  position: absolute;
  top: -40px;
  left: -40px;
}

.page-template-_epm .quotes h3 .quote-end {
  position: absolute;
  bottom: -40px;
  right: -40px;
}

@media screen and (max-width: 768px) {
  .page-template-_epm .quotes {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-template-_epm .quotes h3 .quote-start {
    width: 20px;
    height: 20px;
    position: unset;
    display: inline-block;
    margin-right: 5px;
  }

  .page-template-_epm .quotes h3 .quote-end {
    width: 20px;
    height: 20px;
    position: unset;
    display: inline-block;
    margin-left: 5px;
  }
}

.cta-block .container {
  width: 100%;
  max-width: 800px;
  padding-left: 0;
  padding-right: 0;
}

.cta-block {
  padding: 30px 0;
  background-color: #f1eff0;
}

.cta-block .content p {
  margin-top: 30px;
  font-size: 20px;
}

.cta-block .btn {
  display: block;
  margin: 30px auto 0;
  width: fit-content;
}

@media (min-width: 1200px) {
  .cta-block .container {}
}

@media (min-width: 768px) {
  .cta-block .content p {
    font-size: 29px;
  }
}