@font-face {
  font-family: 'icomoon';
  src: url('../webfonts/icomoon.eot?hvi3nd');
  src: url('../webfonts/icomoon.eot?hvi3nd#iefix') format('embedded-opentype'),
    url('../webfonts/icomoon.ttf?hvi3nd') format('truetype'),
    url('../webfonts/icomoon.woff?hvi3nd') format('woff'),
    url('../webfonts/icomoon.svg?hvi3nd#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

:root {
  --primary-color: #51b6db;
  --get-in-touch-color: #2a2f38;
  --footer-color: #21252c;
  --hamburger-color: #333742;
  --banner-wight: 865px;
  --banner-width: 72%;
  scroll-behavior: smooth;
}

body{
  position: absolute;
  height: 100%;
  width: 100%;
}

#cookie-bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
}
#cookie {
  width: calc(100% - 40px);
  max-width: 280px;
  position: fixed;
  z-index: 99999;
  left: 20px;
  bottom: 20px;
  background-color: white;
  color: black;
  padding: 30px;
}

#cookie .cookie-text {
  padding-bottom: 20px;
}

#cookie .cookie-text a {
  display: block;
  margin-top: 5px;
  color: rgb(0, 0, 0);
}

#cookie > .btn {
  width: 100%;
  border-radius: 0;
  background-color: var(--primary-color);
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chevron-thin-right:before {
  content: "\e900";
}

.icon-chevron-thin-left:before {
  content: "\e901";
}

.btn.btn-primary {
  font-family: "Uniform 4", sans-serif;
  font-size: 14px;
  display: inline-block;
  padding: 28px 32px;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  outline: none;
  background-color: var(--primary-color);
}

.btn.btn-primary:hover {
  -webkit-animation: pulse 1s;
  animation: pulse 1s;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:focus {
  -webkit-animation: pulse 1s;
          animation: pulse 1s;
  outline: #fff solid 1px;
  background-color: var(--primary-color);
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }
}

.abovetitle {
  font-family: "Uniform 3", sans-serif;
  font-size: 14px;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #9d9d9d;
}

.abovetitle:after {
  position: absolute;
  top: 50%;
  right: -14px;
  width: 47px;
  height: 1px;
  content: "";
  transform: translate(100%, -50%);
  background: #9d9d9d;
}

.site__button {
  font-size: 16px;
}

.header__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 26px;
  transition: all .35s linear;
}

.header__wrapper.scrolled {
  align-items: center;
  height: 80px;
  background: #fff;
}

.contacts__block {
  transition: all 0.3s linear;
}

.navbar {
  padding: 0;
}

.header__wrapper.scrolled .contacts__block {
  align-items: center;
  flex-direction: row-reverse;
}

.header__wrapper.scrolled .contacts__block .email span {
  display: none;
}

.header__wrapper.scrolled .contacts__block a+a {
  margin-right: 10px;
}

.header__wrapper.scrolled .contacts__block a+a {
  margin-top: 0;
}

.header__wrapper.scrolled .contacts__block a.email {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 50%;
}

.header__wrapper.scrolled .contacts__block a.email i {
  position: static;
  padding-right: 0;
}

.header__wrapper.scrolled .humburger__block.humburger__open .navbar__bars,
.header__wrapper.scrolled .humburger__block.humburger__open .navbar__bars-short {
  background: #000;
}


.navbar__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 17px;
}

.scrolled.navbar {
  padding: 0;
}

.scrolled .humburger__block {
  background-color: var(--hamburger-color);
}

.scrolled .humburger__block button {
  margin-top: 0;
}

.contacts__block {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.contacts__block a {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 24px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 34px 20px;
  color: #fff;
  border-radius: 0 0 0 3px;
  background-color: var(--primary-color);
}

.phone_desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 12px;
  color: #fff;
}

.contacts__block-menu a {
  font-size: 18px;
  font-weight: normal;
  display: flex;
  margin-top: -3px;
  transition: all .35s linear;
  color: #fff;
}

.contacts__block a:hover,
.navbar-phone:hover {
  -webkit-animation: pulse 1s;
  animation: pulse 1s;
  color: #ffffff;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}

.scrolled .contacts__block a {
  border-radius: 0;
}


.contacts__block a+a {
  margin-top: 10px;
}

.contacts__block-menu a+a {
  margin-top: 15px;
}

.contacts__block a i {
  position: relative;
  top: -1px;
  padding-right: 5px;
}

.contacts__block-menu a i {
  padding-right: 14px;
}

.collapsing.width {
  width: 0;
  height: auto;
  transition: width .35s ease;
}

#navbarToggleExternalContent {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  margin: auto;
  background: #2a2f38;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(-100%);
}

#navbarToggleExternalContent.show {
  
  transform: translateX(0);
}

.navbar-links {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 32vw;
  color: #fff;
}

.navbar-links__wrapper,
.navbar-contacts__wrapper {
  display: flex;
  align-items: center;
  flex: 0 0 50%;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  line-height: 1.3;
}

.navbar-phone a {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  color: #fff;
}

.navbar-phone a i {
  margin-right: 3px;
}

.btn-phone{
  width: 100%;
  max-width: 600px;
  padding: 10px 56px;
  border-radius: 5px;
  background-color: var(--primary-color);
  text-align: center;
}



.navbar-toggler:focus, .navbar-toggler:hover{
  outline: none;
}

.navbar-contacts__wrapper .featurettes-05 {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.navbar-contacts__wrapper .featurettes-05-item {
  display: flex;
  align-items: center;
  flex: 0 0 50%;
  justify-content: center;
  max-width: 50%;
  height: 50%;
  border: solid #626364;
}

.navbar-contacts__wrapper .featurettes-05-item.phone {
  border-width: 0 1px 1px 1px;
}

.navbar-contacts__wrapper .featurettes-05-item.contactus {
  border-width: 0 0 1px 0;
}

.navbar-contacts__wrapper .featurettes-05-item.social {
  border-width: 0 1px 0 1px;
}

.navbar-contacts__wrapper .featurettes-05-item.address {
  border: none;
}

.navbar-links__wrapper .nav-item .nav-link {
  padding: 20px 1rem;
  font-weight: 400;
}

.navbar_phone {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 35px 0;
  background: #2b81bd;
}

.menu .navbar-links {
  height: 100%;
  color: #fff;
}

.navbar-links .nav-item a {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}

.navbar-links .nav-item a:hover {
  color: #fff;
}

.navbar__bars {
  width: 100%;
  height: 1px;
  transition: all 0.25s linear;
  background: #fff;
}

.navbar__bars-short {
  width: 19px;
  height: 1px;
  transition: all 0.25s linear;
  background: #fff;
}

.open .navbar__item .navbar__bars {
  position: absolute;
  top: 50%;
  display: block;
  transform: rotate(45deg);
}

.open .navbar__item .navbar__bars-short {
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  transform: rotate(-45deg);
}

.navbar-btn.open {
  left: 94vw;
}


.humburger__block {
  position: relative;
  display: flex;
  width: 80px;
  height: 80px;
  transition: width .35s ease;
  justify-content: center;
}

.humburger__block button {
  position: relative;
  height: 100%;
  padding: 0;
  outline: 0;
}

.logo__block {
  position: absolute;
  top: 19px;
  left: 136px;
  transition: all .35s linear;
  transform: translate(-50%, 0px);
  text-transform: uppercase;
  font-size: 27px;
  color: #fff;
  font-weight: bold;
}

.scrolled .logo__block {
  color: var(--hamburger-color);
}

.navbar-links .hamburger{
  position: absolute;
  right: 2.3rem;
  top: 2.3rem;
  z-index: 100;
}

.logo__block::after {
  content: "plumbing & heating";
  width: 200px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  top: 27px;
  left: 67px;
  position: absolute;
  letter-spacing: 0.3ch;
}

.carousel-inner .carousel-item img {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel-caption {
  text-align: left;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--banner-wight);
  padding: 56px 58px 40px 125px;
}

.caption-cont h1 {
  font-size: 69px;
  font-weight: bold;
  line-height: 4rem;
  margin-bottom: 1.7rem;
}

.caption-cont p {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 1.6rem;
  line-height: 1.9rem;
}

.caption-cont::before {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 2px;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(1em);
          backdrop-filter: blur(1em);
  
}

.mark-block {
  position: absolute;
  right: 2.2rem;
  bottom: 5.5rem;
  width: 127px;
  height: 127px;
}

.mark-block img {
  height: 100% !important;
  width: 100% !important;
  min-height: 1px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.banner-advantages {
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.carousel-inner {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 96%, var(--banner-wight) 96%, var(--banner-wight) 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 96%, var(--banner-wight) 96%, var(--banner-wight) 100%, 0% 100%);
}

.caption-cont-inner h1 {
  text-align: left;
  margin-bottom: 30px;
}

.caption-cont-inner a {
  margin-bottom: 30px;
}

.social-links .btn-link:last-of-type {
  flex: 1;
}

.banner-advantages span {
  font-family: "Uniform 4";
  font-size: 24px;
  margin-right: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.banner-advantages span:last-of-type {
  margin-right: 0;
}

.banner-advantages span i {
  font-size: 18px;
  position: relative;
  top: -2px;
  margin-right: 3px;
  color: var(--primary-color);
}

.banner-contacts {
  display: flex;
  justify-content: center;
  margin: 25px 0 28px;
}

.banner-contacts span {
  font-family: "Uniform 4";
  font-size: 18px;
}

.banner-contacts div:first-of-type span {
  margin-right: 40px;
}

.banner-contacts span i {
  font-size: 16px;
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.approve_brands {
  margin-top: 95px;
}

.approve_brands-item {
  display: flex !important;
  justify-content: center;
}

.approve_brand-item {
  margin: 0 auto;
}

.carousel-inner .carousel-item .approve_brands img {
  width: auto;
  height: 40px;
  min-height: auto;
}

.carousel-01 .scroll__btn.scroll-loading,
.carousel-01 .scroll__btn2.scroll-loading {
  bottom: 33px;
}

@keyframes rollScroll {
  10% {
    visibility: hidden;
    opacity: 0;
    bottom: 33px;
  }

  100% {
    opacity: 1;
    visibility: visible;
    bottom: 39px;
  }
}

@-webkit-keyframes rollScroll {
  from {
    visibility: hidden;
    opacity: 0;
    bottom: 139px;
  }

  to {
    opacity: 1;
    visibility: visible;
    bottom: 39px;
  }
}

.animation .carousel-01 .scroll__btn.scroll-loading,
.animation .carousel-01 .scroll__btn2.scroll-loading {
  bottom: 139px;
  visibility: hidden;
  -webkit-animation: rollScroll .4s linear 1.2s 1 normal forwards;
  animation: rollScroll .4s linear 1.2s 1 normal forwards;
  opacity: 0;
}

.scroll__mouse,
.scroll__mouse2 {
  position: relative;
  top: 0;
  left: 5px;
  width: 23px;
  height: 16px;
  border-radius: 10px;
}

.scroll__mouse {
  color: #fff;
  border: 1px solid #fff;
}

.scroll__mouse:before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 12px;
  height: 1px;
  content: "";
  transform: translate(-100%, -50%);
  background: #fff;
}

.company-logo img {
  max-width: 100%;
}

.scroll__btn {
  z-index: 2;
  -webkit-animation: scroll_bg 5s 3s infinite forwards;
          animation: scroll_bg 5s 3s infinite forwards;
  color: #fff;
}

.scroll__btn span,
.scroll__btn2 span {
  font-size: 14px;
  margin-right: 5px;
  transform: rotate(180deg);
}

.scroll__mouse2 {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.scroll__mouse2:before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 12px;
  height: 1px;
  content: "";
  transform: translate(-100%, -50%);
  background: var(--primary-color);
}

.scroll__btn,
.scroll__btn2 {
  position: absolute;
  bottom: 38px;
  left: -76px;
  display: flex;
  align-items: center;
  transform: rotate(90deg) translate(-50%, -100%);
  text-decoration: none;
}


.scroll__btn2 {
  z-index: 1;
  color: var(--primary-color);
}

@-webkit-keyframes scroll_bg {
  0% {
    clip: rect(auto, 500px, auto, 0);
  }

  50% {
    clip: rect(auto, 0, auto, 0);
  }

  100% {
    clip: rect(auto, 500px, auto, 0);
  }
}

@keyframes scroll_bg {
  0% {
    clip: rect(auto, 500px, auto, 0);
  }

  50% {
    clip: rect(auto, 0, auto, 0);
  }

  100% {
    clip: rect(auto, 500px, auto, 0);
  }
}

.banner-vertical_line {
  position: absolute;
  top: 0;
  left: 79px;
  width: 1px;
  height: 100%;
  background-color: #9c9b9a;
}

.banner-horizontal_line {
  position: relative;
}

.banner-horizontal_line {
  position: absolute;
  bottom: 90px;
  display: flex;
  align-items: center;
  width: 100%;
}

.banner-horizontal_line .line-text {
  font-size: 14px;
  margin: 0 10px;
  white-space: nowrap;
  text-transform: uppercase;
  color: #9d9d9d;
}

.banner-horizontal_line .line {
  width: 100%;
  height: 1px;
  background-color: #9d9d9d;
}

.text-with-image {
  padding-top: 8.4rem;
}

.text-with-image h5 {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 20px;
  text-transform: none;
}

.line-bg {
  position: absolute;
  height: 1px;
  width: 98px;
  background-color: var(--primary-color);
}

.aboutus__image-wrapper {
  height: 330px;
}

.aboutus__text {
  height: 100%;
  right: -9.2rem;
  padding-right: 24px;
}

.aboutus__text a {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
}

.aboutus__text svg {
  transform: rotateY(180deg) translateY(-8%);
  fill: var(--primary-color);
  height: 1.2em;
  vertical-align: middle;
  margin-left: 1em;
}

.aboutus__text p {
  font-size: 18px;
  line-height: 26px;
  color: #393939;
  margin-bottom: 26px;
}

.aboutus__image-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.aboutus__image-wrapper .aboutus__image-first {
  min-height: 335px;
  height: 100%;
  right: 15px;
  top: 0px;
  padding-left: 20px;
}

.text-with-image .line-bg {
  left: -161px;
  top: 4px;
}

.aboutus__image-wrapper .aboutus__image-second {
  height: 90%;
  left: 0px;
  bottom: 0px;
}


.text-with-image .image-wrapper {
  position: absolute;
  right: 0;
  width: 38%;
  height: 100%;
  max-height: 335px;
}

.text-with-image .blockBG {
  position: absolute;
  right: 45%;
  transform: translateX(50%);
  top: 10%;
  z-index: -1;
}

.text-with-image h2 {
  font-family: "Oyster";
  font-size: 69px;
  font-weight: 400;
  line-height: 69px;
  margin-bottom: 60px;
  text-transform: none;
}

.montage {
  padding-top: 8.5rem;
}

.montage .row {
  margin-left: -30px;
  margin-right: -30px;
}

.montage h2 {
  font-size: 44px;
  text-transform: none;
  margin-bottom: 1.5rem;
}

.mantage__headline {
  justify-content: left;
  align-items: start;
}

.backgroung-lines {
  position: absolute;
  visibility: hidden;
}

.montage .row.grid {
  margin-left: -15px;
  margin-right: -15px;
}

.grid-item {
  padding: 15px;
  position: relative;
}

.grid-item .grid-item-number {
  position: absolute;
  font-size: 12px;
  font-weight: 400;
  left: 3.4rem;
  bottom: 7.7rem;
  color: #fff;
}

.grid-item .grid-item-title {
  position: absolute;
  font-size: 26px;
  font-weight: bold;
  line-height: 30px;
  left: 3.2rem;
  bottom: 3rem;
  right: 30%;
  color: #fff;
}

.grid-item .grid-item-mark {
  position: absolute;
  left: 3rem;
  top: 3.5rem;
}

.grid-item .grid-item-mark img {
  height: 3.4em;
}

.background-lines {
  position: absolute;
  background: url("../images/background-lines.png") repeat;
  width: 50%;
  height: 42rem;
  left: 0;
  top: 2rem;
  z-index: -1;
}

.advantages {
  background: url("../images/finance-rect.png") no-repeat;
  padding: 41px 34px;
}

.finance .row {
  margin-left: 0px;
}

.advantages img {
  width: 4rem;
  height: 4rem;
}

.advantages .advantages-item {
  display: flex;
  color: #fff;
  padding: 20px 40px 20px 30px;
}

.advantages .advantages-item p {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  margin-left: 1.5rem;
  padding-top: 1rem;
}

.finance {
  margin: 3rem 0;
  padding: 4.3rem 0 1.5rem;
}

.finance .background-lines {
  height: 18rem;
  width: 50%;
  left: auto;
  right: 0;
}

.finance .desc-finance {
  padding-top: 7.5rem;
  padding-left: 4.8rem;
}

.finance .desc-finance h2 {
  font-size: 44px;
  line-height: 50px;
  text-transform: capitalize;
}

.finance .desc-finance h5 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  padding: 1rem 0;
}

.finance .desc-finance p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.finance .desc-finance .btn {
  margin-top: 1rem;
  padding: 18px 27px;
  font-size: 14px;
  font-weight: 400;
  background-color: var(--primary-color);
  align-items: center;
  border-radius: 4px;
}

.finance .left-image-block {
  z-index: -1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 49%;
  height: 42rem;
  background: url("../images/block3.jpg") no-repeat;
}


.arrow {
  margin-left: 1rem !important;
  height: 1em !important;
  width: 1em !important;
  min-height: auto !important;
  transform: translateY(-2px);
}

.call-to-action {
  padding-top: 5.7rem;
}

.call-to-action .call-to-action-right {
  padding: 0 0 0 5rem;
}

.call-to-action .call-to-action-banner {
  background: url("../images/action-banner.jpg");
  text-align: center;
  color: #fff;
  padding: 6rem 4rem 8rem;
}

.call-to-action .call-to-action-banner h3 {
  font-size: 44px;
  line-height: 50px;
  font-weight: bold;
}

.call-to-action .call-to-action-banner p {
  font-size: 18px;
  line-height: 26px;
  padding-top: 0.6rem;
  padding-bottom: 0.7rem;
}

.call-to-action .btn-outline-primary {
  background: none;
  border: #fff solid 1px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  ;
}

.call-to-action .call-to-action-left {
  padding: 0;
}

.call-to-action .call-to-action-left h3 {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 3rem;
}


.call-to-action .call-to-action-left>.row {
  padding-top: 3rem;
  padding-right: 5rem;
}

.call-to-action .call-to-action-left .company-logo {
  padding: 1.6rem 1rem;
  display: flex;
  align-items: center;
  vertical-align: middle;
}

.call-to-action .line-bg {
  top: 8.4rem;
}

.testimonials {
  padding-top: 9rem;
}

.testimonials .row {
  margin-left: -15px;
  margin-right: -15px;
}

.testimonials .testimonials-text {
  padding: 0;
}

.testimonials .testimonials-text h2 {
  font-size: 44px;
  line-height: 44px;
  text-transform: capitalize;
  padding-right: 4rem;
}

.testimonials .line-bg {
  top: -3rem;
}

.testimonials .slick-item p {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  padding-right: 1rem;
}

.testimonials .testimonials-carousel {
  padding: 0;
}

.testimonials .testimonal-author {
  text-transform: uppercase;
  margin-top: 1.6rem;
}

.testimonials .background-lines {
  top: -4rem;
  width: 100vw;
  max-width: 100%;
  height: 46rem;
}

.testimonials .slick-arrow {
  visibility: hidden;
}

.slick-dots {
  text-align: left;
}

.slick-item {
  min-height: 19rem;
}

.slick-dots li.slick-active button:before {
  color: var(--primary-color);
}

.slick-dots li button:before {
  font-size: 14px;
}

.galley-grid {
  padding: 6rem 0 7rem;
}

.get-in-touch {
  padding: 8.3rem 0 6rem;
  background: var(--get-in-touch-color);
}

.get-in-touch h2 {
  font-size: 44px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
}

.get-in-touch h2+p {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
  padding: 1.8rem 0;
  margin: 0;
}

.get-in-touch h5 {
  color: var(--primary-color);
  font-size: 22px;
  margin: 0;
}

.get-in-touch .phone-item,
.get-in-touch .email-item {
  display: flex;
}

.get-in-touch .email-item {
  margin-top: 1rem;
}

.get-in-touch .phone-item i {
  font-size: 22px;
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 3px;
  padding: 14px 17px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.get-in-touch .phone-item p {
  font-size: 16px;
  color: #fff;
  margin: 0;
}

.get-in-touch .email-item i {
  font-size: 22px;
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 3px;
  padding: 14px 14px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.get-in-touch .email-item p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.get-in-touch .email-item>div,
.get-in-touch .phone-item>div {
  padding-left: 1rem;
}

.get-in-touch .gits-map {
  padding: 0 1.3rem 0 0;
}

.get-in-touch .form-group {
  margin-bottom: 1.3rem;
  position: relative;
  color: #fff;
}

.get-in-touch .form input.form-control {
  border-radius: 0;
  padding: 30px 10px;
  border: none;
  border-radius: 3px;
  box-shadow: none !important;
  height: 42px;
}

.get-in-touch .form textarea.form-control {
  height: 230px;
  background-color: #fff;
  line-height: 57px;
  overflow: hidden;
  padding: 0 10px;
  border-radius: 3px;
  border: none;
  box-shadow: none !important;
  margin-top: -4px;
}

.get-in-touch .form input,
.get-in-touch .form textarea {
  font-size: 14px;
}

.get-in-touch .form input.error,
.get-in-touch .form textarea.error {
  border-color: red;
  color: red;
  background: #fff6f6;
}

.get-in-touch .form input.error+.error,
.get-in-touch .form textarea.error+.error {
  position: absolute;
  font-size: 12px;
  color: #ff0404;
  right: 0;
  bottom: -20px;
  margin: 0px;
}

.get-in-touch .map-border-round {
  margin-top: 2.6rem;
  border-radius: 4px;
  overflow: hidden;
}

.get-in-touch .map__headline {
  background-color: #fff;
  padding: 0.7rem 1rem;
}

.get-in-touch .social-links {
  display: flex;
  margin-top: 2.5rem;
}

.btn-link {
  display: block;
  padding: 0.8rem 1.2rem;
  border: 1px solid #fff;
  border-radius: 3px;
  font-size: 20px;
}

.btn-link i {
  height: 1em;
  width: 1em;
  color: #fff;
  text-align: center;
}

.btn-link+.btn-link {
  margin-left: 0.4rem;
}

.btn-link img {
  width: 100%;
}

.get-in-touch .map__headline h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: none;
  margin: 0;
}

.get-in-touch .map__headline p {
  font-size: 14px;
  line-height: 1;
  padding: 0;
  font-weight: 500;
  color: #000;
}

.navbar-links .hamburger .navbar__bars{
  width: 35px; 
  transform: rotateZ(45deg) translateX(35%);
}

.navbar-links .hamburger .navbar__bars-short{
  width: 35px; 
  transform: rotateZ(-45deg) translateX(30%);
}

#gdpr-error{
  color: red !important;
}

@media(max-width: 575px) {
  .get-in-touch .form input.error+.error,
  .get-in-touch .form textarea.error+.error {
    bottom: -15px;
  }
}

.get-in-touch .form .checkbox-block {
  position: relative;
  padding: 0 1rem 0 0;
  margin-top: 0.6rem;
}

.get-in-touch .form .checkbox-block input {
  position: absolute;
  opacity: 0;
}

.get-in-touch .form .checkbox-block input+label {
  padding-left: 2rem;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.get-in-touch .form .checkbox-block input+label:before {
  content: "";
  position: absolute;
  /* border: 2px dashed #2e2e2e; */
  width: 20px;
  height: 20px;
  left: 0px;
  top: 3px;
  border-radius: 3px;
  background: #fff;
}

.get-in-touch .form .checkbox-block input:checked+label:after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 2px;
  top: 3px;
  color: #2e2e2e;
  font-weight: bold;
}

.get-in-touch .form input[type=checkbox].error+label:before {
  border-color: #ff0404;
  background-color: #ffb0b0;
}

.form {
  font-size: 15px;
  font-weight: 400;
  padding-top: 4.6rem;
}

#section-gallery .slick-arrow {
  position: absolute;
  top: 38%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 80px;
  font-size: 34px;
  opacity: 0.5;
  transition: 0.3s all;
  cursor: pointer;
  z-index: 2;
}

#section-gallery .slick-arrow:hover {
  opacity: 1;
}

#section-gallery .slick-arrow.prev-slide {
  left: 0;
}

#section-gallery .slick-arrow.next-slide {
  right: 0;
}

#captcha {
  background: #444;
  display: inline-block;
}

#captchaMessage.error {
  font-size: 12px;
  color: #ff0404;
  position: absolute;
  right: 0;
  bottom: -20px;
  margin: 0px;
}

.capcha-round {
  display: flex;
  overflow: hidden;
  border-radius: 3px;
  margin-right: 1.8rem;
}

.capcha-round label {
  width: 100%;
}

.capcha-round canvas#captcha {
  padding: 1em 1rem 0;
  background: none;
}

.capcha-round .capcha-reload {
  background-color: var(--primary-color);
  display: flex;
  font-size: 2em;
  min-width: 60px;
  min-height: 60px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}


.get-in-touch .btn {
  margin-top: 1.5rem;
  padding: 18px 27px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  background-color: var(--primary-color);
  align-items: center;
}

.capcha-round div#captcha {
  min-width: 9rem;
  background: #d2d7df;
}

.capcha-round input#captchaValue {
  border-radius: 0;
}

.footer .footer__wrapper {
  background: var(--footer-color);
  padding: 3.4rem 0;
}

.footer2 {
  margin: 1.4rem -15px;
}

.footer,
.footer a {
  color: #c7c7c7;
  font-size: 12px;
}

.footer2 img {
  height: 13px;
  -webkit-filter: invert(58%) sepia(55%) saturate(482%) hue-rotate(150deg) brightness(105%) contrast(79%);
          filter: invert(58%) sepia(55%) saturate(482%) hue-rotate(150deg) brightness(105%) contrast(79%);
}

@media(max-width: 1400px){
  .caption-cont h1{
    font-size: 58px;
  }
}

@media(max-width: 1199px) {
  .carousel-inner {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 96%, calc(var(--banner-wight) - 35px) 96%, calc(var(--banner-wight) - 35px) 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 96%, calc(var(--banner-wight) - 35px) 96%, calc(var(--banner-wight) - 35px) 100%, 0% 100%);
  }

  .call-to-action .line-bg{
    top: 9rem;
  }

  .carousel-caption{
    width: calc(var(--banner-wight) - 35px);
  }

  .text-with-image {
    padding-top: 4.8rem;
  }

  .aboutus__text {
    padding-right: 2rem;
  }

  .text-with-image .image-wrapper {
    max-height: 430px;
  }

  .aboutus__image-wrapper .aboutus__image-first {
    padding-left: 3rem;
  }

  .montage {
    padding-top: 7rem;
  }

  .advantages {
    position: relative;
    right: 0;
  }

  .finance .container {
    padding: 0 15px;
    max-width: 100%;
  }

  .finance .desc-finance {
    padding-top: 6.5rem;
    padding-left: 3.8rem;
    padding-right: 1rem;
    padding-right: 4rem;
  }

  .finance {
    padding-bottom: 0;
  }

  .call-to-action {
    padding-top: 4.5rem;
  }

  .testimonials {
    padding-top: 8rem;
  }

  .slick-dots {
    bottom: -40px;
  }

  .galley-grid {
    padding: 8rem 0 5rem;
  }

  .get-in-touch {
    padding: 8rem 0 5rem;
  }

  .get-in-touch .gits-map {
    padding-right: 2.3rem;
  }

  .capcha-round {
    margin-right: 0;
  }

  .get-in-touch form {
    margin-left: -2rem;
  }

  .call-to-action .call-to-action-left h3 {
    margin-bottom: 4rem;
  }

  .grid-item {
    padding: 10px;
    position: relative;
  }

  .montage .row.grid{
    margin-left: -10px;
    margin-right: -10px;
  }
}

@media(max-width: 991px) {
  .call-to-action .line-bg{
    top: 6rem;
  }

  .navbar-links {
    width: 50vw;
  }

  .carousel-caption {
    width: var(--banner-width);
    padding: 56px 30px 30px 40px;
  }

  .caption-cont h1 {
    font-size: 50px;
    margin-bottom: 1.2rem;
  }

  .caption-cont p {
    font-size: 18px;
    margin-bottom: 1.2rem;
    line-height: 1.6rem;
  }

  .carousel-inner {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 96%, var(--banner-width) 96%, var(--banner-width) 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 96%, var(--banner-width) 96%, var(--banner-width) 100%, 0% 100%);
  }

  .humburger__block {
    border-right: 1px solid rgba(255, 255, 255, 0.6);
  }

  .aboutus__text {
    left: 0;
  }

  .text-with-image {
    padding-top: 6.4rem;
  }

  .aboutus__text {
    padding: 0;
    margin-left: -15px;
    margin-right: -17px;
  }

  .montage {
    padding-top: 9rem;
  }

  .background-lines {
    width: 64%;
  }

  .advantages {
    width: 100%;
    background-size: cover;
  }

  .finance {
    margin-top: 0;
  }

  .finance .background-lines {
    width: 72%;
  }

  .finance .desc-finance {
    padding-top: 4.8rem;
    padding-left: 2.5rem;
  }

  .call-to-action {
    padding-top: 2.5rem;
  }

  .call-to-action>.container>.row {
    flex-direction: column-reverse;
  }

  .call-to-action .call-to-action-right {
    padding: 0;
  }

  .call-to-action>.container {
    max-width: 100%;
  }

  .call-to-action .call-to-action-banner {
    background-size: cover;
    padding: 4.4rem 20% 5.5rem;
  }

  .mob-cont {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    padding: 0 15px;
  }

  .call-to-action .call-to-action-left {
    padding: 5rem 0;
  }

  .call-to-action .call-to-action-left h3 {
    margin-bottom: 4rem;
  }

  .testimonials {
    padding-top: 7rem;
  }

  .testimonials .background-lines {
    top: -1rem;
    height: 43rem;
  }

  .testimonials .testimonials-text h2 {
    margin-bottom: 2rem;
  }

  .galley-grid {
    padding-top: 5rem;
  }

  .finance .row {
    margin: 0 -15px;
  }

  .get-in-touch {
    padding: 6rem 0 3rem;
  }

  .capcha-round div#captcha {
    min-width: 8rem;
  }
}

@media (max-width: 767px) {
  .contacts__block a{
    font-size: 20px;
    padding-top: 18px;
  }

  .call-to-action .line-bg{
    top: 9rem;
  }

  .navbar-links {
    padding-bottom: 0;
    width: 100vw;
  }

  .navbar-links__wrapper, .navbar-contacts__wrapper{
    margin-top: 0;
  }

  .navbar-links__wrapper
  {
    width: 100%;
    justify-content: center;
  }

  .navbar-phone{
    height: 70px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
  }

  .montage {
    padding-top: 7.2rem;
  }

  .finance {
    padding-top: 3.3rem
  }

  .finance .desc-finance {
    padding-top: 3.3rem;
    padding-left: 2rem;
  }

  .call-to-action {
    padding-top: 1.2rem;
  }

  .call-to-action .call-to-action-banner {
    padding: 4.5rem 10% 5.5rem;
  }

  .call-to-action .call-to-action-left {
    padding: 4.2rem 1rem 0;
  }

  .testimonials .background-lines {
    height: 51rem;
  }

  .galley-grid {
    padding: 8rem 0 4rem;
  }

  .get-in-touch .gits-map {
    padding-right: 0;
  }

  .get-in-touch form {
    margin-left: 0;
  }

  .footer-links {
    grid-auto-flow: unset;
    grid-gap: 15px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
  }

  .get-in-touch .gits-map {
    display: flex;
    flex-direction: column;
  }

  .get-in-touch .map-border-round {
    order: 1;
  }

  .get-in-touch .social-links {
    padding-right: 13rem;
    margin-top: 2rem;
  }

  .get-in-touch h2+p {
    padding-right: 7rem;
  }

  .get-in-touch .ml-auto {
    padding: 0;
  }

  .form {
    padding-top: 4rem;
  }

  .footer2 {
    margin: 2rem 0;
  }

  .footer-links {
    font-size: 12px;
    letter-spacing: 2px;
  }
}


@media (max-width: 575px) {
  .grid-item .grid-item-title{
    right: 24%;
  }

  .phone_desc {
    font-size: 12px;
  }

  .logo__block {
    top: 10px;
    left: 105px;
  }

  .scrolled .logo__block {
    top: 0;
    left: 110px;
  }

  .logo__block::after {
    width: 90px;
    font-size: 9px;
    top: 33px;
    left: 2px;
  }

  .humburger__block {
    width: 70px;
    height: 70px;
  }

  .contacts__block a {
    padding: 10px 20px 18px;
  }

  .navbar__item {
    width: 20px;
  }

  .navbar__bars-short {
    width: 14px;
  }

  .header__wrapper.scrolled {
    height: 70px;
  }

  .advantages .advantages-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .advantages .advantages-item p {
    margin-left: 0;
  }

  .carousel-inner {
    -webkit-clip-path: none;
            clip-path: none;
  }

  .carousel-caption {
    width: 100%;
    padding-left: 30px;
  }

  .mark-block {
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .caption-cont {
    text-align: center;
  }

  .btn.btn-primary {
    width: 100%;
    padding: 24px;
  }

  .text-with-image {
    padding: 3.3rem 30px 0;
  }

  .montage {
    padding-top: 6.6rem;
  }

  .background-lines {
    width: 100%;
  }

  .section-montage .container {
    padding: 0 30px;
  }

  .montage .row {
    margin: 0;
  }

  .montage .grid img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .grid-item {
    max-height: 165px;
    padding: 5px 15px;
  }

  .advantages {
    background-image: url("../images/finance-rect-mobile.jpg");
    padding: 30px;
  }

  .advantages .advantages-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .finance .desc-finance {
    padding-right: 2rem;
  }

  .finance .desc-finance .btn {
    width: 100%;
    border-radius: 5px;
  }

  .call-to-action .call-to-action-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .call-to-action .call-to-action-banner h3 {
    font-size: 38px;
    line-height: 1.2;
  }

  .call-to-action .btn-outline-primary {
    width: 100%;
    padding: 18px 0;
  }

  .call-to-action .call-to-action-left h3 {
    line-height: 1;
  }

  .call-to-action .call-to-action-left .company-logo {
    min-width: 130px;
    padding: 1rem 0.5rem;
  }

  .call-to-action .line-bg {
    top: 10rem
  }

  .call-to-action .call-to-action-left h3 {
    margin-bottom: 3rem;
  }

  .testimonials .testimonials-text h2 {
    font-size: 38px;
    padding: 0;
    line-height: 1.2;
  }

  .testimonials {
    padding: 8.3rem 30px 0;
  }

  .testimonials .background-lines {
    height: 51rem;
    top: 2rem;
  }

  .testimonials .slick-item p {
    font-size: 18px;
    padding: 0;
  }

  .finance .desc-finance {
    padding-top: 4.3rem;
  }

  .finance .desc-finance h2 {
    font-size: 38px;
    line-height: 1.2;
  }

  .finance .desc-finance p {
    margin-right: -15px;
  }

  .galley-grid {
    padding: 6rem 30px 2rem;
  }

  .get-in-touch {
    padding: 4rem 30px 3rem;
  }

  .get-in-touch h2 {
    font-size: 38px;
  }

  .get-in-touch h2+p {
    padding-right: 0;
  }

  .get-in-touch .social-links {
    padding-right: 0;
  }

  .get-in-touch .btn {
    width: 100%;
  }

  .footer .container {
    padding: 0 30px !important;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer .footer__wrapper {
    padding: 4.4rem 0 1rem;
  }

  .form__headline {
    overflow-x: hidden;
  }
}

@media (max-width: 330px) {
  .contacts__block a{
    padding: 10px 10px 18px;
  }
}