@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
::-moz-selection {
  color: #111;
  background: rgba(140, 97, 71, 0.6);
}
::selection {
  color: #111;
  background: rgba(140, 97, 71, 0.6);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #505050;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

section {
  overflow: hidden;
}

a {
  text-decoration: none;
}
a:hover {
  color: #8c6147;
}
a:focus, a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Baskerville", serif;
  margin: 0;
  color: #111;
}

p {
  margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

.scroll-top {
  width: 35px;
  height: 35px;
  background-color: #8c6147;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: #fff;
  border-radius: 7px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}
.scroll-top img {
  height: 18px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  fill: #FFFFFF;
}
.scroll-top:focus, .scroll-top:hover {
  color: #fff;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(140, 97, 71, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(140, 97, 71, 0.5);
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #FFFFFF;
}

.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.lds-spinner div {
  -webkit-transform-origin: 40px 40px;
          transform-origin: 40px 40px;
  -webkit-animation: lds-spinner 1.2s linear infinite;
          animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #8c6147;
}

.lds-spinner div:nth-child(1) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  -webkit-transform: rotate(210deg);
          transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  -webkit-transform: rotate(240deg);
          transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  -webkit-transform: rotate(300deg);
          transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  -webkit-transform: rotate(330deg);
          transform: rotate(330deg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# btn-main
--------------------------------------------------------------*/
.btn-main {
  font-family: "Libre Baskerville", serif;
  text-decoration: none;
  border: 2px solid #000000;
  background-color: #000000;
  color: #FFFFFF;
  padding: 9px 26px;
  border-radius: 50px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-main:hover {
  background-color: transparent;
  color: #111;
}

/*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 17px 0;
}
@media only screen and (max-width: 991px) {
  .navbar {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 13px 0;
  }
}
.navbar .navbar-brand {
  padding: 0;
  text-decoration: none;
}
.navbar .navbar-brand img {
  height: 50px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 45px;
  }
}
.navbar .navbar-nav {
  /** Large devices (desktops, 992px and up) **/
}
@media (min-width: 992px) {
  .navbar .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 24px;
  font-family: "Libre Baskerville", serif;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 26;
  }
}
.navbar .navbar-nav .nav-item a {
  text-decoration: none;
  font-size: 13px;
  color: #111;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    color: #fff;
  }
}
.navbar .navbar-nav .nav-item a:hover, .navbar .navbar-nav .nav-item a.active {
  color: #8c6147;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    margin: 4px 0px;
    font-weight: 400;
    padding: 6px 0;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0;
  }
}
.navbar .navbar-nav .nav-item a.btn-nav {
  background-color: #FFFFFF;
  color: #111;
  border-radius: 50px;
  padding: 11px 14px;
  padding-top: 13px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.navbar .navbar-nav .nav-item a.btn-nav:hover {
  background-color: #8c6147;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000000;
    z-index: 9;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 15px 12px 20px 12px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000000;
    z-index: 9;
    -webkit-box-shadow: 0 15px 20px 0 rgba(43, 56, 109, 0.1);
            box-shadow: 0 15px 20px 0 rgba(43, 56, 109, 0.1);
  }
}
.navbar .navbar-toggler {
  padding: 0;
}
.navbar .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #FFFFFF;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #000000;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0 0.1625rem 0.25rem 0 rgba(140, 97, 71, 0.1);
          box-shadow: 0 0.1625rem 0.25rem 0 rgba(140, 97, 71, 0.1);
}
.sticky .navbar {
  padding: 12px 0;
}
@media only screen and (max-width: 991px) {
  .sticky .navbar {
    padding: 12px 0px;
  }
}
@media (max-width: 767px) {
  .sticky .navbar {
    padding: 10px 0;
  }
}
.sticky .navbar .navbar-brand {
  padding: 0;
}
.sticky .navbar .navbar-brand img {
  height: 50px;
}
@media only screen and (max-width: 767px) {
  .sticky .navbar .navbar-brand img {
    height: 45px;
  }
}
.sticky .navbar .navbar-toggler .toggler-icon {
  background: #FFFFFF;
}
.sticky .navbar-nav .nav-item a {
  color: #fff;
}

@media only screen and (min-width: 992px) {
  .social {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 991px) {
  .social {
    padding-top: 12px;
  }
}
.social li {
  display: inline-block;
  vertical-align: middle;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .social li {
    margin-left: 26px;
  }
}
.social li a {
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin-right: 12px;
}
.social li a:last-child {
  margin-right: 0;
}
.social li a img {
  height: 23px;
}
.social li a:hover {
  opacity: 0.6;
}

/*--------------------------------------------------------------
# hero-area
--------------------------------------------------------------*/
.hero-area {
  background-image: url("../img/hero/hero-main.jpg");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .hero-area {
    min-height: 100vh;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area {
    min-height: 100vh;
    background-attachment: scroll;
  }
}
.hero-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
}
.hero-area .hero-inner {
  position: relative;
}
.hero-area .hero-inner h1 {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1399px) {
  .hero-area .hero-inner h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-inner h1 {
    font-size: 50px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-inner h1 {
    font-size: 40px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-area .hero-inner h1 {
    font-size: 34px;
  }
}
.hero-area .hero-inner p {
  font-size: 26px;
  color: #000000;
  font-weight: 100;
  opacity: 0.8;
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-inner p {
    font-size: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-inner p {
    font-size: 21px;
  }
}
.hero-area .scroll-bottom {
  display: inline-block;
  text-decoration: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  line-height: 42px;
  border: 2px solid #000000;
  color: #000000;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.blinking-cursor {
  -webkit-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
  font-weight: 400;
}

@-webkit-keyframes blink {
  from, to {
    color: #000000;
  }
  50% {
    color: transparent;
  }
}
@keyframes blink {
  from, to {
    color: #000000;
  }
  50% {
    color: transparent;
  }
}
/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
.img-radius {
  border-radius: 18px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 991px) {
  .img-radius {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
}

.sec-t {
  text-align: center;
}
.sec-t span {
  font-size: 20px;
}
.sec-t h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 45px;
}
@media only screen and (max-width: 1199px) {
  .sec-t h2 {
    font-size: 36px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .sec-t h2 {
    font-size: 33px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-t h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 482px) {
  .sec-t h2 {
    font-size: 26px;
    margin-bottom: 26px;
  }
}

.about {
  padding: 60px 0px;
}
@media only screen and (max-width: 767px) {
  .about {
    padding: 40px 0px;
  }
}
.about .abt-text {
  background-color: #FFFFFF;
  border-radius: 18px;
  border: 2px solid #e7e5e5;
  height: 100%;
  padding: 30px 20px;
}
@media only screen and (max-width: 1199px) {
  .about .abt-text {
    padding: 20px 20px;
  }
}
.about .abt-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .about .abt-text h3 {
    font-size: 22px;
  }
}
.about .abt-text p {
  font-size: 16px;
}
.about .abt-text p:not(:last-child) {
  margin-bottom: 16px;
}

.services {
  padding: 60px 0px;
}
@media only screen and (max-width: 767px) {
  .services {
    padding: 40px 0px;
  }
}
.services .d-sm {
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 700;
  text-align: center;
  text-align: center;
  display: none;
}
@media only screen and (max-width: 991px) {
  .services .d-sm {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .services .d-sm {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.services .box {
  background-color: #FFFFFF;
  border-radius: 18px;
  border: 2px solid #e7e5e5;
  height: 100%;
  padding: 30px 20px;
}
@media only screen and (max-width: 1199px) {
  .services .box {
    padding: 20px 20px;
  }
}
@media only screen and (max-width: 482px) {
  .services .box {
    padding: 20px 15px;
  }
}
.services .box h3 {
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .services .box h3 {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .services .box h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.services .menu-content {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.services .menu-content:not(:last-child) {
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  .services .menu-content:not(:last-child) {
    margin-bottom: 16px;
  }
}
.services .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  color: #dbdbdb;
}
.services .menu-content .menu-name {
  padding-right: 10px;
  background: #fff;
  position: relative;
  z-index: 3;
  font-family: "Libre Baskerville", serif;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}
@media only screen and (max-width: 767px) {
  .services .menu-content .menu-name {
    font-size: 15px;
    padding-right: 1px;
  }
}
@media only screen and (max-width: 482px) {
  .services .menu-content .menu-name {
    font-size: 13px;
  }
}
.services .menu-content span {
  font-family: "Libre Baskerville", serif;
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 700;
  font-size: 17px;
  color: #8c6147;
}
@media only screen and (max-width: 767px) {
  .services .menu-content span {
    font-size: 15px;
    padding: 0px 1px;
  }
}
@media only screen and (max-width: 482px) {
  .services .menu-content span {
    font-size: 13px;
  }
}
.services .row-con {
  padding-top: 50px;
}
@media only screen and (max-width: 767px) {
  .services .row-con {
    padding-top: 40px;
  }
}

/*--------------------------------------------------------------
# counter-sec
--------------------------------------------------------------*/
.counter-sec {
  background-image: url("../img/resources/nail-2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 160px 0px;
  margin-top: 50px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .counter-sec {
    padding: 130px 0px;
  }
}
@media only screen and (max-width: 991px) {
  .counter-sec {
    padding: 120px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-sec {
    padding: 90px 0px;
  }
}
@media only screen and (max-width: 482px) {
  .counter-sec {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-sec {
    margin-top: 40px;
  }
}
.counter-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.counter-sec .c-single {
  text-align: center;
  position: relative;
}
.counter-sec .c-single h5 {
  font-family: "Libre Baskerville", serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
@media only screen and (max-width: 991px) {
  .counter-sec .c-single h5 {
    font-size: 37px;
  }
}
.counter-sec .c-single p {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .counter-sec .c-single p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/resources/parallax-3.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 130px 0px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .contact {
    padding: 100px 0px;
  }
}
@media only screen and (max-width: 991px) {
  .contact {
    padding: 80px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .contact {
    padding: 70px 0px;
  }
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.contact .c-t {
  position: relative;
  text-align: center;
}
.contact .c-t h2 {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .contact .c-t h2 {
    font-size: 38px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .contact .c-t h2 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .contact .c-t h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.contact .c-t h5 {
  font-size: 21px;
  color: #f7e560;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .contact .c-t h5 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.contact .con-single {
  text-align: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  height: 100%;
  border-radius: 18px;
  padding: 15px 15px;
}
@media only screen and (max-width: 991px) {
  .contact .con-single {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact .con-single i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 21px;
  background-color: #8c6147;
  margin-bottom: 18px;
}
.contact .con-single p {
  color: #fff;
  line-height: 1.4;
  font-size: 15px;
}
.contact .con-single p a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
}
.contact .form-box {
  position: relative;
  background-color: #fff;
  padding: 25px 25px;
  border-radius: 18px;
}
@media only screen and (max-width: 767px) {
  .contact .form-box {
    padding: 25px 20px;
  }
}
.contact .form-box .form-t {
  text-align: center;
}
.contact .form-box .form-t p {
  font-size: 16px;
  font-weight: 600;
  color: #8c6147;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .contact .form-box .form-t p {
    font-size: 15px;
  }
}
.contact .form-box .form-t h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}
@media only screen and (max-width: 767px) {
  .contact .form-box .form-t h3 {
    font-size: 21px;
    margin-bottom: 24px;
  }
}
.contact .form-box .form-grp {
  margin-bottom: 25px;
}
.contact .form-box .form-control {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-top: 0px;
  padding-left: 5px;
}
.contact .btn-submit {
  text-decoration: none;
  display: inline-block;
  border: 0;
  background-color: #8c6147;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.contact .btn-submit:hover {
  background-color: #ac795a;
  color: #fff;
}

/*--------------------------------------------------------------
# page-sec
--------------------------------------------------------------*/
.page-sec {
  padding-top: 130px;
  padding-bottom: 60px;
  min-height: 85vh;
}
@media only screen and (max-width: 767px) {
  .page-sec {
    min-height: 70vh;
    padding-top: 90px;
    padding-bottom: 40px;
  }
}
.page-sec .page-box {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  border: 2px solid #eee;
  padding: 30px 30px;
}
@media only screen and (max-width: 767px) {
  .page-sec .page-box {
    padding: 20px 20px;
  }
}
.page-sec h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .page-sec h1 {
    font-size: 23px;
    margin-bottom: 16px;
  }
}
.page-sec p {
  font-size: 16px;
}
.page-sec p:not(:last-child) {
  margin-bottom: 14px;
}
.page-sec p a {
  color: #8c6147;
  display: inline-block;
  text-decoration: underline;
}
.page-sec h2 {
  font-size: 21px;
  margin-bottom: 10px;
  margin-top: 5px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# images-sec
--------------------------------------------------------------*/
.images-sec {
  background-color: #000000;
  padding: 60px 0px;
}
@media only screen and (max-width: 767px) {
  .images-sec {
    padding: 40px 0px;
  }
}
.images-sec .testimonial-item {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 40px 30px;
  background: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .images-sec .testimonial-item {
    margin: 30px 12px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 482px) {
  .images-sec .testimonial-item {
    margin: 10px 5px;
    margin-top: 0;
  }
}
.images-sec .swiper-slide {
  opacity: 0.3;
  opacity: 1;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.images-sec .swiper-scrollbar {
  background: #8c6147;
  height: 1px;
  position: relative;
  margin-top: 30px;
}
@media only screen and (max-width: 482px) {
  .images-sec .swiper-scrollbar {
    margin-top: 20px;
  }
}
.images-sec .swiper-scrollbar-drag {
  height: 4px;
  background: yellow;
  border-radius: 0;
  top: -2px;
}

@media (max-width: 1199px) {
  .img-slider .swiper-slide-active {
    opacity: 1;
  }
  .img-slider .swiper-pagination {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .img-slider .swiper-slide-next {
    opacity: 1;
    -webkit-transform: scale(1.14);
            transform: scale(1.14);
  }
}
/*--------------------------------------------------------------
# main-footer
--------------------------------------------------------------*/
.main-footer {
  padding: 30px 0px;
  background-color: #8c6147;
}
.main-footer .footer-logo {
  max-height: 96px;
}
.main-footer .footer-con ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-footer .footer-con li {
  display: block;
}
.main-footer .footer-con li:not(:last-child) {
  margin-bottom: 6px;
}
.main-footer .footer-con a {
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  color: #FFFFFF;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.main-footer .footer-con a:hover {
  text-decoration: underline;
}
.main-footer .footer-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-footer .footer-social li {
  display: inline-block;
}
.main-footer .footer-social li:not(:last-child) {
  margin-right: 12px;
}
.main-footer .footer-social a {
  text-decoration: none;
  display: inline-block;
  color: #FFFFFF;
  font-size: 22px;
}
/*# sourceMappingURL=main.css.map */