html, body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  position: relative;
  font-size: 17px;
  line-height: 25px;
  background-color: #fff;
}

img {
  width: 100%;
}

a {
  outline: none;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #dbc3a3;
}

a:active,
a:focus,
a:hover {
  outline: none;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #333;
}

section {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 991px) {
  section {
    padding: 50px 0;
  }
}

.btn {
  transition: all 0.3s ease-in-out;
  color: #000;
  background-color: #dbc3a3;
  border: none;
  padding: 16px 30px 14px 30px;
  font-size: 18px;
  margin: 15px 0;
  border-radius: 60px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Arsenal SC", sans-serif;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .btn {
    font-size: 18px;
    letter-spacing: 1px;
  }
}

.btn:hover {
  color: #000;
  border-radius: 3px;
  box-shadow: inset 0px 0px 1px #dbc3a3;
}

.btn:focus {
  color: #000 !important;
  background-color: #dbc3a3;
  border-color: #dbc3a3;
}

.btn:active:hover, .btn:active:focus, .btn:active.focus, .btn-.active:hover, .btn.active:focus, .btn.active.focus, .open > .btn.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #000;
  background-color: #dbc3a3;
  border-color: #dbc3a3;
}

.btn:active, .btn.active, .open > .btn.dropdown-toggle {
  color: #000;
  background-color: #dbc3a3;
  border-color: #dbc3a3;
}

.little-h {
  font-family: "Alumni Sans", sans-serif;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 5px;
  color: #dbc3a3;
  font-weight: 500;
  letter-spacing: 3px;
}
@media (max-width: 991px) {
  .little-h {
    font-size: 25px;
    line-height: 27px;
    letter-spacing: 2px;
  }
}

.title-h {
  font-family: "Arsenal SC", sans-serif;
  font-size: 57px;
  line-height: 60px;
  margin-top: 12px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 400;
  letter-spacing: -0.5px;
}
@media (max-width: 991px) {
  .title-h {
    font-size: 40px;
    line-height: 42px;
  }
}

.title-p {
  font-size: 22px;
  line-height: 29px;
  padding-bottom: 10px;
  font-weight: 300;
  color: #444;
}
@media (max-width: 991px) {
  .title-p {
    font-size: 20px;
    line-height: 28px;
  }
}

.divider {
  content: "";
  height: 60px;
  width: 1px;
  background: #dbc3a3;
  margin: 25px auto;
}
@media (max-width: 768px) {
  .divider {
    height: 50px;
  }
}

.divider-left {
  content: "";
  height: 60px;
  width: 1px;
  background: #dbc3a3;
  margin: 25px 0;
}
@media (max-width: 768px) {
  .divider-left {
    height: 50px;
  }
}

.back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.back-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.mobile-view {
  display: none !important;
}
@media (max-width: 991px) {
  .mobile-view {
    display: block !important;
  }
}

.desctop-view {
  display: block !important;
}
@media (max-width: 991px) {
  .desctop-view {
    display: none !important;
  }
}

.arrow {
  width: 50px;
  height: 60px;
  position: sticky; /* don't forget set container to relative */
  left: calc(50% - 25px);
  margin-left: 0px;
  bottom: 0px;
  z-index: 999;
}
@media (max-width: 991px) {
  .arrow {
    display: none;
  }
}

/* set arrow styles */
.arrow path {
  stroke: #eee;
  stroke-width: 2px;
  fill: transparent;
  animation: down 2s infinite;
}

/* arrow keyframe animation */
@keyframes down {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* arrow animation delay */
.arrow path.a1 {
  animation-delay: -1s;
}

.arrow path.a2 {
  animation-delay: -0.5s;
}

.arrow path.a3 {
  animation-delay: 0s;
}

.div-padding {
  height: 100px;
}
@media (max-width: 950px) {
  .div-padding {
    height: 0;
  }
}

/******navbar start*******/
.top-bar {
  z-index: 1000;
  background-color: #111;
}
.top-bar p, .top-bar a {
  padding: 5px 0 8px 0;
  margin-bottom: 0px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0px;
  font-family: "Arsenal SC", sans-serif;
}
@media (max-width: 1050px) {
  .top-bar p, .top-bar a {
    font-size: 15px;
    line-height: 17px;
    padding: 4px 0 3px 0;
  }
}
.top-bar a:hover {
  color: #dbc3a3;
}
.top-bar .top-text {
  display: inline-block;
}
@media (max-width: 991px) {
  .top-bar .top-text {
    text-align: center;
    display: block;
  }
}

.attr-phone {
  z-index: 111;
  margin: 0;
  color: #fff;
  position: absolute;
  top: 3px;
  right: 15px;
  display: inline-block;
  line-height: 10px;
}
@media (max-width: 991px) {
  .attr-phone {
    display: none;
  }
}
.attr-phone .svg-inline--fa {
  font-size: 14px;
  line-height: 4px;
  margin-right: 7px;
  background-color: #dbc3a3;
  padding: 9px;
  border-radius: 50%;
  vertical-align: sub;
  animation: pulse 1.2s infinite;
  display: inline-block;
}
.attr-phone span {
  margin-top: -5px;
  font-family: "Arsenal SC", sans-serif;
}
.attr-phone a {
  display: inline-block;
  line-height: 33px;
  padding: 0;
  font-size: 23px;
  font-weight: 300;
  font-family: "Arsenal SC", sans-serif;
}
@media (max-width: 1050px) {
  .attr-phone a {
    line-height: 20px;
  }
}
.attr-phone a:hover .svg-inline--fa {
  color: #fff;
}
.attr-phone .svg-inline--fa:hover {
  color: #fff !important;
}

@media (max-width: 991px) {
  .row-color {
    background-color: #dbc3a3 !important;
  }
}

@media (max-width: 991px) {
  nav.navbar.bootsnav .navbar-toggle {
    margin-top: 24px;
    background-color: transparent;
  }
  .navbar-toggle .svg-inline--fa {
    color: #333;
  }
}
nav.navbar.bootsnav {
  background: #fff;
  border-bottom: solid 1px #eee;
}
@media (max-width: 991px) {
  nav.navbar.bootsnav {
    background: #fff !important;
    border-bottom: solid 1px none;
  }
}

.navbar {
  min-height: 73px;
}
@media (max-width: 991px) {
  .navbar {
    min-height: auto;
  }
}

.navbar-brand {
  padding: 2px 10px 2px 10px;
  height: auto;
}
@media (max-width: 1190px) {
  .navbar-brand {
    padding: 4px 0px 0px 10px;
  }
}

.navbar-brand img {
  width: auto;
  height: 73px;
  margin-top: 0px;
}
@media (max-width: 1190px) {
  .navbar-brand img {
    height: 66px;
    margin-top: 0;
  }
}

.caret {
  margin-left: 4px;
}

nav.navbar.bootsnav.no-background {
  background-color: transparent;
}

@media (max-width: 992px) {
  nav.navbar.bootsnav li.dropdown a.dropdown-toggle:before {
    content: "";
    display: none;
  }
  nav.navbar.bootsnav .navbar-nav > li > a {
    border-bottom: none;
    border-top: none;
    color: #333 !important;
    font-weight: 500;
    font-size: 26px;
    line-height: 30px;
    font-family: "Arsenal SC", sans-serif;
  }
  nav.navbar.bootsnav ul.nav li.dropdown ul.dropdown-menu > li > a {
    border-bottom: none;
    font-family: "Arsenal SC", sans-serif;
    color: #fff;
    font-size: 15px;
    padding: 5px 0;
  }
  nav.navbar.bootsnav .navbar-nav {
    margin: 15px -15px 20px -15px;
  }
  nav.navbar.bootsnav .btn {
    margin-left: 0px !important;
  }
}
@media (min-width: 991px) {
  nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
    border-radius: 0px;
    padding: 0;
    background: rgba(255, 255, 255, 0.97);
    border: solid 1px #ccc;
    border-top: 5px solid #dbc3a3;
    margin-top: 0px;
    width: 260px;
  }
  nav.navbar ul.nav > li > a {
    padding: 30px 15px;
    font-weight: 500;
  }
  nav.navbar.bootsnav ul.nav > li > a {
    font-family: "Arsenal SC", sans-serif;
    padding: 14px 4px 16px 12px;
    font-weight: 400;
    font-size: 22px;
    margin: 14px 0 12px 0;
  }
}
@media (min-width: 991px) and (max-width: 1190px) {
  nav.navbar.bootsnav ul.nav > li > a {
    padding: 10px 4px 10px 10px;
    font-size: 15px;
    text-decoration: none;
  }
}
@media (min-width: 991px) {
  nav.navbar-fixed.bootsnav ul.nav > li > a {
    color: #333;
  }
  nav.navbar-fixed.bootsnav ul.nav > li > a:hover {
    color: #dbc3a3;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0);
  }
  nav.no-background.bootsnav ul.nav > li > a {
    color: #fff;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.35);
  }
  nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after {
    content: "";
    display: none;
  }
  nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a {
    text-align: left;
  }
  nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li > a {
    padding: 9px 10px;
    border-bottom: solid 1px #ecf1f8;
    color: #333;
    font-weight: 400;
    font-size: 16px;
  }
  nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li > a:hover {
    background-color: rgba(248, 243, 237, 0.5);
  }
}
nav.navbar.bootsnav .btn {
  margin-top: 14px;
  text-transform: none;
  font-size: 21px;
  letter-spacing: 0px;
  padding: 7px 20px 11px 20px;
  margin-right: 15px;
  margin-left: 8px;
  font-weight: 400;
  font-family: "Arsenal SC", sans-serif;
  box-shadow: none;
}
@media (max-width: 1050px) {
  nav.navbar.bootsnav .btn {
    padding: 9px 8px;
  }
}
@media (max-width: 991px) {
  nav.navbar.bootsnav .btn {
    display: none;
  }
}

nav.navbar-fixed.bootsnav .btn {
  color: #333 !important;
  background-color: transparent !important;
  border: 2px solid #333;
}

nav.no-background.bootsnav .btn {
  color: #fff !important;
  background-color: transparent !important;
  border: 2px solid #fff;
}

nav.bootsnav .btn:hover {
  color: #333 !important;
  background-color: #dbc3a3 !important;
  border-color: #dbc3a3;
}

@media (max-width: 991px) {
  #navbar-menu > ul > li.dropdown.on > ul > li > a {
    color: #333;
    line-height: 34px;
    font-weight: 400;
    font-size: 19px;
  }
  #navbar-menu > ul > li.dropdown.on > ul {
    list-style: none;
    padding-left: 10px;
  }
}
nav.navbar.bootsnav.no-full .navbar-collapse {
  height: auto !important;
  max-height: none !important;
}

nav.no-background.bootsnav .logo1 {
  display: inline-block !important;
}

nav.navbar-fixed.bootsnav .logo1 {
  display: none;
}

nav.no-background.bootsnav .logo2 {
  display: none !important;
}

nav.navbar-fixed.bootsnav .logo2 {
  display: inline-block;
}

@media (max-width: 992px) {
  nav.no-background.bootsnav .logo1 {
    display: none !important;
  }
  nav.no-background.bootsnav .logo2 {
    display: inline-block !important;
  }
}
nav.no-background.bootsnav .navbar-brand img.logo-large {
  width: auto;
  height: 120px;
  margin-top: 2px;
}

@media (max-width: 991px) {
  nav.no-background.bootsnav .navbar-brand img.logo-large {
    height: 55px;
    width: auto;
    margin-top: 0;
  }
}
/******navbar end**********/
.swiper-container {
  position: relative;
}

.swiper-container .back {
  background: rgba(20, 31, 26, 0.5);
  z-index: 4;
}

.basic-swipre-slider {
  width: 100%;
  height: 100vh;
}

.swiper-wrapper {
  width: 100%;
  height: 100vh;
}

.zoom-out-slider .swiper-slide {
  font-size: 18px;
  display: flex;
}

.zoom-out-slider .swiper-slide > .swiper-slide-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent no-repeat 50% 50%/cover;
}

.zoom-out-slider {
  width: 100%;
  height: 100vh;
}

.zoom-out-slider .swiper-slide .slide1 {
  transform-origin: 0 100%;
}

.zoom-out-slider .swiper-slide .slide2 {
  transform-origin: 100% 100%;
}

.zoom-out-slider .swiper-slide .slide3 {
  transform-origin: 100% 0;
}

.swiper-scale-effect .swiper-slide-cover {
  transition: 5s ease-out;
  transform: scale(1.05);
}

.swiper-scale-effect .swiper-slide.swiper-slide-active .swiper-slide-cover {
  transform: scale(1);
}

.slide-content {
  position: absolute;
  top: 40vh;
  right: 20px;
  left: 20px;
}

.slide-content h1 {
  font-family: "Arsenal SC", sans-serif;
  color: #fff;
  z-index: 12;
  font-size: 100px;
  line-height: 100px;
  letter-spacing: -1px;
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.7);
}

.slide-content .btn {
  border: 3px solid #fff;
  box-shadow: none;
  color: #fff;
  background-color: transparent;
}
@media (max-width: 768px) {
  .slide-content .btn {
    padding: 11px 25px;
    font-size: 17px;
    border: 2px solid #fff;
  }
}

.slide-content .btn:hover {
  border: 3px solid #dbc3a3;
  background-color: #dbc3a3;
  color: #333;
}

@media (max-width: 992px) {
  .basic-swipre-slider {
    height: 80vh;
  }
  .zoom-out-slider {
    height: 80vh;
  }
  .swiper-wrapper {
    height: 80vh;
  }
  .slide-content {
    top: 25vh;
    margin: 0 5px;
  }
  .slide-content h1 {
    font-size: 60px;
    line-height: 50px;
    letter-spacing: -1px;
  }
  .swiper-slide-cover {
    background-position: right !important;
  }
}
.swiper-button-next, .swiper-button-prev {
  background-size: 18px 40px;
  margin-top: -10px;
}
@media (max-width: 768px) {
  .swiper-button-next, .swiper-button-prev {
    background-size: 15px 20px;
  }
}

@media (max-width: 768px) {
  .swiper-button-prev {
    left: 0px;
  }
}

@media (max-width: 768px) {
  .swiper-button-next {
    right: 0px;
  }
}

.container2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 90vh;
  z-index: 5;
}
@media (max-width: 990px) {
  .container2 {
    display: none;
  }
}

/******* cta start *********/
.cta {
  position: relative;
  background-attachment: fixed;
  padding: 150px 0 200px 0;
}
@media (max-width: 992px) {
  .cta {
    padding: 60px 0 100px 0;
  }
}
.cta h3 {
  color: #fff;
  padding-top: 20px;
}
.cta p {
  color: #fff;
  font-size: 26px;
  line-height: 34px;
}
@media (max-width: 991px) {
  .cta p {
    font-size: 18px;
    line-height: 24px;
  }
}
.cta .btn {
  margin-top: 20px;
  font-size: 20px;
  padding: 18px 40px 15px 40px;
}
.cta .back {
  background-color: rgba(0, 0, 0, 0.4);
}

@supports (-webkit-touch-callout: none) {
  @media only screen and (max-width: 990px) {
    .cta {
      background-attachment: scroll !important;
      background-size: auto 100%;
    }
  }
}
/******** cta end ********/
.page-padd {
  padding: 0 100px;
}
@media only screen and (max-width: 991px) {
  .page-padd {
    padding: 0 0px;
  }
}

.services-left-text {
  padding: 0;
}
.services-left-text .owl-theme .owl-controls {
  text-align: left;
}
.services-left-text .owl-theme .owl-dots .owl-dot.active span, .services-left-text .owl-theme .owl-dots .owl-dot:hover span {
  background: #dbc3a3;
}

.services-left-text .services-img {
  margin-left: 45vw;
}

@media screen and (max-width: 991px) {
  .services-left-text .services-img {
    margin-left: 0;
  }
}
.services-left-text .services-img2 {
  display: none;
}

@media screen and (max-width: 991px) {
  .services-left-text .services-img2 {
    height: 240px;
    display: block;
  }
}
.services-left-text .services-text {
  padding: 110px 100px;
  width: 50vw;
  margin-right: 50vw;
  background-color: #222;
  margin-left: -45vw;
}

@media screen and (max-width: 991px) {
  .services-left-text .services-text {
    margin-right: 0;
    margin-left: 0;
    padding: 50px 15px;
    width: 100%;
  }
}
.services-left-text h3, .services-left-text p, .services-left-text h5, .services-left-text li {
  color: #fff;
}

.services-left-text .title {
  font-size: 16px;
  margin-top: 30px;
  color: #fff;
  font-weight: 200;
}

.review-title {
  font-family: "Arsenal SC", sans-serif;
  font-size: 30px;
}

.services-left-text .svg-inline--fa {
  color: #fff;
  font-size: 30px;
}

.services-left-text .description {
  font-size: 19px;
  font-weight: 300;
}

.services-left-text hr {
  margin-top: 20px;
  margin-bottom: 5px;
  border: 0;
  border-top: 1px solid rgba(219, 194, 163, 0.4);
}

/*****************************************************/
.image-before, .image-after {
  height: 450px;
}
@media (max-width: 768px) {
  .image-before, .image-after {
    height: 180px;
  }
}

.before-after .owl-nav {
  position: absolute;
  top: 190px;
  left: -35px;
  right: -35px;
}

.before-after .col-xs-6 {
  padding-left: 2px;
  padding-right: 2px;
}

.before-after .owl-theme .owl-nav [class*=owl-] {
  margin: 3px;
  padding: 4px 2px;
  display: inline-block;
  cursor: pointer;
  width: 16px;
  background: transparent;
  opacity: 1;
}
@media (max-width: 768px) {
  .before-after .owl-theme .owl-nav [class*=owl-] {
    width: 14px;
  }
}

.before-after .owl-prev {
  float: left;
}

.before-after .owl-next {
  float: right;
}

.before-after .owl-theme .owl-dots .owl-dot.active span, .before-after .owl-theme .owl-dots .owl-dot:hover span {
  background: #dbc3a3;
}

.before-after .owl-theme .owl-dots .owl-dot span {
  width: 27px;
  height: 4px;
  margin: 5px 3px;
}

.before-after .owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
  background: transparent;
}

.b-a-title {
  font-family: "Arsenal SC", sans-serif;
  letter-spacing: 1px;
}

/******footer start****/
.tc-footer {
  background-attachment: fixed;
  position: relative;
  padding: 70px 0 25px 0;
}
@media only screen and (max-width: 990px) {
  .tc-footer {
    padding: 50px 0 25px 0;
    text-align: center;
  }
}
.tc-footer .back {
  background: #222;
}
.tc-footer a, .tc-footer li {
  color: #fff;
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 300;
  line-height: 37px;
  font-family: "Arsenal SC", sans-serif;
}
@media only screen and (max-width: 990px) {
  .tc-footer a, .tc-footer li {
    font-size: 19px;
    line-height: 32px;
  }
}
.tc-footer a:hover {
  margin-left: 5px;
}
.tc-footer p {
  color: rgb(166, 164, 154);
  font-size: 16px;
  margin-bottom: 0px;
  line-height: 23px;
  padding-right: 25px;
}
@media only screen and (max-width: 990px) {
  .tc-footer p {
    font-size: 14px;
    line-height: 21px;
    padding-right: 0;
  }
}
.tc-footer img {
  width: 55%;
  margin-bottom: 0px;
  margin-top: 0px;
}
@media only screen and (max-width: 768px) {
  .tc-footer img {
    height: auto;
    width: 80%;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.tc-footer .svg-inline--fa {
  font-size: 15px;
  margin-right: 8px;
  color: #dbc3a3;
}
@media only screen and (max-width: 990px) {
  .tc-footer .svg-inline--fa {
    display: none;
  }
}
.tc-footer .footer-box {
  padding-left: 0px;
}
@media only screen and (max-width: 990px) {
  .tc-footer .footer-box {
    padding-left: 0;
  }
}

.tc-footer ul {
  list-style: none;
  margin: 32px 0 2px 0;
  padding: 0;
}
@media only screen and (max-width: 990px) {
  .tc-footer ul {
    margin: 0px 0 0px 0;
  }
}

.copyright {
  padding: 15px 0 7px 0;
  background-color: #fff;
}
@media only screen and (max-width: 990px) {
  .copyright {
    text-align: center;
  }
}
.copyright p, .copyright a {
  color: #333;
  font-size: 15px;
  margin-top: 8px;
  margin-bottom: 0;
}
.copyright .footer-right {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .copyright .footer-right {
    text-align: center;
  }
}
.copyright .svg-inline--fa {
  height: 17px;
  width: 17px;
  padding: 3px;
  border-radius: 50%;
  border: 6px solid #dbc3a3;
  background-color: #dbc3a3;
  color: #333;
  margin: -5px 8px 0px 0px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .copyright .svg-inline--fa {
    margin: 0px 8px 5px 0px;
  }
}
.copyright .svg-inline--fa:hover {
  background-color: #dbc3a3;
  color: #333;
  border-radius: 10%;
}

/*****footer end******/
/*********************/
.services-box-img {
  position: relative;
  height: 320px;
  overflow: hidden;
  transform: rotate(0deg);
}
@media (max-width: 750px) {
  .services-box-img {
    height: 250px;
  }
}

.services-box-img img {
  width: 100%;
  height: 320px;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  border-radius: 2px 2px 0 0;
  transition: 0.3s ease-in-out;
  transform: rotate(0deg);
}
@media (max-width: 750px) {
  .services-box-img img {
    height: 250px;
  }
}

.services-box-img .services-img {
  height: 320px;
  z-index: -1;
  transition: 0.3s ease-in-out;
  border-radius: 8px 8px 0 0;
  transform: rotate(0deg);
}
@media (max-width: 750px) {
  .services-box-img .services-img {
    height: 250px;
  }
}

.services-content {
  background: #fff;
  padding: 5px 20px 20px 20px;
}
@media (max-width: 991px) {
  .services-content {
    padding: 2px 10px 20px 10px;
  }
}
.services-content h3 {
  font-family: "Arsenal SC", sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0px;
}
.services-content a {
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-box:hover img {
  transform: scale(1.15) rotate(0deg);
}

.services-box:hover .btn {
  background-color: #dbc3a3;
}

.services-box {
  box-shadow: 2px -2px 15px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
  width: calc(33% - 25px);
  margin: 15px 10px;
  vertical-align: top;
  display: inline-block;
  position: relative;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 1150px) {
  .services-box {
    width: calc(49% - 25px);
  }
}
@media (max-width: 750px) {
  .services-box {
    width: calc(100% - 0px);
    margin: 8px 0px;
  }
}

.services-box .link {
  cursor: pointer;
}

.tc-header {
  min-height: 50vh;
  position: relative;
  overflow: hidden;
}
@media (max-width: 750px) {
  .tc-header {
    min-height: 45vh;
  }
}

.tc-header .back {
  background: rgba(13, 13, 13, 0.55);
}
@media (max-width: 750px) {
  .tc-header .back {
    background: rgba(13, 13, 13, 0.45);
  }
}

.reviews-page .review-box-home {
  background-color: #fff;
  padding: 50px 40px 20px 40px;
  box-shadow: 1px 7px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 30px 0px;
  min-height: auto !important;
}
@media (max-width: 700px) {
  .reviews-page .review-box-home {
    padding: 30px 15px 15px 20px;
    margin: 15px 0px;
  }
}

.pagination {
  margin-top: 60px;
}

.pagination > li > a, .pagination > li > span {
  color: #dbc3a3;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  z-index: 2;
  color: #666;
  background-color: rgba(219, 195, 163, 0.4);
  border-color: rgba(219, 195, 163, 0.6);
}

.review-box-home .svg-inline--fa {
  font-size: 16px;
  color: #dbc3a3;
  margin-right: 2px;
  margin-bottom: 10px;
}

.review-box-home .title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #dbc3a3;
  font-family: "Alumni Sans", sans-serif;
  letter-spacing: 0px;
  position: relative;
  text-align: right;
  letter-spacing: 2px;
  margin: 20px 20px 35px 0px;
}

#accordion .panel {
  border: none;
  border-top: 1px solid rgba(219, 195, 163, 0.4);
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  background-color: transparent;
}

#accordion .panel:last-child {
  border-bottom: 1px solid rgba(219, 195, 163, 0.4);
}

#accordion .panel-heading {
  padding: 0;
  background-color: transparent;
}

#accordion .panel-title a {
  display: block;
  font-size: 22px;
  font-weight: 400;
  line-height: 27px;
  color: #333;
  background-color: transparent;
  font-family: "Arsenal SC", sans-serif;
  padding: 15px 20px 15px 47px;
  position: relative;
  transition: all 0.5s ease 0s;
}

#accordion .panel-title a:before {
  font: var(--fa-font-solid);
  content: "\f068";
  font-weight: 900;
  display: block;
  width: 26px;
  height: 26px;
  line-height: 28px;
  border-radius: 50%;
  background: #dbc3a3;
  font-size: 12px;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 25%;
  left: 0;
  transition: all 0.3s ease 0s;
}

#accordion .panel-title a.collapsed:before {
  content: "\f067";
}

#accordion .panel-body {
  font-size: 15px;
  color: #635858;
  line-height: 25px;
  border: none;
  padding: 5px 20px 14px 47px;
}

input[type=file] {
  border: none;
  outline: none;
}

input, textarea {
  width: 100%;
  padding: 15px 15px;
  border: 1px solid rgba(219, 195, 163, 0.4);
  margin-bottom: 15px;
  outline: none;
  border-radius: 4px;
  background-color: #fff;
}

select {
  width: 100%;
  padding: 11px 9px;
  border: 1px solid rgba(219, 195, 163, 0.4);
  background-color: #fff;
  margin-bottom: 15px;
  outline: none;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  height: 58px;
}

::-moz-placeholder {
  font-size: 15px;
  color: #333;
}

::placeholder {
  font-size: 15px;
  color: #333;
}

.contact-page .contact-title {
  font-family: "Arsenal SC", sans-serif;
  font-size: 22px;
}
.contact-page ul {
  list-style: none;
  padding: 20px 0;
}
.contact-page li {
  margin-bottom: 30px;
}
.contact-page .contact-icon {
  width: 55px;
  height: 55px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(219, 195, 163, 0.4);
  border-radius: 50%;
  color: #333;
}
@media (max-width: 500px) {
  .contact-page .contact-icon {
    width: 39px;
    height: 39px;
  }
}
.contact-page a {
  display: block;
  color: #333;
}
.contact-page a:hover {
  color: #dbc3a3;
}
.contact-page p {
  margin-bottom: 0;
}
.contact-page .svg-inline--fa {
  color: #5c4324;
  font-size: 20px;
}
@media (max-width: 500px) {
  .contact-page .svg-inline--fa {
    font-size: 15px;
  }
}
.contact-page .btn {
  margin-top: 15px;
}

.gallery-page:nth-child(even) {
  background: rgba(248, 243, 237, 0.3);
}

.gallery-page:nth-child(odd) {
  background: #fff;
}

.example-image {
  background-size: cover;
  background-position: center;
  height: 250px;
  margin: 5px 5px;
  width: calc(33% - 15px);
  display: inline-block;
}
@media screen and (max-width: 999px) {
  .example-image {
    height: 250px;
    margin: 5px 5px;
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 500px) {
  .example-image {
    height: 220px;
    margin: 5px 0px;
    width: calc(100% - 0px);
  }
}

.b-a-slider {
  margin-bottom: 40px;
}
@media (max-width: 550px) {
  .b-a-slider {
    margin-bottom: 15px;
  }
}

.twentytwenty-container {
  height: 560px !important;
}
@media (max-width: 1199px) {
  .twentytwenty-container {
    height: 360px !important;
  }
}
@media (max-width: 550px) {
  .twentytwenty-container {
    height: 200px !important;
  }
}

.b-a {
  overflow: hidden;
  margin: 0 0px;
}
.b-a .inner-h {
  margin-top: 5px;
  font-family: "Arsenal SC", sans-serif;
  font-size: 28px;
}
.b-a p {
  margin-bottom: 3px;
}

.before-after .b-a-content img {
  max-width: 100%;
  height: 560px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (max-width: 1199px) {
  .before-after .b-a-content img {
    height: 360px;
  }
}
@media (max-width: 550px) {
  .before-after .b-a-content img {
    height: 200px;
  }
}
.before-after .owl-nav {
  position: absolute;
  top: 27%;
  left: -3.5%;
  right: -3.5%;
  width: 107%;
  z-index: -1;
}
@media (max-width: 991px) {
  .before-after .owl-nav {
    top: 18%;
    left: -4.5%;
    right: -4.5%;
    width: 109%;
  }
}
.before-after .owl-theme .owl-controls .owl-nav [class*=owl-] {
  margin: 3px;
  padding: 4px 2px;
  display: inline-block;
  cursor: pointer;
  width: 18px;
  background: transparent;
  opacity: 1;
}
@media (max-width: 768px) {
  .before-after .owl-theme .owl-controls .owl-nav [class*=owl-] {
    width: 14px;
  }
}
.before-after .owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
  opacity: 0.7;
}
.before-after .owl-prev {
  float: left;
}
.before-after .owl-next {
  float: right;
}

.b-a .b-a-content {
  padding: 0 0 10px 0;
  position: relative;
}

.services-detail-img {
  height: 450px;
}
@media (max-width: 768px) {
  .services-detail-img {
    height: 220px;
  }
}

.row-video iframe {
  width: 100%;
  height: 440px;
}
@media screen and (max-width: 768px) {
  .row-video iframe {
    height: 220px;
  }
}

/********** TEAM PAGE START ********/
.team-box {
  background-color: #fff;
  overflow: hidden;
  display: inline-block;
  margin: 12px 12px;
  width: calc(33% - 30px);
}
@media (max-width: 1100px) {
  .team-box {
    width: calc(49% - 15px);
  }
}
@media (max-width: 550px) {
  .team-box {
    width: calc(100% - 0px);
    margin: 15px 0;
  }
}

.team-img {
  height: 350px;
  background-position: top;
  transition: all 0.3s ease-in-out;
}

.team-box:hover .team-img { /* IE 9 */ /* Safari 3-8 */
  transform: scale(1.1);
}

.team-info {
  padding: 15px 5px 25px 5px;
}

.team-job-desc {
  font-family: "Arsenal SC", sans-serif;
  font-weight: 500;
  color: #333;
  font-size: 28px;
  margin-top: 0;
}

.team-name {
  color: #555;
  font-weight: 300;
  font-size: 15px;
  opacity: 0.7;
}

.team-info .btn {
  padding: 8px 20px;
  font-size: 16px;
  margin-top: 0px;
}

.team-link {
  display: block;
  margin: 2px 0;
  letter-spacing: 1px;
  font-weight: 300;
}

.inline-box-open {
  overflow: auto;
  background: #FDFDF6;
  padding: 40px;
  width: 70%;
  max-width: 100%;
  border-radius: 6px;
  margin-left: 15%;
}

@media screen and (max-width: 768px) {
  .inline-box-open {
    background: #FDFDF6;
    padding: 10px;
    width: 96%;
    max-width: 100%;
    border-radius: 6px;
    margin-left: 2%;
  }
}
.staff-bio .svg-inline--fa {
  width: 17px;
  height: 17px;
  padding: 7px;
  border: 1px solid #dbc3a3;
  border-radius: 50%;
  margin: 10px 6px 2px 0px;
  color: #dbc3a3;
}

.staff-bio .svg-inline--fa:hover {
  background-color: #dbc3a3;
  color: #fff;
}

/********* TEAM PAGE END *******/
.blog-page .services-box {
  box-shadow: 2px -2px 15px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
  width: calc(49% - 25px);
  margin: 15px 10px;
  vertical-align: top;
  display: inline-block;
  position: relative;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 1150px) {
  .blog-page .services-box {
    width: calc(49% - 25px);
  }
}
@media (max-width: 750px) {
  .blog-page .services-box {
    width: calc(100% - 0px);
    margin: 8px 0px;
  }
}
.blog-page .services-box .services-content h3 {
  font-size: 23px;
}

.tc-header h3 {
  color: #fff;
  margin-top: 25vh;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.55);
}
@media (max-width: 750px) {
  .tc-header h3 {
    margin-top: 22vh;
  }
}/*# sourceMappingURL=style.css.map */