@font-face {
  font-family: "Roboto-Regular";
  src: url("../fonts/Roboto-Regular.ttf");
}

@font-face {
  font-family: "Roboto-Light";
  src: url("../fonts/Roboto-Light.ttf");
}

@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Bold.ttf");
}

body {
  margin: 0;
  padding: 0;
  /* background: #c29a4570; */
  background: #c29a4569;
}

button,
img:focus {
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
a {
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
}

p {
  line-height: 1.5;
  color: #000;
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  /* max-width: 1180px; */
  max-width: 1480px;
  padding: 0 15px;
  margin: auto;
}

.links {
  position: absolute;
  right: 25px;
  top: 25px;
}

header.fixed .links {
  position: static;
  right: unset;
  top: unset;
}

.logo-text {
  font-family: "Roboto-Bold";
  color: #c09845;
  padding-top: 5px;
  font-size: 16px;
  margin: 0;
}

/* header */

header {
  /* background-color: #fff; */
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}

header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  animation: smoothScroll 1s forwards;
  /* background-color: #021524; */
  background-color: #161718;
  /* background-color: #021524eb; */
  z-index: 100;
}

header.fixed .links ul li {
  padding: 25px 10px;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

header.fixed .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 0;
}

header .logo {
  width: 155px;
  padding-bottom: 0;
  padding-top: 15px;
}

header .logo.fixed {
  width: 85px;
}

header .main-nav {
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 10px;
}

.nav-section {
  display: flex;
  align-items: center;
}

header #menu-main-menu {
  display: flex;
  align-items: center;
}

header .links ul li {
  padding: 5px 10px;
  position: relative;
  /* padding-bottom: 15px; */

  /* padding-bottom: 25px; */

  padding-bottom: 0;
}

header .menu-header ul li a {
  /* color: #fff; */
  color: #c09845;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 1% 0;

  /* border: 1px solid #c09845;
  font-size: 12px;
  padding: 15px;
  display: inline-block; */
}

/* footer */

footer {
  background: #161718;
}

footer .logo-wrapper {
  padding-top: 20px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

footer .footer-links {
  padding: 35px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

footer .text h4 {
  font-family: "Roboto-Bold";
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

footer .social p {
  color: #fff;
  font-family: "Roboto-Regular";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer .footer-links ul {
  display: flex;
  justify-content: center;
  column-gap: 125px;
  color: #fff;
}

footer .footer-links ul li a {
  color: #fff;
  font-family: "Roboto-Regular";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

footer .footer-info .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 80px;
  margin-top: 0;
  width: 50%;
}

footer .footer-info .grid div {
  display: flex;
  align-items: center;
}

footer .footer-info .grid span {
  color: #fff;
  font-family: "Roboto-Regular";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 30px;
}

footer .footer-info .grid span img {
  width: 40px;
  height: 40px;
}

footer .footer-info .grid p {
  color: #fff;
  font-family: "Roboto-Regular";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 20px;
  margin-top: 10px;
}

footer .footer-info .grid a {
  display: block;
  color: #fff;
  font-family: "Roboto-Regular";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 20px;
  margin-top: 10px;
}

footer .logo {
  width: 110px;
}

.about-home {
  padding: 75px 0;
  padding-top: 100px;
}

.about-home .wrapper {
  width: 65%;
  margin: 0 auto;
  text-align: center;
}

.about-home .wrapper h2 {
  color: #161718;
  text-align: center;
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.about-home .wrapper p {
  color: #000;
  text-align: center;
  font-family: "Roboto-Regular";
  font-size: 14px;
  text-align: center;
  font-size: 18px;
}

.about-home .wrapper a {
  border: 1px solid #c29946;
  color: #fff;
  font-family: "Roboto-Regular";
  text-transform: uppercase;
  padding: 10px 35px;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  background-color: #c29946;
  text-decoration: none;
  margin-top: 15px;
}

.about-home .wrapper a:hover {
  border: 1px solid #000;
  color: #000;
  background: transparent;
}

.copyright {
  padding: 25px;
  background-color: #fff;
}

.copyright .container > div {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  column-gap: 5px;
}

footer .copyright p {
  color: #000;
  font-family: "Roboto-Regular";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.footer-info {
  display: flex;
  justify-content: center;
  padding: 75px 0;
  align-items: center;
}

.image-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(../img/black-overlay.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  width: 100%;
  height: 90%;
  z-index: 1;
}

.contact-slider,
.about-us-slider,
.home-slider {
  position: relative;
}

.contact-slider .content,
.about-us-slider .content {
  position: absolute;
  /* top: 35%; */
  top: 50%;
  width: 40%;
}

.home-slider .content {
  width: 30%;
  position: absolute;
  top: 40%;
}

.contact-slider .content h1 {
  color: #fff;
  font-family: "Roboto-Bold";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.about-us-slider .content h1 {
  /* color: #000; */
  color: #fff;
  font-family: "Roboto-Bold";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.home-slider .content h1 {
  color: #fff;
  /* color: #000; */
  font-family: "Roboto-Bold";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.home-slider .content h2 {
  /* color: #fff; */
  color: #c29946;
  font-family: "Roboto-Bold";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.home-slider .content p {
  /* color: #000; */
  color: #fff;
  font-family: "Roboto-Light";
  font-size: 18px;
  font-weight: 300;
  margin-top: 20px;
}

.send-message {
  position: absolute;
  width: 100%;
  margin-top: -50px;
}

.send-message .flex {
  display: flex;
  justify-content: center;
}

.send-message .send-message-box {
  padding: 25px;
  width: 75%;
  background: #021524;
  display: grid;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.send-message .send-message-box h2 {
  font-family: "Roboto-Bold";
  color: #fff;
  font-size: 24px;
}

.send-message .send-message-box a {
  border: 1px solid #fff;
  color: #fff;
  font-family: "Roboto-Regular";
  text-transform: uppercase;
  padding: 10px 35px;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  background-color: transparent;
  text-decoration: none;
}

.send-message .send-message-box a:hover {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.wrapper .form {
  margin-top: 50px;
}

/*---call center---*/

.call-center {
  position: fixed;
  bottom: 0;
  right: auto;
  left: 0;
  transform: translateX(-100%);
  z-index: 100;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.call-center.visible {
  transform: translateX(0);
}
.call-center-content {
  padding: 15px;
  background-color: #f9f9f9;
  width: 230px;
  text-align: center;
  border: 1px solid #ddd;
}
.call-center-content h2 {
  font-size: 22px;
  margin-bottom: 15px;
  font-family: "Roboto-Bold";
}
.call-center-content h3 {
  font-family: "Roboto-Bold";
  font-size: 18px;
  margin-bottom: 15px;
}
.call-center-content > * {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: "Roboto-Regular";
}
.call-center-content > a {
  font-size: 16px;
  font-family: "Roboto-Regular";
  color: #c29946;
}
.call-center-button {
  position: absolute;
  bottom: 100px;
  /* left: -78px;*/
  font-size: 26px;
  color: #ffaf00;
  padding: 16px;
  cursor: pointer;
  right: -78px;
}
@media (min-width: 768px) {
  .call-center-button {
    bottom: 0;
  }
}
.call-center-toggle {
  cursor: pointer;
  color: #ffaf00;
  background-color: #000;
  display: inline-block;
  line-height: 1;
  border-radius: 50%;
  padding: 10px;
}
.call-center-toggle img {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
}

#menu-main-menu .sub-menu {
  position: absolute;
  /* background: #fcfaf8; */
  background: #d3c5aa;
  box-shadow: 0px 5px 25px #0000001a;
  border: 1px solid #d3c5aa;
  top: 5vw;
  margin-left: 0vw;
  padding: 1% 0;
  min-width: 13vw;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#menu-main-menu .sub-menu li a {
  font-size: 12px;
  color: #000;
  position: relative;
  padding-right: 2.34vw !important;
  padding-bottom: 40px !important;
  border: unset !important;
  padding: 1% 0 !important;
}

#menu-main-menu .sub-menu li a:hover {
  color: #c29946;
}

#menu-main-menu li {
  position: relative;
}

.nav-drop {
  top: 2.25vw !important;
  z-index: 6 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#menu-main-menu #menu-item-55 .sub-menu {
  min-width: 22vw !important;
}

.sub-menu li {
  margin-bottom: 0;
  padding: 5px 15px !important;
  text-align: left !important;
}

footer .sub-menu {
  display: none !important;
}

.services-home .wrapper {
  width: 65%;
  margin: 0 auto;
  text-align: center;
}

.services-home .wrapper h2 {
  color: #161718;
  text-align: center;
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  margin-bottom: 40px;
}

.services-home {
  /* background: #f1f2f2; */
  padding: 100px 0;
  padding-top: 0;
}

.services-home .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 25px;
}

.services-home .item {
  border-radius: 10px;
  /* background: #f1f2f2; */
  background: #d3c5aa;
  padding: 50px;
  position: relative;
}

.services-home .grid .item h3 {
  color: #161718;
  text-align: center;
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
}

form.fluent_form_1 .ff-btn-submit:not(.ff_btn_no_style) {
  color: #ffffff;
  border: 1px solid #c29946;
  color: #fff;
  font-family: "Roboto-Regular";
  text-transform: uppercase;
  padding: 10px 35px;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  background-color: #c29946 !important;
  text-decoration: none;
  margin-top: 15px;
  border-radius: 0 !important;
}

.fluentform .ff-text-left {
  text-align: center !important;
}

.services-page ul {
  padding-left: 20px;
}

.services-page ul li {
  text-align: left;
  list-style: disc;
}

ul li {
  /* color: #7d7d7d; */
  color: #000;
  font-family: "Roboto-Bold";
  font-size: 16px;
  /* text-align: center; */
  padding-bottom: 10px;
}

.about-home .wrapper p {
  margin-top: 10px;
}

#menu-item-55:hover {
  cursor: pointer;
}

h4 {
  font-family: "Roboto-Bold";
  margin-bottom: 10px;
}

.services-page {
  padding: 75px 0;
  padding-top: 100px;
}

.services-page .wrapper {
  width: 65%;
  margin: 0 auto;
  text-align: center;
}

.services-page .wrapper h2 {
  color: #161718;
  text-align: center;
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
  /* text-align: center; */
  margin-bottom: 20px;
  font-size: 24px;

  text-align: left;
}

.services-page .wrapper h3 {
  color: #161718;
  text-align: center;
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
  /* text-align: center; */
  margin-bottom: 20px;
  font-size: 22px;

  text-align: left;
}

.services-page .wrapper p {
  color: #161718;
  text-align: center;
  font-family: "Roboto-Bold";
  font-size: 14px;
  /* text-align: center; */
  font-size: 18px;

  text-align: left;
}

footer .menu-item-55 {
  display: none;
}

.mob-btn {
  display: none;
}

.ff-default .ff-el-form-control {
  border-radius: 0px !important;
  background: #d3c5aa !important;
  border: 1px solid #000 !important;
  color: #000 !important;
}

::-webkit-input-placeholder {
  color: #000 !important;
}
::-moz-placeholder {
  color: #000 !important;
}
:-ms-input-placeholder {
  color: #000 !important;
}
:-moz-placeholder {
  color: #000 !important;
}

.fluentform .text-danger {
  color: #f56c6c;
  font-family: "Roboto-Bold";
}

header.fixed .logo-text {
  display: none;
}

#menu-main-menu li a {
  border: 1px solid #c09845;
  padding: 7px 10px;
}

header.fixed .nav-drop {
  top: 4.5vw !important;
}

.home-slider img {
  width: 100%;
}

.about-us-slider img {
  width: 100%;
}

.contact-slider img {
  width: 100%;
}

/* RESPONSIVE */

@media only screen and (max-width: 1300px) {
  #menu-main-menu li a {
    padding: 7px 7px;
  }

  header .menu-header ul li a {
    font-size: 12px;
  }

  header .logo {
    width: 125px;
    padding-top: 5px;
  }
}

@media only screen and (max-width: 991px) {
  #menu-main-menu .sub-menu {
    top: 2.5vw;
  }

  .links {
    position: static;
    right: unset;
    top: unset;
  }

  header.fixed .links {
    position: static;
    right: unset;
    top: unset;
  }

  header .tb-mob-nav ul li {
    padding-bottom: 10px;
  }

  #menu-main-menu li a {
    border: unset;
    padding: 7px 14px;
  }

  .logo-text {
    color: #c09845;
    font-size: 14px;
    margin-left: -40px;
  }

  .mob-btn {
    display: block;
  }

  header.fixed {
    top: 0;
  }

  .home-slider img {
    height: 700px;
    object-fit: cover;
  }

  .contact-slider img {
    height: 500px;
    object-fit: cover;
  }

  .about-us-slider img {
    height: 500px;
    object-fit: cover;
  }

  .home-slider .content {
    width: 80%;
    top: 35%;
  }

  .send-message .send-message-box h2 {
    font-size: 18px;
  }

  .services-home .grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .services-home .grid .item h3 {
    margin-bottom: 0;
  }

  footer .footer-links ul {
    flex-direction: column;
  }

  footer .text h4 {
    font-size: 16px;
  }

  footer .footer-info .grid {
    grid-template-columns: 100%;
    text-align: center;
    padding-bottom: 0px;
  }

  .send-message .send-message-box {
    width: 90%;
  }

  .send-message .send-message-box a {
    font-size: 12px;
  }

  .contact-slider .content h1 {
    font-size: 26px;
  }

  .about-us-slider .content h1 {
    font-size: 26px;
  }

  /* MOB BTN */

  .toggle-menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: inline-block;
    outline: none;
    padding: 0;
    pointer-events: initial;
    position: relative;
    vertical-align: middle;
    width: 30px;
    z-index: 10;
  }

  .toggle-menu span {
    background-color: #fff;
    content: "";
    display: block;
    height: 2px;
    left: calc(50% - 13px);
    position: absolute;
    top: calc(50% - 1px);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
      -webkit-transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
      transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
      transform 0.2s linear, -webkit-transform 0.2s linear;
    width: 26px;
  }

  .toggle-menu span:before,
  .toggle-menu span:after {
    background-color: #fff;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
      -webkit-transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
      transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
      transform 0.2s linear, -webkit-transform 0.2s linear;
    width: 26px;
  }

  .toggle-menu span:before {
    top: 9px;
  }

  .toggle-menu span:after {
    top: -9px;
  }

  .toggle-menu.active span {
    background-color: transparent;
    transition: background 0.2s ease-out;
  }

  .toggle-menu.active span:before,
  .toggle-menu.active span:after {
    transition: top 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
    transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
    transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out,
      -webkit-transform 0.2s 0.2s ease-out;
    background: #fff;
  }

  .toggle-menu.active span:before {
    top: 0;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
  }

  .toggle-menu.active span:after {
    top: 0;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
  }

  .mob-btn {
    position: absolute;
    top: 27px;
    top: 40px;
    z-index: 66;
    right: 20px;
    width: fit-content;
    height: 25px;
    display: block;
  }

  .tb-mob-nav {
    display: none;
    position: absolute;
    right: 0;
    transform: translate(0%);
    bottom: 0;
    top: 110px;
    background: #161718;
    z-index: 60;
    width: 100%;
    /* height: 330px; */
    height: fit-content;
    padding: 50px;
  }

  header #menu-main-menu {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  header .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  header .logo {
    width: 80px;
    padding-bottom: 10px;
    padding-top: 15px;
  }

  .about-home .wrapper {
    width: 95%;
  }

  .about-home {
    padding-top: 55px;
  }

  .tb-mob-nav #menu-item-55 .sub-menu {
    display: none;
  }

  .tb-mob-nav #menu-item-55 li {
    position: relative;
    text-align: center !important;
    padding-bottom: 10px !important;
  }

  #menu-main-menu .sub-menu {
    position: relative;
  }

  .sub-menu {
    padding: 0px !important;
    box-shadow: unset !important;
    border: 0 !important;
    margin: 20px;
  }

  #menu-main-menu li {
    position: relative;
    text-align: center;
  }

  #menu-main-menu #menu-item-55 .sub-menu {
    min-width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 30px 0 !important;
  }

  #menu-main-menu .sub-menu {
    opacity: 1 !important;
    z-index: 99;
    visibility: visible !important;

    /* background-color: transparent !important; */
  }

  #menu-main-menu .sub-menu li a {
    text-align: center;
    font-size: 12px;
    color: #000;
    position: relative;
    padding-right: 0;
    padding-bottom: 0;
  }

  .color-header {
    background-color: #161718;
  }

  .services-home .wrapper {
    width: 75%;
  }

  footer .footer-links ul {
    text-align: center;
  }

  footer .footer-info .grid div {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-bottom: 15px;
  }

  footer .footer-info .grid p {
    padding-left: 0;
  }

  footer .footer-info .grid a {
    padding-left: 0;
  }

  .footer-info {
    padding: 40px 0;
  }

  .services-page .wrapper {
    width: 80%;
  }
}
