@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  overflow-x: hidden;
  background-color: #060606;
  color: #fff;
}

a {
  text-decoration: none;
}

select {
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

input:focus {
  outline: none;
  box-shadow: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

/* layout start */
.btn-1 {
  background-color: #242425;
  padding: 20px 30px;
  font-size: 20px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.btn-1:hover {
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  color: #000;
  transition: 0.5s;
  /* border: none; */
}

.btn-2 {
  position: relative;
  padding: 25px 40px;
  font-size: 22px;
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  z-index: 1;
  overflow: hidden;
}

.btn-2::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(154deg, rgba(170, 160, 131, 1) 28%, rgba(78, 72, 53, 1) 100%);
  z-index: -1;
  transition: 0.3s;
  transform: translateX(100%);
}

.btn-2:hover {
  color: #fff;
}

.btn-2:hover:before {
  transform: translateX(0);
}

.btn-2::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  z-index: -2;
}


.btn-1 i,
.btn-2 i {
  padding-left: 8px;
}

.btn-2.rg {
  font-size: 20px;
  padding: 10px 20px;
}

.theme-h1 {
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 25px;
}

.theme-h2 {
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 15px;
}

.theme-h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
}

.theme-p {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 25px;
}

.sep-img-2 {
  margin-bottom: 30px;
}

.padding-y {
  padding-top: 150px;
  padding-bottom: 150px;
}

.floating-field {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 60px;
  border-radius: 0;
  border-bottom: 2px solid #3A4553;
}

.floating-field label,
.floating-field input,
.floating-field select,
.floating-field textarea {
  padding: 0 10px;
  font-size: 14px;
  border-radius: 0;
  font-weight: 400;
  color: #fff;
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  resize: none;
}

.floating-field textarea::placeholder,
.floating-field input::placeholder {
  color: transparent;
}

.floating-field label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  pointer-events: none;
  transform-origin: 0 0;
  transition: 0.3s;
  color: #fff;
  display: flex;
  align-items: center;
}

.message-field {
  height: 150px;
}

.floating-field>textarea:focus~label,
.floating-field>textarea:not(:placeholder-shown)~label,
.floating-field>input:focus~label,
.floating-field>input:not(:placeholder-shown)~label,
.floating-field>select~label {
  transform: translateY(-45px) scale(0.75);
  color: #b4aa8d;
  letter-spacing: 1px;
  font-weight: 500;
}

.message-field label {
  top: 16px;
  height: auto;
}

/* header start */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(6, 6, 6, 0.5);
  backdrop-filter: blur(5px);
  transition: 0.5s;
  z-index: 999;
}

.header-main.scroll {
  transform: translateY(-134px);
}

.header-main .topbar {
  border-bottom: 1px solid #4E555F;
  padding: 23px 0;
}

.header-main .topbar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main .topbar .header-brand img {
  width: 200px;
}

.header-main nav {
  padding: 30px 0;
  border-bottom: 1px solid #4E555F;
}

.header-main nav .nav-item .nav-link {
  position: relative;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-size: 20px;
  transition: 0.5s;
  text-align: center;
}

.header-main nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  transform: scaleX(0);
  width: 100%;
  height: 2px;
  background: linear-gradient(154deg, rgba(127, 120, 98, 1) 0%, rgba(218, 208, 181, 1) 37%, rgba(170, 160, 131, 1) 80%, rgba(197, 187, 159, 1) 100%);
  transition: 0.5s;
}

.header-main nav .nav-item .nav-link.active::before,
.header-main nav .nav-item .nav-link:hover:before {
  transform: scaleX(1);
}

.header-main nav .navbar-nav {
  gap: 30px;
}

.header-main nav .nav-item .nav-link.dropdown-toggle {
  padding-right: 20px;
}

.header-main nav .nav-item .nav-link.dropdown-toggle::after {
  content: '\f078';
  font-family: "Font Awesome 6 Pro";
  border: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 500;
}

.header-main nav .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-main nav .nav-wrapper .contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.header-main nav .nav-wrapper .contact-links>li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  gap: 15px;
  color: #fff;
}

.header-main nav .nav-wrapper .contact-links>li span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-image: linear-gradient(154deg, rgba(127, 120, 98, 1) 0%, rgba(218, 208, 181, 1) 37%, rgba(170, 160, 131, 1) 80%, rgba(197, 187, 159, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 55px;
  height: 55px;
}

.header-main nav .nav-wrapper .contact-links>li span::before {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  z-index: -1;
  background: linear-gradient(154deg, rgba(127, 120, 98, 1) 0%, rgba(218, 208, 181, 1) 37%, rgba(170, 160, 131, 1) 80%, rgba(197, 187, 159, 1) 100%);
  border-radius: 50%;
}

.header-main nav .nav-wrapper .contact-links>li span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: #060606;
  border-radius: 50%;
}

.header-main nav .nav-wrapper .contact-links>li ul li:nth-child(1) {
  background-image: linear-gradient(154deg, rgba(127, 120, 98, 1) 0%, rgba(218, 208, 181, 1) 37%, rgba(170, 160, 131, 1) 80%, rgba(197, 187, 159, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 18px;
}

.header-main nav .nav-wrapper .contact-links>li ul li:nth-child(2) {
  font-weight: 300;
  font-size: 20px;
}

.header-main nav .nav-wrapper .contact-links>li a:hover ul li:nth-child(2) {
  text-decoration: underline;
}

/* header end */
.home-banner {
  padding: 470px 0 160px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.home-banner .content-wrapper {
  text-align: center;
}

.home-banner .content-wrapper .sep-img {
  margin-bottom: 20px;
}

.home-banner .content-wrapper .theme-h1 {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.home-banner .content-wrapper .theme-p {
  font-size: 22px;
}

.home-banner .content-wrapper .btn-2 {
  margin: 0 auto;
}

.our-mission .content-wrapper .reviews-no {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.our-mission .content-wrapper .reviews-no .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-image: linear-gradient(154deg, rgba(127, 120, 98, 1) 0%, rgba(218, 208, 181, 1) 37%, rgba(170, 160, 131, 1) 80%, rgba(197, 187, 159, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 38px;
}

.our-mission .content-wrapper .reviews-no .icon::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #262423;
  border-radius: 50%;
  z-index: -1;
}

.our-mission .content-wrapper .icon i {
  font-family: "Font Awesome 6 Pro";
}

.our-mission .content-wrapper .reviews-no ul {
  display: flex;
  align-items: center;
  gap: 3px;
}

.our-mission .content-wrapper .reviews-no ul li {
  background-image: linear-gradient(154deg, rgba(127, 120, 98, 1) 0%, rgba(218, 208, 181, 1) 37%, rgba(170, 160, 131, 1) 80%, rgba(197, 187, 159, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}

.our-mission .content-wrapper .reviews-no .out-of-review {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 300;
}

.our-mission .content-wrapper .boxes {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 40px;
}

.our-mission .content-wrapper .boxes>li {
  display: flex;
  align-items: center;
  background-color: #121212;
  padding: 30px 40px;
}

.our-mission .content-wrapper .boxes>li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-image: linear-gradient(154deg, rgba(127, 120, 98, 1) 0%, rgba(218, 208, 181, 1) 37%, rgba(170, 160, 131, 1) 80%, rgba(197, 187, 159, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
}

.our-mission .content-wrapper .boxes>li ul li {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.our-mission .content-wrapper .boxes>li:nth-child(2) {
  background: linear-gradient(154deg, rgba(127, 120, 98, 1) 0%, rgba(218, 208, 181, 1) 37%, rgba(170, 160, 131, 1) 80%, rgba(197, 187, 159, 1) 100%);
  color: #000;
}

.our-mission .content-wrapper .boxes>li .text {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  background-color: #121212;
  margin-right: 20px;
  padding: 10px 20px;
  border-radius: 8px;
}

.practices-area {
  background-color: #121212;
  padding-bottom: 80px;
}

.practices-area .top-sec {
  margin-bottom: 50px;
}

.practices-area .top-sec .seperator {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 105px;
  background-color: #3A4553;
  transform: translateY(-50%);
}

.practices-area .practices-cards .card-item {
  position: relative;
  padding: 50px 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  z-index: 1;
}

.practices-area .practices-cards .card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #060606;
  z-index: -1;
  transition: 0.5s;
}

.practices-area .practices-cards .card-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(154deg, rgba(127, 120, 98, 1) 0%, rgba(218, 208, 181, 1) 37%, rgba(170, 160, 131, 1) 80%, rgba(197, 187, 159, 1) 100%);
  z-index: -1;
  transition: 0.5s;
  opacity: 0;
}

.practices-area .practices-cards .card-item:hover {
  color: #000;
}

.practices-area .practices-cards .card-item:hover:before {
  opacity: 0;
}

.practices-area .practices-cards .card-item:hover:after {
  opacity: 1;
}

.practices-area .practices-cards .card-item .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #3A4553;
  padding: 30px 0 0;
}
.practices-area .practices-cards .card-item .card-bottom img{
    object-fit:contain;
}
.practices-area .practices-cards .card-item:hover .card-bottom img {
  filter: brightness(0);
}

.practices-area .practices-cards .card-item:hover .card-bottom a:hover,
.practices-area .practices-cards .card-item .card-bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121212;
  border: 2px solid #121212;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  padding: 15px 30px;
  transition: 0.5s;
}

.practices-area .practices-cards .card-item:hover .card-bottom a {
  background-color: transparent;
  color: #000;
}

.practices-area .practices-cards .btn-2 {
  margin-top: 50px;
}

.appoint-sec .top-sec {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.appoint-sec .top-sec .sep-img {
  margin-bottom: 20px;
}

.appoint-sec .top-sec .theme-p {
  color: #909090;
}

.appoint-sec .counter-appoint {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #121212;
}

.appoint-sec .counter-appoint .progress-item {
  width: fit-content;
  position: relative;
}

.appoint-sec .counter-appoint .progress-item .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.appoint-sec .counter-appoint .progress-item .content .icon {
  font-size: 26px;
  display: block;
  margin-bottom: 5px;
  background-image: linear-gradient(154deg, rgba(127, 120, 98, 1) 0%, rgba(218, 208, 181, 1) 37%, rgba(170, 160, 131, 1) 80%, rgba(197, 187, 159, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.appoint-sec .counter-appoint .progress-item .content .numbers {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 500;
}

.appoint-sec .counter-appoint .progress-item .content .numbers::after {
  content: attr(data-after);
}

.appoint-sec .counter-appoint .text-content {
  padding: 20px 20px 20px 0;
}

.appoint-sec .counter-appoint .text-content h5 {
  background-image: linear-gradient(154deg, rgba(127, 120, 98, 1) 0%, rgba(218, 208, 181, 1) 37%, rgba(170, 160, 131, 1) 80%, rgba(197, 187, 159, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
}

.appoint-sec .counter-appoint .text-content p {
  color: #909090;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
}

.appoint-sec .counter-appoint-last {
  padding: 45px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.appoint-sec .counter-appoint-last .text-content {
  max-width: 50%;
}

.appoint-sec .counter-appoint-last .text-content h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.appoint-sec .counter-appoint-last .text-content p {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
}

.appoint-sec hr {
  background-color: #CBCBCB;
  margin: 50px 0;
  height: 2px;
}

.appoint-sec .heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.appoint-sec .appoint-form {
  margin-top: 80px;
}

.appoinment {
  padding: 18px 50px;
  font-size: 22px;
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  /* background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%); */
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.appoinment::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(154deg, rgba(170, 160, 131, 1) 28%, rgba(78, 72, 53, 1) 100%);
  z-index: -1;
  transition: 0.3s;
  transform: translateX(100%);
}

.appoinment:hover {
  color: #fff;
}

.appoinment:hover:before {
  transform: translateX(0);
}

.appoinment::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  z-index: -2;
}



.appoinment i {
  padding: 0 0 0 15px;
}

/* .investigation section*/

.investigation {
  background: #000;
  position: relative;
}

.investigation .center-invest {
  text-align: center;
  padding: 80px 0;
}

.investigation span {
  color: #fff;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  display: block;
  font-size: 18px;
}

.investigation .farm-heading {
  text-align: center;
  font-size: 35px;
  padding: 10px 0 0 0;
}

.twelve-987 {
  padding: 18px 40px;
  font-size: 22px;
  color: #AAA083;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: transparent;
  border: 1px solid #AAA083;
  margin: 50px 0 50px 0;
}

a.twelve-987:hover {
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  color: #000;
  transition: 0.5s;
}

.twelve-987 i {
  padding: 0 0 0 10px;
}

/* free call to action */
.free-consultaion {
  background: #121212;
  padding: 80px 0;
}

.big-remaing {
  font-size: 18px;
  font-family: 'Outfit', sans-serif;
}

.free-consultaion .adding-new {
  margin: 15px 0 10px 0;
  padding: 18px 50px;
}

.short-remaing {
  background-image: url(../images/calltoaction.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 80px 50px 40px 50px;
  height: 100%;
}

.black-h2 {
  color: #000;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  padding: 0 0 15px 0;
  font-weight: 600;
}

.short-remaing p {
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
}

li.bottel {
  position: relative;
  z-index: 1;
}

.bottel::before {
  content: "\f095";
  font-family: 'FontAwesome';
  font-size: 20px;
  color: #ffffff;
  background-color: #000;
  padding: 7px;
  position: absolute;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: -59px;
  top: 50%;
  transform: translateY(-50%);
}

.installed {
  font-family: 'Outfit', sans-serif;
  color: #363636;
  font-size: 16px;
}

.short-remaing ul {
  padding: 15px 0 0 60px;
}

.short-remaing .bottel a {
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  color: #000;
  font-weight: 500;
}

ul.realme528 {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  margin: 0 60px 0 60px;
  padding: 14px 0;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
}

.realme528 a i {
  color: #000;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-taken {
  position: relative;
}

/* form section  */

.form-bg-remover {
  background: url(../images/Background.png);
  background-position: center center;
  background-size: cover;
}

.appoint-form-963 {
  background: #000;
  margin: 80px 0;
  padding: 70px 70px;
}

/* .investigation blog section  */

.invest-blog .center-invest {
  text-align: center;
  padding: 80px 0;
}


.invest-blog h5 {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #3A4553;
  padding: 0 0 15px 0;
  margin-bottom: 15px;
}

.ever-need {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
  font-weight: 500;
  padding: 20px 0 0 0;
  display: block;
  border-bottom: 1px solid #8c846c;
  width: fit-content;
}

.smile-9741 p {
  color: #fff;
  font-family: 'Outfit';
  font-size: 18px;
}

hr.unknown {
  margin: 50px 0 50px 0;
}

.what-cntry {
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  font-weight: 700;
  padding: 16px 0 16px 0;
  border-top: 1px solid #3A4553;
  margin: 25px 0 0 0;
}

.when-cntry {
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  font-weight: 700;
  padding: 16px 0 16px 0;
}



.what-cntry95147 {
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 19px;
  font-weight: 700;
  padding: 16px 0 16px 0;
  border-top: 1px solid #3A4553;
  border-bottom: 1px solid #3A4553;
  margin: 25px 0 0 0;
}

.main-invest span {
  font-size: 16px;
  font-family: 'Outfit';
}

.footer-top {
  padding: 0;
  margin: 90px 0 0 0;
}

/* footer */

.no-dept p {
  font-family: 'Outfit';
  padding: 60px 0 0 0;
  font-size: 18px;
  font-weight: 400;
}

section.ending {
  padding: 76px 0 30px 0;
}

.gooing {
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
  font-weight: 700;
  padding: 16px 0 16px 0;
  border-top: 1px solid #3A4553;
  border-bottom: 1px solid #3A4553;
  margin: 25px 0 0 0;
}


.hard-wrks ul li a {
  color: #fff;
  font-family: 'Outfit';
  font-size: 17px;
}

.hard-wrks ul {
  padding: 25px 0 0 0;
}

.hard-wrks ul li {
  padding: 0 0 10px 0;
}

.hard-wrks i {
  padding: 0 16px 0 0;
  font-size: 20px;
  color: #cb985599;
}

.last-copyright {
  padding: 60px 0 0 0;
}

.try-every {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #797777;
  padding: 15px 0;
  border-bottom: 1px solid #797777;
}

.last-copyright span {
  font-family: 'Outfit';
  color: #ada386;
}

li.clearance {
  display: flex;
  align-items: center;
  justify-content: center;
}

.q-mbl i {
  padding: 0 8px;
  color: #fff;
  font-size: 16px;
}

.q-mbl {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fast-speed {
  color: #fff !important;
}


/* loading section */

.net-rong h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: 40px;
  padding: 0 0 20px 0;
}

.center-new-center {
  background-image: url(../images/hatore.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.net-rong h5 {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 500;
  padding: 16px 0 8px 0;
}

.net-rong p {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
}

.net-rong {
  padding: 15px 0 0 0;
}

img.new-adding {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.net-rong-9478 h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: 42px;
  padding: 0 0 15px 0;
}

.net-rong-9478 p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #fff;
  padding: 20px 0 0 0;
}

.plus-icoon {
  padding: 16px 45px;
  font-size: 20px;
}

.with-next {
  margin: 35px 0 0 0;
}

/* testimonials section  */

.souul456 {
  text-align: center;
}

section.our-testimonials {
  padding: 60px 0;
}

.new-legacy {
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  color: #000;
  padding: 50px 20px;
  border-radius: 0 0 0 30px;
}

.new-legacy p {
  font-family: 'Outfit';
  font-size: 16px;
  padding: 12px 0 0 0;
}

.new-legacy i {
  font-size: 22px;
  padding: 8px 0 0 0;
}

.blog-chaining {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7px 0 0 7px;
}

.blog-chaining img {
  height: 70px;
  object-fit: contain;
  width: 70px !important;
  padding: 0 10px 0 0;
}

.blog-chaining p {
  font-size: 16px;
  font-family: 'Outfit';
}

.blog-chaining h5 {
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  font-weight: 700;
}

.our-testimonials .security-code {
  padding: 0 0 60px 0;
}

.new-legacytop-bottom {
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  color: #000;
  padding: 50px 20px;
  border-radius: 30px 0 0 0;
}

.new-legacytop-bottom p {
  font-family: 'Outfit';
  font-size: 16px;
  padding: 12px 0 0 0;
}

.new-legacytop-bottom i {
  font-size: 22px;
  padding: 8px 0 0 0;
}

.main-content ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Outfit';
  font-size: 17px;
  color: #fff;
}

.first-one {
  border-top: 6px solid #424242;
  margin: 5px 0 0 0;
}

.second-second {
  border-top: 5px solid #F8EDD3;
  margin: -5px 0 0 0;
  width: 0%;
  position: relative;
  transition: 2s ease-in-out;
}

.second-second::after {
  content: '';
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-60%) translateX(50%);
  right: 0;
  border-radius: 50px;
}

.main-content {
  padding: 35px 0 0 0;
}

.main-content .progress-value::after {
  content: '%';
}

.main-background {
  background: #0000006b;
  padding: 50px 30px;
}

.banner-inner {
  position: relative;
  background-size: cover;
  background-position: center center;
  padding-top: 400px;
}

.banner-inner::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6)
}

.banner-inner .content-wrapper {
  position: relative;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.banner-inner .content-wrapper .theme-p {
  color: #CBCBCB;
}

.blogs-sec .blogs-listing .blog-item .blog-desc {
  padding: 15px;
}

.blogs-sec .blogs-listing .blog-item .img-wrapper {
  overflow: hidden;
}

.blogs-sec .blogs-listing .blog-item .img-wrapper img {
  transform: scale(1.1);
  object-fit: cover;
  transition: 0.5s;
}

.blogs-sec .blogs-listing .blog-item:hover .img-wrapper img {
  transform: scale(1);
}

.blogs-sec .blogs-listing .blog-item .blog-desc a {
  color: #fff;
}

.blogs-sec .blogs-listing .blog-item .blog-desc a:hover {
  text-decoration: underline;
}

.blogs-sec .blogs-listing .blog-item .blog-desc .blog-category {
  color: #AAA083;
  margin-bottom: 10px;
}

.blogs-sec .blogs-listing .blog-item .blog-desc .theme-p {
  color: #CBCBCB;
  font-size: 16px;
}

.blogs-sec .blogs-listing .blog-item .blog-desc .post-date {
  color: #797777;
}
.blogs-detail-sec .blog-wrapper{
  max-width: 1200px;
  margin: 0 auto;
}
.blogs-detail-sec .blog-wrapper .categories {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  list-style: none;
  margin-left: 0;
}
.blogs-detail-sec .blog-wrapper .categories li{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  padding-left: 0;
}
.blogs-detail-sec .blog-wrapper .categories li:not(:nth-last-child(1))::after{
  content: ',';
}
.blogs-detail-sec .blog-wrapper .featured-img{
  display: block;
  margin-bottom: 20px;
}
.blogs-detail-sec .blog-wrapper .theme-p{
  color: rgba(255, 255, 255, 0.8);
}
.blogs-detail-sec .blog-wrapper ol strong,
.blogs-detail-sec .blog-wrapper ul strong,
.blogs-detail-sec .blog-wrapper .theme-p strong{
  color: #fff;
}
.blogs-detail-sec .blog-wrapper ul,
.blogs-detail-sec .blog-wrapper ol{
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 30px;
  margin-bottom: 20px;
}
.blogs-detail-sec .blog-wrapper ul li,
.blogs-detail-sec .blog-wrapper ol li{
  padding-left: 10px;
}
.blogs-detail-sec .blog-wrapper ul{
  list-style: disc;
}
.blogs-detail-sec .blog-wrapper ol{
  list-style: decimal;
}
.social-icon ul {
display: flex;
align-items: center;
justify-content: center;
margin: 10px 0 0 0;

}
.social-icon ul li {
  margin: 0 15px 0 15px;
}
.social-icon ul li img{
  width: 30px;
  object-fit: contain;
}
.content-wrapper .holder-1 .watches-1{
  padding: 12px 0 0 0;
  text-align: center!important;
}
.content-wrapper .holder-1 {
  display: flex;
  justify-content: center;
  margin: 30px 0px 0 0;
}

.fresh{
  background: #121212;
  padding: 80px 0px;
}
.fresh  .btn-2{
  margin-top: 25px!important;
}
.three-dot .three-loop h2{
text-align: center;

}

.three-dot .three-loop img {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.three-dot {
  padding: 80px 0 80px 0;
}
.three-loop .theme-p1 p{
  color: #909090;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0px;
  margin-top: 20px;
  padding: 0px 0 30px 0;

}
.glases p{
  font-family: 'Outfit';
  font-size: 16px;
  padding: 12px 0 0 0;
}
.glases h4{

  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: 30px;
  padding: 0 0 20px 0;
}
.glases img{
  padding: 10px 0 20px 0;
}
.cart {
  position: sticky;
  top: 160px;
}
.glases {
  background-color: #121212;
  padding: 20px 20px 20px 20px;
  margin: 0 0 40px 0;
  background-color: #121212;
    padding: 20px 20px 20px 20px;
    border-radius: 60px;
    margin: 0 0 40px 0;
}

.three-loop .theme-p1{
  color: #CBCBCB;
  text-align: center;
  
}
.form-1 input {
  margin: 20px 0 20px 0;
}
form {
  display: flex;
  flex-direction: column;
}
section.digital {
  padding: 70px 0 70px 0px;
}
.hoster h2{
  padding: 0 0 10px 0;
}
.hoster img{
  margin:  0 0 10px 0;
}
.hoster p {
  padding: 0 0 40px 0;
}
.contact-map iframe{
  height: 50vh;
  width: 100%;
}
.moop{
  padding: 0 0 10px 0;
}
.record-first {
  padding: 80px 0px;
}
.record-first .main-loader img{
  border-radius: 30px;

}
.record-first .main-loader{
  background-color: #121212;
  padding: 40px 30px ;
  border-radius: 30px;
}
.sarech .diver p{
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 25px;
}
.sarech .short-remaing p{
  font-weight: 700;
}
.sarech .short-remaing {
  height: 55%;
}
.Our-Researches{
  padding: 80px 0 80px 0;
}
.Our-Researches .main-invest h6{
  padding: 20px 0 0px 0;
  color: #D1B06B;
}
.digital-1{
  padding: 30px;

}
.digital-1 h3{
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 500;
}
.digital-1 .introduction-1 {
  color: #D1B06B;
  font-weight: 500;
  padding: 10px 0;
}
.digital-1 .introduction-1 {
  color: #D1B06B;
  font-weight: 500;
  padding: 10px 0;
}
.digital-1 .introduction-2{
  font-size: 16px;
  font-family: 'Outfit';
  font-weight: 400;
}
.insider h2{
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 500;
}
.insider ul li {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 0 5px 0;
  list-style: decimal-leading-zero;
}
.insider .fresh-up{
  font-size: 18px;
  font-family: 'Outfit';
  padding: 20px 0 20px 0;
}

ul.dropdown-menu.show li a{
  color: #fff;
}
.dropdown-item:focus, 
.dropdown-item:hover{
  color: #000!important;
}
.loop-121{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 700px;
  background: #000;
    color: #fff !important;
    font-family: 'Outfit';
    font-size: 16px;
}
.loop-121 li{
  width: 50%;
  color: #fff;
  
}
.loop-121 li a{
white-space: normal;
  color: #fff;
  display: block;
}
/* -------------------- new form ------------------- */
section.full-form {
  padding: 30px 0 10px 0;
}

.main-table {
  text-align: center;
}

.main-table h2 {
  font-family: 'Cormorant Garamond';
  font-size: 60px;
  font-weight: 700;
  background: linear-gradient(154deg, rgba(248, 237, 211, 1) 0%, rgba(170, 160, 131, 1) 28%, rgba(218, 208, 181, 1) 54%, rgba(78, 72, 53, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-table p {
  font-family: 'Outfit';
  font-size: 22px;
  padding: 25px 0;
}

.new-input input {
  width: 100%;
  padding: 10px 15px 10px 15px;
  font-family: 'Outfit';
  border: 1px solid #ffffff8a;
  font-size: 16px;
  border-radius: 9px;
  color: #fff;
  background: #464444;

}
.new-input select {
  width: 100%;
  padding: 10px 15px 10px 15px;
  font-family: 'Outfit';
  border: 1px solid #ffffff8a;
  font-size: 16px;
  border-radius: 9px;
  color: #fff;
  background: #464444;

}

h4.replies {
  padding: 22px 0 10px 15px;
  font-family: 'Outfit';
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.5px;
}

h4.replies-textarea {
  font-family: 'Outfit';
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-top: 60px;
  padding: 0 0 15px 4px;
  height: 85px;
}

.new-input textarea {
  width: 100%;
  height: 130px;
  font-family: 'Outfit';
  border: 1px solid #ffffff8a;
  font-size: 16px;
  border-radius: 9px;
  padding: 10px 0 0 10px;
  color: #fff;
  background: #464444;
}

.urban {
  padding: 30px 0 0 0;
}

label.now-design {
  font-family: 'Outfit';
}

.reflect {
  text-align: center;
  display: block;
  margin: 40px auto;
}

.new-input textarea::placeholder{
  color: #fff;
}
.new-input input::placeholder{
  color: #fff;
}

/* -------------------- new form End ------------------- */

/* modal sign in login start  */
div#exampleModal {
  backdrop-filter: blur(5px);
}

.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #cb985599;
  border: none;
  outline: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  font-size: 18px;
}
.new-working ul#pills-tab {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 14px 0 10px 0;

}

.modal-content.new-working {
  padding: 52px 0 57px 0;
  /* background: #1412453b; */
    border: none;
    background: linear-gradient(270deg,rgb(0 0 0 / 77%) 13%,rgb(0 0 0 / 64%)), url(../images/mission-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
    background-position: center center;
}


.new-works {
  background: transparent;
  color: #fff;
  padding: 6px 28px;
  border: none;
  outline: none;
  font-family: 'Outfit';
  font-size: 31px;
  border-bottom: 2px solid #cb985599;
  font-weight: 600;
}
.new-works:hover{
  background: #cb985599;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.input-fields-login {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.input-fields-login input::placeholder{
  color: #000;
}

.input-fields-login input {
  border: none;
  font-family: 'Outfit';
  color: #000;
  border-bottom: 2px solid #cb9855;
  font-size: 17px;
  margin: 15px 0;
  /* box-shadow: 3px 5px 11px #cfcfcf; */
  /* background: transparent; */
  padding: 10px 35px 6px 30px;
  border-radius: 5px;
}

button.login-find {
  display: block;
  margin: 10px auto;
  padding: 6px 112px;
  border: none;
  font-family: 'Outfit';
  color: #fff;
  border-radius: 3px;
  font-size: 18px;
  /* background: rgba(20,18,69,1); */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.login-find:hover:before {
  transform: translateX(-100%);
}
.login-find::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cb985599;
  z-index: -1;
  transition: 0.3s;
}

.login-find::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  z-index: -2;

}

.looking-wow {
  position: absolute;
  top: 44%;
  right: 0;
  left: -14px;
  bottom: 0;
  transform: translateX(122px);
  font-size: 14px;
  vertical-align: middle;
  width: 1%;
  color: #cb985599;
}


.tab-content {
  overflow: hidden;
}

.tab-pane {
  transition: transform 0.5s ease-in-out;
}

.tab-pane.fade {
  transform: translateY(50%);
}

.tab-pane.fade.show.active {
  transform: translateY(0%);
}

.nav-pills .new-works {
  cursor: pointer;
} 
/* modal sign in login end  */

.main-certified {
  text-align: center;
}
.dropdown-menu{
  max-height: 350px;
  overflow-y: auto;
}

.main-certified h2 {
  text-align: center;
  font-size: 70px !important;
  letter-spacing: 1px;
}

.main-certified .staring{
  padding: 15px 0 0 0;
}

section.certified {
  padding-bottom: 80px;
}

@media only screen and (max-width: 1920px) {}

@media only screen and (max-width: 1599px) {}

@media only screen and (max-width: 1444px) {}

@media only screen and (max-width: 1399px) {}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .header-main nav .nav-wrapper {
    flex-direction: column;
  }

  .header-main nav .navbar-nav {
    margin-bottom: 30px;
  }

  .header-main nav .nav-wrapper .contact-links {
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 575px) {}

.header-main nav .nav-wrapper .contact-links>li ul li:nth-child(2) {
  font-weight: 300 !important;
  font-size: 17px !important;
}
.header-main nav .nav-wrapper .contact-links {
    gap: 20px !important;
}
.header-main nav .nav-wrapper .contact-links>li ul li:nth-child(1) {
    font-weight: 300 !important;
    font-size: 17px !important;
}
.header-main nav .nav-item .nav-link {
    font-size: 17px !important;
}
.header-main nav .navbar-nav {
    gap: 20px !important;
}
.header-main nav .nav-wrapper .contact-links>li ul li:nth-child(2) {
    font-weight: 300 !important;
    font-size: 17px !important;
}