@charset "utf-8";

/*--------------------------------------------------------------
# General
Gold : #c8a33e - #a58430
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body {
  background: #fff;
  color: #666666;
  font-family: 'Montserrat', sans-serif;
  /*font-family: "Open Sans", sans-serif;*/
}

a {
  color: #a58430;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #c8a33e;
  outline: none;
  text-decoration: none;
}
		
p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0 0 10px 0;
  padding: 0;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index:12;
}

.pinky{
	color:#e67f69;
	font-weight:bold;
}
.white{
	color:#fff !important;
}
.light-grey{
	color:#ddd;
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #c8a33e;
  color: #fff;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Common
--------------------------------*/
.section-title {
  font-size: 32px;
  color: #c8a33e;
  text-transform: uppercase;
  text-align: left;
  font-weight: 700;
}

.section-description {
  text-align: left;
  margin-bottom: 40px;
}

.section-title-divider {
  width: 20px;
  height: 1px;
  background: #c8a33e;
  margin-bottom: 20px;
}
