﻿/*
Description:
		1 - Including files ("fonts.css", "reset.css" and others)
		2 - Tags styles and General styles
		3 - header
		4 - .content
		5 - footer
		* - @media rules
*/

/* 1 - BEGIN of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/Montserrat-Regular.eot");
  src: url("fonts/Montserrat/Montserrat-Regular.eot?#iefix") format("embedded-opentype"),
    url("fonts/Montserrat/Montserrat-Regular.woff2") format("woff2"), url("fonts/Montserrat/Montserrat-Regular.woff") format("woff"),
    url("fonts/Montserrat/Montserrat-Regular.ttf") format("truetype"), url("fonts/Montserrat/Montserrat-Regular.svg#Montserrat") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/Montserrat-Light.eot");
  src: url("fonts/Montserrat/Montserrat-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Montserrat/Montserrat-Light.woff2") format("woff2"),
    url("fonts/Montserrat/Montserrat-Light.woff") format("woff"), url("fonts/Montserrat/Montserrat-Light.ttf") format("truetype"),
    url("fonts/Montserrat/Montserrat-Light.svg#Montserrat") format("svg");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/Montserrat-Medium.eot");
  src: url("fonts/Montserrat/Montserrat-Medium.woff2") format("woff2"), url("fonts/Montserrat/Montserrat-Medium.woff") format("woff"),
    url("fonts/Montserrat/Montserrat-Medium.ttf") format("truetype"), url("fonts/Montserrat/Montserrat-Medium.svg#Montserrat") format("svg"),
    url("fonts/Montserrat/Montserrat-Medium.eot?#iefix") format("embedded-opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/Montserrat-SemiBold.eot");
  src: url("fonts/Montserrat/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Montserrat/Montserrat-SemiBold.woff2") format("woff2"), url("fonts/Montserrat/Montserrat-SemiBold.woff") format("woff"),
    url("fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype"), url("fonts/Montserrat/Montserrat-SemiBold.svg#Montserrat") format("svg");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/Montserrat-Bold.eot");
  src: url("fonts/Montserrat/Montserrat-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Montserrat/Montserrat-Bold.woff2") format("woff2"),
    url("fonts/Montserrat/Montserrat-Bold.woff") format("woff"), url("fonts/Montserrat/Montserrat-Bold.ttf") format("truetype"),
    url("fonts/Montserrat/Montserrat-Bold.svg#Montserrat") format("svg");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/Montserrat-ExtraBold.eot");
  src: url("fonts/Montserrat/Montserrat-ExtraBold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Montserrat/Montserrat-ExtraBold.svg#Montserrat") format("svg"), url("fonts/Montserrat/Montserrat-ExtraBold.ttf") format("truetype"),
    url("fonts/Montserrat/Montserrat-ExtraBold.woff") format("woff"), url("fonts/Montserrat/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

/* BEGIN of CSS RESET */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

body {
  min-height: 500px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
  text-decoration: none;
  color: inherit;
  outline: none;
}

a:active {
  opacity: 0.6;
  outline: none;
  color: inherit;
  text-decoration: none;
}

a:focus {
  outline: none;
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button:hover,
input:hover,
textarea:hover,
select:hover {
  opacity: 0.8;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

img {
  max-width: 100%;
}

h1 {
  margin: 0 0 0;
  padding: 0 0 15px;
  font-size: 67px;
  line-height: 1.2;
  font-weight: 600;
}

h1 strong {
  font-weight: 900;
}

h2 {
  margin: 0 0 0;
  padding: 0 0 15px;
  font-size: 67px;
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  margin: 0 0 0;
  padding: 0 0 15px;
  font-size: 58px;
  line-height: 1.2;
  font-weight: 700;
}

h4 {
  margin: 0 0 0;
  padding: 0 0 15px;
  font-size: 33px;
  line-height: 1.2;
  font-weight: 700;
}

h5 {
  margin: 0 0 0;
  padding: 0 0 15px;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 400;
}

h6 {
  margin: 0 0 0;
  padding: 0 0 15px;
  font-size: 21px;
}

blockquote {
  margin: 0 0 0;
  padding: 0 0 15px;
  font-size: inherit;
  display: block;
}

p {
  padding: 0 0 15px;
}

ul,
ol {
  padding: 0 0 15px 20px;
}

ul ol,
ul ul,
ol ul,
ol ol {
  padding-bottom: 0;
}

.clear:before,
.clear:after {
  content: "";
  display: block;
  clear: both;
}

.hide,
.hidden {
  display: none;
}

.content-wrapper {
  width: 1000px;
  height: 100%;
  margin: 0 auto;
}

.alignleft,
img.alignleft {
  float: left;
  display: block;
  margin: 0 0 0 0;
}

.alignright,
img.alignright {
  float: right;
  display: block;
  margin: 0 0 0 0;
}

.aligncenter,
img.aligncenter {
  float: none;
  display: block;
  margin: 0 auto 0;
}

.alignnone,
img.alignnone {
  margin: 0 0 0;
  display: block;
}

/*  */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-left: 15px;
  padding-right: 15px;
}

[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
  padding: 0 0 0;
  background: transparent;
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  top: 0;
}

header + * {
  padding-top: 64px;
}

.navbar,
header,
.logo,
header + * {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-fixed {
  position: fixed;
  background: #ffffff;
  z-index: 60;
  left: 0;
  right: 0;
  top: 0;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.4);
}

.logo {
  display: block;
  margin: 0 0 0 0;
  padding: 0 0 0;
  max-width: 281px;
}

.logo img {
  display: block;
}

header a {
  color: inherit;
}

.header-top {
  padding: 15px 0 10px;
  margin: 0 0 0;
  font-size: 21px;
  box-shadow: 0px 8px 25px 8px rgba(0, 0, 0, 0.15);
  font-weight: 500;
  position: relative;
}

.header-top a i:not(:last-child) {
  margin: -4px 15px 0 0;
  font-size: 150%;
  display: inline-block;
  vertical-align: middle;
}

.header-top a {
  margin: 0 60px 0 0;
}

.header-main {
  padding: 28px 0 28px;
  margin: 0 0 0;
  position: relative;
}

body .social-links {
  padding: 0 0 0;
  margin: 0 0 0;
}

body .social-links a {
  padding: 0 0 0;
  margin: 0 0 0 18px;
  font-size: 26px;
}

body .social-links i {
  padding: 0 0 0;
  margin: 0 0 0;
}

/*  */

body .social-links-circle {
  padding: 0 0 0;
  margin: 0 0 0;
}

body .social-links-circle a {
  padding: 0 0 0;
  margin: 0 7px 0 0;
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  border-radius: 50%;
  background: #d6ba96;
  color: #ffffff;
  display: inline-block;
  text-align: center;
}

body .social-links-circle i {
  padding: 0 0 0;
  margin: 0 0 0;
}

body .social-links-circle a:hover {
  opacity: 1;
  background: #97392f;
}

/*  */

.navbar {
  margin: 0 0 0;
  padding: 0 0 0;
  border-radius: 0;
  clear: none;
  border: none;
  min-height: 0;
  float: right;
}

.navbar-collapse {
  margin: 0 0 0;
  padding: 0 0 0;
  border-radius: 0;
  border: none;
  min-height: 0;
  float: none;
}

.navbar-nav {
  margin: 0 0 0;
  padding: 0 0 0;
  border-radius: 0;
  border: none;
  min-height: 0;
  float: none;
}

.navbar-nav > li {
  outline: none;
}

.navbar .navbar-nav .nav-item a {
  padding: 13px 0 8px;
  margin: 0 0 0 70px;
  font-size: 25px;
  line-height: 25px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  background: transparent;
  font-weight: 500;
  text-transform: none;
  position: relative;
}

.navbar .navbar-nav .nav-item a.active {
  color: #c98c76;
  font-weight: 700;
  background: transparent;
}

.navbar .navbar-nav .nav-item a:focus {
  color: #ffffff;
  background: transparent;
}

.navbar .navbar-nav .nav-item a:hover {
  color: #c98c76;
  opacity: 1;
  background: transparent;
}

.navbar .navbar-nav .nav-item a:not(:last-child):after {
  margin: 0 0 0 4px;
  font-size: 15px;
  content: "\f107";
  font-family: "FontAwesome";
}

body .header-fixed .navbar-nav .nav-item a {
  color: #c98c76;
}

body .header-fixed .navbar .navbar-nav .nav-item a.active {
  color: #4f85b8;
}

/*  */

.subnav {
  padding: 10px 5px 10px;
  margin: 0px -5px 0;
  position: absolute;
  left: 0;
  top: 99%;
  display: none;
  background: #000000;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

.subnav li {
  padding: 0 0 0;
  margin: 0 0 0;
  position: relative;
  list-style: none;
}

.subnav a {
  /* font-size: 14px; */
  padding: 5px 10px 5px;
  margin: 0 0 0;
  font-weight: 400;
  /* position: relative; */
  display: block;
  color: inherit;
  white-space: nowrap;
}

li:hover > .subnav {
  display: block;
}

/* spinner css start */

.spinner-wr {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #d9e2dd;

  /*!!!!!!!!!!!!!!!!!!!!!!!*/
  /* display: none; */
}

.spinner {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background: url("../i/logo_markate_1.png") no-repeat center;
  -webkit-background-size: contain;
  background-size: contain;

  -webkit-animation: sk-bounce 5s infinite ease-in-out;
  animation: sk-bounce 5s infinite ease-in-out;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0.5);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* spinner css end */
/* back-to-top css start */

.back-to-top {
  position: fixed;
  bottom: 5px;
  right: 4px;
  z-index: 99;
  width: 44px;
  height: 44px;
  padding: 0 0 0;
  margin: 0 0 0;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  background: transparent url("img/i-arr-up.png") no-repeat center center;
  cursor: pointer;
  text-decoration: none;
  text-indent: -9999px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

.back-to-top.show {
  opacity: 1;
}

.back-to-top:not(.show):hover {
  opacity: 0;
  cursor: default;
}

.back-to-top:hover {
  -moz-animation: bounce 1.5s infinite;
  -webkit-animation: bounce 1.5s infinite;
  animation: bounce 1.5s infinite;
}

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

/* back-to-top css end */

#ho_adv {
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  left: -9999px;
}

/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.content {
  position: relative;
}

.box-wr {
  padding: 100px 0 100px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
}

/*  */

html body .bg-white {
  background-color: #ffffff;
}

html body .bg-light {
  background-color: #f7f7f5 !important;
}

html body .bg-gray {
  background-color: #e6e6e5;
}

html body .bg-theme {
  background-color: #c98c76;
  color: #ffffff;
}

html body .bg-theme-burgundy {
  background-color: #97392f;
  color: #ffffff;
}

html body .bg-theme-blue {
  background-color: #80a3af;
  color: #ffffff;
}

html body .bg-theme-green {
  background-color: #79a4a5;
  color: #ffffff;
}

html body .bg-theme-olive {
  background-color: #9e8a51;
  color: #ffffff;
}

html body .bg-theme-brown {
  background-color: #d6ba96;
  color: #ffffff;
}

html body .bg-semitransparent-white {
  background-color: rgba(255, 255, 255, 0.9);
}

/*  */

html body .color-white {
  color: #ffffff;
}

html body .color-black {
  color: #000000;
}

html body .color-gray {
  color: #888888;
}

html body .color-blue {
  color: #4f85b8;
}

html body .color-green {
  color: #87996e;
}

html body .color-theme {
  color: #c98c76;
}

html body .color-theme-blue {
  color: #5e8b99;
}

html body .color-theme-burgundy {
  color: #97392f;
}

html body .color-theme-olive {
  color: #9e8a51;
}

/*  */

.img-wr {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
}

.img-wr img {
  display: block;
  margin: 0 auto 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.img-wr > a {
  display: block;
  overflow: hidden;
  width: 100%;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.img-wr:hover a img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/*  */

.display-inline-block {
  display: inline-block;
  vertical-align: middle;
}

.display-block {
  display: block;
}

.vertical-align-wrapper {
  display: table;
  width: 100%;
  height: 100%;
}

.vertical-align-middle {
  display: table-cell;
  vertical-align: middle;
}

.vertical-align-bottom {
  display: table-cell;
  vertical-align: bottom;
}

/*  */

.slide-item {
  outline: none;
}

/*  */

.bordered-bottom {
  padding: 0 0 20px;
  margin: 0 0 20px;
  position: relative;
  border: none;
}

.bordered-bottom:after {
  width: 80px;
  border-bottom: 4px solid;
  left: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  position: absolute;
}

.text-center.bordered-bottom:after {
  right: 0;
}

body .text-left.bordered-bottom:after {
  right: auto;
}

/*  */

.columns-2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}

/*  */

body .gallery-thumb-item {
  margin: 0 0 15px;
  padding: 0 0 0;
  display: block;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}

.gallery-thumb-item img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.gallery-thumb-item:before {
  position: absolute;
  left: 0;
  right: 0;
  top: -100px;
  bottom: 100%;
  width: 30px;
  height: 30px;
  line-height: 1;
  font-size: 30px;
  color: #ffffff;
  margin: auto;
  text-shadow: 0px 1px 3px #222222;
  font-family: "FontAwesome";
  content: "\f00e";
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gallery-thumb-item[href*="youtube"]:before {
  content: "\f01d";
}

.gallery-thumb-item:hover:before {
  top: 0;
  bottom: 0;
}

/*  */

.slick-dots {
  z-index: 20;
  padding: 0;
}

.slick-dots li {
  width: 18px;
  height: 18px;
  margin: 0 9px;
  padding: 0;
}

.slick-dots li button {
  width: 18px;
  height: 18px;
  padding: 5px;
  background: #c98b75;
  border-radius: 50px;
  border-radius: 50%;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.25);
}

.slick-dots li.slick-active button {
  background: #97392f;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: transparent;
}

.slick-dots li button::before {
  font-size: 13px;
  line-height: 20px;
  opacity: 1;
  color: transparent;
}

/*  */

.block-shadowed {
  box-shadow: 5px 5px 25px 5px rgba(0, 0, 0, 0.15);
}

.block-rounded {
  border-radius: 20px;
}

.block-rounded > a {
  border-radius: inherit;
  overflow: hidden;
}

.block-rounded img {
  border-radius: inherit;
}

.block-rounded .img-wr {
  overflow: hidden;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

/* */

body .padding-top-0 {
  padding-top: 0;
}

body .padding-bottom-0 {
  padding-bottom: 0;
}

body .padding-0 {
  padding: 0;
}

body .margin-top-0 {
  margin-top: 0;
}

body .margin-bottom-0 {
  margin-bottom: 0;
}

body .margin-0 {
  margin: 0;
}

/*  */

.list-style-none {
  padding: 0 0 0;
  margin: 0 0 0;
  list-style: none;
}

/*  */

body .btn-read-more {
  padding: 0 0 0;
  margin: 0 0 0;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

body .btn-read-more:hover {
  opacity: 1;
}

body .btn-read-more:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 0;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid;
  width: 100%;
}

body .btn-read-more:hover:after {
  width: 0;
}

/*  */

body .btn-main {
  padding: 33px 35px 32px;
  margin: 0 auto 0;
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
  width: auto;
  font-style: normal;
  color: #ffffff;
  background: #000000;
  border: none;
  text-align: center;
  position: relative;
  display: inline-block;
  border-radius: 10px;
}

body .btn-main:hover {
  color: #c98c76;
  background: #ffffff;
  box-shadow: 0px 0px 0px 2px;
  opacity: 1;
}

.btn-main.btn-small {
  font-weight: 600;
  padding: 19px 30px 19px;
}

.btn-main.block-rounded {
  border-radius: 20px;
}

/*  */

form {
  margin: 0 0 0;
  padding: 0 0 0;
}

form:after {
  content: "";
  display: block;
  clear: both;
}

form input,
form textarea,
form select {
  display: block;
  margin: 0 0 0;
  padding: 22px 26px 22px;
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
  color: #333333;
  background-color: #ffffff;
  clear: both;
  outline: none;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 10px;
}

form input[type="submit"] {
  margin: 0 0 0;
  width: auto;
}

form input:hover,
form textarea:hover,
form select:hover {
  color: #333333;
  border-color: rgba(0, 0, 0, 0.25);
  opacity: 0.65;
}

form input:focus,
form textarea:focus,
form select:focus {
  color: #333333;
  border-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

form label {
  display: block;
}

*::-webkit-input-placeholder {
  color: #6c6c6c;
  text-indent: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

*:-moz-placeholder {
  color: #6c6c6c;
  text-indent: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

*::-moz-placeholder {
  color: #6c6c6c;
  text-indent: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

*:-ms-input-placeholder {
  color: #6c6c6c;
  text-indent: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

*:focus::-webkit-input-placeholder {
  text-indent: 220px;
  opacity: 0;
}

*:focus::-moz-placeholder {
  text-indent: 220px;
  opacity: 0;
}

*:focus:-moz-placeholder {
  text-indent: 220px;
  opacity: 0;
}

*:focus:-ms-input-placeholder {
  text-indent: 220px;
  opacity: 0;
}

/*  */

body .box-top-banner {
  padding: 0 0 0;
  margin: 0 0 0;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
}

.box-top-banner .slick-dots {
  bottom: 78px;
}

.box-top-banner .img-wr {
  padding: 0 0 0;
  margin: 0 0 0;
}

.box-top-banner .img-overlay {
  padding: 0 0 0;
  margin: 0 0 0;
  position: relative;
  z-index: 10;
}

.box-top-banner .vertical-align-wrapper {
  padding: 0 0 420px;
  min-height: 1065px;
  margin: 0 0 0;
}

.box-top-banner .vertical-align-bottom {
  padding: 0 0 0;
  margin: 0 0 0;
}

.box-top-banner h4 {
  padding: 0 30px 15px 0;
  font-weight: 500;
  line-height: 1.55;
  text-shadow: none;
}

.box-top-banner h1 {
  padding: 0 0 40px;
  line-height: 1.2;
}

.curved-bottom {
  position: relative;
}

.curved-bottom:after {
  content: "";
  display: block;
  width: 100%;
  height: 325px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("img/bg-clip-bottom.png") no-repeat center bottom;
  background-size: 100% auto;
}

/*  */

.service-thumb-item {
  position: relative;
  padding: 0 0 0;
  margin: 0 0 80px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service-thumb-item .img-wr {
  height: 295px;
  overflow: hidden;
  padding: 0 0 0;
  margin: 0 0 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  opacity: 1;
}

.service-thumb-item .text-wr {
  padding: 45px 30px 85px;
  margin: 0 0 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-thumb-item:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  bottom: 0;
  background: #ffffff;
  transition: all 0.5s ease;
  border-radius: inherit;
}

.service-thumb-item .column-equal-height-item {
  box-shadow: inset 0px -250px 100px 0px rgba(0, 0, 0, 0.5);
}

.service-thumb-item:hover .img-wr {
  opacity: 0;
}

.service-thumb-item:hover:before {
  height: 0;
  opacity: 0;
}

.service-thumb-item:hover {
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}

.service-thumb-item a {
  transition: all 0s ease;
}

.service-thumb-item a:hover {
  opacity: 1;
  transition: all 0s ease;
}

.service-thumb-item:hover {
}

.service-thumb-item .img-wr img {
  width: 100%;
}

.service-thumb-item .btn-read-more {
  margin: 40px 30px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.service-thumb-item h3 {
  font-size: 42px;
}

.service-thumb-item h6 {
  line-height: 1.6;
}

.service-thumb-item.bg-transparent {
  color: #ffffff;
}

.service-thumb-item.bg-transparent .text-wr {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.service-thumbs-wr {
  padding: 70px 0 0;
}

/*  */

.block-heading {
  margin: 0 auto 40px;
  padding: 0 0 0;
  max-width: 1080px;
}

.block-heading h2 {
  line-height: 1.2;
  padding: 0 0 40px;
}

.block-heading h2:last-child {
  padding: 0 0 20px;
}

.block-heading h5 + h2 {
  padding-top: 25px;
}

.block-heading h5 + h3 {
  padding-top: 25px;
}

.block-heading h5 {
  line-height: 1.2;
}

.block-heading h4:first-child {
  padding: 0 0 40px;
}

/*  */

.stats-wr {
  padding: 45px 0 30px;
  margin: 0 0 40px;
}

.stat-item {
  margin: 30px 45px 30px;
  padding: 0 0 0;
}

.stat-item h3 {
  padding: 0 0 12px;
}

.stat-item p {
  font-weight: 600;
  letter-spacing: 0.01em;
}

/*  */

.box-portfolio {
  overflow: hidden;
}

.slider-portfolio .slick-list {
  overflow: visible !important;
}

.slider-portfolio {
  max-width: 920px;
  padding: 0 0 0;
  margin: 0 auto 60px;
}

.slider-portfolio .slick-dots {
  bottom: 5px;
}

.slider-portfolio .slide-item {
  padding: 25px 25px 25px;
}

.portfolio-item .img-wr {
  padding: 0 0 0;
  margin: 0 auto 0;
}

.portfolio-item .text-wr {
  padding: 23px 15px 25px;
  margin: 0 auto 0;
  max-width: 530px;
  bottom: -72px;
  position: absolute;
  left: 0;
  right: 0;
  transition: all 1.5s ease;
  opacity: 0;
}

.slick-current.slick-active .portfolio-item .text-wr {
  opacity: 1;
}

.portfolio-item {
  padding: 0 0 0;
  margin: 0 auto 150px;
  position: relative;
}

.portfolio-item h4 {
  padding: 0 0 8px;
}

.portfolio-item h6 {
  padding: 0 0 4px;
  font-weight: 500;
  line-height: 1;
}

.portfolio-item h6 strong {
  font-weight: 600;
}

/*  */

.box-testimonials .bg-theme-green {
  padding: 96px 70px 106px;
  max-width: 1372px;
  margin: 0 auto 0;
}

.testimonials-item {
  padding: 0 20px 0;
  line-height: 1.55;
}

.testimonials-item blockquote {
  padding-bottom: 0;
}

/*  */

.team-thumbs-wr {
  padding: 40px 0 90px;
}

.team-thumb-item .block-rounded {
  border-radius: 10px;
}

.team-thumb-item {
  margin: 0 0 30px;
  padding: 0 0 0;
  position: relative;
}

.team-thumb-item img {
  margin: 0 0 0;
  padding: 0 0 0;
  width: 100%;
  display: block;
  filter: grayscale(100%);
  transition: all 0.6s ease;
}

.team-thumb-item:hover a,
.team-thumb-item a:hover {
  opacity: 1;
}

.team-thumb-item:hover img {
  filter: grayscale(0);
}

.team-thumb-item .img-wr {
  margin: 0 0 0;
  padding: 0 0 0;
}

.team-thumb-item .img-overlay {
  margin: 30px 30px 30px;
  padding: 38px 40px 38px;
  line-height: 1.6;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -300px;
  opacity: 0;
  /*transition: all 0.6s ease;*/
  transition: 0.6s;
}

.team-thumb-item:hover .img-overlay {
  bottom: 0;
  opacity: 1;
}

.team-thumb-item h4 {
  padding: 0 0 0;
}

.team-thumb-item h5 {
  padding: 0 0 25px;
  font-size: 21px;
  font-weight: 600;
}

.team-thumb-item h6 {
  padding: 0 0 0;
}

/*  */

.slider-logos {
  padding: 0 0 50px;
  margin: 0 0 50px;
}

.logo-item {
  margin: 0 auto 0;
  padding: 0 20px 0;
  display: table-cell;
  vertical-align: middle;
  height: 80px;
  width: 300px;
}

.logo-item img {
  display: block;
  margin: 0 auto 0;
  padding: 0 0 0;
  max-height: 80px;
}

/*  */

.box-form {
  padding: 100px 0 80px;
}

.box-form h3 {
  font-size: 42px;
  font-weight: 500;
}

.box-form form {
  max-width: 870px;
  margin: 50px auto 0;
  padding: 0 0 0;
}

form .btn-main {
  min-width: 200px;
}

.input-item {
  margin: 0 auto 35px;
  padding: 0 0 0;
}

textarea {
  min-height: 180px;
}

/*  */

body .box-map {
  min-height: 450px;
  padding: 0 0 0;
  margin: 0 0 0;
}

.box-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: none;
}

/*  */

body .box-heading {
  padding: 0 0 0;
  margin: 0 0 0;
}

.box-heading .vertical-align-wrapper {
  padding: 110px 0 100px;
  margin: 0 0 0;
  height: 600px;
}

.box-heading .color-white {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.box-heading h1 {
  padding: 0 0 8px;
}

.box-heading i {
  margin: 0 0 10px;
  display: inline-block;
}

.box-heading h3 {
  font-size: 42px;
  font-weight: normal;
  padding: 0 0 8px;
}

/*  */

.logo-items-wr .logo-item {
  margin: 50px 20px 50px;
  padding: 0 20px 0;
  display: inline-block;
  vertical-align: middle;
  height: auto;
  width: 230px;
}

/*  */

.services-item {
  padding: 0 0 0;
  margin: 0 0 0;
  font-size: 21px;
  position: relative;
}

.services-item hr {
  height: 7px;
  max-width: 142px;
  padding: 0 0 0;
  margin: 0px 0 22px;
  opacity: 1;
}

.services-item p {
  padding: 0 0 30px;
}

.services-item:after {
  content: "";
  display: block;
  clear: both;
}

.services-item .text-wr {
  padding: 0 0 0;
  margin: 0 0 0;
  width: 50%;
  float: left;
}

.services-item .img-wr {
  padding: 0 0 0;
  margin: 0 0 0;
  width: 50%;
  float: left;
  height: 100%;
  position: absolute;
  left: 50%;
}

.services-item .text-wr-inner {
  padding: 75px 75px 50px;
  margin: 0 0 0 auto;
  max-width: 850px;
}

.services-item li {
  margin: 0 0 25px;
}

.services-item:nth-child(even) .img-wr {
  left: 0;
}

.services-item:nth-child(even) .text-wr {
  float: right;
}

.services-item:nth-child(even) .text-wr-inner {
  margin: 0 0 0 0;
}

/*  */

body .project-thumb-item {
  padding: 0 0 0;
  margin: 0 0 0;
  color: #ffffff;
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 110% auto;
  transition: all 0.3s ease;
}

body .project-thumb-item:hover {
  background-size: 100% auto;
}

.project-thumb-item .img-overlay {
  padding: 30px 80px 25px;
  margin: 0 0 0;
  background: rgba(124, 136, 98, 0.75);
  transition: all 0.5s ease;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}

.project-thumb-item:hover .img-overlay {
  opacity: 1;
}

.project-thumb-item:hover {
  opacity: 1;
}

.project-thumb-item:before {
  display: block;
  padding: 0 0 78%;
  position: relative;
  content: "";
}

.project-thumb-item h3 {
  font-size: 50px;
  padding: 0 0 0;
  font-weight: 600;
}

.project-thumb-item h6 {
  padding: 0 0 30px;
  font-size: inherit;
  font-weight: 400;
}

.project-thumb-item p {
  padding: 0 0 5px;
  font-weight: 500;
}

/*  */

.isotope-grid-wr button {
  padding: 0 0 13px;
  margin: 0 15px 0;
  font-weight: 600;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
  position: relative;
  display: inline-block;
}

.isotope-grid-wr button.active {
  font-weight: 700;
}

.isotope-grid-wr button:hover {
  opacity: 1;
}

.isotope-grid-wr button:after {
  border-bottom: 7px solid;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0 0 0;
  padding: 0 0 0;
  width: 0;
  transition: all 0.3s ease;
  content: "";
}

.isotope-grid-wr button.active:after,
.isotope-grid-wr button:hover:after {
  width: 100%;
}

.isotope-grid-wr .filter-button-group {
  padding: 60px 0 100px;
}

/*  */

.contact-items-wr {
  padding: 90px 0 90px;
}

.contact-item {
  width: 400px;
  padding: 0 0 0;
  margin: 0 10px 50px;
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.contact-item i {
  display: block;
  width: 310px;
  height: 310px;
  border-radius: 500px;
  border-radius: 50%;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.contact-item i img {
  max-height: 145px;
  display: block;
  margin: auto;
}

.contact-item h5 {
  padding: 0 0 1px;
}

.contact-item .img-wr {
  display: table;
  margin: 0 auto 74px;
  padding: 0 0 0;
}

/*  */

.block-form {
  padding: 85px 80px 30px;
  margin: 146px auto -85px;
  max-width: 1150px;
  position: relative;
  z-index: 5;
}

.block-form h3 {
  font-size: 42px;
  padding: 0 0 43px;
}

.block-form input,
.block-form textarea,
.block-form select {
  padding: 16px 30px 16px;
  background-color: #f2f2f2;
}

.block-form .input-checkbox .checkbox-label:before {
  background: #f2f2f2;
  box-shadow: none;
}

.block-form .input-checkbox {
  margin: 0 0 0;
}

/*  */

.block-heading.text-left {
  max-width: 100%;
}

.block-heading hr {
  height: 5px;
  opacity: 1;
  margin: 20px auto 45px;
  padding: 0 0 0;
  max-width: 80px;
  display: block;
}

.block-heading.text-left hr {
  margin-left: 0;
}

/*  */

.portfolio-item-info {
  padding: 50px 0 80px;
}

.portfolio-item-info h5 {
  padding: 0 0 30px;
}

.portfolio-item-info li {
  font-weight: 700;
  padding: 0 0 35px;
}

.portfolio-images {
  padding: 0 0 80px;
}

.portfolio-images .img-item {
  padding: 0 0 0;
  margin: 0 0 30px;
  position: relative;
}

.portfolio-images .img-item img {
  display: block;
  padding: 0 0 0;
  margin: 0 0 0;
  width: 100%;
}

.btn-wr h4 {
  padding: 0 0 65px;
  font-weight: 400;
}

body .btn-wr .btn-main {
  min-width: 300px;
}

/*  */

/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
  padding: 106px 0 0;
  line-height: 1.97;
  margin: 0 0 0;
  color: #7d634b;
  background: #dfd1c4;
  overflow: hidden;
}

footer a {
  display: inline-block;
}

footer p {
  padding: 0 0 0;
  font-weight: 500;
}

footer p strong {
  font-weight: 600;
}

footer h5 {
  padding: 0 0 25px;
}

footer h5 span {
  font-weight: 500;
}

footer h5 i {
  margin: 0 0 0 20px;
  display: inline-block;
  vertical-align: middle;
}

footer hr {
  margin: 50px 0 33px;
  height: 3px;
  opacity: 1;
}

footer .display-inline-block {
  margin: 15px 10px 15px;
}

body .footer-logo {
  padding: 0 0 0;
  margin: 0 0 30px;
  max-width: 312px;
  display: inline-block;
}

footer .row {
  padding: 0 0 80px;
}

.btn-main.display-block {
  display: block;
  width: 100%;
}

footer a.btn-main.btn-small {
  margin: 0 auto 40px;
  max-width: 394px;
}

.form-subscribe {
  max-width: 390px;
  margin: 0 auto 0;
  padding: 0 0 0;
}

.form-subscribe input {
  padding: 16px 26px 18px;
}

.input-checkbox {
  font-size: 19px;
  font-weight: normal;
  margin: 30px auto 30px;
  padding: 0 0 0;
  text-align: left;
  cursor: pointer;
}

.input-checkbox input {
  display: none;
}

.input-checkbox .checkbox-label {
  position: relative;
  padding: 0 0 0;
  margin: 0 0 0;
  display: block;
}

.input-checkbox .checkbox-label:before {
  padding: 0 0 0;
  margin: -2px 15px 0 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 5px;
  background: #ffffff;
  text-align: center;
  color: #97392f;
  font-size: 20px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  font-family: "FontAwesome";
  box-shadow: 5px 5px 25px 5px rgba(0, 0, 0, 0.15);
}

.input-checkbox input:checked + .checkbox-label:before {
  content: "\f00c";
}

/* 5 - END of footer ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media (min-width: 1710px) {
  .container-lg {
    max-width: 1680px;
  }
}

/* ----------------------------------------------------------------------------------- */

@media (min-width: 1200px) {
  .container {
    /*max-width: 1060px;*/
  }
}

/* ----------------------------------------------------------------------------------- */

@media (min-width: 1230px) {
  .container {
    /*max-width: 1464px;*/
    /*max-width: 1320px;*/
    max-width: 1200px;
  }
  header .container {
    max-width: 1380px;
  }
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 5999px) {
  body {
    font-size: 20px;
    line-height: 1.6;
  }
  h1 {
    padding: 0 0 15px;
    font-size: 55px;
  }
  h2 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 55px;
  }
  h3 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 48px;
  }
  h4 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 27px;
  }
  h5 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 24px;
  }
  h6 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 17px;
  }
  blockquote {
    padding: 0 0 15px;
    font-size: inherit;
  }
  .box-wr {
    padding: 90px 0 90px;
  }
  body .social-links a {
    margin: 0 0 0 16px;
    font-size: 20px;
    line-height: 1;
  }
  .header-top {
    padding: 14px 0 11px;
    font-size: 17px;
  }
  /* 19/02/2024
  header + * {
    padding-top: 52px;
  }*/
  header + * {
    padding-top: 0px;
  }
  .header-top a i:not(:last-child) {
    margin: -4px 14px 0 0;
    font-size: 150%;
  }
  .header-top a {
    margin: 0 45px 0 0;
  }
  .logo {
    margin: 0 0 0 0;
    max-width: 230px;
  }
  .header-main {
    padding: 18px 0 18px;
  }
  .navbar .navbar-nav .nav-item a {
    padding: 10px 0 8px;
    margin: 0 0 0 40px;
    font-size: 20px;
    line-height: 25px;
  }
  .box-heading .vertical-align-wrapper {
    padding: 60px 0 50px;
    height: 450px;
  }
  .box-heading h3 {
    font-size: 31px;
    padding: 0 0 8px;
  }
  .box-heading i {
    margin: 0 0 10px;
    max-width: 62px;
  }
  .block-heading h5 + h3 {
    padding-top: 15px;
  }
  .block-heading hr {
    height: 3px;
    margin: 13px auto 35px;
    max-width: 60px;
  }
  .block-heading {
    margin: 0 auto 36px;
    max-width: 900px;
  }
  .portfolio-item-info {
    padding: 40px 0 60px;
  }
  .portfolio-item-info li {
    padding: 0 0 30px;
  }
  .portfolio-images {
    padding: 0 0 60px;
  }
  .btn-main.block-rounded {
    border-radius: 15px;
  }
  .block-rounded {
    border-radius: 15px;
  }
  body .btn-wr .btn-main {
    min-width: 236px;
  }
  body .btn-main {
    padding: 24px 30px 24px;
    margin: 0 auto 0;
    font-size: 20px;
    line-height: 30px;
  }
  .btn-wr h4 {
    padding: 0 0 50px;
  }
  body .footer-logo {
    margin: 0 0 20px;
    max-width: 255px;
  }
  footer h5 i {
    margin: 0 0 0 16px;
    max-width: 44px;
  }
  footer .row {
    padding: 0 0 60px;
  }
  footer {
    padding: 80px 0 0;
    line-height: 1.97;
  }
  footer h5 {
    padding: 0 0 20px;
  }
  footer a.btn-main.btn-small {
    margin: 0 auto 25px;
    max-width: 290px;
  }
  .btn-main.btn-small {
    font-size: 16px;
    padding: 11px 25px 11px;
  }
  footer .display-inline-block {
    margin: 10px 5px 10px;
  }
  footer .display-inline-block img {
    max-height: 130px;
    max-width: 130px;
  }
  form input,
  form textarea,
  form select {
    padding: 16px 24px 16px;
    font-size: 20px;
    line-height: 30px;
    border-radius: 8px;
  }
  .form-subscribe input {
    padding: 10px 25px 10px;
  }
  .input-checkbox {
    font-size: 14px;
    margin: 20px auto 20px;
  }
  .input-checkbox .checkbox-label:before {
    margin: -2px 13px 0 0;
    width: 26px;
    height: 26px;
    line-height: 26px;
    border-radius: 3px;
    font-size: 16px;
  }
  .form-subscribe {
    max-width: 300px;
  }
  body .social-links-circle a {
    padding: 0 0 0;
    margin: 0 2px 0 0;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  footer hr {
    margin: 35px 0 20px;
    height: 2px;
  }
  .box-top-banner h1 {
    padding: 0 0 30px;
  }
  .box-top-banner .vertical-align-wrapper {
    padding: 0 0 340px;
    min-height: 870px;
    margin: 0 0 0;
  }
  .slick-dots li button {
    width: 14px;
    height: 14px;
  }
  .slick-dots li {
    width: 14px;
    height: 14px;
    margin: 0 7px;
  }
  .box-top-banner .slick-dots {
    bottom: 60px;
  }
  .block-heading h2 {
    padding: 0 0 40px;
  }
  .service-thumbs-wr {
    padding: 60px 0 0;
  }
  .service-thumb-item .img-wr {
    height: 240px;
  }
  .service-thumb-item h3 {
    font-size: 34px;
  }
  .service-thumb-item .text-wr {
    padding: 35px 25px 65px;
    margin: 0 0 0;
  }
  .service-thumb-item .btn-read-more {
    margin: 30px 25px;
  }
  body .btn-read-more {
    font-size: 17px;
  }
  .service-thumb-item {
    margin: 0 0 55px;
  }
  .box-stats .container {
    max-width: 1360px;
  }
  .stats-wr {
    padding: 25px 0 15px;
    margin: 0 0 20px;
  }
  .stat-item {
    margin: 25px 50px 25px;
    padding: 0 0 0;
  }
  .block-heading h4:first-child {
    padding: 0 0 35px;
  }
  .slider-portfolio {
    max-width: 780px;
    margin: 0 auto 40px;
  }
  .portfolio-item .text-wr {
    padding: 16px 15px 18px;
    max-width: 400px;
    bottom: -55px;
  }
  .portfolio-item {
    margin: 0 auto 110px;
  }
  .box-testimonials .bg-theme-green {
    padding: 80px 65px 90px;
    max-width: 1125px;
  }
  .box-testimonials .img-wr {
    padding: 0 15px 0;
  }
  .slider-portfolio .slide-item {
    padding: 20px 35px 20px;
  }
  .testimonials-item {
    padding: 0 25px 0;
    line-height: 1.55;
  }
  .box-testimonials {
    padding: 85px 0 35px;
  }
  .team-thumbs-wr {
    padding: 20px 0 60px;
  }
  .box-form h3 {
    font-size: 34px;
  }
  .box-form form {
    max-width: 715px;
    margin: 35px auto 0;
  }
  .input-item {
    margin: 0 auto 28px;
  }
  textarea {
    min-height: 150px;
  }
  body .box-map {
    min-height: 375px;
  }
  .block-heading h5 + h2 {
    padding-top: 20px;
  }
  .team-thumb-item .img-overlay {
    margin: 25px 25px 25px;
    padding: 25px 30px 30px;
  }
  .team-thumb-item h5 {
    padding: 0 0 20px;
    font-size: 16px;
  }
  .logo-items-wr .logo-item {
    margin: 35px 5px 35px;
    width: 200px;
  }
  .logo-item img {
    max-height: 60px;
  }
  .contact-items-wr {
    padding: 65px 0 65px;
  }
  .contact-item i {
    width: 255px;
    height: 255px;
  }
  .contact-item i img {
    max-height: 90px;
    max-width: 90px;
  }
  .contact-item {
    width: 300px;
    margin: 0 20px 40px;
  }
  .contact-item .img-wr {
    display: table;
    margin: 0 auto 60px;
  }
  .block-form {
    padding: 70px 65px 30px;
    margin: 0 auto -50px;
    max-width: 940px;
  }
  .block-form h3 {
    font-size: 34px;
    padding: 0 0 35px;
  }
  .isotope-grid-wr .filter-button-group {
    padding: 30px 0 65px;
  }
  .project-thumb-item h6 {
    padding: 0 0 20px;
  }
  .project-thumb-item h3 {
    font-size: 37px;
  }
  .project-thumb-item .img-overlay {
    padding: 25px 40px 20px;
  }
  .services-item {
    padding: 0 0 0;
    margin: 0 0 0;
    font-size: 15px;
  }
  .services-item .text-wr-inner {
    padding: 55px 55px 40px;
    margin: 0 0 0 auto;
    max-width: 600px;
  }
  .services-item hr {
    height: 5px;
    max-width: 106px;
    margin: 0px 0 15px;
  }
  .services-item p {
    padding: 0 0 20px;
  }
  .services-item li {
    margin: 0 0 15px;
  }
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1499px) {
  body {
    font-size: 18px;
    line-height: 1.6;
  }
  h1 {
    padding: 0 0 15px;
    font-size: 50px;
  }
  h2 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 50px;
  }
  h3 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 43px;
  }
  h4 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 25px;
  }
  h5 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 22px;
  }
  h6 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 15px;
  }
  blockquote {
    padding: 0 0 15px;
    font-size: inherit;
  }
  .box-wr {
    padding: 85px 0 85px;
  }
  body .social-links a {
    margin: 0 0 0 12px;
    font-size: 20px;
    line-height: 1;
  }
  .header-top {
    padding: 12px 0 11px;
    font-size: 16px;
  }
  header + * {
    padding-top: 48px;
  }
  .header-top a i:not(:last-child) {
    margin: -4px 10px 0 0;
    font-size: 140%;
  }
  .header-top a {
    margin: 0 45px 0 0;
  }
  .logo {
    margin: 0 0 0 0;
    max-width: 210px;
  }
  .header-main {
    padding: 20px 0 20px;
  }
  .navbar .navbar-nav .nav-item a {
    padding: 10px 0 8px;
    margin: 0 0 0 40px;
    font-size: 19px;
    line-height: 25px;
  }
  .box-heading .vertical-align-wrapper {
    padding: 60px 0 50px;
    height: 450px;
  }
  .box-heading h3 {
    font-size: 31px;
    padding: 0 0 8px;
  }
  .box-heading i {
    margin: 0 0 10px;
    max-width: 62px;
  }
  .block-heading h5 + h3 {
    padding-top: 15px;
  }
  .block-heading hr {
    height: 3px;
    margin: 13px auto 35px;
    max-width: 60px;
  }
  .block-heading {
    margin: 0 auto 30px;
    max-width: 850px;
  }
  .portfolio-item-info {
    padding: 40px 0 60px;
  }
  .portfolio-item-info li {
    padding: 0 0 30px;
  }
  .portfolio-images {
    padding: 0 0 60px;
  }
  .btn-main.block-rounded {
    border-radius: 13px;
  }
  .block-rounded {
    border-radius: 13px;
  }
  body .btn-wr .btn-main {
    min-width: 236px;
  }
  body .btn-main {
    padding: 20px 30px 20px;
    margin: 0 auto 0;
    font-size: 20px;
    line-height: 30px;
  }
  .btn-wr h4 {
    padding: 0 0 50px;
  }
  body .footer-logo {
    margin: 0 0 20px;
    max-width: 235px;
  }
  footer h5 i {
    margin: 0 0 0 16px;
    max-width: 44px;
  }
  footer .row {
    padding: 0 0 60px;
  }
  footer {
    padding: 80px 0 0;
    line-height: 1.97;
  }
  footer h5 {
    padding: 0 0 20px;
  }
  footer a.btn-main.btn-small {
    margin: 0 auto 25px;
    max-width: 290px;
  }
  .btn-main.btn-small {
    font-size: 19px;
    padding: 11px 25px 11px;
  }
  footer .display-inline-block {
    margin: 10px 5px 10px;
  }
  footer .display-inline-block img {
    max-height: 130px;
    max-width: 130px;
  }
  form input,
  form textarea,
  form select {
    padding: 12px 20px 12px;
    font-size: 18px;
    line-height: 30px;
    border-radius: 6px;
  }
  .form-subscribe input {
    padding: 10px 25px 10px;
  }
  .input-checkbox {
    font-size: 14px;
    margin: 20px auto 20px;
  }
  .input-checkbox .checkbox-label:before {
    margin: -2px 13px 0 0;
    width: 26px;
    height: 26px;
    line-height: 26px;
    border-radius: 3px;
    font-size: 16px;
  }
  .form-subscribe {
    max-width: 300px;
  }
  body .social-links-circle a {
    padding: 0 0 0;
    margin: 0 2px 0 0;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  footer hr {
    margin: 35px 0 20px;
    height: 2px;
  }
  .box-top-banner h1 {
    padding: 0 0 30px;
  }
  .box-top-banner .vertical-align-wrapper {
    padding: 0 0 300px;
    min-height: 790px;
    margin: 0 0 0;
  }
  .slick-dots li button {
    width: 13px;
    height: 13px;
  }
  .slick-dots li {
    width: 13px;
    height: 13px;
    margin: 0 6px;
  }
  .box-top-banner .slick-dots {
    bottom: 50px;
  }
  .block-heading h2 {
    padding: 0 0 30px;
  }
  .service-thumbs-wr {
    padding: 50px 0 0;
  }
  .service-thumb-item .img-wr {
    height: 220px;
  }
  .service-thumb-item h3 {
    font-size: 32px;
  }
  .service-thumb-item .text-wr {
    padding: 30px 20px 55px;
    margin: 0 0 0;
  }
  .service-thumb-item .btn-read-more {
    margin: 25px 20px;
  }
  body .btn-read-more {
    font-size: 16px;
  }
  .service-thumb-item {
    margin: 0 0 50px;
  }
  .stats-wr {
    padding: 25px 0 15px;
    margin: 0 0 20px;
  }
  .stat-item {
    margin: 25px 30px 25px;
    padding: 0 0 0;
  }
  .block-heading h4:first-child {
    padding: 0 0 35px;
  }
  .slider-portfolio {
    max-width: 700px;
    margin: 0 auto 40px;
  }
  .portfolio-item .text-wr {
    padding: 16px 15px 18px;
    max-width: 400px;
    bottom: -55px;
  }
  .portfolio-item {
    margin: 0 auto 110px;
  }
  .box-testimonials .bg-theme-green {
    padding: 75px 60px 90px;
    max-width: 1030px;
  }
  .testimonials-item {
    padding: 0 20px 0;
    line-height: 1.75;
  }
  .box-testimonials {
    padding: 85px 0 35px;
  }
  .team-thumbs-wr {
    padding: 20px 0 60px;
  }
  .box-form h3 {
    font-size: 31px;
  }
  .box-form form {
    max-width: 656px;
    margin: 30px auto 0;
  }
  .input-item {
    margin: 0 auto 30px;
  }
  textarea {
    min-height: 130px;
  }
  body .box-map {
    min-height: 340px;
  }
  .block-heading h5 + h2 {
    padding-top: 15px;
  }
  .team-thumb-item .img-overlay {
    margin: 25px 25px 25px;
    padding: 25px 30px 30px;
  }
  .team-thumb-item h5 {
    padding: 0 0 20px;
    font-size: 18px;
  }
  .logo-items-wr .logo-item {
    margin: 35px 5px 35px;
    width: 200px;
  }
  .logo-item img {
    max-height: 60px;
  }
  .contact-items-wr {
    padding: 65px 0 65px;
  }
  .contact-item i {
    width: 240px;
    height: 240px;
  }
  .contact-item i img {
    max-height: 90px;
    max-width: 90px;
  }
  .contact-item {
    width: 300px;
    margin: 0 10px 40px;
  }
  .contact-item .img-wr {
    display: table;
    margin: 0 auto 45px;
  }
  .block-form {
    padding: 65px 65px 30px;
    margin: 0 auto -50px;
    max-width: 860px;
  }
  .block-form h3 {
    font-size: 31px;
    padding: 0 0 35px;
  }
  .isotope-grid-wr .filter-button-group {
    padding: 30px 0 65px;
  }
  .project-thumb-item h6 {
    padding: 0 0 20px;
  }
  .project-thumb-item h3 {
    font-size: 37px;
  }
  .project-thumb-item .img-overlay {
    padding: 25px 40px 20px;
  }
  .services-item {
    padding: 0 0 0;
    margin: 0 0 0;
    font-size: 15px;
  }
  .services-item .text-wr-inner {
    padding: 55px 55px 40px;
    margin: 0 0 0 auto;
    max-width: 600px;
  }
  .services-item hr {
    height: 5px;
    max-width: 106px;
    margin: 0px 0 15px;
  }
  .services-item p {
    padding: 0 0 20px;
  }
  .services-item li {
    margin: 0 0 15px;
  }
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1199px) {
  body {
    font-size: 15px;
    line-height: 1.6;
  }
  h1 {
    padding: 0 0 15px;
    font-size: 40px;
  }
  h2 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 40px;
  }
  h3 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 35px;
  }
  h4 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 22px;
  }
  h5 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 20px;
  }
  h6 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 13px;
  }
  blockquote {
    padding: 0 0 15px;
    font-size: inherit;
  }
  .navbar .navbar-nav .nav-item a {
    padding: 10px 0 8px;
    margin: 0 0 0 25px;
    font-size: 18px;
    line-height: 25px;
  }
  .header-top {
    padding: 13px 0 12px;
    font-size: 14px;
  }
  .header-top a {
    margin: 0 25px 0 0;
  }
  .logo {
    margin: 0 0 0 0;
    max-width: 195px;
  }
  .box-top-banner .vertical-align-wrapper {
    padding: 0 0 250px;
    min-height: 650px;
  }
  .box-top-banner h1 {
    padding: 0 0 15px;
  }
  .service-thumbs-wr {
    padding: 0 0 0;
  }
  .service-thumb-item h3 {
    font-size: 25px;
  }
  .service-thumb-item .img-wr {
    height: 190px;
  }
  .service-thumb-item {
    margin: 0 0 30px;
  }
  .portfolio-item .text-wr {
    padding: 16px 15px 18px;
    max-width: 290px;
    bottom: -50px;
  }
  .box-heading h3 {
    font-size: 25px;
    padding: 0 0 8px;
  }
  .box-heading .vertical-align-wrapper {
    padding: 60px 0 30px;
    height: 380px;
  }
  .block-heading {
    margin: 0 auto 30px;
    max-width: 650px;
  }
  .contact-item i {
    width: 200px;
    height: 200px;
  }
  .contact-item .img-wr {
    margin: 0 auto 30px;
  }
  .contact-item {
    width: 250px;
    margin: 0 10px 40px;
  }
  .contact-items-wr {
    padding: 30px 0 30px;
  }
  .portfolio-item {
    margin: 0 auto 100px;
  }
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
  h1 {
    padding: 0 0 15px;
    font-size: 30px;
  }
  h2 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 30px;
  }
  h3 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 25px;
  }
  h4 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 20px;
  }
  h5 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 18px;
  }
  h6 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 12px;
  }
  blockquote {
    padding: 0 0 15px;
    font-size: inherit;
  }
  .box-wr {
    padding: 50px 0 50px;
  }
  .header-top a {
    margin: 0 5px 0 0;
  }
  .header-top a i:not(:last-child) {
    margin: -2px 0 0;
    font-size: 20px;
    line-height: 1;
  }
  body .social-links a {
    margin: 0 0 0 5px;
    font-size: 20px;
    line-height: 1;
  }
  .header-top {
    padding: 8px 0 8px;
    font-size: 12px;
  }
  header + * {
    padding-top: 35px;
  }
  .logo {
    margin: 3px 0 0;
    max-width: 160px;
  }
  .header-main {
    padding: 10px 0 10px;
  }
  .navbar {
    position: static;
  }
  .navbar-collapse {
    margin: 0 0 0;
    padding: 0 0 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 99%;
    background: #ffffff;
    text-align: center;
  }
  .navbar .navbar-nav .nav-item a {
    padding: 10px 0 10px;
    margin: 10px 0 10px;
    font-size: 25px;
    line-height: 25px;
  }
  .navbar-nav {
    margin: 0 0 0;
    padding: 50px 0 50px;
    height: 90vh;
  }
  .block-heading h2 {
    padding: 0 0 20px;
  }
  .box-top-banner .vertical-align-wrapper {
    padding: 0 0 160px;
    min-height: 550px;
  }
  .service-thumb-item .img-wr {
    height: 140px;
  }
  .service-thumb-item h3 {
    font-size: 20px;
  }
  .stat-item {
    margin: 10px 10px 10px;
    padding: 0 0 0;
  }
  .block-heading h4:first-child {
    padding: 0 0 20px;
  }
  .block-heading h2:last-child {
    padding: 0 0 10px;
  }
  .block-heading {
    margin: 0 auto 20px;
    max-width: 450px;
  }
  .team-thumb-item .img-overlay {
    margin: 20px 20px 20px;
    padding: 20px 20px 20px;
  }
  .team-thumb-item h5 {
    padding: 0 0 10px;
    font-size: 15px;
  }
  .team-thumbs-wr {
    padding: 10px 0 30px;
  }
  body .btn-main {
    padding: 15px 20px 15px;
    margin: 0 auto 0;
    font-size: 16px;
    line-height: 30px;
  }
  .slider-logos {
    padding: 0 0 20px;
    margin: 0 0 50px;
  }
  .box-form h3 {
    font-size: 25px;
  }
  form input,
  form textarea,
  form select {
    padding: 12px 20px 12px;
    font-size: 16px;
    line-height: 30px;
    border-radius: 6px;
  }
  footer {
    padding: 80px 0 0;
    line-height: 1.97;
    font-size: 12px;
  }
  .btn-main.btn-small {
    font-size: 14px;
    padding: 10px 20px 10px;
  }
  footer h5 {
    padding: 0 0 15px;
  }
  footer {
    padding: 50px 0 0;
    line-height: 1.97;
    font-size: 12px;
  }
  footer .row {
    padding: 0 0 30px;
  }
  .back-to-top {
    width: 24px;
    height: 24px;
    background-size: contain;
  }
  footer h5 i {
    margin: 0 0 0 10px;
    max-width: 35px;
  }
  .box-heading h3 {
    font-size: 22px;
  }
  .box-heading .vertical-align-wrapper {
    padding: 60px 0 30px;
    height: 300px;
  }
  .block-heading h5 + h2 {
    padding-top: 5px;
  }
  .contact-item {
    width: 200px;
    margin: 0 10px 40px;
  }
  .contact-items-wr {
    padding: 20px 0 20px;
  }
  .block-form {
    padding: 30px 31px 5px;
    margin: 0 auto 50px;
    max-width: 860px;
  }
  .portfolio-images {
    padding: 0 0 20px;
  }
  .btn-wr h4 {
    padding: 0 0 30px;
  }
  .project-thumb-item .img-overlay {
    padding: 15px 20px 15px;
    line-height: 1;
  }
  .project-thumb-item h3 {
    font-size: 30px;
  }
  .services-item {
    padding: 0 0 0;
    margin: 0 0 0;
    font-size: 13px;
  }
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
    line-height: 1.6;
  }
  h1 {
    padding: 0 0 15px;
    font-size: 30px;
  }
  h2 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 28px;
  }
  h3 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 23px;
  }
  h4 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 18px;
  }
  h5 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 16px;
  }
  h6 {
    margin: 0 0 0;
    padding: 0 0 15px;
    font-size: 11px;
  }
  blockquote {
    padding: 0 0 15px;
    font-size: inherit;
  }
  .box-top-banner .vertical-align-wrapper {
    padding: 0 0 100px;
    min-height: 450px;
  }
  .box-top-banner .slick-dots {
    bottom: 0;
  }
  .service-thumb-item .img-wr {
    height: auto;
  }
  .column-equal-height-item {
    height: auto !important;
  }
  .service-thumb-item {
    margin: 0 0 15px;
    min-height: 400px;
  }
  .slider-portfolio .slide-item {
    padding: 10px 15px 20px;
  }
  .portfolio-item .text-wr {
    padding: 16px 15px 18px;
    max-width: 220px;
    bottom: -50px;
  }
  .box-testimonials .bg-theme-green {
    padding: 40px 35px 90px;
  }
  .testimonials-item {
    padding: 30px 0 0;
  }
  .box-testimonials {
    padding: 50px 0 15px;
  }
  .team-thumb-item {
    margin: 0 0 15px;
  }
  footer {
    padding: 50px 0 0;
    line-height: 1.97;
    font-size: 12px;
    text-align: center;
  }
  footer .text-left,
  footer .text-right {
    text-align: center;
  }
  .box-heading h3 {
    font-size: 20px;
  }
  .logo-item img {
    max-height: 40px;
  }
  .logo-items-wr .logo-item {
    margin: 20px 5px 20px;
    width: 145px;
  }
  .block-heading hr {
    height: 3px;
    margin: 5px auto 25px;
    max-width: 60px;
  }
  .block-heading h5 + h3 {
    padding-top: 10px;
  }
  .portfolio-item-info {
    padding: 0 0 20px;
  }
  .portfolio-item-info h5 {
    padding: 0 0 5px;
  }
  .portfolio-images .img-item {
    padding: 0 0 0;
    margin: 0 0 15px;
  }
  footer h5 {
    padding: 15px 0 15px;
  }
  footer .row {
    padding: 0 0 15px;
  }
  body .social-links-circle {
    padding: 30px 0 0;
    margin: 0 0 0;
  }
  .isotope-grid-wr button:after {
    border-bottom: 3px solid;
    bottom: 5px;
  }
  .isotope-grid-wr .filter-button-group {
    padding: 10px 0 40px;
  }
  .services-item .text-wr {
    padding: 0 0 0;
    margin: 0 0 0;
    width: auto;
    float: none;
  }
  .services-item .text-wr-inner {
    padding: 40px 30px 30px;
    margin: 0 auto 0;
    max-width: 600px;
  }
  .services-item .img-wr {
    padding: 0 0 0;
    margin: 0 0 0;
    width: auto;
    float: none;
    height: auto;
    position: relative;
    left: 0;
  }
  .services-item .img-wr:before {
    padding: 0 0 80%;
    margin: 0 0 0;
    content: "";
    display: block;
    position: relative;
  }
  .services-item:nth-child(even) .text-wr {
    float: none;
  }
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 575px) {
  .input-item {
    margin: 0 auto 20px;
  }
}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
