body {
    position: relative;
    overflow-x: hidden;
    background-color: #fff;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
body,
html { height: 100%;}

p{
    font-family: "Poppins", sans-serif;
    color: #616161;
}
/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/

/* #Navigation
================================================== */

.start-header {
  opacity: 1;
  transform: translateY(0);
  padding: 7px 0;
  box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  padding: 7px 0;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
  position: fixed;
}
.start-header.scroll-on .navbar-brand img{
  height:50px;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.navigation-wrap{
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.navbar{
  padding: 0;
}
.navbar-brand img{
  height: 60px;
  width: auto;
  display: block;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}
.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 1px solid #000;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, 
.navbar-light .navbar-toggler-icon:before{
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
  top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

@media screen and (min-width:767px){
      .ml-md-4, .mx-md-4 {
    margin-left: 3.5rem !important;
  }
}


.nav-link{
  color: #212121 !important;
  font-weight: 500;
    transition: all 200ms linear;
    font-size: 17px;
}
.nav-item:hover .nav-link{
  color: #b56530 !important;
}
.nav-item.active .nav-link{
  color: #b56530 !important;
}
.nav-link {
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
}
.nav-item:after{
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #b56530;
  opacity: 0;
    transition: all 200ms linear;
}
.nav-item:hover:after{
  bottom: 0;
  opacity: 1;
}
.nav-item.active:hover:after{
  opacity: 0;
}
.nav-item{
  position: relative;
    transition: all 200ms linear;
}

#switch,
#circle {
  cursor: pointer;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear; 
} 
#switch {
  width: 60px;
  height: 8px;
  border: 2px solid #b56530;
  border-radius: 27px;
  background: #000;
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  opacity: 1;
  transform: translate(0);
    transition: all 300ms linear;
    transition-delay: 1900ms;
}
body.hero-anime #switch{
  opacity: 0;
  transform: translateY(40px);
    transition-delay: 1900ms;
}
#circle {
  position: absolute;
  top: -11px;
  left: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000;
}
.switched {
  border-color: #000 !important;
  background: #b56530 !important;
}
.switched #circle {
  left: 43px;
  box-shadow: 0 4px 4px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
  background: #fff;
}
.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
  max-height: 0;
    display: block;
  padding: 0;
  margin: 0;
    transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
  max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
  padding: 0px!important;
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
  color: #212121;
  background-color: #fff;
  border: none;
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}

.dropdown-item {
  padding: 8px 15px;
  color: #212121;
  border-radius: 2px;
  border-bottom: 1px solid #ccc;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
  color: #fff;
  background-color: #b56530;
}

body.dark{
  color: #fff;
  background-color: #1f2029;
}
body.dark .navbar-brand img{
  filter: brightness(100%);
}
body.dark h1{
  color: #fff;
}
body.dark h1 span{
    transition-delay: 0ms !important;
}
body.dark p{
  color: #fff;
    transition-delay: 0ms !important;
}
body.dark .bg-light {
  background-color: #14151a !important;
}
body.dark .start-header {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}
body.dark .start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}
body.dark .nav-link{
  color: #fff !important;
}
body.dark .nav-item.active .nav-link{
  color: #999 !important;
}
body.dark .dropdown-menu {
  color: #fff;
  background-color: #1f2029;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}
body.dark .dropdown-item {
  color: #fff;
}
body.dark .navbar-light .navbar-toggler-icon {
  border-bottom: 1px solid #fff;
}
body.dark .navbar-light .navbar-toggler-icon:after, 
body.dark .navbar-light .navbar-toggler-icon:before{
  background-color: #fff;
}
body.dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}



/* #Media
================================================== */

@media (max-width: 767px) { 
  h1{
    font-size: 38px;
  }
  .nav-item:after{
    display: none;
  }
  .nav-item::before {
    position: absolute;
    display: block;
    top: 15px;
    left: 0;
    width: 11px;
    height: 1px;
    content: "";
    border: none;
    background-color: #000;
    vertical-align: 0;
  }

  .dropdown-toggle[aria-expanded="true"]::after{
    transform: rotate(90deg);
    opacity: 0;
  }
  .dropdown-menu {
    padding: 0 !important;
    background-color: transparent;
    box-shadow: none;
    transition: all 200ms linear;
  }
  .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }
  body.dark .nav-item::before {
    background-color: #fff;
  }
  body.dark .dropdown-toggle::after {
    background-color: #fff;
  }
  body.dark .dropdown-menu {
    background-color: transparent;
    box-shadow: none;
  }
}

/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250,250,250,.8);
    z-index: 1;
}






/*Slider*/


.slideshow {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.slideshow .slider {
  width: 100vw;
  height: 100vw;
  z-index: 2;
}
.slideshow .slider * {
  outline: none;
}
.slideshow .slider .item {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  border: none;
}
.slideshow .slider .item .text {
  display: none;
}
.slideshow .slider .item img {
  min-width: 101%;
  min-height: 101%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.slideshow .slick-dots {
  position: fixed;
  z-index: 100;
  width: 40px;
  height: auto;
  bottom: auto;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: auto;
  color: #fff;
  display: block;
}
.slideshow .slick-dots li {
  display: block;
  width: 100%;
  height: auto;
}
.slideshow .slick-dots li button {
  position: relative;
  width: 20px;
  height: 15px;
  text-align: center;
}
.slideshow .slick-dots li button:before {
  content: "";
  background: #fff;
  color: #fff;
  height: 2px;
  width: 20px;
  border-radius: 0;
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  opacity: 0.6;
}
.slideshow .slick-dots li.slick-active button:before {
  width: 40px;
  opacity: 1;
}
.slideshow.slideshow-right {
  left: 0;
  z-index: 1;
  width: 50vw;
  pointer-events: none;
}
.slideshow.slideshow-right .slider {
  left: 0;
  position: absolute;
}

.slideshow-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
  font-size: 30px;
  width: 100vw;
  text-align: center;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 100;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 20px;
  line-height: 0.8;
}

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #4caf50;
  color: white;
}

.topnav-right {
  float: right;
}
@media (max-width: 767px) {
  .slideshow-text {
    font-size: 40px;
  }
}section {
  width: 100%;
  overflow: hidden;
  height: 100vh;
}
.footer-section{
    height: auto;
}
.swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.scroll-on22{
    position: fixed;
  top: 0;
  z-index: 99 !important;
  width: 100%;
}
.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  font-size: 18px;
  background: #000;
  overflow: hidden;
}
.slide-image {
  position: absolute;
  top: 00px;
  left: 0px;
  width: 100%;
  height:100vh;
  background-position:top;
  background-size: cover;
}

.slide-title {
  font-size: 3rem;
  line-height: 1.5;
  max-width: 50%;
  white-space: normal;
  word-break: break-word;
  color: #FFF;
  z-index: 100;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: normal;
    font-family: "Italiana", sans-serif;
  font-weight: 800;
  position: absolute;
  padding: 30px;

    bottom:6rem;
}
@media (min-width: 45em) {
  .slide-title {
    font-size: 3vw;
    max-width: none;
  }
}
.slide-title span {
  white-space: pre;
  display: inline-block;
  opacity: 0;
}

.slideshow {
  position: relative;
}
.slideshow-pagination {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: .3s opacity;
  z-index: 10;
}
.slideshow-pagination-item {
  display: flex;
  align-items: center;
}
.slideshow-pagination-item .pagination-number {
  opacity: 0.5;
}
.slideshow-pagination-item:hover, .slideshow-pagination-item:focus {
  cursor: pointer;
}
.slideshow-pagination-item:last-of-type .pagination-separator {
  width: 0;
}
.slideshow-pagination-item.active .pagination-number {
  opacity: 1;
}
.slideshow-pagination-item.active .pagination-separator {
  width: 10vw;
}
.slideshow-navigation-button {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 5rem;
  z-index: 1000;
  transition: all .3s ease;
  color: #FFF;
}
.slideshow-navigation-button:hover, .slideshow-navigation-button:focus {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
}
.slideshow-navigation-button.prev {
  left: 0;
}
.slideshow-navigation-button.next {
  right: 0;
}

.pagination-number {
  font-size: 1.8rem;
  color: #FFF;
  font-family: 'Oswald', sans-serif;
  padding: 0 0.5rem;
}

.pagination-separator {
  display: none;
  position: relative;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: all .3s ease;
}
@media (min-width: 45em) {
  .pagination-separator {
    display: block;
  }
}
.pagination-separator-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  transform-origin: 0 0;
}



/*End Slider*/


/*About Us*/
/* Choose us */

.choose-section {
    position: relative;
    padding: 408px 0 155px;
    overflow: hidden;
    background-color: #fff;
    height:auto;
    overflow: hidden;
}
.choose-section .choose-image{
    position: absolute;
    top: -260px;
    right: -86px;
}
.choose-section h4{
    font-family: 'Italiana', serif;
    position: absolute;
    background: #b8693b;
    color: #fff;
    padding: 18px 38px;
    right: -196px;
    font-weight: 600;
    top: -101px;
    transform: rotate(270deg);
    letter-spacing: 2.8px;
}
.choose-section .choose-arrow{
    position: absolute;
    top: -124px;
    left: -97px;
    z-index: 1;
}
.choose-section .choose-arrow img {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
  }
  @-webkit-keyframes mover {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
  }
.choose-section .choose_content{
    position: relative;
    background: #fff;
    padding: 40px 30px 25px 70px;
    box-shadow: 1px 6px 13px rgb(0 0 0 / 8%);
    width: 708px;
    margin-left: -25px;
    margin-top: -80px;
}
.choose-section .choose_content h2 {
   margin-bottom: 15px;
  border-left: 3px solid #b7683a;
  padding-left: 10px;
  color: #b7683a;
  font-size: 28px;
  font-family: "Italiana", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.choose-section .choose_content .text-size-16 {
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}
.choose-section .choose_content .text {
    font-family: 'Montserrat', sans-serif;
}
.choose-section .choose_content .text:hover {
    color: #b8693a;
}
.choose-section .choose_content ul li{
    margin-bottom: 10px;
}
.choose-section .choose_content ul li .circle {
    position: relative;
    border: 2px solid #b8693a;
    border-radius: 100px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    margin-right: 21px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-right-style: none;
    top: 5px;
}
.choose-section .choose_content ul li .circle:before {
    font-size: 18px;
    position: absolute;
    left: 4px;
    margin-top: -3px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: #b8693a;
}

.choose-section {padding: 290px 0 50px;}
.choose-section .choose-image {top: -222px; right: 10px;}
.choose-section .choose-image img {width: 660px;}
.choose-section h4 {right: -85px; top: -63px;}
.choose-section .choose-arrow {top: -145px; left: -8px;}
.choose-section .choose-arrow img {width: 660px;}
.choose-section .choose_content {margin-left: 20px;}



@media screen and (max-width:1199px){
    .choose-section {padding: 285px 0 100px;}
.choose-section .choose-image {top: -186px; right: 0;}
.choose-section .choose-image img {width: 550px;}
.choose-section h4 {right: -88px; top: -61px; padding: 14px 30px; letter-spacing: 6.8px;}
.choose-section .choose-arrow {top: -80px; left: -2px;}
.choose-section .choose-arrow img {width: 530px;}
.choose-section .choose_content {padding: 50px 35px 50px 60px; margin-left: 25px; width: 630px;}
.choose-section .choose_content h2 {margin-bottom: 25px; padding-left: 16px;}
.choose-section .choose_content .text-size-16 {letter-spacing: 0; margin-bottom: 18px;}
.choose-section .choose_content ul li {margin-bottom: 8px;}
.choose-section .choose_content ul li .circle {height: 18px; width: 18px; line-height: 18px; margin-right: 15px;}
.choose-section .choose_content ul li .circle:before {font-size: 16px; left: 3px; margin-top: -2px;}
}
/*End ABout Us*/

/*Button*/
.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;

  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  
  outline: none;
}
.btn-7 {
background: #b7683b;
  line-height: 42px;
  padding: 0;
  border: none;text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  width: 140px;
}

form .btn-7{
    width: 150px;
}
.btn-7 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-7:before,
.btn-7:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: rgb(184, 106, 59);
  box-shadow:
   -7px -7px 20px 0px rgba(255,255,255,.9),
   -4px -4px 5px 0px rgba(255,255,255,.9),
   7px 7px 20px 0px rgba(0,0,0,.2),
   4px 4px 5px 0px rgba(0,0,0,.3);
  transition: all 0.3s ease;
}
.btn-7:before{
   height: 0%;
   width: 2px;
}
.btn-7:after {
  width: 0%;
  height: 2px;
}
.btn-7:hover{
  color: rgb(184, 105, 59);
  background: transparent;
}
.btn-7:hover:before {
  height: 100%;
}
.btn-7:hover:after {
  width: 100%;
}
.btn-7 span:before,
.btn-7 span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: rgb(184, 106, 59);
  box-shadow:
   -7px -7px 20px 0px rgba(255,255,255,.9),
   -4px -4px 5px 0px rgba(255,255,255,.9),
   7px 7px 20px 0px rgba(0,0,0,.2),
   4px 4px 5px 0px rgba(0,0,0,.3);
  transition: all 0.3s ease;
}
.btn-7 span:before {
  width: 2px;
  height: 0%;
}
.btn-7 span:after {
  height: 2px;
  width: 0%;
}
.btn-7 span:hover:before {
  height: 100%;
}
.btn-7 span:hover:after {
  width: 100%;
}

.button {
  display: inline-flex;
  height: 40px;
  width: 140px;
  border: 2px solid #B7683B;
  margin: 20px 20px 20px 20px;
  color: #B7683B;
  text-transform: uppercase;
  text-decoration: none;
  font-size: .8em;
  letter-spacing: 1.5px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


/* Seventh Button */

#button-7 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
#button-7:hover{
    box-shadow: -7px -7px 20px 0px rgba(255,255,255,.9), -4px -4px 5px 0px rgba(255,255,255,.9), 7px 7px 20px 0px rgba(0,0,0,.2), 4px 4px 5px 0px rgba(0,0,0,.3);
}
#button-7 a {
  position: relative;
  left: 0;
  color: #B7683B;
  transition: all .35s ease-Out;
  text-decoration: none;
  font-size: 14px;
}

#dub-arrow {
  width: 100%;
  height: 100%;
  background: #B7683B;
  left: -200px;
  position: absolute;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease-Out;
  bottom: 0;
}

#button-7 img {
  width: 20px;
  height: auto;
}

#button-7:hover #dub-arrow {
  left: 0;
}

#button-7:hover a {
  left: 150px;
}




/**/


/*Foooter*/

/* Footer */

.footer-section {
    background: var(--e-global-color-very-dark-gray-mostly-black);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 65px;
}
.footer-section::before {
    content: "";
    position: absolute;
    background: url('images/banner-background.webp');
    width: 100%;
    height: 465px;
    top: 0;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-section .left-lamp {
    position: absolute;
    top: 0;
    left: 118px;
}
.footer-section .right-lamp {
    position: absolute;
    top: 0;
    right: 118px;
}
.footer-section .middle-portion{
    padding-bottom: 22px;
}
.footer-section .middle-portion .logo-part {
    text-align: center;
}
.footer-section .middle-portion .logo-part .footer-logo {
    margin-bottom: 30px;
}
.footer-section .middle-portion .logo-part .footer-logo img{
    height: 100px;
}
.footer-section .middle-portion h6{
    color: #fff;
  margin-bottom: 25px;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
}
.footer-section .middle-portion input{
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #605f5f;
    background: #fff;
    border: 1px solid #605f5f;
    border-radius: 50px;
    padding: 30px 35px;
    margin-bottom: 40px;
    width: 76%;
    height: 70px;
    overflow: visible;
    outline: none;
    margin-left: 97px;
    word-spacing: 1.8px;
}
.footer-section .subscribe_now {
    position: absolute;
  font-size: 15px;
  line-height: 14px;
  font-weight: 400;
  text-transform: uppercase;
  padding:20px 33px 20px 38px;
  right: 93px;
  top: 6px;
  width: 216px;
  height: 57px;
  background: #b8693a;
  color: #fff;
  border: 2px solid #b8693a;
  border-radius: 50px;
  outline: none;
  box-shadow: none;
  letter-spacing: 0.8px;
}
.footer-section .subscribe_now:hover {
    background: #fff;
    color: #b8693a;
    border-radius: 50px;
    outline: none;
    box-shadow: none;
}

.footer-section .middle-portion .links {
   text-align: center;
  margin-left: 0;
}
.footer-section .middle-portion .links li {
    display: inline-block;
    margin: 0 38px;
}
.footer-section .middle-portion .links li:first-child {
    margin-left: 0px;
}
.footer-section .middle-portion .links li:last-child {
    margin-right: 0px;
}
.footer-section .middle-portion a {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.6px;
    word-spacing: 0.2px;
}
.footer-section .middle-portion a:hover {
    color: #b8693a;
}
.footer-section .footer-lower {
    border-top: 2px solid #605f5f;
    padding: 20px 0 10px;
    position: relative;
    z-index: 1;
}
.footer-section .footer-lower .social-icons{
    margin-top: -9px;
}
.footer-section .footer-lower .social-icons ul li {
    display: inline-block;
    margin: 0 6px;
}
.footer-section .footer-lower .social-icons ul li:first-child {
    margin-left: 0;
}
.footer-section .footer-lower .social-icons ul li:last-child {
    margin-right: 0;
}
.footer-section .footer-lower .social-icons ul li .social-networks {
    font-size: 18px;
    margin-top: 2px;
    color: #fff;
/*    border: 1px solid #fff;*/
    background: transparent;
    border-radius: 100px;
    text-align: center;
    transition: all ease-in-out 0.3s;
    width: 40px;
    height: 40px;
    line-height: 40px;
}
.footer-section .footer-lower .social-icons ul li .social-networks:hover {
    color: #b8693a;
    border: 1px solid #fff;
    background: #fff;
    transform: translateY(-5px);
}
.footer-section .footer-lower p {
    color: #fff;
    float: right;
}

/*Footer end*/


/*Feature project start*/
    #news-slider{
    margin-top: 10px;
}
.post-slide{
    margin: 20px 15px 20px;
    border-radius: 15px;
    padding-top: 1px;
    box-shadow: 5px 3px 13px -1px #bbcbd8;
}
.post-slide .post-img{
  position: relative;
overflow: hidden;
margin-left: 0;
}
.post-slide .post-img img{
    width: 100%;
    height: auto;
    transform: scale(1,1);
    transition:transform 0.2s linear;
    height: 300px;
}
.post-slide:hover .post-img img{
    transform: scale(1.1,1.1);
}
.post-slide .over-layer{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    opacity:0;
    background:linear-gradient(-45deg, rgba(184, 104, 56, 0.25) 0%, rgba(0, 0, 0, 0.29) 100%);
    transition:all 0.50s linear;
}
.post-slide:hover .over-layer{
    opacity:1;
    text-decoration:none;
}
.post-slide .over-layer i{
    position: relative;
    top:45%;
    text-align:center;
    display: block;
    color:#fff;
    font-size:25px;
}
.post-slide .post-content{
    background:#fff;
    padding: 2px 20px 10px;
    border-radius: 15px;
}
.post-slide .post-title a{
    font-size:15px;
    font-weight:bold;
    color:#333;
    display: inline-block;
    text-transform:uppercase;
    transition: all 0.3s ease 0s;
}
.post-slide .post-title a:hover{
    text-decoration: none;
    color:#9f280c;
}

.post-slide .post-date{
    color:#a9a9a9;
    font-size: 14px;
}
.post-slide .post-date i{
    font-size:20px;
    margin-right:8px;
    color: #CFDACE;
}
.post-slide .read-more{
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: #2196F3;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #1376c5;
    border-radius: 25px;
    text-transform: uppercase;
}
.post-slide .read-more:hover{
    background: #3498db;
    text-decoration:none;
    color:#fff;
}


.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot.owl-nav {
    position: absolute;
    left: 47%;
    bottom: -70px;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 3em;
    margin: 0;
    cursor: pointer;
    color: #b46737;
    outline: none;
    transform: translate(-50%, -50%);
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot.owl-nav {
    position: absolute;
    right: 40%;
   bottom:-70px;
    background-color: var(--base-color) !important;
    display: block ;
    padding: 0 .3em !important;
    font-size: 3em ;
    margin: 0;
    cursor: pointer;
    color:#b46737;
    outline: none;
    transform: translate(-50%, -50%);
}


.deals .owl-carousel .item img{
    width: 80px;
    margin: 0 auto;
    text-align: center;
}


.owl-theme .owl-nav [class*=owl-]:hover{
    background-color: #fff;
}


.deals .owl-carousel .item figure {
    margin: 0;
}

.deals .owl-carousel .item figure a {
    display: block;
    text-align: center;
    max-width: 100%;
    transition: all 0.3s;
    padding: 3em;
    text-decoration: none;
    color: #565a5c;
}

.deals .owl-carousel .item figure a:hover {
    box-shadow: 0 11px 13.35px 1.65px rgba(148,148,148,0.23);
    transform: scale(1.1);
}
.featured_projects{
    height: auto;
    background: #fff;
    padding: 10px 0 70px;
}
.featured_projects h1{
    margin-bottom: 0px;
  color: #b7683a;
  font-size: 40px;
  font-family: "Italiana", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-align: center;
}
#news-slider h4{
    position: absolute;
  bottom: 35px;
  color: #fff;
  font-size: 20px;
  left: 20px;
  font-family: 'Poppins',sans-serif,Arial,Helvetica;
  font-weight: 500;
  word-wrap: break-word;
}
#news-slider h6{
    position: absolute;
  bottom: 10px;
  color: #fff;
  font-size: 16px;
  left: 20px;
 font-family: 'Poppins',sans-serif,Arial,Helvetica;
  font-weight: 300;
  word-wrap: break-word;
}
#news-slider .tag{
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-radius: 30px;
  padding: 4px 16px;
  border: 1px solid #b96b3c;
  background: #b76938;
  font-family: 'Poppins',sans-serif;
  color: #fff;
}
/*Featured end*/

.counter{
    background: #fff;
    height: auto;
  padding-bottom: 40px;
}

#counter {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin: 0;
}
#counter p{
    font-size: 20px;
  font-weight: 300;
  color: #616161;
  margin-top: 10px;
}

#counter li {
  flex: 1;
  text-align: center;
  font-size: 50px;
  list-style: none;
  font-size: 16px;
}
.counter span{
    font-size: 54px;
  color: #b76837;
  font-weight: 200;
  line-height: 1;
}
#counter span.percent:after {
  content: "";
  display: inline-block;
}
/*Counter start*/

.z-index-common{
  padding: 60px 0 70px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.statistics__achieved{
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  text-transform: capitalize;
  font-size: 30px;
  line-height: 1.2;
  font-family: Poppins, sans-serif !important;
  font-weight: 600 !important;
  line-height: 46px !important;
}
.counter-card.style3 {
  position:relative
}
.counter-card.style3 .counter-card_bg-number {
  font-weight:800;
  font-size:90px;
  line-height: 90px;
font-family: Poppins, sans-serif !important;
  position:absolute;
  -webkit-text-stroke:1px rgba(255,255,255,0.15);
  color:transparent;
  left:50%;
  width: 100%;
  -webkit-transform:translate(-50%, -9%);
  -ms-transform:translate(-50%, -9%);
  transform:translate(-50%, -9%)
}
.counter-card.style3 .media-body {
  display:-webkit-box;
  display:-webkit-flex;
  color: #fff;
  display:-ms-flexbox;
  display:flex;
  gap:10px;
  -webkit-box-align:center;
  -webkit-align-items:center;
  -ms-flex-align:center;
  align-items:center
}
.counter-card.style3 .media-body .counter-card_number {
  font-weight:800;
  margin:0 0 -0.3em;
  font-size: 40px;
}
.counter-card.style3 .media-body .counter-card_text {
  font-size:16px;
  font-weight:500;
  width:100%;
  line-height:26px;
  margin-top: 10px;
  margin-bottom: 0;
  text-transform: capitalize;
}



/*Counter End*/



/*Why us satrt*/
.mt-p-1{
  margin-bottom: 15px;
}

.service-section{
    background: #171719;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 70px 0 25px;
    height: auto;
}
.service-section .service_content{
    text-align: center;
}
.service-section .service_content h6{
    margin-bottom: 18px;
}
.service-section .service_content h2{
    margin-bottom: 30px !important;
   color: #fff;
   margin-bottom: 0px;

  font-size: 40px;
  font-family: "Italiana", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-align: center;
}
.service-section .top-space{
    padding-top: 30px;
}
.service-section .box-content{
    width: 100%;
    background: #1f1f20;
    transition: all 0.3s ease-in-out;
    margin-bottom: 50px;
}
.service-section .box-content:hover{
    transform: translateY(-5px);
}
.service-section .box-content .upper_portion{
    position: relative;
}

.service-section .box-content .upper_portion .image {
    overflow: hidden;
}
.service-section .box-content .upper_portion .image img{
    transition: all 0.3s ease-in-out;
}
.service-section .box-content .upper_portion .image:hover img {
    transform: scale(1.1);
}
.service-section .box-content .upper_portion .image_content {
    background: #b8693a;
    box-shadow: 8px 2px 20px rgb(0 0 0 / 38%);
    border-radius: 100px;
    height: 82px;
    width: 82px;
    line-height: 83px;
    text-align: center;
    left: 30px;
    bottom: -40px;
    position: absolute;
    transition: all 0.3s ease-in-out;
}
.service-icon img{
    height: 50px;
}
.service-section .box-content .upper_portion .image_content:hover {
    transform: translateY(-5px);
}
.service-section .box-content .lower_portion_wrapper {
    padding: 58px 20px 10px;
}
.service-section .box-content .lower_portion_wrapper h5 {
    font-weight: 600;
    margin-bottom: 6px;
    transition: all 0.3s ease-in-out;
    font-family: 'Poppins',sans-serif,Arial,Helvetica;
  font-weight: 400;
  word-wrap: break-word;
  font-size: 18px;
}
.service-section .box-content .lower_portion_wrapper p {
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;font-size: 15px;
  text-align: justify;
  color: #b0b0b0;
}
.service-section .box-content .lower_portion_wrapper .read_more {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}
.service-section .box-content .lower_portion_wrapper .read_more:hover{
    color: var(--e-global-color-white);
}
.service-section .box-content .lower_portion_wrapper .read_more i {
    display: inline-block;
    margin-left: 8px;
    font-size: 12px;
}
.service-section .box-content .lower_portion_wrapper .read_more:hover i{
    color: var(--e-global-color-white);
}
.service-section .explore-button{
    margin: auto;
    text-align: center;
}
.service-section .explore{
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-right: 16px;
}
.service-section .explore-button:hover .explore{
    color: var(--e-global-color-accent);
}
.service-section .explore-button .image-button{
    display: inline-block;
}
.service-section .explore-button .arrow{
    position: relative;
    border: 1px solid var(--e-global-color-accent);
    width: 65px;
    height: 65px;
    line-height: 60px;
    text-align: center;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    top: -4px;
    right: 0;
    left: 0;
    margin: auto;
}
.service-section .explore-button:hover .arrow{
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.service-section .explore-button:hover .arrow img{
    filter: brightness(0) invert(1);
}

/*Whys us end*/



.call-to-action-area .info {
    padding: 86px 0;
    padding-left: 24px;
    max-width: 628px;
/*    overflow: hidden;*/
    position: relative;
}

.call-to-action-area .info .title {
    font-size: 32px;
  font-family: "Italiana", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.call-to-action-area .title a{
    font-family: 'Poppins',sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}

.call-to-action-area .info p {
    margin-top: 5px;
}

.call-to-action-area .info .phone-icon {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    color: #b8693a;
    font-size: 30px;
    background-color: var(--white);
    transition: var(--transision);
    position: absolute;
    top: 50%;
    left: -92px;
    transform: translateY(-50%);
}
.call-to-action-area .image{
    height: 100%;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8%) 100%, 0% 100%);
}
.call-to-action-area {
  background-color: #b8693a;
  position: relative;
  height: auto;
}

.form-control{
    height: 45px;
  padding: 0 25px 0 25px;
    padding-right: 25px;
  padding-right: 45px;
  border: 1px solid transparent !important;
  border-radius: 0px;
  font-size: 16px;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-bottom: 20px;
  border-bottom: 1px solid #b86939 !important;
  box-shadow: none !important;
}
.homed{
    box-shadow:0px 10px 30px 0px rgba(0, 0, 0, 0.16);
    background:#b8693a;
}
textarea{
    height:100px !important;
    padding-top: 10px !important;
}
.homecontact{
    padding: 70px 0;
    background: #fff;
    height: auto;
}
.homecontact form{
    background: #fff;
    padding: 40px 40px;
}.ripple-animation,
.play-btn:after,
.play-btn:before,
.cta-link-icon:after,
.cta-link-icon:before {
  -webkit-animation-duration:5s;
  animation-duration:5s;
  -webkit-animation-timing-function:ease-in-out;
  animation-timing-function:ease-in-out;
  -webkit-animation-iteration-count:infinite;
  animation-iteration-count:infinite;
  -webkit-animation-name:ripple;
  animation-name:ripple
}

@keyframes ripple {
  0% {
    -webkit-transform:scale(1);
    transform:scale(1);
    opacity:1
  }
  30% {
    opacity:0.4
  }
  100% {
    -webkit-transform:scale(1.5);
    transform:scale(1.5);
    opacity:1
  }
}
.cta-link a{
    color: #fff;
    text-decoration: none;
}
.homecontact h1{
    margin-bottom: 30px !important;
  color: #b76838;
  margin-bottom: 0px;
  font-size: 40px;
  font-family: "Italiana", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-align: left;
}
.getintouch{
    padding: 40px;
}
.getintouch h1{
    color: #fff;

}
.cta-link-wrap {
  border-top: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  gap: 30px;
}

 .cta-link-wrap .cta-link {
  padding: 20px 0;
}
.cta-single-link{
    color: #fff !important;
}
.cta-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}.cta-link-icon {
  width: var(--icon-size, 36px);
  height: var(--icon-size, 36px);
  line-height: var(--icon-size, 36px);
  background: #fff;
  border-radius: 50%;
  text-align: center;
  color: #B8693A;
  font-size: 18px;
  position: relative;
}
.cta-link-icon::after, .cta-link-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #faf9f9;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.cta-link p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 2px;
  margin-top: -0.4em;
}

.socialmedia  li{
   display: inline-block;
  margin-right: 10px;

  text-align: center;
}
.socialmedia  li a
{  background: #fff;
  border-radius: 67px;
  width: 30px;
  height: 30px;
  line-height: 30px;
    color: #b8693a;
    transition: 0.5s ease;
    border:1px solid #fff;
    display: block;
}
.socialmedia  li a:hover
{
    transition: 0.5s ease;
    color: #fff;
    background: #b8693a;
}
.socialmedia  li a:hover .socialmedia li{
    background: red;
}
.socialmedia{
    margin-top: 30px;
  padding-left: 0;
}

@media screen and (max-width:1300px){
    .navbar-light .navbar-brand{
        margin-left: 9%;
    }
}



@media screen and (max-width:1199px){
    .counter span{
        font-size: 40px;
    }
      .navbar-light .navbar-brand{
        margin-left: 8%;
        width: 44%;
    }
    #counter p {
  font-size: 16px;
}
}
@media screen and (max-width:991px){
 .slide-title{
     display:none;
 }
     .navbar-light .navbar-brand {
    margin-left: 5%;
    width: 44%;
  }
   .choose-section .choose-arrow{
    display: none;
   }
   .choose-section .choose_content{
    margin-left: 0;
   }
    .choose-section .choose_content {
    padding: 30px 25px 20px 30px;
}
#news-slider h4{
    font-size: 16px;
}
#news-slider h6{
    font-size: 14px;
}
#news-slider .tag{
    display: none;
}
.post-slide .post-img img{
    height: 250px;
}
  .choose-section {
    padding: 247px 0 58px;
  }
  .service-section .box-content .upper_portion .image img{
    width: 100%;
  }
  .homecontact form{
    padding: 20px 20px;
  }
  .getintouch {
  padding: 20px 5px;
}
  .form-control{
    padding-left: 5px;
    padding-right: 5px;
  }
  .homecontact h1 {
  margin-bottom: 10px !important;
}
.footer-section .middle-portion .links li{
    margin: 0 10px;
}
.footer-section .middle-portion input{
    margin-left: 0;
    width: 100%;
}
.footer-section .subscribe_now{
    right: 15px;
}
.footer-section .middle-portion a {
  font-size: 14px;
}
  .counter span {
    font-size: 34px;
  }
    #counter p {
    font-size: 14px;
  }
  .slide-image{
 
  height: 74vh;
  }

  .swiper-container{
      height: 74vh;

  }
  section{
    height: auto;
  }
}


@media screen and (max-width:767px){
    .slide-title{
        font-size: 2rem;
        max-width: 70%;
    }
      .slide-image{
  
  height: 30vh;
  }
  .swiper-container{
      height: 30vh;

  }
  .slide-title {
    font-size: 26px;
    max-width: 100%;
  }
  .slideshow-pagination{
    bottom: 2rem;
  }
  .pagination-number{
    font-size: 16px;
  }

  .navbar-brand img {
  height: 50px;
}
  .navbar-light .navbar-brand {
    margin-left: 5%;
    width: 39%;
  }
  .hamburger{
    top: 15px;
  }
    .choose-section .choose-image img {
    width: 90%;
    margin-left: 5%;
  }
  .choose-section .choose_content{
    width: 90%;
  }
  .choose-section {
    padding: 35px 0 10px;
  }
  .choose-section .choose-image{
    display: none;
  }
  .choose-section h4{
    display: none;
  }
   .choose-section .choose_content {
    padding: 0;
    margin-top: 0;
    width: 100%;
    box-shadow: none;
  }
  .choose-section .choose_content h2{
    font-size: 22px;
    padding-left: 9px;
    margin-bottom: 15px;
  }
  .choose-section .choose_content .text-size-16{
    font-size: 15px;
    margin-bottom: 10px;
  }
  .featured_projects h1{
    font-size: 30px;
    margin-bottom: -5px;
  }
  #news-slider {
  margin-top: 0;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot.owl-nav{
    left: 34%;
    bottom: -60px;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot.owl-nav{
    right: 17%;
    bottom: -60px;
}
.featured_projects{
    padding: 10px 0 40px;
}
#counter{
    display: block;
}
#counter p{
    margin-top: 1px;
}
  .counter span {
    font-size: 30px;
  }
  .counter{
    padding-bottom: 15px;
  }
  .call-to-action-area .info{
    padding: 0;
  }
  .call-to-action-area .info .title {
 font-size: 13px;
    font-family: "Poppins", sans-serif;
    margin-left: -10px;
    font-weight: normal;
}
.call-to-action-area .title a{
    font-size: 15px;line-height: 30px;
}
.socialicons{
    display: none;
}
.hamburger {
    top: 13px;
    right: 3.5%;
  }
   .navbar-light .navbar-brand {
    margin-left: 0;
    width: 70%;
  }.nav-link {
  font-weight: 400;
  font-size: 15px;
}
    .navbar-brand img {
    height: 50px;
    margin-left: 6%;
  }
  .hamburger.is-open{
    margin-right: -3% !important;
  }
   .slide-title {
    font-size: 18px;
  }
  .call-to-action-area .info .phone-icon {
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
  left: -52px;
}
.call-to-action-area .info .title{
   margin-top: 15px;
}
.service-section{
    padding: 35px 0 20px;
}
.service-section .service_content h2{
    font-size: 30px;
    margin-bottom: 18px !important;
}
.service-section .box-content{
    margin-bottom: 20px;
}
.service-section .top-space {
  padding-top: 0;
}
.service-section .box-content .upper_portion .image:hover img{
   transform: scale(1);
}
.service-section .box-content:hover {
  transform: translateY(0px);
}
.homecontact {
  padding: 35px 0;
}
  .getintouch {
    padding: 20px 20px 10px;
  }
  .homecontact h1{
    font-size: 30px;
  }
  .ctalink2{
    padding-top: 0px !important;
  }
  .socialmedia {
  margin-top: 20px;
}
.footer-section{
    padding-top: 35px;
}
.footer-section .middle-portion .logo-part .footer-logo img {
  height: 50px;
}
.footer-section .middle-portion h6{
    font-size: 15px;
    margin-bottom: 15px;
}
.footer-section .middle-portion .logo-part .footer-logo {
  margin-bottom: 15px;
}
.footer-section .left-lamp, .footer-section .right-lamp{
    display: none;
}
.footer-section .footer-lower{
    padding: 10px 0 10px;
}
.footer-section .footer-lower p{
    font-size: 15px;
    width: 100%;
    text-align: center;
}
.footer-section .footer-lower .social-icons .position-absolute{
 position: relative !important;
 text-align: center;
}
.footer-section .footer-lower .social-icons ul li .social-networks:hover{
    transform: translateY(0px);
    border:none;
}
.footer-section .middle-portion input {
  font-size: 14px;
  line-height: 20px;
  padding: 10px 15px;
  height: 40px;
}
.footer-section .subscribe_now{
    width: auto;
    padding: 10px;
    height: 40px;
    font-size: 12px;
    top: 0px;
}
 .footer-section .subscribe_now {
    right: 0;
  }
}











/*Contact us page*/
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
  background-color: #fff;
}
@media (max-width: 767px) {
  .contact-one {
    padding: 80px 0 0;
  }
}
.contact-one__info {
  position: relative;
  background-color: #b96a3a;
  border-radius: 10px;
  padding: 58px 30px 40px 200px;
}
@media (max-width: 767px) {
  .contact-one__info {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.contact-one__info::after {
  position: absolute;
  right: -56px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 36px 0 36px 56px;
  border-color: transparent transparent transparent #b96a3a;
}
@media (max-width: 991px) {
  .contact-one__info::after {
    display: none;
  }
}
.contact-one__info__icon {
  font-size: 114px;
  line-height: 114px;
  color: #fff;
  left: 45px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  min-height: 114px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .contact-one__info__icon {
    position: relative;
    left: 0;
    margin: 0 0 30px;
    font-size: 90px;
    line-height: 90px;
  }
}
.contact-one__info__title {
  font-size: 30px;
  color: #fff;
  margin: 0 0 6px;
}
.contact-one__info__title span {
  text-decoration: underline;
}
.contact-one__info__text {
  color: #fff;
  font-size: 22px;
  margin: 0;
}
.contact-one__info__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-one__info__text a:hover {
  background-size: 100% 1px;
}
.contact-one__info__text a + a {
  margin-left: 4px;
}
.contact-one__image {
  position: relative;
  z-index: 9;
  margin: -58px 0 0 -15px;
}
.contact-one__image img {
  position: absolute;
  left: 0;
  top: 0;
  animation: messageMove2 2.5s linear 0s infinite;
}
@media (max-width: 1199px) {
  .contact-one__image {
    display: none;
  }
}
.contact-one__container {
  max-width: 1599px;
}
.contact-one__wrapper {
  position: relative;
  z-index: 2;
  background-color: var(--tolak-black, #051d1f);
  border-radius: 10px;
  margin: 10px 0 0;
  background-position: right bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}
.contact-one__wrapper::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 30%;
  content: "";
  background-color: #b96a3a;
  z-index: -1;
  border-radius: 0 0 0 10px;
}
@media (max-width: 991px) {
  .contact-one__wrapper::after {
    display: none;
  }
}
.contact-one__image-two {
  position: relative;
  padding: 23px 0 23px 25px;
  display: inline-block;
}
@media (max-width: 767px) {
  .contact-one__image-two {
    padding: 20px;
  }
}
.contact-one__image-two img {
  max-width: 100%;
  border: 10px solid #fff;
}
.contact-one__image-two::before {
  position: absolute;
  right: -56px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 56px 0 56px 56px;
  border-color: transparent transparent transparent #b96a3a;
  animation: airTree 4s ease-in infinite;
}
.contact-one__content {
  position: relative;
  padding: 110px 0;
  max-width: 570px;
}
@media (max-width: 1399px) {
  .contact-one__content {
    padding-left: 20px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .contact-one__content {
    padding: 80px 30px 80px 0;
  }
}
@media (max-width: 991px) {
  .contact-one__content {
    padding: 80px 30px;
  }
}
@media (max-width: 767px) {
  .contact-one__content {
    padding: 50px 20px;
  }
}
.contact-one__content .sec-title {
  padding-bottom: 18px;
}
.contact-one__content .sec-title__title {
  color: #fff;
}
.contact-one__content__text {
  color: var(--tolak-text-dark, #b7b7b7);
  margin: 0 0 35px;
}
.contact-one__content .tolak-btn span {
  background-color: var(--tolak-black3, #000);
}

.contact-two {
  position: relative;
  padding: 70px 0 0;
  background-color: #fff;
  height:auto;
}
@media (max-width: 767px) {
  .contact-two {
    padding: 40px 0 0;
  }
}
.contact-two__wrapper {
  position: relative;
  border: 1px solid var(--tolak-border-color, #dddddd);
  border-radius: 20px;
margin-bottom:50px;
}


.contact-two__info {
  position: relative;
  background-color: #b96a3a;
  max-width: 501px;
  border-radius: 11px;
  padding:30px 30px 4px;
}
@media (max-width: 767px) {
  .contact-two__info {
    padding: 35px 20px 49px;
  }
}
.contact-two__info__shape {
  position: absolute;
  right: 40px;
  bottom: 45px;
  width: 120px;
  height: 120px;
  background-position: center center;
  background-repeat: no-repeat;
  animation: wobble-horizontal-on-hover 4s infinite linear;
}
@keyframes wobble-horizontal-on-hover {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
.contact-two__info::after {
  position: absolute;
  right: -45px;
  top: 70px;
  margin: auto;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 45px 0 45px 45px;
  border-color: transparent transparent transparent var(--tolak-black, #051d1f);
  animation: topBottomTwo 4s infinite linear;
}
@media (max-width: 1199px) {
  .contact-two__info::after {
    display: none;
  }
}
.contact-two__info__title {
  margin-bottom: 25px;
  color: #fff;
  font-size: 28px;
  font-family: "Italiana", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.contact-two__info__text {
  color: #fff;
  margin: 0 0 32px;
}
.contact-two__info__box-wrapper {
  margin: 0 0 37px;
  padding: 0 0 0 41px;
  border-left: 5px solid #fff;
  list-style: none;
  position: relative;
}
@media (max-width: 767px) {
  .contact-two__info__box-wrapper {
    padding-left: 0;
    border: none;
  }
}
.contact-two__info__box-wrapper::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 22px 0 22px 22px;
  border-color: transparent transparent transparent #fff;
  animation: topBottomTwo 3s infinite linear;
}
@media (max-width: 767px) {
  .contact-two__info__box-wrapper::after {
    display: none;
  }
}
.contact-two__info__box {
  position: relative;
  min-height: 64px;
  padding: 2px 0 0 75px;
}
.sec-title-two__title{

  color: #b76838;
  margin-bottom: 0px;
  font-size: 40px;
  font-family: "Italiana", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-align: left;
}
.contact-two__info__box__icon {
  width: 54px;
  height: 54px;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #b96a3a;
  border-radius: 50%;
  font-size: 28px;
  transition: all 500ms ease;
  z-index: 1;
  overflow: hidden;
}
.contact-two__info__box__icon::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  background-color: var(--tolak-black, #051d1f);
  top: 0px;
  left: 0px;
  z-index: -1;
  transition: all 500ms ease;
}
.contact-two__info__box:hover .contact-two__info__box__icon {
  color: #fff;
}
.contact-two__info__box:hover .contact-two__info__box__icon::after {
  height: 100%;
}
.contact-two__info__box__title {
  color: #fff;
 font-size: 16px;
  margin: 0 0 4px;
}
.contact-two__info__box__text {
  color: #fff;
  font-size: 16px;
  margin: 0;
}
.contact-two__info__box__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-two__info__box__text a:hover {
  background-size: 100% 1px;
}
.contact-two__info__box + .contact-two__info__box {
  margin-top: 20px;
}
.bhon
{
  margin-top: 10px !important;
}
.contact-two__info__social {
  position: relative;
}
.contact-two__info__social__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.27px;
  margin: 0 0 26px;
}
.contact-two__info__social__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-two__info__social__wrap a {
  width: 37px;
  height: 37px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: #b96a3a;
}
.contact-two__info__social__wrap a:hover {
  background-color: var(--tolak-black, #051d1f);
  color: #fff;
}
.contact-two__content {
  position: relative;
  padding: 31px 40px 0 0px;
}
.contact-two__content .sec-title-two {
  padding-bottom: 21px;
}
.contact-two__content__text {
  margin: 0 0 35px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-two__content__text br {
    display: none;
  }
}
.contact-two__content .form-one .bootstrap-select > .dropdown-toggle,
.contact-two__content .form-one input[type=text],
.contact-two__content .form-one input[type=email],
.contact-two__content .form-one textarea {
  border: 1px solid var(--tolak-border-color, #dddddd);
}
.contact-two--contact-page {
  padding: 70px 0;
}
@media (max-width: 767px) {
  .contact-two--contact-page {
    padding: 80px 0;
  }
}
@keyframes topBottomTwo {
  0%, 100% {
    transform: translateY(0);
  }
  25%, 75% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/**/

.banner-section{
  height: auto;
  background: #b96a3a;
  padding: 35px 0;
  text-align: center;
}
.banner-section h1{
  color: #fff;
  margin-bottom: 0px;
  font-size: 40px;
  font-family: "Italiana", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-align: center;
}


@media screen and (max-width:991px){
  .contact-two__info{
    max-width: 100%;
  }
  .contact-two__content{
    padding: 30px;
  }
}

@media screen and (max-width:767px){
  .banner-section{
    padding: 25px 0;
  }
  .banner-section h1{
    font-size: 32px;
  }
    .contact-two--contact-page {
    padding: 35px 0 30px;
  }
    .contact-two__info {
    padding: 25px 20px 1px;
  }
  .contact-two__info__title{
    font-size: 24px;
  }
  .contact-two__info__box__icon {
  width: 45px;
  font-size: 24px;
  height: 45px;
}
.contact-two__info__box{
  padding: 2px 0 0 60px;
}
.contact-two__info__box__title{
  font-size: 15px;
}
.contact-two__info__box__text{
  font-size: 15px;
}
.sec-title-two__title{
  font-size: 30px;
}
.contact-two__wrapper{
  margin-bottom: 35px;
}
}


/*ABout us page*/
.aboutuspage{
  padding: 70px 0;
  height: auto;
}
.aboutuspage p{
  margin-bottom: 10px;
  font-size: 16px;
  text-align: justify;
}
.aboutuspage .mt-20{
  margin-top: 60px;
}
.aboutuspage ul li{
  list-style: disclosure-closed;
  margin-bottom: 5px;
  font-size: 16px;
  color: #616161;
  text-align: justify;
}
.aboutuspage .mt-30{
  margin-top: 30px;
}
.aboutuspage ul li::marker{
   color: #b76838;
}
.aboutuspage ul{
  padding-left: 15px;
}
.aboutuspage h5{
  margin-top: 15px;
  color: #b76838;
}
.aboutuspage h1{
  margin-bottom: 10px !important;
  color: #b76838;
  margin-bottom: 0px;
  font-size: 40px;
  font-family: "Italiana", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-align: left;
}
.aboutuspage h2{
  margin-bottom: 15px;
  border-left: 3px solid #b7683a;
  padding-left: 10px;
  color: #b7683a;
  font-size: 28px;
  font-family: "Italiana", sans-serif;
  font-weight: 800;
  font-style: normal;
}

#dnnn{
  display: none;
}

@media screen and (max-width:1199px){
  #dnnn{
  display: block;
}
#dmm{
  display: none;
}
.aboutuspage .mt-20 {
  margin-top: 20px;
}
}
a:hover{
  text-decoration: none;
}

@media screen and (max-width:991px){
   .aboutuspage h1 {
    font-size: 30px;
    margin-top: 20px;
  }
  .aboutuspage p, .aboutuspage ul li{
    font-size: 15px;
  }
    .aboutuspage .mt-20 {
    margin-top: 10px;
  }
  .aboutuspage h2{
    font-size: 24px;
  }
  .aboutuspage h5 {
  margin-top: 0;
}
.aboutuspage {
  padding: 35px 0 20px;
}
}

/**/



.mobile-screen-footer {
  float: left;
  display: none;
  width: 100%;
  position: fixed;
  z-index: 9999999999 !important;
  bottom: 0px;
  background: #b96a3a;
  border-radius: 30px 30px 0px 0px;
  border-top: 2px solid #fff;
  padding: 0px 0px;
}

.mobile-footer-box a {
  width: 100%;
  text-decoration: none;
  padding: 10px 0px;
    padding-bottom: 10px;
  float: left;
  padding-bottom: 5px;
  text-align: center;
}
.mobile-footer-box a img {
  width: 25px;
  margin: 0px auto;
}
.mobile-footer-box a h5 {
  font-size: 11px;
  margin: 5px 0px 0px 0px;
  color: #fff;
  line-height: 15px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  font-family: 'Poppins-Light';
  letter-spacing: 1px;
}
.mobile-footer-block {
  width: 33.33%;
  float: left;
  text-align: center;
}

@media screen and (max-width:767px){
  .mobile-screen-footer{
    display: block;
  }
    .footer-section {
    padding-bottom: 65px;
  }
  .sidebar-nav li a{
    padding: 9px 15px 8px 30px;
  }
}
 .pt-03{
    padding-top: 0;
  }



  @media screen and (max-width:767px){
    .abtcounter li {
 text-align: left !important;
    padding-left: 15px;
}
.abtcounter{
  margin-top: -10px;
  }
    .abtcounter span {
    font-size: 24px;
  }
}



#sidebar-wrapper{
  display: none;
}
#page-content-wrapper{
  display: none;
}


.dnme{
  display: none;
}
#navl{
  display: none;
}
@media screen and (max-width:767px){
  #sidebar-wrapper{
  display: block;
}
#navl{
  display: block;
}
.dnme{
  display: block;
}
#page-content-wrapper{
  display: block;
}
.sh9{
  display: none;
}

.navbar-nav{
  background-color: #fff;
}
#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-right: 220px;
}

#sidebar-wrapper {
    z-index: 1000;
    right: 220px;
    width: 0;
    height: 100%;
    margin-right: -220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #1a1a1a;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}
.fixed-top{
   left: unset;
}
#wrapper.toggled #sidebar-wrapper {
    width: 260px;
}

#page-content-wrapper {
    width: 100%;
/*    padding-top: 70px;*/
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -220px;
}

.navbar-light .navbar-brand{
   width: 46%;
  margin-left: 11%;
  margin-right: auto;
  display: flex;
}
.navbar-brand img{
    height: 65px;
}
.navbar-brand img{
    margin: auto;
}
.navbar {
  padding: 5px 0;
  background: #fff;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2);
}
/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 260px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    position: relative; 
    line-height: 20px;
    display: inline-block;
    width: 100%;
}

.sidebar-nav li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 3px;
    background-color: #1c1c1c;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}

.sidebar-nav li:nth-child(5n+1):before {
    background-color: #b56638;   
}
.sidebar-nav li:nth-child(5n+2):before {
    background-color: #b56638;   
}
.sidebar-nav li:nth-child(5n+3):before {
    background-color: #b56638;   
}
.sidebar-nav li:nth-child(5n+4):before {
    background-color: #b56638;   
}
.sidebar-nav li:nth-child(5n+5):before {
    background-color: #b56638;   
}

.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
    width: 100%;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}

.sidebar-nav li a {
    display: block;
    color: #ddd;
    text-decoration: none;
    padding: 10px 15px 10px 30px;    
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}
.sidebar-header {
    text-align: center;
    font-size: 20px;
    position: relative;
    width: 100%;
    display: inline-block;
}
.sidebar-brand {
    height: 65px;
    position: relative;
    background:#212531;
    background: linear-gradient(to right bottom, #1a1a1a 50%, #1a1a1a 50%);
   padding-top: 1em;
   margin-bottom: 20px;
   float: left;
  margin-left: 20px;
}
.sidebar-brand img{
    height: 50px;
}
.sidebar-brand a {
    color: #ddd;
}
.sidebar-brand a:hover {
    color: #fff;
    text-decoration: none;
}
.dropdown-header {
    text-align: center;
    font-size: 1em;
    color: #ddd;
    background:#212531;
    background: linear-gradient(to right bottom, #2f3441 50%, #212531 50%);
}
.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #1a1a1a;
    box-shadow: none;
}
.dropdown-menu.show {
    top: 0;
}
/*Fontawesome icons*/

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger {
  position: fixed;
  top: 20px;
  z-index: 999;
  display: block;
 width: 34px;
  height: 45px;
  margin-right: 15px;
  background: #f8f9fa;
  cursor: pointer;
  border: none;
  border: 2px solid #b86939;
  right: 7.5%;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #b7693a;
}
.hamburger.is-closed .hamb-top { 
  top: 5px; 
  -webkit-transition: all .35s ease-in-out;
  rotate: 90deg;
 margin-left: -1px;
  margin-top: 0;
  width: 20px;
  margin-top: 18px;
}
.hamburger.is-closed .hamb-middle {
  top: 60%;
  margin-top: -2px;
   rotate: 90deg;
 margin-left: 3px;
  margin-top: -4px;
  width: 25px;
}
.hamburger.is-closed .hamb-bottom {
 bottom: 19px;
  -webkit-transition: all .35s ease-in-out;
  rotate: 90deg;
  margin-left: 6px;
  margin-top: 15px;
  width: 30px;
}
.socialicons li {
  display: inline-block;
  margin-right: 10px;
  text-align: center;
}
.socialicons li a {
  background: #b8693a;
  border-radius: 67px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  transition: 0.5s ease;
  border: 1px solid #b8693a;
  display: block;
}
.socialicons li a:hover {
  transition: 0.5s ease;
  color: #b8693a;
  background: #fff;
}
.socialicons{
    margin-left: 7.5%;
    padding-left: 0;
    margin-top: 18px;
}


.hamburger.is-open{
    z-index: 999999999999999999;
    margin-right: -7% !important;
    border:none;
    background: transparent;

}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #fff;
  width: 24px;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;  
}
.hamburger.is-open .hamb-top { 
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.navigation-wrap{
  display: none;
}#wrapper.toggled #sidebar-wrapper {
  width: 260px;
}
.navbar-toggler{
  display: none;
}
  .navbar-brand img {
    height: 50px;margin-left:0;
  }
    .navbar {
    padding: 0;
  }
.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
    .hamburger {
    position: fixed;
    top: 7px;
  }
      .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    margin-top: 10px !important;
    margin-bottom: 0;
  }
    .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .call-to-action-area .info .title{
      margin: 0;
    margin-top: 5px;
  }
}
.navigation-wrap{
  background-color: #fff;
}




.bannernew{
  height: auto;
  padding: 250px 0;
  background-image: url('images/happy.webp');
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width:767px){
    .bannernew{
        padding: 100px 0;
    }
}

