/*Common Styling*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Montserrat:wght@400;500;600;700&display=swap");
*,
body,
html {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}
a:hover, a:focus {
  outline: none;
  cursor: pointer;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

.justify-space-between {
  justify-content: space-between;
}

.d-flex-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.w-100 {
  width: 100%;
}

.w-10 {
  width: 10%;
}

.w-33 {
  width: 33.33%;
}

.w-50 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .w-50 {
    width: 100%;
  }
}

.container {
  max-width: 1240px;
  margin: 0px auto;
}
@media screen and (max-width: 1200px) {
  .container {
    margin: 0px 30px;
    max-width: none;
  }
}

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

.py-85 {
  padding: 85px 0px;
}

.py-100 {
  padding: 100px 0px;
}

.py-80 {
  padding: 80px 0px;
}

/*color variables*/
.button-primary {
  min-width: 160px;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px solid transparent;
  border-radius: 4px;
  color: #fff;
  background-color: #d2ab67;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.3s ease-in;
}
.button-primary:hover {
  background-color: #151515;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .button-primary {
    padding: 11px 20px;
    font-size: 12px;
    line-height: 20px;
    min-width: 100px;
  }
}

.button-dark {
  min-width: 160px;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px solid transparent;
  border-radius: 4px;
  color: #fff;
  background-color: #151515;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.3s ease-in;
}
.button-dark:hover {
  background-color: #d2ab67;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .button-dark {
    padding: 11px 20px;
    font-size: 12px;
    line-height: 20px;
    min-width: 100px;
  }
}

.title-wrapper {
  display: flex;
  flex-direction: column;
}
.title-wrapper.center {
  align-items: center;
}
.title-wrapper h2.title-small {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  text-transform: capitalize;
  color: #151515;
  font-family: "Montserrat", sans-serif;
}
.title-wrapper h2.title-small span {
  color: #d2ab67;
}
.title-wrapper .pattern {
  width: 60px;
  height: 5px;
  display: block;
  border-radius: 1px;
  margin: 10px 0px;
  background-color: #d2ab67;
  border: 0px solid transparent;
}

/*header css start*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
  padding: 25px 100px;
  background-color: #fff;
  align-items: center;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  header {
    padding: 30px;
  }
}
@media screen and (max-width: 1023px) {
  header {
    padding: 15px;
  }
}
header .logo-link {
  max-width: 275px;
  height: 50px;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  header .logo-link {
    max-width: 150px;
  }
  header .logo-link img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
header .logo-link img {
  scale: 1;
  transition: 0.3s ease;
  border-bottom: 4px solid transparent;
  padding-bottom: 5px;
}
header .logo-link:hover img {
  scale: 0.9;
  transition: 0.3s ease;
  border-bottom: 4px solid #d2ab67;
  border-radius: 2px;
}
header .nav-menu {
  margin: 0px -12.5px;
}
header .nav-menu .nav-item {
  padding: 0px 12.5px;
}
header .nav-menu .nav-item .nav-item-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #151515;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
}
header .nav-menu .nav-item .nav-item-link::before {
  content: "";
  display: block;
  width: 25px;
  height: 4px;
  background-color: #d2ab67;
  border: 0px solid transparent;
  border-radius: 4px;
  margin-left: -25px;
  transition: 0.3s ease;
}
header .nav-menu .nav-item .nav-item-link:hover {
  color: #d2ab67;
  transition: 0.3s ease;
}
header .nav-menu .nav-item .nav-item-link:hover::before {
  margin-left: 0;
  visibility: visible;
  transition: 0.3s ease;
}
@media screen and (max-width: 1023px) {
  header .nav-menu {
    display: none;
  }
  header .nav-menu + .button-primary {
    display: none;
  }
}

nav {
  height: 100%;
  position: fixed;
  right: 0;
  width: 320px;
  margin-top: 60px;
  transform: translateX(320px);
  transition: transform 260ms ease-in-out;
  background-color: white;
  border-left: 1px solid #eee;
}

nav ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid #eee;
}

nav ol > li {
  list-style: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: 0.25s;
}

nav ol > li span {
  display: block;
  font-size: 14px;
  color: #353535;
}

nav ol > li a {
  color: #353535;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

nav ol > li:hover {
  background-color: #fdfdfd;
}

input[type=checkbox]:checked ~ nav {
  transform: translateX(0);
}

input[type=checkbox] {
  box-sizing: border-box;
  display: none;
  transition: all 0.25s;
}

.menuIconToggle {
  box-sizing: border-box;
  cursor: pointer;
  position: fixed;
  z-index: 40;
  height: 100%;
  width: 100%;
  top: 30px;
  right: 15px;
  height: auto;
  width: 25px;
  transition: all 0.3s;
  display: none;
}

.hamb-line {
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #444;
  transition: all 0.25s;
}

.hor {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}

.dia.p-1 {
  position: relative;
  box-sizing: border-box;
  float: left;
  transition: all 0.25s;
}

.dia.p-2 {
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
  transition: all 0.25s;
}

input[type=checkbox]:checked ~ .menuIconToggle > .hor {
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.25s;
}

input[type=checkbox]:checked ~ .menuIconToggle > .dia.p-1 {
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 8px;
  transition: all 0.25s;
}

input[type=checkbox]:checked ~ .menuIconToggle > .dia.p-2 {
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -9px;
  transition: all 0.25s;
}

@media screen and (max-width: 1023px) {
  nav {
    height: 100%;
    width: 50%;
    transform: translateX(100%);
    background: #f6eee1;
    z-index: 99;
    margin-top: 0px;
    top: 80px;
  }
  nav.sticky {
    top: 70px;
  }
  .menuIconToggle {
    display: block;
  }
}
.sticky {
  padding: 10px 100px;
  transition: 0.3s ease;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1180px) {
  .sticky {
    padding: 10px 30px;
  }
}

.banner {
  height: 668px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .banner {
    height: 540px;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    height: 600px;
  }
}
.banner .banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  padding-top: 60px;
}
@media screen and (max-width: 1180px) {
  .banner .banner-img {
    -o-object-fit: fill;
       object-fit: fill;
  }
}
@media screen and (max-width: 767px) {
  .banner .banner-img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 70%;
       object-position: 70%;
  }
}
.banner::before {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  content: "";
  background: linear-gradient(269.97deg, rgba(21, 21, 21, 0) 0.03%, rgba(21, 21, 21, 0.8) 99.97%);
  transition: 0.3s ease;
}
.banner:hover::before {
  right: 100%;
  transition: 0.3s ease;
}
.banner .banner-info {
  width: 730px;
  position: absolute;
  top: 50%;
  left: 144px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.banner .banner-info h1 {
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  color: #fff;
}
.banner .banner-info h1 p {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
}
.banner .banner-info h1 p::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 100%;
  bottom: 0;
  background: #d2ab67;
  display: block;
  z-index: -1;
}
.banner .banner-info h1 + p {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-top: 10px;
}
.banner .banner-info .button-primary {
  margin-top: 15px;
}
@media screen and (max-width: 1180px) {
  .banner .banner-info {
    width: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .banner .banner-info {
    width: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .banner .banner-info h1 {
    font-size: 25px;
    line-height: 35px;
  }
  .banner .banner-info h1 p {
    font-size: 25px;
    line-height: 35px;
  }
  .banner .banner-info h1 + p {
    font-size: 18px;
    line-height: 20px;
  }
}

.aboutus .container .d-flex {
  align-items: center;
}
@media screen and (max-width: 767px) {
  .aboutus .container .d-flex {
    flex-direction: column;
  }
}
.aboutus .container .d-flex .img-left {
  position: relative;
}
.aboutus .container .d-flex .img-left::before, .aboutus .container .d-flex .img-left::after {
  content: "";
  width: 130px;
  height: 90px;
  display: block;
  position: absolute;
  background-color: #d2ab67;
  z-index: -1;
}
.aboutus .container .d-flex .img-left::before {
  top: -15px;
  left: -15px;
}
.aboutus .container .d-flex .img-left::after {
  bottom: -15px;
  right: -15px;
}
.aboutus .container .d-flex .img-left img {
  border: 0px solid transparent;
  border-radius: 5px;
  width: 100%;
}
.aboutus .container .d-flex .aboutus-info {
  padding-left: 65px;
  justify-content: flex-start;
  align-items: start;
  display: flex;
  flex-direction: column;
}
.aboutus .container .d-flex .aboutus-info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #555555;
  margin-bottom: 10px;
}
.aboutus .container .d-flex .aboutus-info .button-dark {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .aboutus .container .d-flex .aboutus-info {
    padding-left: 0px;
    padding-top: 50px;
  }
}

.webelive {
  background-color: #f6eee1;
}
.webelive .container .d-flex {
  flex-direction: row-reverse;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .webelive .container .d-flex {
    flex-direction: column-reverse;
  }
}
.webelive .container .d-flex .img-left {
  padding-left: 65px;
}
@media screen and (max-width: 767px) {
  .webelive .container .d-flex .img-left {
    padding-left: 0;
    padding-top: 50px;
  }
}
.webelive .container .d-flex .img-left img {
  border: 0px solid transparent;
  border-radius: 5px;
  width: 100%;
}
.webelive .container .d-flex .img-left .video-outer {
  position: relative;
  width: 100%;
  height: 100%;
}
.webelive .container .d-flex .img-left .video-outer iframe {
  width: 100%;
}
.webelive .container .d-flex .aboutus-info {
  justify-content: flex-start;
  align-items: start;
  display: flex;
  flex-direction: column;
}
.webelive .container .d-flex .aboutus-info .button-primary {
  margin-top: 10px;
}

.whatweprovide .container .d-flex {
  align-items: center;
  padding-top: 60px;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .whatweprovide .container .d-flex {
    flex-direction: column;
  }
}
.whatweprovide .container .d-flex .cards {
  width: 380px;
  display: flex;
  flex-direction: column;
  border: 0px solid transparent;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: #fff;
  background-color: #d2ab67;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .whatweprovide .container .d-flex .cards {
    width: 100%;
  }
}
.whatweprovide .container .d-flex .cards .icon {
  width: 60px;
  height: 60px;
  border: 1px solid transparent;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  margin-bottom: 10px;
  transition: 0.3s ease;
}
.whatweprovide .container .d-flex .cards .icon img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s ease;
}
.whatweprovide .container .d-flex .cards h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
}
.whatweprovide .container .d-flex .cards p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}
.whatweprovide .container .d-flex .cards:hover {
  transition: 0.3s ease;
  color: #151515;
  background: #fff;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}
.whatweprovide .container .d-flex .cards:hover .icon {
  border-color: #d2ab67;
  transition: 0.3s ease;
}
.whatweprovide .container .d-flex .cards:hover .icon img {
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s ease;
}

.our-clients {
  background-color: #000;
  padding: 100px 0px;
}
.our-clients .title-wrapper h2.title-small {
  color: #fff;
}
.our-clients .container .d-flex {
  flex-wrap: wrap;
}
.our-clients .container .d-flex .col-3.column {
  width: calc(33.33% - 20px);
  background: #fff;
  flex-direction: column;
  padding: 15px;
  margin: 10px;
  border-radius: 5px;
  position: relative;
  flex-direction: column;
}
.our-clients .container .d-flex .col-3.column::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: calc(100% - 8px);
  left: 4px;
  right: 4px;
  height: 4px;
  border: 0px solid transparent;
  border-radius: 5px;
  background-color: #d2ab67;
  margin-bottom: -2px;
  transition: 0.3s ease-in;
}
.our-clients .container .d-flex .col-3.column:hover::after {
  margin-bottom: 0px;
  transition: 0.3s ease-in;
}
.our-clients .container .d-flex .col-3.column h3 {
  font-size: 18px;
  line-height: 28px;
  color: #151515;
  font-weight: 700;
  margin-left: 20px;
  width: calc(100% - 50px);
}
.our-clients .container .d-flex .col-3.column p {
  color: #1da1f2;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  margin-left: 45px;
}
@media screen and (max-width: 767px) {
  .our-clients .container .d-flex .col-3.column {
    width: 100%;
  }
}

.ourwork {
  background-color: #f6eee1;
}
.ourwork .container .d-flex {
  flex-wrap: wrap;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .ourwork .container .d-flex {
    flex-direction: column;
  }
}
.ourwork .container .d-flex img.col-4 {
  width: 25%;
  padding: 6px;
  opacity: 1;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .ourwork .container .d-flex img.col-4 {
    width: 100%;
  }
}
.ourwork .container .d-flex img.col-4:hover {
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s ease;
}

.gallery {
  overflow: hidden;
}
.gallery .title-wrapper p {
  max-width: 580px;
  text-align: center;
  padding-bottom: 40px;
}
.gallery .slider {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
@media screen and (max-width: 1180px) {
  .gallery .slider {
    margin: 0;
  }
}
.gallery .slider .slick-slide {
  padding: 0px 15px;
  background-color: #fff;
  text-align: center;
  transition: 0.3s ease;
  opacity: 1;
}
.gallery .slider .slick-slide:hover {
  opacity: 0.7;
  cursor: pointer;
  transition: 0.3s ease;
}
.gallery .slider .slick-slide img {
  transform: scale(0.9);
  transition: 0.3s ease;
  margin: auto;
}
.gallery .slider .slick-slide.slick-active img {
  transform: scale(1.1);
  transition: 0.3s ease;
}
.gallery .slider .slick-prev {
  background: #f6eee1 url(/images/arrow.svg) no-repeat center;
  z-index: 9;
  left: 25px;
  border: 0px solid transparent;
  border-radius: 5px;
  width: 25px;
  height: 25px;
  margin-top: -12.5px;
  transform: rotate(180deg);
  background-size: 90%;
}
.gallery .slider .slick-prev::before {
  display: none;
}
.gallery .slider .slick-next {
  background: #f6eee1 url(/images/arrow.svg) no-repeat center;
  z-index: 9;
  right: 25px;
  border: 0px solid transparent;
  border-radius: 5px;
  width: 25px;
  height: 25px;
  background-size: 90%;
}
.gallery .slider .slick-next::before {
  display: none;
}
.gallery .slider .slick-dots {
  bottom: -70px;
}
.gallery .slider .slick-dots li button {
  padding: 0;
  width: 12px;
  height: 12px;
  background: #e8d5b3;
  border: 0px solid transparent;
  border-radius: 50%;
}
.gallery .slider .slick-dots li button::before {
  content: "";
}
.gallery .slider .slick-dots li.slick-active button {
  background: #d2ab67;
}

.testimonials {
  background-color: #f6eee1;
}
.testimonials .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .testimonials .container {
    flex-direction: column;
  }
}
.testimonials .container .img-banner-outer {
  border: 10px solid #fff;
  border-radius: 5px;
  width: 580px;
  height: 480px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1200px) {
  .testimonials .container .img-banner-outer {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .testimonials .container .img-banner-outer {
    width: 100%;
    height: auto;
  }
}
.testimonials .container .img-banner-outer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .container .right-side-info {
  background: #fff;
  padding: 20px;
  width: auto;
  max-width: 640px;
  margin-left: -30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .testimonials .container .right-side-info {
    width: 50%;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .testimonials .container .right-side-info {
    width: 100%;
  }
}
.testimonials .container .right-side-info .title-small {
  font-size: 35px;
  line-height: 45px;
}
.testimonials .container .right-side-info p {
  margin: 15px 0px;
}

.maps {
  width: 100%;
  height: 450px;
}
.maps iframe {
  width: 100%;
}

.footer {
  padding: 50px 0px;
  background: #151515;
  display: flex;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer .container {
    flex-direction: column;
  }
}
.footer .container .col {
  width: 20%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer .container .col {
    width: 100%;
  }
}
.footer .container .col:first-child, .footer .container .col:last-child {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .footer .container .col:first-child, .footer .container .col:last-child {
    width: 100%;
  }
}
.footer .container .col h4 {
  margin-bottom: 15px;
  margin-left: 70px;
}
@media screen and (max-width: 767px) {
  .footer .container .col h4 {
    margin-left: 0;
    margin-top: 20px;
  }
}
.footer .container .col .d-flex.column {
  flex-direction: column;
  margin-left: 70px;
}
@media screen and (max-width: 767px) {
  .footer .container .col .d-flex.column {
    margin-left: 0;
  }
}
.footer .container .col .d-flex.column > .d-flex {
  margin-bottom: 20px;
}
.footer .container .col .d-flex.column > .d-flex .d-flex.col {
  width: 100%;
  flex-direction: column;
}
.footer .container .col .d-flex.column > .d-flex .d-flex.col a {
  width: 100%;
}
.footer .container .col .d-flex.column > .d-flex svg {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
.footer .container .col .d-flex.column > .d-flex svg + p {
  width: calc(100% - 45px);
}
.footer .container .col .d-flex.column .ft-link {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}
.footer .container .col .d-flex.column .ft-link:last-child {
  margin-bottom: 0;
}
.footer .container .col .footer-logo-id {
  width: 274px;
  height: 50px;
  display: flex;
  margin-bottom: 15px;
}
.footer .container .col .footer-logo-id img {
  width: 100%;
  height: 100%;
}
.footer .container .col p {
  font-size: 16px;
  line-height: 28px;
}

.copyright {
  background: #d2ab67;
  padding: 15px 0px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  text-align: center;
}
.copyright a {
  color: #1da1f2;
  font-weight: 500;
}

img.lazy-load {
  background: url(/images/icons8-loading.gif) no-repeat center;
}/*# sourceMappingURL=Style.css.map */

.new-video-url {
  padding-bottom: 100px;
}

.new-video-url .video-outer iframe {
  width: 100%;
}