body {
  background-color: #fff;
  color: #222222;
  font-size: 16px;
  font-family: "Lato", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

a {
  text-decoration: none;
}

p {
  color: #222222;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 20px;
}

.btn {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 15px 40px;
  text-transform: uppercase;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.btn-default:hover {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.fa {
  font-size: 16px;
}

.to-top {
  position: fixed;
  display: none;
  background: #222222;
  line-height: 1;
  color: #fff;
  padding: 7px 12px 13px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

.to-top:focus {
  color: #fff;
  opacity: 0.6;
}

.to-top:hover {
  color: #fff;
  opacity: 0.6;
}

#header {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 80px;
  z-index: 3;
  transition: all 0.5s ease;
  padding: 10px 25px;
}

#header #logo {
  padding: 0;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

.scroll-header {
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

/*** Nav Menu ***/
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

#nav-menu-wrap {
  float: right;
  margin: 5px 0 0 0;
}

@media (max-width: 1024px) {
  #nav-menu-wrap {
    display: none;
  }
}

.nav-menu a {
  padding: 0;
  text-decoration: none;
  display: inline-block;
  color: #222222;
  opacity: 0.6;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  outline: none;
  letter-spacing: 0;
  transition: 0.3s;
}

.nav-menu li > a:hover {
  opacity: 0.9;
}

.nav-menu li:hover > a:not([href^="tel"]):after {
  left: 0;
  width: 100%;
}
.nav-menu li > a:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 1px;
  margin-top: 1px;
  background: #000000;
  transition: .3s all ease;
}

.nav-menu > li {
  margin: 18px 8px 8px 8px;
  text-transform: uppercase;
}

.nav-menu ul {
  margin: 0;
  padding: 10px;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 5px 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 14px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #222222;
}

.nav-menu ul ul {
  margin: 0;
}

/*** Mobile Nav ***/
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 4px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  font-size: 28px;
}

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 1111;
  background: #222222;
  opacity: 0.8;
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
  text-transform: uppercase;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 14px;
  overflow: hidden;
  padding: 10px 25px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
}

#mobile-nav ul li a:hover {
  opacity: 0.8;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #222222;
}

#mobile-nav ul .menu-item-active {
  color: #222222;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #mobile-nav {
  left: 0;
}

.mobile-nav-active #mobile-nav-toggle i {
  color: #fff;
}

#about-us img {
  max-width: 100%;
}

/*** Contact Section **/

#contact {
  background: #fff;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #222222;
  color: #fff;
  line-height: 1;
  padding: 6px 0 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: #55b03f;
  color: #fff;
}

#mess {
  color: #222222;
  border: 1px solid #222222;
  text-align: center;
  padding: 50px;
  font-weight: 600;
}

.errHint {
  color: red;
  display: none;
  font-size: 12px;
}

#msgform input,
#msgform textarea {
  border: 1px solid #222222;
  padding: 14px;
  border-radius: 0;
}

#msgform button[type="submit"] {
  background: #222222;
  padding: 14px;
  color: #fff;
  width: 210px;
}

#msgform button[type="submit"]:hover {
  opacity: 0.8;
}

.copyrights {
  margin: 20px 0;
  text-align: center;
  font-size: 14px;
}


#banner {
  background: url(../img/banner.png) center bottom no-repeat;
  background-size: cover;
  height: 380px;
  position: relative;
}

.banner-heading {
  position: absolute;
  bottom: 100px;
  font-family: "Futura";
  font-style: normal;
  font-weight: bold;
  color: #FFFFFF;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  text-shadow: 2px 3px 4px #555;
}

.banner-heading h1 {
  font-size: 64px;
}

.banner-heading h2 {
  font-size: 24px;
}

.center-block {
  display: block !important;
  margin-left: auto;
  margin-right: auto;
}

.section-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.w100 {
  width: 100%;
}

.mt30 {
  margin-top: 30px;
}


.mt60 {
  margin-top: 60px;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

h3 {
  font-family: "Futura";
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #222222;
  margin-bottom: 20px;
}

h3 span {
  position: relative;
}

h3 span:after {
  content: '';
  position: absolute;
  top: 110%;
  left: 0;
  width: 50px;
  height: 2px;
  margin-top: 1px;
  background: #222222;
}

h4 {
  font-family: "Lato";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #222222;
  margin-bottom: 40px;
}

.descr,
#scope img,
#about img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.bg-col {
  background: #FAFAFA;
}

#icon-gallery {
  background-image: url(../img/icon-gallery.svg);
}
#icon-dealer {
  background-image: url(../img/icon-dealer.svg);
}
#icon-artist {
  background-image: url(../img/icon-artist.svg);
}
#icon-museum {
  background-image: url(../img/icon-museum.svg);
}
#icon-private {
  background-image: url(../img/icon-private.svg);
}
#icon-collector {
  background-image: url(../img/icon-collector.svg);
}

#services .icon {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px;
  width: 48px;
  height: 43px;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.icon {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 34px;
  line-height: 56px;
  font-style: normal;
}

.sqr {
  height: 120px;
  width: 120px;
  border: 1px solid #222222;
  box-sizing: border-box;
  margin: auto;
}

.serv-descr {
  font-family: "Futura", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  margin-top: 24px;
  text-align: center;
}

.sqr-wrap {
  margin-top: 40px;
  margin-bottom: 40px;
}

.quote-open {
  font-weight: 500;
  font-size: 40px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.quote {
  position: relative;
  font-family: "Lato";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  padding: 20px 20px 20px 40px;
  border: 1px solid #000000;
}

.form-control:focus {
  box-shadow: 0 0 0 0.1rem rgba(0,0,0,.15);
}


@media (max-width: 576px) {
  .banner-heading h1 {
    font-size: 36px;
  }

  .banner-heading h2 {
    font-size: 16px;
    margin-top: 16px;
  }

  .banner-heading {
    bottom: 30px;
  }

  .section-60 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  #banner {
    height: 580px;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .banner-heading h1 {
    font-size: 48px;
  }

  .banner-heading h2 {
    font-size: 20px;
  }

  .banner-heading {
    bottom: 50px;
  }

  .section-60 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (min-width: 768px) {
  #banner {
    height: 780px;
  }
}

@media (min-width: 992px) {
  .inset-md-left-50 {
    padding-left: 50px;
  }
  .inset-md-right-50 {
    padding-right: 50px;
  }
  .inset-md-left-0 {
    padding-left: 0;
  }
  .inset-md-right-0 {
    padding-right: 0;
  }

}

@media (max-width: 1024px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

@media (min-width: 1200px) {
  .inset-lg-left-50 {
    padding-left: 50px;
  }
  .inset-lg-right-50 {
    padding-right: 50px;
  }
  .inset-lg-left-0 {
    padding-left: 0;
  }
  .inset-lg-right-0 {
    padding-right: 0;
  }
  #banner {
    height: 980px;
  }
}