* {
  margin: 0px;
  padding: 0px;
  list-style: none;
  border: none;
  text-decoration: none;
  outline: none;
  font-family: 'Raleway', sans-serif;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
::placeholder {
  color: inherit;
  opacity: 1;
}
html,
body {
  height: 100%;
}
body{
  background: url(../images/top-image.png) top right no-repeat;
  background-size: 63%;
}
.primary-btn {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0px 25px;
  min-width: 190px;
  color: #FFFFFF !important;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  border: none;
  border-radius: 5px;
  line-height: 60px;
  height: 60px;
  background:url(../images/btn-bg.png) repeat-x;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.primary-btn:hover{
  background: #000000;
}
@media (max-width: 1900px) {
  .primary-btn {
    min-width: 9.5vw;
    font-size: 1vw;
    line-height: 3vw;
    height: 3vw;
  }
}
@media (max-width: 767px) {
  .primary-btn {
    min-width: 130px;
    font-size: 15px;
    line-height: 45px;
    height: 45px;
  }
}
/*** ### Header ### ***/
header {
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  background: rgba(255, 255, 255, 0.35);
  padding: 20px 0px;
  border-bottom: 1px solid #c19988;
  width: 100%;
  z-index: 10000;
}
header.fixed{
  position: fixed;
  background: #FFFFFF;
}
header .logo {
  position: relative;
  text-align: left;
}
header .logo a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  outline: none;
}
header .logo img {
  display: inline-block;
  vertical-align: middle;
  max-height: 140px;
  transition: all 0.1s ease-in-out;
}
header.fixed .logo img{
  max-height: 50px;
}
header .top-action-btn {
  position: relative;
  text-align: right;
}
header .top-action-btn a {
  color: #19647E;
  background: #C3E5E1;
}
.navigation {
  position: relative;
}
.navigation nav {
  position: relative;
}
.navigation nav ul {
  margin: 0px;
  padding: 0px;
  text-align: right;
}
.navigation nav ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0px 20px;
}
.navigation nav ul li:first-child {
  margin-left: 0px;
}
.navigation nav ul li:last-child {
  margin-right: 0px;
}
.navigation nav ul li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  outline: none;
}
.navigation nav ul li a:hover{
  color: #bf9986;
}
.navigation nav ul li a.active{
  color: #bf9986;
}
.navigation nav ul li a.get-a-quote{
  position: relative;
  background: #000000;
  border-radius: 5px;
  line-height: 50px;
  color: #d4b1aa !important;
  min-width: 200px;
  text-align: center;
}
.navigation nav ul li a.get-a-quote:hover{
  color: #FFFFFF !important;
  background: #c19988;
}
.device-nav {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  cursor: pointer;
  color: #C3E5E1;
  display: none;
  z-index: 1000;
}
.device-nav span.icon {
  position: relative;
  display: inline-block;
  vertical-align: top;
  border-radius: 50%;
  color: #C3E5E1;
  font-size: 25px;
  text-align: center;
}
@media (max-width: 1900px) {
  header {
    padding: 1.1vw 0px;
  }
  header .logo img {
    max-height: 7vw;
  }
  .navigation {
    position: relative;
  }
  .navigation nav {
    position: relative;
  }
  .navigation nav ul li {
    margin: 0px 1.1vw;
  }
  .navigation nav ul li a {
    font-size: 1vw;
  }
  .navigation nav ul li a.get-a-quote{
    line-height: 2.5vw;
    min-width: 10vw;
  }
}
@media (max-width: 991px) {
  header {
    padding: 10px 0px;
  }
  header .logo img {
    max-height: 50px;
  }
  header .top-action-btn {
    position: relative;
    padding-right: 50px;
  }
  .device-nav {
    display: block;
  }
  .navigation nav {
    -o-transform: translate(100%);
    -o-transform-origin: 0 0;
    -o-transition: -o-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    -webkit-font-smoothing: antialiased;
    -webkit-transform: translate(100%);
    -webkit-transform-origin: 0 0;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    height: calc(100% + 100px);
    top: 70px;
    left: 0;
    list-style-type: none;
    position: fixed;
    right: 0;
    transform: translate(100%);
    transform-origin: 0 0;
    transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      -o-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    background: #FFFFFF;
  }
  .navigation nav.reveal {
    opacity: 1;
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    background: #FFFFFF;
  }
  .navigation nav,
  .navigation nav ul,
  .navigation nav ul li,
  .navigation nav ul li a {
    display: block;
    width: 100%;
  }
  .navigation nav ul {
    text-align: center;
    margin: 0px;
    padding: 15px 0px;
  }
  .navigation nav ul li {
    width: 100%;
    text-align: center;
    margin: 0px;
    padding: 0px 10px;
  }
  .navigation nav ul li a {
    text-decoration: none;
    width: 100%;
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    margin: 0px;
  }
}
/*** ### Hero Section  ### ***/
.hero-section{
  position: relative;
  padding: 230px 0px;
  background: rgba(255, 255, 255, 0.35);
}
.hero-section h1{
  color: #333333;
  font-size: 90px;
  font-weight: 700;
  margin: 0px;
  padding: 0px;
  font-family: 'Libre Baskerville', serif;
}
.hero-section h2{
  color: #333333;
  font-size: 50px;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
  font-family: 'Libre Baskerville', serif;
}
.hero-section p{
  color: #333333;
  font-size: 22px;
  font-weight: 500;
  margin: 50px 0px;
  padding: 0px;
  width: 100%;
  max-width: 485px;
}
.hero-section .action-btn{
  position: relative;
}
@media (max-width:1600px) {
  .hero-section{
    padding: 11.5vw 0px;
  }
  .hero-section h1{
    font-size: 4.5vw;
  }
  .hero-section h2{
    font-size: 2.5vw;
  }
  .hero-section p{
    font-size: 1.2vw;
    margin: 2.5vw 0px;
    max-width: 24.25vw;
  }
}
@media (max-width:767px) {
  .hero-section{
    padding: 100px 0px;
  }
  .hero-section h1{
    font-size: 70px;
  }
  .hero-section h2{
    font-size: 25px;
  }
  .hero-section p{
    font-size: 18px;
    margin: 30px 0px;
  }
}
@media (max-width:767px) {
  .hero-section{
    padding: 50px 0px;
  }
  .hero-section h1{
    font-size: 50px;
  }
  .hero-section h2{
    font-size: 25px;
  }
  .hero-section p{
    font-size: 18px;
    margin: 30px 0px;
    max-width: 100%;
  }
}
/*** ### Section One  ### ***/
.about-us{
  position: relative;
  padding: 100px 0px 200px 0px;
  background:url(../images/about-us-bg.png) right bottom 100px no-repeat;
  background-size: 217px;
}
.about-us h2{
  color: #000000;
  font-size: 50px;
  font-weight: 400;
  margin: 0px 0px 15px 0px;
  padding: 0px;
  font-family: 'Libre Baskerville', serif;
}
.about-us p{
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  margin: 30px 0px 50px 0px;
  padding: 0px;
  width: 100%;
  max-width: 80%;
}
.about-us p .golden{
  color: #bf9986;
  font-weight: 700;
}
.about-us .action-btn{
  position: relative;
}
.about-us .image-box{
  position: relative;
}
.about-us .image-box img{
  width: 100%;
}
.about-us .image-box .image-text{
  position: absolute;
  left: 25%;
  right: 0px;
  bottom: -70px;
  background:#333333;
  padding: 20px;
  border-radius: 0px 0px 0px 40px;
  color: #d3b0a9;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
}
@media (max-width:1900px) {
  .about-us{
    padding: 5vw 0px 10vw 0px;
    background:url(../images/about-us-bg.png) right bottom 5vw no-repeat;
    background-size: 11vw;
  }
  .about-us h2{
    font-size: 2.5vw;
    margin: 0px 0px 0.8vw 0px;
  }
  .about-us p{
    font-size: 1vw;
    margin: 1.5vw 0px 2.5vw 0px;
  }
  .about-us .image-box .image-text{
    padding: 1.1vw;
    border-radius: 0px 0px 0px 2vw;
    font-size: 1.25vw;
  }
}
@media (max-width:991px) {
}
@media (max-width:767px) {
  .about-us{
    padding: 50px 0px 100px 0px;
    background:url(../images/about-us-bg.png) right bottom 50px no-repeat;
    background-size: 120px;
  }
  .about-us h2{
    font-size: 25px;
  }
  .about-us p{
    font-size: 15px;
    margin: 15px 0px 20px 0px;
    max-width: 100%;
  }
  .about-us .image-box{
    margin-bottom: 75px;
  }
  .about-us .image-box .image-text{
    left: 20px;
    bottom: -50px;
    padding: 15px;
    font-size: 15px;
  }
}
/*** ### Section One  ### ***/
.services-section{
  position: relative;
  padding: 50px 0px;
  background: #f4ecea;
  border-radius: 0px 100px 0px 0px;
}
.services-section h2{
  color: #000000;
  font-size: 50px;
  font-weight: 400;
  margin: 30px 0px 50px 0px;
  padding: 0px;
  text-align: center;
  font-family: 'Libre Baskerville', serif;
}
.services-section p{
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
}
.services-section p strong{
  font-weight: 700;
}
.services-section .text-box{
  position: relative;
  padding: 50px 50px 30px 50px;
}
.services-section .action-btn{
  position: relative;
  margin-top: 30px;
}
.services-section .image-box{
  position: relative;
  background-size: cover !important;
  min-height: 600px;
}
.services-section .image-box img{
  width: 100%;
}
.services-section .image-box .image-text{
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background:#333333;
  padding: 30px 20px;
  color: #d2b0a9;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
.services-section .boxes{
  position: relative;
  background: #FFFFFF;
  margin-bottom: 50px;
}
@media (max-width:1900px) {
  .services-section{
    padding: 2.5vw 0px;
    border-radius: 0px 5vw 0px 0px;
  }
  .services-section h2{
    font-size: 2.5vw;
    margin: 1.5vw 0px 2.5vw 0px;
  }
  .services-section p{
    font-size: 1vw;
  }
  .services-section .text-box{
    padding: 2.5vw 2.5vw 1.5vw 2.5vw;
  }
  .services-section .action-btn{
    margin-top: 1.5vw;
  }
  .services-section .image-box .image-text{
    padding: 1.5vw 1.1vw;
    color: #d2b0a9;
    font-size: 1.6vw;
  }
  .services-section .image-box{
    position: relative;
    background-size: cover !important;
    min-height: 30vw;
  }
  .services-section .boxes{
    margin-bottom: 2.5vw;
  }
}
@media (max-width:991px) {
}
@media (max-width:767px) {
  .services-section{
    padding: 30px 0px;
    border-radius: 0px 50px 0px 0px;
  }
  .services-section h2{
    font-size: 25px;
    margin: 20px 0px 20px 0px;
  }
  .services-section p{
    font-size: 16px;
  }
  .services-section .text-box{
    padding: 15px 15px 15px 15px;
  }
  .services-section .action-btn{
    position: relative;
    margin-top: 20px;
  }
  .services-section .image-box{
    display: none;
    min-height: inherit;
  }
  .services-section .image-box img{
    width: 100%;
  }
  .services-section .image-box .image-text{
    padding: 10px 10px;
    color: #d2b0a9;
    font-size: 22px;
  }
  .services-section .boxes{
    margin-bottom: 30px;
  }
}
/*** ### Section One  ### ***/
.why-us{
  position: relative;
  padding: 50px 0px;
}
.why-us h2{
  color: #000000;
  font-size: 50px;
  font-weight: 400;
  margin: 30px 0px;
  padding: 0px;
  text-align: center;
  font-family: 'Libre Baskerville', serif;
}
.why-us h3{
  color: #000000;
  font-size: 22px;
  font-weight: 600;
  margin: 0px 0px 30px 0px;
  padding: 0px;
}
.why-us p{
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  margin: 0px 0px 10px 0px;
  padding: 0px;
}
.why-us .main-box{
  position: relative;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
}
.why-us .boxes{
  position: relative;
  margin: 50px 0px;
  padding: 50px;
  width: 48%;
  border:2px solid #f5edeb;
  border-radius: 0px 50px 0px 0px;
}
.why-us .action-btn{
  position: relative;
  text-align: center;
  margin: 30px 0px;
}
@media (max-width:1900px) {
  .why-us{
    padding: 2.5vw 0px;
  }
  .why-us h2{
    font-size: 2.5vw;
    margin: 1.5vw 0px;
  }
  .why-us h3{
    font-size: 1.2vw;
    margin: 0px 0px 1.5vw 0px;
  }
  .why-us p{
    font-size: 1vw;
    margin: 0px 0px 0.5vw 0px;
  }
  .why-us .boxes{
    margin: 2.5vw 0px;
    padding: 2.5vw;
    border-radius: 0px 2.5vw 0px 0px;
  }
  .why-us .action-btn{
    margin: 1.5vw 0px;
  }
}
@media (max-width:767px) {
  .why-us{
    padding: 30px 0px;
  }
  .why-us h2{
    font-size: 25px;
    margin: 20px 0px;
  }
  .why-us h3{
    font-size: 18px;
    margin: 0px 0px 15px 0px;
  }
  .why-us p{
    font-size: 16px;
  }
  .why-us .main-box{
    display: block;
    display: -webkit-block;
    display: -moz-block;
    display: -ms-block;
    display: -o-block;
  }
  .why-us .boxes{
    margin: 15px 0px;
    padding: 15px;
    width: 100%;
  }
  .why-us .action-btn{
    margin: 15px 0px;
  }
}
/*** ### Contact  Section  ### ***/
.contact-us{
  position: relative;
  padding: 50px 0px;
  background: #f5f5f5;
}
.contact-us h2{
  color: #807575;
  font-size: 50px;
  font-weight: 400;
  margin: 30px 0px;
  padding: 0px;
  text-align: center;
  font-family: 'Libre Baskerville', serif;
}
.contact-us p{
  color: #1e1e1e;
  font-size: 22px;
  font-weight: 500;
  margin: 30px 0px;
  padding: 0px;
  text-align: center;
}
.contact-us .box{
  position: relative;
  padding: 30px 15px;
  background: #FFFFFF;
}
.contact-us .box input{
  position: relative;
  width: 100%;
  height: 50px;
  border:1px solid #dddddd;
  color: #777777;
  font-size: 18px;
  font-weight: 400;
  margin: 0px 0px 20px 0px;
  padding: 0px 15px;
  border-radius: 10px;
}
.contact-us .box textarea{
  position: relative;
  width: 100%;
  height: 120px;
  border:1px solid #dddddd;
  color: #777777;
  font-size: 18px;
  font-weight: 400;
  margin: 0px 0px 20px 0px;
  padding: 10px 15px;
  border-radius: 10px;
  resize: none;
}
.contact-us .box button{
  position: relative;
  display: block;
  width: 100%;
  max-width: 200px;
  height: 60px;
  border:none;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  margin: 0px auto;
  padding: 0px 15px;
  text-align: center;
  border-radius: 5px;
  background: url(../images/btn-bg.png) repeat-x;
}
.contact-us .box button:hover{
  background: #000000;
}
@media (max-width:1900px) {
.contact-us{
  padding: 2.5vw 0px;
}
.contact-us h2{
  font-size: 2.5vw;
  margin: 1.5vw 0px;
}
.contact-us p{
  font-size: 1.2vw;
  margin: 1.5vw 0px;
}
.contact-us .box{
  padding: 1.5vw 15px;
}
.contact-us .box input{
  height: 2.5vw;
  font-size: 1vw;
  margin: 0px 0px 1.1vw 0px;
  padding: 0px 0.7vw;
  border-radius: 0.5vw;
}
.contact-us .box textarea{
  height: 6vw;
  font-size: 1vw;
  margin: 0px 0px 1.1vw 0px;
  padding: 0.5px 0.7vw;
  border-radius: 0.5vw;
}
.contact-us .box button{
  max-width: 10vw;
  height: 3vw;
  font-size: 1vw;
  padding: 0px 0.7vw;
  border-radius: 0.2vw;
}
}
@media (max-width:767px) {
  .contact-us{
    padding: 20px 0px;
  }
  .contact-us h2{
    font-size: 40px;
    margin: 20px 0px;
  }
  .contact-us p{
    font-size: 18px;
    margin: 15px 0px;
  }
  .contact-us .box input{
    height: 45px;
    font-size: 15px;
    margin: 0px 0px 15px 0px;
  }
  .contact-us .box textarea{
    height: 100px;
    font-size: 15px;
  }
  .contact-us .box button{
    max-width: 175px;
    height: 50px;
    font-size: 16px;
  }
}

/*** ### Footer ### ***/
footer {
	position: relative;
	background: #FFFFFF;
	padding: 15px 0px;
}
footer  p {
	color: #212121;
	margin: 10px 0px;
	padding: 0px;
	font-size: 18px;
	font-weight: 400;
}
footer .social-list {
	position: relative;
	margin: 10px 0px;
	text-align: right;
}
footer .social-list a {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin:0px 10px 0px 0px;
	padding: 0px;
	text-align: center;
	text-decoration: none;
	outline: none;
	font-size: 16px;
	color: #FFFFFF;
	background:#d3b0a9;
	border-radius:50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
}
@media (max-width:1900px) {
  footer{
    padding: 0.8vw 0px;
  }
	footer  p {
		font-size: 1vw;
    margin: 0.5vw 0px;
	}
  footer .social-list{
    margin: 0.5vw 0px;
  }
  footer .social-list a {
    margin:0px 0.5vw 0px 0px;
    font-size: 1vw;
    width: 2.5vw;
    height: 2.5vw;
    line-height: 2.5vw;
  }
}
@media (max-width:767px) {
  footer {
    padding: 5px 0px;
  }
  footer  p {
    text-align: center;
    font-size: 15px;
  }
  footer .social-list {
    text-align: center;
  }
  footer .social-list a {
    margin: 0px 10px;
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

