/*
Theme Name: My Custom Theme
Theme URI: http://example.com/my-custom-theme
Author: Your Name
Author URI: http://example.com
Description: A custom WordPress theme example.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/
/* RESET RULES & HELPER CLASSES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --purple-1: #3d174f;
  --purple-2: #4b2860;
  --white: #fff;
  --black: #221f1f;
  --red: #ed1849;
  --lightgray: #cfcfcf;
  --overlay: rgba(0, 0, 0, 0.5);
}
.topngfh{
	position: relative;
}
.hfrt{
	text-align: center;
}
.tefdrg {
    text-align: center;
    margin: 0 auto;
}
.tefdrg input {
    width: 30%;
}
.gfhrt{
	text-align: center;
}

.topngfh a img {
    position: absolute;
    width: 120px;
    height: 160px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    bottom: 280px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}
.page-id-70 .top-menu .new_menu_sect_right a {
    background: #000;
    border-radius: 10px;
}
.page-id-7 .top-menu .new_menu_sect_right a {
    background: #000;
    border-radius: 10px;
}
.page-id-7 .page-header ul a:hover {
    color: #fff;
}
.sculpt_sect a:hover {
    color: #000;
    background: #fff;
}
header button {
  background: transparent;
  border: none;
  cursor: pointer;
}
body a{
 text-decoration: none !important;
}
header ul {
  list-style: none;
}

header a {
  text-decoration: none;
}

header img {
  display: block;
  max-width: 100%;
  height: auto;
}
button.open-mobile-menu.fa-lg i {
    color: #fff;
}
header a,
button {
  color: inherit;
}

.no-transition {
  transition: none !important;
}

/* HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header {
  position: relative;
  padding: 1.5rem 3rem;
  background: var(--purple-1);
}

.page-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header .horizontal-logo,
.page-header .search span {
  display: none;
}

.page-header .vertical-logo {
  max-width: 9.5rem;
}

.page-header .top-menu-wrapper {
  color: var(--black);
}

.page-header .top-menu-wrapper::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: background 0.5s;
}

.page-header .search {
  color: var(--white);
}

.page-header .panel,
.page-header .top-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.page-header .panel1 {
  width: 100%;
  background: var(--purple-1);
  transition-delay: 0.3s;
}

.page-header .panel2 {
  width: calc(100% - 3rem);
  background: var(--red);
  transition-delay: 0.1s;
}

.page-header .top-menu {
  display: flex;
  flex-direction: column;
  width: calc(100% - 6rem);
  overflow-y: auto;
  padding: 2rem;
  background: var(--white);
}

.page-header .top-menu-wrapper.show-offcanvas::before {
  background: var(--overlay);
  z-index: 1;
}

.page-header .top-menu-wrapper.show-offcanvas .panel,
.page-header .top-menu-wrapper.show-offcanvas .top-menu {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.7s;
}

.page-header .top-menu-wrapper.show-offcanvas .panel1 {
  transition-delay: 0s;
}

.page-header .top-menu-wrapper.show-offcanvas .panel2 {
  transition-delay: 0.2s;
}

.page-header .top-menu-wrapper.show-offcanvas .top-menu {
  transition-delay: 0.4s;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 4rem 0.5rem;
}


/* FORM
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header .search-form {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  padding: 1rem 0;
  background: var(--purple-2);
  transition: all 0.2s;
}

.page-header .search-form.is-visible {
  visibility: visible;
  opacity: 1;
}

.page-header .search-form div {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.page-header .search-form input {
  width: 100%;
  font-size: 2rem;
  height: 4rem;
  padding: 0 2rem;
}

.page-header .search-form button {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple-1);
}


/* TOP MENU
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header .top-menu li + li {
  margin-top: 1.5rem;
}

.page-header .top-menu > li:last-child {
  margin-top: auto;
}

.page-header ul a {
    display: inline-block;
    font-size: 15px !important;
    text-transform: uppercase;
    transition: color 0.35s ease-out;
}

.page-header ul a:hover {
  color: var(--red);
}

.page-header .has-dropdown i {
  display: none;
}

.page-header .sub-menu {
  padding: 1.5rem 2rem 0;
}

.page-header .top-menu .mob-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.page-header .top-menu .mob-block i {
  color: var(--lightgray);
}

.page-header .socials {
  display: flex;
  margin-top: 3rem;
  /* some browsers ignore the padding-bottom: 2rem of the .top-menu because it has overflow-y:auto
  https://bugzilla.mozilla.org/show_bug.cgi?id=748518
  so we add a bottom margin to the .socials
  */
  margin-bottom: 1rem; 
}

.page-header .socials li + li {
  margin-top: 0;
}

.page-header .socials .fa-stack {
  font-size: 1.7rem;
}

.page-header .socials .fab {
  font-size: 1.2rem;
}


/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.3rem;
  color: var(--black);
}

.page-footer span {
  color: #e31b23;
}
@media (max-width: 1199px) {
    .skin-with a {
    padding: 10px 7px;
}
.inmoce_txt a {
    padding: 10px 10px;
}
.topngfh a img {
    bottom: 220px;
}



}

/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 550px) {
  .page-header .panel1 {
    width: 60%;
  }
  .page-header .panel2 {
    width: calc(60% - 3rem);
  }
  .page-header .top-menu {
    width: calc(60% - 6rem);
  }
}

@media screen and (min-width: 768px) {
  .page-header .top-menu {
    padding: 4rem;
  }

  .page-header ul a {
    font-size: 1.6rem;
  }

  .page-header .search-form input {
    font-size: 2.4rem;
    height: 5rem;
    line-height: 5rem;
  }
}

@media screen and (min-width: 995px) {
  .page-header {
    padding: 0 3rem;
  }

  .page-header .panel,
  .page-header .open-mobile-menu,
  .page-header .vertical-logo,
  .page-header .top-menu .mob-block,
  .page-header .top-menu > li:last-child,
  .page-header .top-menu-wrapper::before {
    display: none;
  }

  .page-header .horizontal-logo {
    display: block;
  }

  .page-header .top-menu-wrapper {
    display: flex;
    align-items: center;
    color: var(--white);
  }

  .page-header .top-menu {
    flex-direction: row;
    position: static;
    width: auto;
    background: transparent;
    transform: none;
    padding: 0;
    overflow-y: visible;
    box-shadow: none !important;
  }

  .page-header .top-menu li + li {
    margin-top: 0;
  }

  .page-header .top-menu > li:not(:nth-last-child(2)) {
    margin-right: 3rem;
  }

    .page-header .top-menu > li > a {
        padding: 1rem 0.5rem;
    }

  .page-header ul a {
    font-size: 1.3rem;
  }

  .page-header .has-dropdown i {
    display: inline-block;
  }

  .page-header .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.5rem 2rem;
  }

  .page-header .sub-menu li + li {
    margin-top: 1.2rem;
  }

  .page-header .sub-menu a {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }

  .page-header .has-dropdown {
    position: relative;
  }

  .page-header .has-dropdown:hover .sub-menu {
    display: block;
  }

  .page-header .search {
    display: flex;
    align-items: center;
    margin-left: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .page-header .search {
    margin-left: 5rem;
  }

  .page-header .search i {
    margin-right: 1.5rem;
  }

  .page-header .search span {
    display: block;
    font-weight: 500;
    font-size: 1.6rem;
  }
}

/* 
menu end */

/*
Theme Name: My Custom Theme
Theme URI: http://example.com/my-custom-theme
Author: Your Name
Author URI: http://example.com
Description: A custom WordPress theme example.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/

/* RESET RULES & HELPER CLASSES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --purple-1: #3d174f;
  --purple-2: #4b2860;
  --white: #fff;
  --black: #221f1f;
  --red: #ed1849;
  --lightgray: #cfcfcf;
  --overlay: rgba(0, 0, 0, 0.5);
}

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

header button {
  background: transparent;
  border: none;
  cursor: pointer;
}

header ul {
  list-style: none;
}

header a {
  text-decoration: none;
}

header img {
  display: block;
  max-width: 100%;
  height: auto;
}

header a,
button {
  color: inherit;
}

.no-transition {
  transition: none !important;
}

/* HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header {
    position: relative;
    padding: 1.5rem 3rem;
    background: #3d174f00;
}

.page-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header .horizontal-logo,
.page-header .search span {
  display: none;
}

.page-header .vertical-logo {
  max-width: 9.5rem;
}

.page-header .top-menu-wrapper {
  color: var(--black);
}

.page-header .top-menu-wrapper::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: background 0.5s;
}

.page-header .search {
  color: var(--white);
}

.page-header .panel,
.page-header .top-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.page-header .panel1 {
  width: 100%;
  background: var(--purple-1);
  transition-delay: 0.3s;
}

.page-header .panel2 {
  width: calc(100% - 3rem);
  background: var(--red);
  transition-delay: 0.1s;
}

.page-header .top-menu {
  display: flex;
  flex-direction: column;
  width: calc(100% - 6rem);
  overflow-y: auto;
  padding: 2rem;
  background: var(--white);
}

.page-header .top-menu-wrapper.show-offcanvas::before {
  background: var(--overlay);
  z-index: 1;
}

.page-header .top-menu-wrapper.show-offcanvas .panel,
.page-header .top-menu-wrapper.show-offcanvas .top-menu {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.7s;
}

.page-header .top-menu-wrapper.show-offcanvas .panel1 {
  transition-delay: 0s;
}

.page-header .top-menu-wrapper.show-offcanvas .panel2 {
  transition-delay: 0.2s;
}

.page-header .top-menu-wrapper.show-offcanvas .top-menu {
  transition-delay: 0.4s;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 4rem 0.5rem;
}


/* FORM
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header .search-form {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  padding: 1rem 0;
  background: var(--purple-2);
  transition: all 0.2s;
}

.page-header .search-form.is-visible {
  visibility: visible;
  opacity: 1;
}

.page-header .search-form div {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.page-header .search-form input {
  width: 100%;
  font-size: 2rem;
  height: 4rem;
  padding: 0 2rem;
}

.page-header .search-form button {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple-1);
}


/* TOP MENU
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header .top-menu li + li {
  margin-top: 1.5rem;
}

.page-header .top-menu > li:last-child {
  margin-top: auto;
}

.page-header ul a {
    display: inline-block;
    font-size: 15px !important;
    text-transform: uppercase;
    transition: color 0.35s ease-out;
}

.page-header ul a:hover {
    color: #000;
}

.page-header .has-dropdown i {
  display: none;
}

.page-header .sub-menu {
  padding: 1.5rem 2rem 0;
}

.page-header .top-menu .mob-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.page-header .top-menu .mob-block i {
  color: var(--lightgray);
}

.page-header .socials {
  display: flex;
  margin-top: 3rem;
  /* some browsers ignore the padding-bottom: 2rem of the .top-menu because it has overflow-y:auto
  https://bugzilla.mozilla.org/show_bug.cgi?id=748518
  so we add a bottom margin to the .socials
  */
  margin-bottom: 1rem; 
}

.page-header .socials li + li {
  margin-top: 0;
}

.page-header .socials .fa-stack {
  font-size: 1.7rem;
}

.page-header .socials .fab {
  font-size: 1.2rem;
}


/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.3rem;
  color: var(--black);
}

.page-footer span {
  color: #e31b23;
}


/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 550px) {
  .page-header .panel1 {
    width: 60%;
  }
  .page-header .panel2 {
    width: calc(60% - 3rem);
  }
  .page-header .top-menu {
    width: calc(60% - 6rem);
  }
}

@media screen and (min-width: 768px) {
  .page-header .top-menu {
    padding: 4rem;
  }

  .page-header ul a {
    font-size: 1.6rem;
  }

  .page-header .search-form input {
    font-size: 2.4rem;
    height: 5rem;
    line-height: 5rem;
  }
}

@media screen and (min-width: 995px) {
.page-header {
        padding: 16px 3rem;
    }

  .page-header .panel,
  .page-header .open-mobile-menu,
  .page-header .vertical-logo,
  .page-header .top-menu .mob-block,
  .page-header .top-menu > li:last-child,
  .page-header .top-menu-wrapper::before {
    display: none;
  }

  .page-header .horizontal-logo {
    display: block;
  }

  .page-header .top-menu-wrapper {
    display: flex;
    align-items: center;
    color: var(--white);
  }

  .page-header .top-menu {
    flex-direction: row;
    position: static;
    width: auto;
    background: transparent;
    transform: none;
    padding: 0;
    overflow-y: visible;
    box-shadow: none !important;
  }

  .page-header .top-menu li + li {
    margin-top: 0;
  }

  .page-header .top-menu > li:not(:nth-last-child(2)) {
    margin-right: 3rem;
  }

    .page-header .top-menu > li > a {
        padding: 1rem 0.5rem;
    }

  .page-header ul a {
    font-size: 1.3rem;
  }

  .page-header .has-dropdown i {
    display: inline-block;
  }

  .page-header .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.5rem 2rem;
    background: var(--purple-2);
  }

  .page-header .sub-menu li + li {
    margin-top: 1.2rem;
  }

  .page-header .sub-menu a {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }

  .page-header .has-dropdown {
    position: relative;
  }

  .page-header .has-dropdown:hover .sub-menu {
    display: block;
  }

  .page-header .search {
    display: flex;
    align-items: center;
    margin-left: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .page-header .search {
    margin-left: 5rem;
  }

  .page-header .search i {
    margin-right: 1.5rem;
  }

  .page-header .search span {
    display: block;
    font-weight: 500;
    font-size: 1.6rem;
  }
}
/* 
menu end */


li.new_menu_sect_right a {
    padding: 15px 17px !important;
    background: #a79277;
    border-radius: 10px;
}
.fgryhdt {
    background-size: cover;
    padding-top: 320px;
    padding-bottom: 90px;
}
.sculpt_sect h4 {
    color: #a79277;
    font-size: 40px;
    font-weight: 700;
}
.sculpt_sect h5 {
    padding: 25px 0px;
    font-size: 27px;
    color: #878787;
    font-weight: 700;
}
.sculpt_sect p {
    color: #878787;
    font-size: 17px;
    margin-bottom: 50px;
}
.sculpt_sect a {
    background: #a79277;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}
.sculpt_sect a:last-child{
	background: #000;
	border: 1px solid #a79277;
	color: #a79277;
}
li.new_menu_sect_right a {
    padding: 11px 13px !important;
}
.fgryhdt {
    margin-top: -196px;
}
.logo {
    width: 150px;
}
.skin-with ul {
    padding: 0px;
    list-style: none;
    padding-bottom: 27px;
}
.skin-with h4 {
    color: #a79277;
    font-size: 21px;
}
.skin-with h5 {
    font-size: 33px;
    padding: 10px 0px;
    font-weight: 700;
}
.skin-with p {
    font-size: 18px;
}
.skin-with p i {
    color: #1ed91e;
}
.skin-with a {
    background: #a79277;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
	color: #000;
}
.skin-with a:last-child{
	background: #fff;
	border: 1px solid #a79277;
}
.skin-with a:hover{
	color: #000;
}
.top_sect-ghty {
    padding: 60px 0px;
}
.new_vrhtdf ul li {
    padding-bottom: 0px;
    border-bottom: 1px solid;
    margin-bottom: 29px;
}
.new_vrhtdf ul {
    padding-top: 20px;
}
.sculpt_hm-sect img {
    width: 100%;
}
.fgrtster {
    background: #f9f6f1;
    padding: 100px 0px;
}
.sculpt_hm-sect {
    text-align: center;
}
.sculpt_hm-sect h4 {
    color: #a79277;
    font-size: 30px;
    font-weight: 700;
    padding-top: 15px;
}
.sculpt_hm-sect p {
    color: #a3a2a1;
    font-size: 17px;
    line-height: 21px;
}
.tyfgryt img {
    width: 100%;
}
.new_vrhtdf img {
    width: 100%;
}
.tyfgryt h3 {
    font-size: 20px;
}
.tyfgryt h4 {
    font-size: 40px;
    font-weight: 700;
}
.tyfgryt h5 {
    padding: 15px 0px;
}
.new_vrhtdf img {
    padding-top: 22px;
}
.fghrty{
	padding: 80px 0px;
}
.fits_trydg h3 {
    font-size: 20px;
}
.fits_trydg h4 {
    font-size: 40px;
    font-weight: 700;
	color: #a69277;
}
.fits_trydg h5 {
    font-size: 30px;
    padding: 10px 0px;
}
.fits_trydg p {
    font-size: 19px;
}
.folu_us_sect h5 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
}
.rtdgfe {
    padding: 80px 0px;
    padding-top: 0px;
}
.section_sect_bg {
    padding: 100px 0px;
    text-align: center;
}
.guidea-sect_cs h3 {
    font-size: 35px;
    color: #fff;
}
.hfget{
	text-align: center;
}
.guidea-sect_cs h4 {
    color: transparent;
    -webkit-text-stroke: 1px #bfa93e;
    font-size: 40px;
    font-family: Arial, sans-serif;
    font-weight: 900;
}
.guidea-sect_cs p {
    color: #fff;
}
.box_sect_cs h4 {
    color: transparent;
    -webkit-text-stroke: 1px #bfa93e;
    font-size: 36px;
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-style: italic;
}
.skin-with {
    padding-top: 35px;
}
.new_vrhtdf {
    padding-top: 0px;
}
.imgfhrgrt img {
    width: 100%;
    height: 310px !important;
}
.fgrtysd img {
    height: 460px !important;
    background-size: cover !important;
}
.box_sect_cs {
    background: #fff;
    padding: 50px 0px;
    border-radius: 20px;
}
.box_sect_cs p {
    font-size: 18px;
    padding-top: 16px;
}
.nnvbg{
	text-align: center;
	padding-top:15px;
}
.box_sect_cs h5 {
    border-bottom: 1px solid #a79177;
    padding-bottom: 15px;
    display: inline-block;
	color: #a79177;
	font-weight: 700;
}
.guidea-sect_cs p {
    color: #fff;
    padding-bottom: 10px;
}
.single_slider {
    margin: 40px;
    border: 1px solid #a69277;
    padding: 20px;
    border-radius: 20px;
	text-align: left;
	margin-top: 20px;
}
.single_slider h5 {
    color: #a69277;
    font-size: 21px;
    font-weight: 700;
}
.single_slider:hover {
    background: #a69277;
    transition: 0.5s;
}
.single_slider:hover h5 {
    color: #fff;
}
.single_slider:hover p {
    color: #fff;
}
.newa-imnre {
    text-align: center;
}
.newa-imnre h3 {
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 10px;
}
.newa-imnre h4 {
    margin: 0px;
    padding-top: 20px;
}
.top_space_sect {
    padding: 70px 0px;
}
.inmoce_txt h4 {
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
}
.inmoce_txt p {
    font-size: 18px;
}
.inmoce_txt p i {
    color: #00ba00;
}
.inmoce_txt a{
	background: #a79277;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    color: #000;
}
.inmoce_txt a:last-child {
    background: #fff;
    border: 1px solid #a79277;
}
.bg-sect-btm {
    background: #f9f6f1;
	padding: 80px 0px;
}
.ghjtyfg{
	padding-bottom: 15px;
}
.top_dgrtf{
	padding-top: 20px;
}
.inmoce_txt{
	padding-top: 15px;
}
.inmoce_txt img{
	width: 100%;
	padding-bottom: 25px;
}
.nctext{
	text-align: center;
}
.makes_happerm h3 i {
    color: #00ba00;
}
.makes_happerm h3 {
    font-size: 17px;
    font-weight: 700;
}
.makes_happerm h4 {
    font-size: 33px;
    line-height: 47px;
    font-weight: 700;
    padding-bottom: 15px;
    padding-top: 15px;
}
.makes_happerm p {
    font-size: 16px;
}
.topdhry{
	padding: 70px 0px;
}

/* footer */
.footer {
  background-color: #1d120b;
  color: #fff;
  padding: 40px 20px;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer-logo img {
    max-width: 110px;
    padding-bottom: 45px;
}
.footer-bottom p {
    margin-bottom: 0px !important;
}

.footer-section {
  flex: 1;
  min-width: 180px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
}

.footer-section a:hover {
  color: #fff;
}

.phone {
  font-size: 15px;
  color: #fff;
}

.phone i {
    width: 38px;
    background: #c0a877;
    color: #1d120b;
    padding: 11px 3px;
    border-radius: 50%;
    margin-right: 10px;
}

.locations ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: #ccc;
}

.locations ul li i {
  color: #c0a877;
  font-size: 16px;
  margin-top: 4px;
}

.locations ul li strong {
  color: #e0c89b;
}

.social {
  margin-top: 20px;
}

.social-icons a {
  color: #c0a877;
  font-size: 18px;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}
.page-id-161 .top-menu .new_menu_sect_right a {
    background: #000;
    border-radius: 10px;
}
.page-id-161 li.new_menu_sect_right a {
    background: #000000;
}
.page-id-70 .page-header {
    background: #a79277;
}
.page-id-70 .logo {
    width: 100px;
}
.page-id-161 .page-header {
    background: #a79277;
}
.page-id-161 .logo {
    width: 100px;
}
.page-id-171 .page-header {
    background: #a79277;
}
.page-id-171 .top-menu .new_menu_sect_right a {
    background: #000;
    border-radius: 10px;
}
.page-id-171 .logo {
    width: 100px;
}
.page-id-76 .top-menu .new_menu_sect_right a {
    background: #000;
    border-radius: 10px;
}
.page-id-76 .page-header {
    background: #a79277;
}
.page-id-76 .logo {
    width: 100px;
}
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    display: flex;
    color: #aaa;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
  margin-top: 0px;
}

.footer-links a {
  color: #ccc;
  margin: 0 5px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
  }

  .footer-section,
  .footer-logo {
    width: 100%;
  }

  .locations ul li {
    flex-direction: column;
    align-items: flex-start;
  }
}

.banner_sect_fggr {
    padding-top: 340px;
    padding-bottom: 49px;
}
.contoured_text_btm h4 {
    font-size: 50px;
    color: #fff;
}
.contoured_text_btm p {
    font-size: 20px;
    color: #fff;
}
.page-id-80 .page-header {
    background: #a79277;
}
.page-id-80 .top-menu .new_menu_sect_right a {
    background: #000;
    border-radius: 10px;
}
.gnite h5 {
    font-size: 30px;
    text-align: center;
}
.gnite{
	text-align: center;
}
.gnite h4 {
    font-size: 40px;
}
.gnite span {
    font-size: 21px;
    font-weight: 500;
}
.fgrtsr p {
    font-size: 17px;
}
.bg_color-sect {
    background: #a79277;
    padding: 70px 0px;
}
.techbodysect h4 {
    font-size: 40px;
    color: #fff;
    line-height: 69px;
}
.techbodysect h3 {
    font-size: 28px;
    color: #fff;
}
.techbodysect p{
    color: #fff;
}
.bg_color-sect {
    margin-bottom: -30px !important;
    margin-top: 80px;
}
.fderf{
	padding: 30px;
	max-height: 490px;
}
.persnoal_sectdgrt h4 {
    font-size: 40px;
}
.persnoal_sectdgrt p {
    font-size: 18px;
}
.form_sectd input{
    width: 100%;
}
.form_sectd select {
    width: 100%;
}
.form_sectd .wpcf7-list-item input {
    width: auto !important;
}
.form_sectd {
    padding: 40px;
    border: 1px solid #eee;
}
.form_sectd input {
    width: 100%;
    text-indent: 16px;
    margin: 0px 0px 12px 0px;
    padding: 12px 0px 12px 0px;
    border-radius: 3px 3px 3px 3px;
    border: 1px solid #c7c7c7;
}
.form_sectd select {
    width: 100%;
    text-indent: 16px;
    margin: 0px 0px 12px 0px;
    padding: 12px 0px 12px 0px;
    border-radius: 3px 3px 3px 3px;
    border: 1px solid #c7c7c7;
}
span.wpcf7-spinner {
    display: none;
}
span.wpcf7-list-item {
    margin-bottom: 18px;
}
.contact_image img {
    width: 448px;
}
.dfetsg {
    display: flex;
}
.form_sectd h3 {
    padding-bottom: 30px;
    font-size: 30px;
}
.inmoce_txt h5 {
    font-size: 30px;
}
.topdetegb{
	padding-top: 60px;
}
.faq_sectd h4 {
    font-size: 35px;
    padding-top: 0px;
}
.page-id-80 .logo {
    width: 100px;
}
 .ba-wrapper {
      position: relative;
      width: 500px;
      height: 300px;
      overflow: hidden;
      border-radius: 10px;
    }
    .ba-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }
    .ba-after {
      clip-path: inset(0 50% 0 0);
      transition: clip-path 0.3s ease;
    }
    .ba-handle {
      position: absolute;
      top: 0;
      left: 50%;
      width: 5px;
      height: 100%;
      background: white;
    }
.fhrgrty {
    padding-top: 50px;
}
.page-id-103 .logo {
    width: 100px;
}
.page-id-103 .top-menu .new_menu_sect_right a {
    background: #000;
    border-radius: 10px;
}
.page-id-187 .top-menu .new_menu_sect_right a {
    background: #000;
    border-radius: 10px;
}
.page-id-103 .page-header {
    background: #a79277;
}
.page-id-187 .logo {
    width: 100px;
}
.page-id-187 .page-header {
    background: #a79277;
}
.page-id-3 .top-menu .new_menu_sect_right a {
    background: #000;
    border-radius: 10px;
}
.page-id-3 .logo {
    width: 100px;
}
.inndfer{
	padding: 50px 0px;
}
.page-id-3 .page-header {
    background: #a79277;
}
.dgeft{
	height: 510px;
} 
.fgdfetr{
	padding: 60px 0px;
}
.gdfredft{
	padding: 0px;
}
.fdsedfr h4 {
    font-size: 40px;
    padding-bottom: 6px;
}
.fdsedfr p {
    font-size: 19px;
}
.gsdvhfjsfj{
	padding: 60px 0px;
	background: linear-gradient(135deg,#c19a6b,#000);
}
.pricing-card {
  backdrop-filter: blur(15px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  transition: transform 0.3s;
}
.pricing-card:hover {
  transform: translateY(-10px);
}
.pricing-header {
  padding: 20px;
}
.pricing-header h2 {
  font-size: 22px;
  margin: 0;
}
.pricing-header p {
  font-weight: 500;
  margin: 5px 0 15px;
}
.pricing-bar {
  background: rgba(0,0,0,0.6);
  padding: 20px;
}
.pricing-bar.brown {
  background: #5a3a24;
}
.pricing-bar.black {
  background: #000;
}
.pricing-price {
  font-size: 36px;
  font-weight: bold;
}
.pricing-discount {
  font-size: 14px;
  margin-top: 5px;
  opacity: 0.9;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 15px;
}
.pricing-btn {
  display: inline-block;
  margin: 15px 0 20px;
  padding: 12px 25px;
  background: #fff;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
.pricing-footer {
  font-size: 12px;
  padding: 15px;
  opacity: 0.8;
}
.page-id-123 .logo {
    width: 100px;
}
.page-id-123 .page-header {
    background: #a79277;
}
.page-id-137 .logo {
    width: 100px;
}
.page-id-137 .page-header {
    background: #a79277;
}
.page-id-137 .top-menu .new_menu_sect_right a {
    background: #000;
    border-radius: 10px;
}
.page-id-123 .top-menu .new_menu_sect_right a {
    background: #000;
    border-radius: 10px;
}
/* conatc us */
.contact-box {
    background: linear-gradient(135deg, #c19a6b, #000);
    padding: 80px 30px 80px 30px;
    border-radius: 0px;
}
.sec-title {
    position: relative;
}
.sec-title .sub-text.new-text {
    padding-left: 0;
    margin-bottom: 7px;
    color: #ffffff;
}
.sec-title .sub-text {
    position: relative;
    padding-left: 95px;
    display: inline-block;
    line-height: 28px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
    color: #03228F;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.white-color {
    color: #ffffff !important;
}
.sec-title .title {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    color: #101010;
    margin: 0;
}
.contact-box .address-box {
    display: flex;
}
.contact-box .address-box .address-icon {
    background-image: linear-gradient(275deg, #ffffff 0%, #fcfcff 100%);
    min-width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    width: 40px;
    border-radius: 50%;
    margin-right: 23px;
}
.contact-box .address-box .address-icon i {
    font-size: 20px;
    line-height: 20px;
    color: #a79277;
}
.contact-box .address-box .address-text .label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}
.contact-box .address-box .address-text a {
    color: #ffffff;
}
.mb-25 {
    margin-bottom: 25px;
}
.contact-box .address-box .address-text .desc {
    color: #ffffff;
}
.mb-45 {
    margin-bottom: 45px;
}

.contac_form input {
    width: 100%;
}
.wpcf7-checkbox input{
	width: auto;
}
.contac_form textarea {
    width: 100%;
    height: 131px;
    padding: 10px;
	border-radius: 10px;
    border: 1px solid #000;
}
.contac_form {
    padding: 40px;
    border: 1px solid #69533a;
    border-radius: 0px;
}
.contac_form input {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #000;
}
.page-id-143 .logo {
    width: 100px;
}
.page-id-143 .page-header {
    background: #a79277;
}
.page-id-143 .top-menu .new_menu_sect_right a {
    background: #000;
    border-radius: 10px;
}
.btmfbs{
	padding-bottom: 40px;
}



.page-header .sub-menu a {
        display: block;
    }
ul.sub-menu li a:hover {
    background: #000;
    color: #fff;
}
    .page-header .sub-menu {
        padding: 0px;
		background: #a79277;
    }
    .page-header .sub-menu li + li {
        margin-top: 0px;
    }
    .page-header .sub-menu a {
        padding: 20px;
    }
.fgrhrty img {
    width: 100%;
    height: 450px !important;
}


@media (max-width:600px){
.skin-with a:last-child {
    background: #fff;
    border: 1px solid #a79277;
    display: block;
    text-align: center;
    margin-top: 26px;
}
	.page-header .top-menu-wrapper::before{
		display: none;
	}
.guidea-sect_cs h4 {
    font-size: 30px;
}
.fgrtster {
    padding: 0px 0px;
}
.bg-sect-btm {
    background: #f9f6f1;
    padding: 0px 0px;
}
.skin-with a {
    display: block;
    text-align: center;
    margin-bottom: 19px;
}
.fghrty {
    padding: 10px 0px;
}
.single_slider {
    margin: 0px;
}
.inmoce_txt a {
    display: block;
    margin-bottom: 15px;
}
.footer-bottom {
    display: block;
}
.fgryhdt {
    padding-top: 210px;
    padding-bottom: 90px;
}
.topngfh a img {
    display: none;
}
	
	
	
	
	
}

ul.ervjn {
    padding-top: 30px;
}
