/* guides */

/*
font-family: "Raleway", sans-serif
font-family: "Oswald", sans-serif
black: #000
green: #3cb371
green (rgb): rgb(60, 179, 113)
green (lighter): #50bb7f
-webkit-transition: all .2s ease-out;
-moz-transition: all .2s ease-out;
-o-transition: all .2s ease-out;
transition: all .2s ease-out;
*/

/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  color: #222;
  font-family: "Raleway", sans-serif;
}

section {
  padding: 6rem 0;
}

p, ul, ol {
  margin: 0;
  padding: 0;
}

.btn {
  padding: .75rem 1.5rem;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.btn-primary {
  background-color: #3cb371;
  border: 2px solid #3cb371;
  border-radius: 25px;
}

.btn-primary:hover {
  background-color: #50bb7f;
  border: 2px solid #50bb7f;
}

.btn-secondary {
  color: #222;
  background-color: transparent;
  border: 2px solid #222;
  border-radius: 25px;
}

.btn-secondary:hover {
  background-color: #222;
  border: 2px solid #222;
}

.btn-third {
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 25px;
}

.btn-third:hover {
  background-color: #fff;
  border: 2px solid #fff;
}

@media (max-width: 991px) {
  section {
    padding: 4rem 0; 
  }
}

/* important */

.d-none {
  display: none !important;
}

.pointer-events-none {
  pointer-events: none !important;
}

@media (min-width: 1400px) {
  .d-none-xxl {
    display: none;
  }

  .z-index-xxl-1 {
    z-index: 1;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .d-none-xl {
    display: none;
  }

  .z-index-xl-1 {
    z-index: 1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .d-none-lg {
    display: none;
  }

  .z-index-lg-1 {
    z-index: 1;
  }
}

@media (min-width: 992px) {
  .pr-5rem-for-desktop {
    padding-right: 5rem !important;
  }
}

@media (max-width: 991px) {
  .d-none-md {
    display: none;
  }

  .overflow-x-auto-md {
    overflow-x: auto;
  }

  .p3rem-for-xs {
    padding: 3rem !important;
  }
}

.z-index-1 {
  z-index: 1;
}

.cursor-default {
  cursor: default !important;
}

.pr-5rem {
  padding-right: 5rem !important;
}

/* navigation */

.navbar {
  background-color: transparent;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar.navbar-shrink {
  background-color: #3cb371;
}

.navbar .navbar-brand img {
  height: 65px;
  width: auto;
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-brand img:hover {
  opacity: .8;
}

.navbar .navbar-brand img:last-child {
  display: none;
}

.navbar.navbar-shrink .navbar-brand img:first-child {
  display: none;
}

.navbar.navbar-shrink .navbar-brand img:last-child {
  display: block;
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #222;
  font-weight: 600;
  font-size: .95rem;
  margin: 0 1.25rem;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar.navbar-shrink .navbar-nav .nav-item .nav-link {
  color: #fff;
}

.navbar.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
  color: #fff;
}

.navbar .navbar-nav .nav-item .nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  text-align: center;
  background-color: #222;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar.navbar-shrink .navbar-nav .nav-item .nav-link:after {
  background-color: #fff;
}

.navbar .navbar-nav .nav-item .nav-link:hover:after,
.navbar .navbar-nav .nav-item .nav-link.active:after {
  width: 100%;
}

.navbar .navbar-nav .nav-item .nav-link i {
  margin-left: .45rem;
}

.navbar .navbar-nav .nav-item-cta .nav-link {
  margin-left: 2.25rem;
  margin-right: 0;
  padding: .75rem 1.5rem;
  color: #fff;
  background-color: #3cb371;
  border: 2px solid #3cb371;
  border-radius: 25px;
}

.navbar.navbar-shrink .navbar-nav .nav-item-cta .nav-link {
  margin-right: 0;
  color: #222;
  background-color: #fff;
  border: 2px solid #fff;
}

.navbar .navbar-nav .nav-item-cta .nav-link:hover {
  color: #fff !important;
  background-color: #50bb7f;
  border: 2px solid #50bb7f;
}

.navbar.navbar-shrink .navbar-nav .nav-item-cta .nav-link:hover {
  color: #222 !important;
  background-color: #eee;
  border: 2px solid #eee;
}

.navbar .navbar-nav .nav-item-cta .nav-link:after {
  display: none;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:active {
  color: #222;
}

.navbar .dropdown-menu {
  padding-top: 16px !important;
  background-color: transparent;
  border: 0;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar.navbar-shrink .dropdown-menu {
  padding-top: 2px !important;
}

.navbar .dropdown-menu li {
  margin: 0;
  margin-left: -.5rem;
  padding: .375rem 1.75rem;
  background-color: #3cb371;
}

.navbar .dropdown-menu li:first-child {
  padding-top: 1.25rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.navbar .dropdown-menu li:last-child {
  padding-bottom: 1.25rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.navbar .dropdown-menu .dropdown-item {
  position: relative;
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  background-color: #3cb371;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #3cb371;
}

.navbar .dropdown-menu .dropdown-item:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  text-align: center;
  background-color: #fff;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .dropdown-menu .dropdown-item:hover:after,
.navbar .dropdown-menu .dropdown-item.active:after {
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar .navbar-nav .nav-item .nav-link {
    margin: 0 1rem;
  }

  .navbar .navbar-nav .nav-item-cta .nav-link {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .navbar .navbar-brand img {
    height: 55px;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    display: inline-block;
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .navbar .navbar-nav .nav-item-cta .nav-link {
    margin-top: 1rem;
    margin-right: 2.25rem !important;
  }

  .navbar .dropdown-menu {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    text-align: center;
  }
}

/* cover */

.cover {
  height: 100vh;
  padding-top: 118px;
  padding-bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%), url("../images/cover.jpg");
  background-position-x: 100% !important;
  background-position-y: 0 !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  background-size: 120% !important;
}

.cover h1 {
  position: relative;
  width: 90%;
  font-family: "Oswald", sans-serif;
  font-size: 3.5rem;
  line-height: 4rem;
  font-weight: 400;
  letter-spacing: 1px;
  z-index: 1;
}

.cover h1 span {
  position: relative;
}

.cover h1 span:after {
  content: "";
  position: absolute;
  left: -5px;
  bottom: 0;
  width: calc(100% + 10px);
  height: 30px;
  background-color: #8ad1aa;
  border-radius: 5px;
  z-index: -1;
}

.cover p {
  width: 90%;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cover {
    background-size: 145% !important;
  }
}

@media (max-width: 991px) {
  .cover {
    background-size: cover !important;
    background-position-x: 0 !important;
    height: auto;
    padding-top: calc(113px + 2rem);
    padding-bottom: 5rem;
  }

  .cover h1 {
    width: 100%;
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .cover h1 span:after {
    display: none;
  }

  .cover p {
    width: 100%;
  }
}

/* stat */

.front-services .services-list-div {
  display: flex;
  flex-wrap: wrap;
}

.front-services h2 {
  margin-bottom: 4rem;
  color: #222;
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.front-services .services-list-div a {
  flex: 1 1 calc(100% - 50px);
  width: calc(100% - 50px);
  min-width: calc(100% - 50px);
  max-width: calc(100% - 50px);
  padding-right: 1.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  line-height: 2rem;
  font-weight: 300;
}

.front-services .services-list-div span.arrow {
  flex: 1 1 50px;
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  text-align: center;
  background-color: #3cb371;
  border-radius: 50%;
}

.front-services .services-list-div span.arrow i {
  color: #fff;
  font-size: 1.25rem;
  line-height: 50px;
}

.front-services .services-list-div > div {
  position: relative;
  flex: 1 1 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #eee;
  cursor: pointer;
}

.front-services .services-list-div > div:first-child {
  margin-top: 0;
}

.front-services .services-list-div > div:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #50bb7f;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-services .services-list-div > div:hover:before {
  width: 100%;
}

.front-services .services-stat-blocks {
  display: flex;
  flex-wrap: wrap;
}

.front-services .services-stat-blocks > div {
  flex: 1 1 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  margin-top: -5.5rem;
}

.front-services .services-stat-blocks > div:nth-child(1) {
  margin-top: 0;
}

.front-services .services-stat-blocks > div > div {
  padding: 1.5rem;
  width: 190px;
  height: 190px;
  text-align: center;
  background-color: #eee;
  border-radius: 50%;
}

.front-services .services-stat-blocks > div:nth-child(1) > div {
  margin-left: calc(50% + 10px);
}

.front-services .services-stat-blocks > div:nth-child(2) > div {
  margin-left: calc(50% - 175px);
}

.front-services .services-stat-blocks > div:nth-child(3) > div {
  margin-left: calc(50% + 50px);
}

.front-services .services-stat-blocks > div:nth-child(4) > div {
  margin-left: calc(50% - 135px);
}

.front-services .services-stat-blocks > div > div > p:first-child {
  width: 100%;
  margin-top: .75rem;
  margin-bottom: 1rem;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 500;
}

.front-services .services-stat-blocks > div > div > p:last-child {
  width: 100%;
  font-size: .95rem;
  line-height: 1.4rem;
  font-weight: 500;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-services .services-stat-blocks > div {
    margin-top: -4.5rem;
  }

  .front-services .services-stat-blocks > div > div {
    width: 170px;
    height: 170px;
  }

  .front-services .services-stat-blocks > div > div > p:first-child {
    margin-top: .25rem;
  }

  .front-services .services-stat-blocks > div:nth-child(1) > div {
    margin-left: calc(50% - 5px);
  }

  .front-services .services-stat-blocks > div:nth-child(3) > div {
    margin-left: calc(50% + 35px);
  }
}

@media (max-width: 991px) {
  .front-services h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .front-services .services-list-div a {
    font-size: 1.5rem;
  }

  .front-services .services-stat-blocks {
    margin-top: 4rem;
  }

  .front-services .services-stat-blocks > div {
    margin-top: -4.5rem;
  }

  .front-services .services-stat-blocks > div > div {
    width: 170px;
    height: 170px;
  }

  .front-services .services-stat-blocks > div > div > p:first-child {
    margin-top: .25rem;
  }

  .front-services .services-stat-blocks > div:nth-child(1) > div {
    margin-left: calc(50% - 5px);
  }

  .front-services .services-stat-blocks > div:nth-child(3) > div {
    margin-left: calc(50% - 5px);
  }

  .front-services .services-stat-blocks > div:nth-child(4) > div {
    margin-left: calc(50% - 175px);
  }
}

/* front sustainability */

.front-sustainability {
  padding-top: 0;
}

.front-sustainability h2 {
  margin-bottom: 2.25rem;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.front-sustainability p {
  color: #fff;
  line-height: 1.6;
  font-weight: 500;
}

.front-sustainability img {
  width: 120%;
  height: auto;
  border-radius: 50px;
}

.front-sustainability .front-sustainability-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50px;
}

.front-sustainability .front-sustainability-desc {
  padding: 3rem 4rem;
  padding-left: 7.5rem;
  padding-right: 1rem;
  background-color: #3cb371;
  border-radius: 25px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-sustainability img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .front-sustainability .front-sustainability-image {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .front-sustainability .front-sustainability-desc {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (max-width: 991px) {
  .front-sustainability h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .front-sustainability img {
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .front-sustainability .front-sustainability-image {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .front-sustainability .front-sustainability-desc {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* front projects */

.front-projects {
  padding-top: 0;
}

.front-projects h2 {
  margin-bottom: 0;
  color: #222;
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.front-projects .front-projects-title {
  margin-bottom: 4rem;
}

.front-projects .front-projects-title span.arrow {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  background-color: #3cb371;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-projects .front-projects-title span.arrow:hover {
  background-color: #50bb7f;
}

.front-projects .front-projects-title span.arrow i {
  color: #fff;
  font-size: 1.25rem;
  line-height: 50px;
}

.front-projects .front-individual-project {
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-projects .front-individual-project > div {
  height: 200px;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #eee;
  border-radius: 25px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-projects .front-individual-project:hover > div {
  background-size: 103%;
}

.front-projects .front-individual-project > h3 {
  width: 95%;
  margin-top: 1.5rem;
  color: #222;
  font-size: 1.3rem;
  line-height: 1.85rem;
  font-weight: 500;
}

.front-projects .front-projects-footer {
  margin-top: 3rem;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-projects .front-individual-project > div {
    height: 165px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-projects .front-individual-project > div {
    height: 130px;
  }

  .front-projects .front-individual-project > h3 {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .front-projects h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .front-projects .front-projects-title {
    margin-bottom: 3rem;
  }

  .front-projects .front-projects-footer {
    margin-top: 2rem;
  }
}

/* front about */

.front-about {
  padding-top: 0;
}

.front-about h2 {
  margin-bottom: 2.25rem;
  color: #222;
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.front-about p { 
  color: #222;
  line-height: 1.6;
  font-weight: 500;
}

.front-about .front-about-desc {
  width: 120%;
  padding: 3rem 4rem;
  padding-left: 5rem;
  padding-right: 10rem;
  background-color: #eee;
  border-radius: 25px;
}

.front-about .front-about-desc p {
  margin-bottom: 1.5rem;
}

.front-about .front-about-desc p:last-child {
  margin-bottom: 0;
}

.front-about .front-values-block {
  display: flex;
  flex-wrap: wrap;
  height: 480px;
  background-color: #3cb371;
  border-radius: 50px;
}

.front-about .front-values-block p {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.front-about .front-values-block > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 50%;
  width: 50%;
  min-width: 50%;
  max-width: 50%;
  height: 240px;
  text-align: center;
  border-bottom: 2px solid #50bb7f;
}

.front-about .front-values-block > div:nth-child(odd) {
  border-right: 2px solid #50bb7f;
}

.front-about .front-values-block > div:nth-child(3),
.front-about .front-values-block > div:nth-child(4) {
  border-bottom: 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-about .front-values-block p {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-about .front-about-desc {
    padding-left: 3.5rem;
    padding-right: 5rem;
  }

  .front-about .front-values-block p {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }
}

@media (max-width: 991px) {
  .front-about .front-about-desc {
    width: 100%;
    margin-bottom: 2rem;
    padding: 3rem;
  }

  .front-about .front-values-block {
    height: 300px;
    border-radius: 25px;
  }

  .front-about .front-values-block p {
    font-size: 1.1rem;
    line-height: 1.1rem;
  }

  .front-about .front-values-block > div {
    height: 150px;
  }
}

/* footer */

footer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #eee;
}

footer h4 {
  font-size: .95rem;
  font-weight: 700;
}

footer p {
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.6;
}

footer ul {
  list-style-type: none;
}

footer ul li {
  padding-top: .125rem;
  padding-bottom: .125rem;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.6;
}

footer img {
  height: 65px;
}

footer a {
  position: relative;
  color: #222;
  text-decoration: none;
}

footer a:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #222;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

footer a:hover {
  color: #222;
  text-decoration: none;
}

footer a:hover:before {
  width: 100%;
}

@media (max-width: 991px) {
  footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* inner page cover */

.inner-page-cover {
  height: 75vh;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 100%), url('../images/inner_cover.jpg');
}

.inner-page-cover .inner-page-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 275px;
  background-position: calc(100% - 3rem) calc(100% - 2rem);
  pointer-events: none;
}

.inner-page-cover h1 {
  font-size: 3rem;
  line-height: 3.6rem;
}

.inner-page-cover span.arrow {
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  background-color: transparent;
  border: 2px solid #3cb371;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.inner-page-cover span.arrow:hover {
  background-color: #3cb371;
}

.inner-page-cover span.arrow i {
  color: #3cb371;
  font-size: 1.25rem;
  line-height: 48px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.inner-page-cover span.arrow:hover i {
  color: #fff;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .inner-page-cover .inner-page-image {
    background-size: 250px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .inner-page-cover .inner-page-image {
    background-size: 225px;
  }
}

@media (max-width: 991px) {
  .inner-page-cover {
    height: auto;
    padding-bottom: 3rem;
  }

  .inner-page-cover h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .inner-page-cover .inner-page-image {
    display: none;
  }
}

/* individual service content */

.individual-service-content {
  padding-top: 6rem;
}

.individual-service-content h2 {
  font-size: 2rem;
  line-height: 2.5rem;
}

.individual-service-content ul {
  padding-inline-start: 19px;
  margin-bottom: 0;
}

.individual-service-content ul li {
  padding-bottom: 8px;
  color: #222;
  line-height: 1.6;
  font-weight: 500;
}

.individual-service-content ul li:last-child {
  padding-bottom: 0;
}

.individual-service-content ul li::marker {
  color: #3cb371;
}

.individual-service-content .content-photo {
  height: 480px;
  border-radius: 50px;
  background-color: #3cb371;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.individual-service-content .individual-service-block-left .content-photo {
  width: 120%;
}

.individual-service-content .individual-service-block-left .front-about-desc {
  width: 100%;
  padding-right: 5rem;
  padding-left: 7rem;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .individual-service-content .content-photo {
    height: 410px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .individual-service-content .content-photo {
    height: 330px;
  }

  .individual-service-content .front-about-desc {
    padding-right: 8rem;
  }

  .individual-service-content .individual-service-block-left .content-photo {
    width: 140%;
  }
}

@media (max-width: 991px) {
  .individual-service-content {
    padding-top: 4rem;
  }

  .individual-service-content h2 {
    font-size: 1.6rem;
    line-height: 2rem;
  }

  .individual-service-content .front-about-desc {
    margin-bottom: 0;
    padding-bottom: 6rem;
  }

  .individual-service-content .individual-service-block-left .front-about-desc {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .individual-service-content .content-photo {
    height: 240px;
    margin-top: -3rem;
  }

  .individual-service-content .individual-service-block-left .content-photo {
    width: 100%;
  }
}

/* inner page cta */

.inner-page-cta {
  padding-top: 0;
}

.inner-page-cta .cta-block {
  padding: 3rem 4rem;
  text-align: center;
  background-color: #3cb371;
  border-radius: 50px;
}

.inner-page-cta .cta-block h2 {
  margin-bottom: 2.25rem;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.inner-page-cta .cta-block .btn {
  border: 2px solid #fff;
  color: #fff;
}

.inner-page-cta .cta-block .btn:hover {
  border: 2px solid #fff;
  background-color: #fff;
  color: #222;
}

@media (max-width: 991px) {
  .inner-page-cta .cta-block {
    padding: 3rem;
  }

  .inner-page-cta .cta-block h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

/* about page cover */

/*
.about-page-cover {
  height: 85vh;
}
*/

.about-page-cover p {
  width: 75%;
}

.about-page-cover .certificate {
  position: absolute;
  bottom: 0;
  right: 3rem;
  width: 350px;
  height: auto;
  padding: 3rem;
  background-color: #fff;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  pointer-events: none;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .about-page-cover .certificate {
    width: 325px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-page-cover .certificate {
    padding: 2.5rem;
    width: 300px;
  }
}

@media (max-width: 991px) {
  .about-page-cover {
    height: auto;
    padding-bottom: 5rem;
  }

  .about-page-cover p {
    width: 100%;
  }

  .about-page-cover .certificate {
    bottom: -6rem;
    right: 0;
    padding: 1.25rem 2rem;
    width: 220px;
    border-top-left-radius: 25px;
    border-top-right-radius: 0;
  }
}

/* about page description */

@media (min-width: 1200px) and (max-width: 1399px) {
  .about-page-description .content-photo {
    height: 500px;
  }
}

/* about page values */

.about-page-values .about-values-title {
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
  text-align: center;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-left: 5rem;
  padding-right: 5rem;
}

.about-page-values .about-values-title h2 {
  font-size: 2rem;
  line-height: 2.5rem;
}

.about-page-values .about-page-values-block > div {
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.5rem;
}

.about-page-values .about-page-values-block img {
  width: 60px;
  height: auto;
}

.about-page-values .about-page-values-block p {
  font-size: 1.75rem;
  line-height: 1.75rem;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-page-values .about-page-values-block p {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }

  .about-page-values .about-page-values-block img {
    width: 50px;
  }

  .about-page-values .about-page-values-block {
    height: 400px;
  }

  .front-about .front-values-block > div {
    height: 200px;
  }
}

@media (max-width: 991px) {
  .about-page-values .about-values-title {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .about-page-values .about-values-title h2 {
    font-size: 1.6rem;
    line-height: 2rem;
  }

  .about-page-values .about-page-values-block {
    height: 700px;
  }

  .about-page-values .about-page-values-block p {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }

  .about-page-values .about-page-values-block > div {
    flex: 1 1 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 175px;
  }

  .about-page-values .about-page-values-block > div:nth-child(odd) {
    border-right: 0;
  }

  .about-page-values .about-page-values-block > div:last-child {
    border-top: 2px solid #50bb7f;
  }
}

/* about page sustainability */

.about-page-sustainability h2,
.about-page-sustainability p {
  color: #222;
}

.about-page-sustainability h2 {
  font-size: 2rem;
  line-height: 2.5rem;
}

.about-page-sustainability .front-sustainability-desc {
  background-color: #eee;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .about-page-sustainability .front-sustainability-image img {
    width: 135%;
  }

  .about-page-sustainability .front-sustainability-desc {
    padding-right: 3rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-page-sustainability .front-sustainability-image img {
    width: 130%;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  .about-page-sustainability .front-sustainability-desc {
    padding-left: 6rem;
  }
}

@media (max-width: 991px) {
  .about-page-sustainability h2 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

/* free consultation modal */

.free-consultation-modal {
  display: none;
  width: 600px;
  min-width: 600px;
  max-width: 600px;
  padding: 2rem;
  border-radius: 25px;
}

.free-consultation-modal h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #222;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.free-consultation-modal input,
.free-consultation-modal textarea {
  width: 100%;
  padding: .875rem 1.5rem;
  font-family: "Raleway", sans-serif;
  font-size: .95rem;
  font-weight: 600;
  background-color: #eee;
  border: 0;
  border-radius: 25px;
  outline: 0;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.free-consultation-modal textarea {
  height: 96px;
  margin-bottom: -6px;
  resize: none;
}

.free-consultation-modal input:focus,
.free-consultation-modal textarea:focus {
  background-color: #ddd;
}

.free-consultation-modal input.input-error,
.free-consultation-modal textarea.input-error {
  background-color: #f9d2ce !important;
}

@media (max-width: 991px) {
  .free-consultation-modal {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .free-consultation-modal h2 {
    margin-bottom: 1.75rem;
    font-size: 1.6rem;
    line-height: 2rem;
  }

  .free-consultation-modal a {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .free-consultation-modal .two-fields {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .free-consultation-modal a {
    width: calc(50% - .75rem);
  }
}

/* career page cover */

.career-page-cover p {
  width: 75%;
}

@media (max-width: 991px) {
  .career-page-cover p {
    width: 100%;
  }
}

/* career page positions */

.career-positions .salary {
  position: absolute;
  margin-top: -1rem;
  margin-left: 1.25rem;
  width: auto;
  max-width: none;
  min-width: auto;
}

.career-positions .salary > span {
  display: inline-block;
  height: 28px;
  padding: 0 10px;
  color: #222;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
  background-color: #eee;
  border-radius: 5px;
}

@media (max-width: 1199px) {
  .career-positions .salary {
    display: none;
  }
}

/* contacts */

.contacts-page-info .map {
  width: 100%;
  height: 550px;
  border-radius: 25px;
  border: 0;
  outline: 0;
}

.contacts-page-info .services-stat-blocks > div > div {
  cursor: pointer;
}

/*
.contacts-page-info .services-stat-blocks > div:nth-child(1) > div {
  margin-left: 175px;
}

.contacts-page-info .services-stat-blocks > div:nth-child(2) > div {
  margin-left: 0;
}

.contacts-page-info .services-stat-blocks > div:nth-child(3) > div {
  margin-left: 215px;
}

.contacts-page-info .services-stat-blocks > div:nth-child(4) > div {
  margin-left: 40px;
}
*/

.contacts-page-info .services-stat-blocks > div > div > p:first-child {
  margin-top: calc(.75rem + 22px);
}

.contacts-page-info .services-stat-blocks > div > div > p:last-child {
  position: relative;
  display: inline-block;
  width: auto;
}

.contacts-page-info .services-stat-blocks > div > div > p:last-child:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #222;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.contacts-page-info .services-stat-blocks > div > div:hover > p:last-child:before {
  width: 100%;
}

/* projects page */

.projects-page-content .content-photo {
  height: 380px;
}

@media (min-width: 992px) and (max-width: 1399px) {
  .projects-page-content .content-photo {
    height: 340px;
  }
}

@media (max-width: 991px) {
  .projects-page-content .content-photo {
    height: 240px;
  }
}

/* privacy policy */

.privacy-policy-div {
  width: 100% !important;
  padding-right: 5rem !important;
}

.privacy-policy-div h2,
.privacy-policy-div p,
.privacy-policy-div ul,
.privacy-policy-div table {
  margin-bottom: 2rem;
  color: #222;
  line-height: 1.6;
  font-weight: 500;
}

.privacy-policy-div p:last-child {
  margin-bottom: 0;
}

.privacy-policy-div table tr td {
  padding: 10px 15px;
  border: 2px solid #333;
}

.privacy-policy-div table tr:first-child td {
  text-align: center;
  font-weight: 600;
}

.privacy-policy-div a,
.privacy-policy-div a:hover {
  position: relative;
  color: #222;
  text-decoration: none;
}

.privacy-policy-div a:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #222;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.privacy-policy-div a:hover:before {
  width: 100%;
}

@media (max-width: 991px) {
  .privacy-policy-div {
    padding: 2rem !important;
  }
}

/* cookie bar */

.cookies-bar {
  position: fixed;
  display: flex;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem;
  align-items: center;
  z-index: 9999;
  background-color: #eee;
  color: #222;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5;
}

.cookies-bar a,
.cookies-bar a:hover {
  position: relative;
  color: #222;
  text-decoration: none;
}

.cookies-bar a:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #222;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cookies-bar a:hover:before {
  width: 100%;
}

.cookies-bar button {
  width: 100%;
}

@media (max-width: 767px) {
  .cookies-bar {
    display: block;
    text-align: center;
  }

  .cookies-bar div:nth-child(2) {
    margin-top: 1.5rem;
  }
}

@media (min-width: 768px) {
  .cookies-bar {
    padding: 1.5rem 3rem;
  }

  .cookies-bar div:nth-child(1) {
    flex: 4;
    padding-right: 2rem;
  }

  .cookies-bar div:nth-child(2) {
    flex: 1;
  }
}













/* */
