* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

/*** 

====================================================================
	Global Settings
====================================================================

***/

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #444444;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #5f5f5f;
}

body {
  background-color: #101010;
  line-height: 1.6em;
  font-weight: 400;
  font-size: 14px;

  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

i {
  font-style: normal;
}
a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
a:hover {
  color: #a97300;
  text-decoration: none;
  outline: none;
}
a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin: 0px;
  background: none;
  font-weight: 700;
  color: #000;
  font-family: "Rajdhani", sans-serif;
}

textarea {
  overflow: hidden;
}
.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: inherit;
}

/* Typography */

h1 {
  line-height: 90px;
  font-size: 80px;
}

h2 {
  line-height: 65px;
  font-size: 55px;
}

h3 {
  line-height: 40px;
  font-size: 30px;
}

h4 {
  line-height: 34px;
  font-size: 24px;
}

h5 {
  line-height: 30px;
  font-size: 20px;
}

h6 {
  line-height: 28px;
  font-size: 18px;
}

.auto-container {
  position: static;
  max-width: 1320px;
  padding: 0px 15px;
  margin: 0 auto;
}
.auto_container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0px 10px;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  min-width: 300px;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.see__pad {
  position: relative;
  padding: 110px 0px 110px;
}
.mb-20 {
  margin-bottom: 20px !important;
}
ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

span,
img {
  display: inline-block;
  max-width: 100%;
  border-radius: 5px;
  height: auto;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
img {
  max-width: 100%;
  display: block;
}
.theme-btn {
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: "Oswald", sans-serif;
}

.centered {
  text-align: center;
}
p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Oswald", sans-serif;
  margin-bottom: 0;
  color: #444444;
}
.dance {
  -webkit-animation: dance 2s alternate infinite;
  animation: dance 2s alternate infinite;
}

@keyframes dance {
  0% {
    -webkit-transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1.2);
  }
}
.team__section .team-shap {
  position: absolute;
  top: 14%;
  left: 6%;
}

.team__section .team-shape {
  position: absolute;
  top: 15%;
  right: 5%;
}

.bounce-animate2 {
  animation-name: float-bob2;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob2;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob2;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob2;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.bounce-animate3 {
  animation-name: float-bob3;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob3;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob3;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob3;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
@keyframes float-bob2 {
  0% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }

  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}

@keyframes float-bob3 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}
/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.sec-title_title {
  position: relative;
  font-weight: 700;
  display: block;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 20px;
  color: #a97300;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
}

.sec-title_heading {
  margin-top: 15px;
  font-weight: 400;
  color: #fff;
  font-family: "Oswald", sans-serif;
  text-transform: capitalize;
}

.sec-title_text {
  line-height: 28px;
  font-size: 16px;
  margin-top: 20px;
  color: #444444;
}

.sec-title.centered {
  text-align: center !important;
}
/*<!-- ============================================================== -->
<!--section-title Css -->
<!-- ============================================================== -->*/

.section-title {
  text-align: center;
  margin-bottom: 0;
}

.main-title h1 {
  opacity: 0.02;
  font-size: 130px;
  line-height: 58px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.sub-title h2 {
  font-size: 50px;
  line-height: 58px;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 0;
  position: relative;
  z-index: 1;
  top: -60px;
}

.sub-title h2 span {
  color: #d7ab7c;
}

.sub-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  width: 75px;
  height: 2px;
  background: #d8ac7d;
  margin: 0 auto 0;
}

.sub-title h2::after {
  content: "";
  position: absolute;
  left: -64px;
  right: 0;
  top: 86px !important;
  width: 10px;
  height: 2px;
  background-color: #303841;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
  margin: 0 auto 0;
  text-align: center;
}

@keyframes MOVE-BG {
  0% {
    left: 0px;
    bottom: 0px;
  }

  100% {
    left: 100px;
    bottom: 0px;
  }
}
@keyframes MOVE-BG {
  0% {
    left: -70px;
    top: 0px;
  }

  100% {
    left: 70px;
    top: 0px;
  }
}

.section_title .main_title h1 {
  font-size: 42px;
  line-height: 55px;
  color: #ffffff;
  font-weight: 600;
  margin: 15px 0 20px;
}

/* Btn Style One */

.btn-style-one {
  position: relative;
  font-weight: 600;
  overflow: hidden;
  text-align: center;
  border-radius: 2px;
  padding: 15px 30px 15px 40px;
  font-size: 16px;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #fff;
}

.btn-style-one:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  content: "";
  top: 0%;
  left: 0%;
  width: 10px;
  bottom: 0px;
  z-index: 1;
  background-color: #fff;
}

.btn-style-one:hover:before {
  width: 100%;
}

.btn-style-one .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-one .btn-wrap .text-one {
  position: relative;
  display: block;
  color: #fff;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-one .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: #444444;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style-one:hover .btn-wrap .text-two {
  color: #a97300;
}

.btn-style-one:hover {
}

.btn-style-one:hover:before {
  top: -40%;
}
/* Btn Style Two */

.btn-style-two {
  position: relative;
  font-weight: 600;
  overflow: hidden;
  text-align: center;
  border-radius: 2px;
  font-size: 16px;
  display: inline-block;
  padding: 16px 30px 16px 40px;
  color: #fff;
  text-transform: uppercase;
  background-color: #a97300;
}

.btn-style-two:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 10px;

  content: "";
  top: 5px;
  left: 0px;
  bottom: 5px;

  z-index: 1;
  background-color: #fff;
}

.btn-style-two:hover:before {
  width: 100%;
  background-color: #000;
}

.btn-style-two .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-two .btn-wrap .text-one {
  position: relative;
  display: block;
  color: #fff;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-two .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* Btn Style Three */
.btn-style-three{
	position: relative;
	font-weight:600;
	overflow: hidden;
	text-align:center;
	border-radius:2px;
	font-size: 16px;
	display:inline-block;
	padding:17px 30px 16px 40px;
	color: #000;
	text-transform: uppercase;
  backdrop-filter: blur(25px) saturate(57%);
  -webkit-backdrop-filter: blur(25px) saturate(57%);
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.125);
}

.btn-style-three:before{
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 7px;
	
	content: "";
	top: 5px;
	left: 0px;
	bottom: 5px;

	z-index: 1;
	background-color: #000;
}

.btn-style-three:hover:before{
	
	width: 100%;
	background-color: #000;
}

.btn-style-three .btn-wrap{
	position:relative;
	z-index:1;
	float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-three .btn-wrap .text-one{
	position: relative;
	display: block;
	color: #000;
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-three .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


/*=============================
05.header-start
===============================*/
.header-top {
  background: #1c1c29;
  transition: all 0.3s linear;
}

.header-top-left {
  height: 100%;
}

.header-top-left ul {
  margin-left: 160px;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-top-left ul li {
  font-size: 14px;
  color: #ffffffcc;
  font-weight: 400;
  line-height: 22px;
  margin-right: 54px;
  display: flex;
  align-items: center;
  font-family: "Oswald", sans-serif;
}

.header-top-left ul li:last-child {
  margin: 0;
}

.header-top-left ul li a {
  font-size: 14px;
  color: #ffffffcc;
  font-weight: 400;
  line-height: 22px;
  transition: all 0.3s ease;
}

.header-top-left ul li a:hover {
  color: #a97300;
}

.header-top-left ul li i {
  margin-right: 8px;
  font-size: 24px;
}

.header-top-right {
  float: right;
}

.qoute {
  margin-right: 180px;
}

.header-main {
  height: 100px;
  background: #222233;
}

.transcom-logo .logo {
  background: #fcac3a;
  height: 100px;
  line-height: 100px;
  padding-left: 15px;
  text-align: right;
  padding-right: 83px;
}

.menu-here ul {
  margin-left: 0px;
}

.main-menu {
  padding-left: 30px;
}

.main-menu .menu-here ul li {
  display: inline-block;
  position: relative;
}

.main-menu .menu-here ul li a {
  font-size: 16px;
  color: #ffffffcc;
  line-height: 26px;
  font-weight: 500;
  padding: 36px 0px;
  margin-right: 40px;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: "Oswald", sans-serif;
}

.main-menu .menu-here ul li a:hover {
  color: #a97300;
}

.main-menu .menu-here ul li ul {
  left: 0;
  top: 120%;
  opacity: 0;
  width: 200px;
  z-index: 99999;
  position: absolute;
  padding: 15px 20px;
  visibility: hidden;
  background: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

.main-menu .menu-here ul li:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.main-menu .menu-here ul li ul li {
  display: block;
}

.main-menu .menu-here ul li ul li a {
  margin: 0px;
  padding: 5px;
  display: block;
  font-size: 14px;
  position: relative;
  color: #1c1c29;
  font-family: "Oswald", sans-serif;
  text-transform: capitalize;
}

.main-menu .menu-here ul li ul li a:before {
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  scale: 0;
  position: absolute;
  transition: all 0.3s linear;
  background-color: #a97300;
}
.main-menu .menu-here ul li ul li a:hover {
  padding-left: 12px;
}
.main-menu .menu-here ul li ul li a:hover:before {
  scale: 1;
}

/* submenu */
.main-right .search {
  display: inline-block;
  position: relative;
  margin-right: 24px;
  padding-right: 24px;
  cursor: pointer;
}

.main-right .search::after {
  content: "";
  height: 30px;
  width: 2px;
  right: 0;
  top: -4px;
  position: absolute;
  background-color: #000;
}

.header-mainv1 .main-right .search::after {
  background-color: #484848;
}

.body-overlay {
  background-color: #767676;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.body-overlay.active {
  opacity: 0.7;
  visibility: visible;
}

.main-right .search svg {
  color: #fff;
  font-size: 18px;
}

.close-btn-serch {
  background: #a97300;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 22%;
  right: 15%;
  line-height: 47px;
  text-align: center;
  cursor: pointer;
}

.close-btn-serch i {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  font-size: 30px;
  color: #fff;
}

.close-btn-serch:hover i {
  transform: rotate(180deg);
}

.form-toggle {
  background-color: #fff;
  text-align: start;
  position: fixed;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 0;
  width: 100%;
  box-shadow: rgba(5, 13, 54, 0.05) 5px 15px 30px 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 999999;
  padding: 50px 30px;
  transform: translateY(-100%);
}

.form-toggle.active {
  transform: translateY(0);
}

.main-header-right {
  height: 100%;
  display: flex;
  justify-content: start;
}

.main-right {
  display: flex;
  align-items: center;
}

.main-right .call-now {
  display: flex;
  align-items: center;
  font-family: "Oswald", sans-serif;
}

.main-right .call-now span {
  color: #fff;
}

.main-right .phone-number span {
  display: block;
}

.phone {
  width: 48px;
  height: 48px;
  line-height: 43px;
  background: #a97300;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #a97300;
  position: relative;
  margin-right: 12px;
}

.phone::after {
  position: absolute;
  content: "";
  height: 56px;
  width: 56px;
  border: 2px solid #a97300;
  left: -6px;
  top: -6px;
  border-radius: 50%;
}

.main-header-right .phone-number span {
  font-size: 14px;
  font-weight: 500;
  color: #ffffffcc;
  line-height: 26px;
  font-family: "Oswald", sans-serif;
}

.main-header-right .phone-number span a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 26px;
  transition: all 0.3s ease;
}

.main-header-right .phone-number span a:hover {
  color: #a97300;
}

/* Sticky Menu */
.sticky-header {
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  top: 0;
}

.sticky-header.headroom--top {
  top: 55px;
}

.sticky-header.headroom--not-top.headroom--pinned,
.sticky-header.headroom--unpinned {
  top: 0;
}

.headroom {
  transition: transform 0.25s ease-in-out;
  will-change: transform;
  box-shadow: rgba(0, 0, 0, 0.09) 10px 0 20px;
}

.headroom--pinned {
  transform: translateY(0);
}

/*** 

====================================================================
	Main Slider Section
====================================================================

***/

.slider-one {
  position: relative;
}

.slider-one .auto-container {
  position: relative;
}

.slider-one-arrow {
  position: absolute;
  left: 20px;
  bottom: 110px;
  right: 0px;
  max-width: 1320px;
  margin: 0 auto;
  z-index: 1;
}

.slider-one .main-slider-prev {
  position: relative;
  z-index: 1;
  cursor: pointer;
  margin-right: 15px;
  display: inline-block;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.slider-one .main-slider-prev:hover {
}

.slider-one .main-slider-prev.swiper-button-disabled {
}

.slider-one .main-slider-next.swiper-button-disabled {
}

.slider-one .main-slider-next:hover {
}

.slider-one .main-slider-next {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: inline-block;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-slider_pagination {
  position: absolute;
  right: -50px;
  bottom: 0px;
}

.main-slider_pagination .swiper-pagination-bullet {
  position: relative;
  width: 30px;
  height: 2px;
  opacity: 1;
  display: block;
  margin: 15px 0px;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  background-color: #fff;
}

.main-slider_pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 60px;
  background-color: #a97300;
}

.slider-one .swiper-slide {
  position: relative;
  overflow: hidden;
  background-size: cover;
  padding: 280px 0px 0px;
}

.slider-one_image-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 70px;
  z-index: 1;
  opacity: 0;
  background-size: cover;
  background-position: center center;

  clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);

  -webkit-transition: all 1000ms linear;
  -moz-transition: all 1000ms linear;
  -ms-transition: all 1000ms linear;
  -o-transition: all 1000ms linear;
  transition: all 1000ms linear;
}

.slider-one_image-layer::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.9;
  background-color: #000;
}

.slider-one .swiper-slide-active .slider-one_image-layer {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.slider-one .upper-box {
  position: relative;
  z-index: 1;
}

.slider-one .lower-box {
  position: relative;
  z-index: 1;
  margin-top: 60px;
}

.slider-one_heading {
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;

  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one .swiper-slide-active .slider-one_heading {
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-one_text {
  position: relative;
  line-height: 30px;
  font-weight: 400;
  font-size: 16px;
  padding-top: 70px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one .swiper-slide-active .slider-one_text {
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-one_button {
  position: relative;
  margin-top: 30px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one .swiper-slide-active .slider-one_button {
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-one_button .discover-btn {
  position: relative;
  font-size: 16px;
  padding-left: 25px;
  color: #fff;
}

.slider-one_button .discover-btn:hover {
  color: #a97300;
}

.slider-one_button .discover-btn:hover::before {
  background-color: #a97300;
}

.slider-one_button .discover-btn::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  display: inline-block;
  border: 2px solid #a97300;
}

.slider-one .slider-one_button {
  display: inline-block;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.slider-one .swiper-slide-active .slider-one_button {
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.slider-one_image {
  position: relative;
  opacity: 0;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0 48%, 100% 48%, 100% 50%, 0 50%);
}

.slider-one_image img {
  position: relative;
  width: 100%;
  display: block;
}

.slider-one .swiper-slide-active .slider-one_image {
  opacity: 1;
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
/*** 

====================================================================
	about One
====================================================================

***/

.about-one {
  position: relative;
  padding: 110px 0px 70px;
}

.about-one_circle {
  position: absolute;
  right: -20px;
  top: -500px;
  width: 865px;
  height: 865px;
  border-radius: 50%;
  background: #ffe6af;
  background: linear-gradient(to right, #ffe6af 0%, #ebb542 100%);
}
.about-one .about-shape {
  position: absolute;
  top: 14%;
  left: 5%;
}

.about-one .abouts-shapes {
  position: absolute;
  top: 25%;
  right: 5%;
}
.about-one_subtitle {
  font-weight: 700;
  margin-bottom: 20px;
  padding-right: 50px;
  display: inline-block;
  color: #a97300;
  text-transform: uppercase;
}

.about-one_subtitle::before {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 10px;
  width: 40px;
  height: 1px;
  background-color: #fff;
}

.about-one .middle-box {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-one_counter {
  position: relative;
  padding-top: 20px;
}

.about-one_counter-count {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.about-one_counter-count span {
  position: relative;
  font-size: 60px;
  font-weight: 700;
}

.about-one_options {
  position: relative;
  gap: 30px;
}

.about-one_phone {
  position: relative;
  display: flex;
  gap: 15px;
  margin-top: -6px;
  font-size: 16px;
  align-items: center;
}

.about-one_phone span {
  position: relative;
  width: 66px;
  height: 54px;
  text-align: center;
  line-height: 54px;
  font-size: 20px;
  color: #fff;
  background-color: #fff;
}

.about-one_phone a {
  position: relative;
  color: #fff;
  font-family: "Oswald", sans-serif;
}

.about-one .blocks_outer {
  position: relative;
}

/* about Block One */

.about-block_one {
  position: relative;
  margin-bottom: 30px;
}

.about-block_one:last-child .about-block_one-inner {
  border: none;
  padding-bottom: 0px;
}

.about-block_one-inner {
  position: relative;
  padding-left: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.about-block_one-icon::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  width: 75px;
  height: 75px;
  z-index: -1;
  border-radius: 150px;
  background: #ffe6af;
  background: linear-gradient(to right, #ffe6af 0%, #ebb542 100%);
}

.about-block_one-icon {
  position: absolute;
  right: 0px;
  width: 90px;
  line-height: 1em;
  font-size: 60px;
  color: #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-block_one-inner:hover .about-block_one-icon {
  animation: icon-bounce 0.8s ease-out;
  -webkit-animation: icon-bounce 0.8s ease-out;
}

.about-block_one-number {
  position: absolute;
  left: 0px;
  top: 5px;
  font-weight: 800;
  font-size: 18px;
  color: #a97300;
}

.about-block_one-heading {
  position: relative;
}

.about-block_one-heading a {
  position: relative;
  color: #fff;
}

.about-block_one-heading a:hover {
  color: #a97300;
}

.about-block_one-text {
  position: relative;
  margin-top: 5px;
  font-size: 16px;
  line-height: 28px;
  max-width: 400px;
  color: #444444;
  font-family: "Oswald", sans-serif;
}

.about-one_phone .phone-number span {
  display: block;
}

.about-one_phone .phone {
  width: 48px;
  height: 48px;
  line-height: 43px;
  background: #a97300;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #a97300;
  position: relative;
  margin-right: 12px;
}

.about-one_phone .phone::after {
  position: absolute;
  content: "";
  height: 56px;
  width: 56px;
  border: 2px solid #a97300;
  left: -6px;
  top: -6px;
  border-radius: 50%;
}

.about-one_phone .phone-number span {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
}

.about-one_phone .phone-number a {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 26px;
  transition: all 0.3s ease;
}

.about-one_phone .phone-number span a:hover {
  color: #a97300;
}
/**====================================================
<-- Arcke counter area Css -->
======================================================**/
.counter-area.one {
  padding: 60px 0 120px;
  position: relative;
  z-index: 1;
}

.counter-area.one .row.bg-col {
  background: #1e1e1e;
  padding: 0 0 100px;
}

.counter-area.one .counter-single-item-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  top: -30px;
  transition: 0.5s;
}

.counter-area.one .counter-text h1 {
  font-size: 50px;
  line-height: 58px;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 0;
  position: relative;
  z-index: 1;
}

.counter-area.one .counter-text h1::before {
  position: absolute;
  content: "";
  top: -10px;
  left: -80px;
  height: 47px;
  width: 47px;
  background: #1e1e1e;
  right: 0;
  margin: 0 auto 0;
  z-index: -1;
}

.counter-area.one .counter-title h4 {
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  color: #999999;
  font-weight: 400;
  margin: 0 0 0;
  position: relative;
  z-index: 1;
}

.counter-area.one .counter-text h4::before {
  position: absolute;
  bottom: -32px;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  width: 14%;
  background: #fff;
  margin: 0 auto 0;
  transition: 0.5s;
}

.counter-area.one .conun-shap {
  position: absolute;
  left: 5%;
  top: 40%;
}

.counter-area.one .conunt-shape {
  position: absolute;
  right: 5%;
  top: 45%;
  text-align: right;
}

.counter-area.one .counter-single-item-inner:hover .counter-text h4::before {
  width: 20%;
}

.counter-area.one.upper {
  background: #fff;
}
.counter-area.one.upper.inner {
  padding: 140px 0 120px;
}

.counter-area.one.upper .row.bg-col {
  background: #f8f8f8;
  padding: 0 0 100px;
}

.counter-area.one.upper .counter-text h1 {
  color: #101010;
}

.counter-area.one.upper .counter-text h1::before {
  background: #f8f8f8;
}

.counter-area.one.upper .counter-title h4 {
  color: #101010;
}

.counter-area.one.upper .counter-text h4::before {
  background: #101010;
}

/**====================================================
<-- tag-area Css -->
======================================================**/

.tag-area.one {
  background: url(../img/tag-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 115px 0 100px;
}

.tag-area.one.upper {
  background: #f8f8f8;
  border-bottom: 1px solid #f0f0f0;
}

.tag-area.one.upper .marquee-block .content-box h6.title {
  color: #222;
}

.tag-area.one .marquee {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  gap: 0px;
}

.tag-area.one .marquee-block {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 0;
  min-width: 87%;
  -webkit-animation: scroll 30s linear infinite;
  animation: scroll 30s linear infinite;
}

.tag-area.one .marquee-block .content-box {
  position: relative;
  margin-right: 0px;
}

.tag-area.one .marquee-block .content-box:last-child {
  margin-right: 0px;
}

.tag-area.one .marquee-block .content-box:last-child::before {
  display: none;
}

.tag-area.one .marquee-block .content-box .title {
  margin: 0;
}

.tag-area.one .marquee-block .content-box h6.title {
  display: inline-block;
  font-size: 42px;
  color: #fff;
  font-weight: 600;
  padding: 0 48px;
  transition: 0.5s;
}

.tag-area.one .marquee-block .content-box h6.title:hover {
  color: #a97300;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}
/*<!-- ============================================================== -->
<!-- service-area  Css -->
<!-- ============================================================== -->*/

.service-area.one {
  position: relative;
  padding: 110px 0px 0px;
  background-color: #353535;
}

.service-area.one::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: -50px;
  height: 100%;
  width: 100%;
  background: url(../img/service-bor.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto 0;
  background-position: center center;
}

.section-padding {
  padding: 100px 0;
}
.mt-150 {
  margin-top: 150px !important;
}
.service-area.one .section-title {
  text-align: center;
  margin-bottom: 17px;
}
.service-area.one .content {
  position: relative;
  z-index: 10;
  margin-top: 30px;
}
.service-area.one .service-card {
  padding: 20px 60px 20px 30px;
  -webkit-border-start: 1px solid #ccc;
  border-inline-start: 1px solid #ccc;
  display: block;
}
.service-area.one .service-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}
.service-area.one .service-content {
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  margin-top: 50px;
  font-family: "Oswald", sans-serif;
}
.service-area.one .service-card:hover .arrow {
  background-color: #a97300;
  color: #fff;
}
.service-area.one .service-card .icon {
  color: #a97300;
  margin-bottom: 20px;
  font-size: 30px;
}
.service-area.one .service-card .img {
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
}
.service-area.one .service-card .arrow {
  width: 50px;
  height: 50px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  margin-top: 40px;
  border: 1px solid #ccc;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-area.one .service-card .arrow i {
  margin-top: 18px;
}

.service-area.one .ser-img {
  width: 100%;
  height: 1000px;
  margin-top: -550px;
}
.service-area.one .ser-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}

.container,
.container-fluid {
  position: relative;
  z-index: 5;
}
/*** 

====================================================================
	Steps One
====================================================================

***/

.steps-one {
  position: relative;
  padding: 110px 0px 80px;
}

.steps-one .section-title {
  margin-bottom: 90px;
}

.step-block_two {
  position: relative;
  margin-bottom: 60px;
}

.step-block_two-inner {
  position: relative;
}

.step-block_two-number {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  color: #a97300;
  font-family: "Oswald", sans-serif;
}

.step-block_two-icon {
  position: absolute;
  right: -50px;
  top: 0px;
  z-index: 1;
  width: 120px;
  height: 120px;
  padding: 30px 30px;
  text-align: center;
  border-radius: 150px;
  background: #ffe6af;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background: linear-gradient(to right, #ffe6af 0%, #ebb542 100%);
}

.step-block_two-inner:hover .step-block_two-icon {
  transform: rotateY(180deg);
}

.step-block_two-heading {
  position: relative;
  color: #fff;
}

.step-block_two-text {
  position: relative;
  font-size: 16px;
  margin-top: 10px;
  line-height: 26px;
  max-width: 275px;
  color: #444444;
  font-family: "Oswald", sans-serif;
}

.step-block_two.style-two .step-block_two-inner {
  padding-left: 110px;
}

.step-block_two.style-two .step-block_two-icon {
  right: auto;
  left: -50px;
}

.step-block_two-image {
  position: relative;
  overflow: hidden;
  margin-left: -30px;
  margin-right: -30px;
  margin-top: -50px;
  border-radius: 50%;
  display: inline-block;

  -webkit-animation: border-transform 10s linear infinite alternate forwards;
  animation: border-transform 10s linear infinite alternate forwards;
}

.step-block_two-image_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  transform: translateX(-50%) translateY(-50%);
}
.portfolio-wrapper {
  margin-right: 8px;
}
/*** 

====================================================================
	Team One
====================================================================

***/

.team-area {
  position: relative;
  padding: 110px 0px 110px;
}
.team-area .section-title {
  margin-bottom: 90px;
}
.team-area .team-shap {
  position: absolute;
  top: 14%;
  left: 5%;
}

.team-area .team-shape {
  position: absolute;
  top: 25%;
  right: 5%;
}
.team-one_slider .swiper-container {
  padding-top: 35px;
  height: 200vh;
  margin-inline: 1.5rem;
  display: grid;
  place-items: center;
}

.team__content .team__data {
  background-color: #f9f4f1;
  padding: 126px 30px 160px;
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0% 100%);
  position: relative;
}
.team__image {
  padding: 0px 30px;
  position: relative;
  margin-top: -160px;
}
.team__destination h6 {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #a97300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.team__name h5 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
}
.team__name {
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team__content .team__data:before {
  content: "";
  background: #a97300;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: all 500ms ease;
  opacity: 0;
}
.team__media ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.team__media ul a {
  text-transform: uppercase;
  color: #fff;
}
.team__media {
  transform: translateX(100%);
  transition: all 500ms ease;
  opacity: 0;
}
.team__content:hover .team__media {
  transform: translateX(0%);
  opacity: 1;
}
.team__content:hover .team__data:before {
  transform: translateX(0%);
  opacity: 1;
}
.team__content:hover h6 {
  color: #fff;
}
.team__content:hover h5 {
  color: #fff;
}

figure {
  margin: 0px;
}
.info__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.info__social-link {
  width: 32px;
  height: 32px;
  background-color: #b3924b;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.3s;
}
.info__social-link:hover {
  transform: translateY(-0.25rem);
}
.info__social-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(180deg, #3b2d10, #dcb561);
  padding: 0.25rem;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
}

/*** 

====================================================================
	portfolio
====================================================================

***/
.portfolio-area.one {
  position: relative;
  padding: 110px 0px 110px;
}
.portfolio-area.one .section-title {
  margin-bottom: 90px;
}
.portfolio-area.one .portfolio-shap {
  position: absolute;
  top: 14%;
  left: 2%;
}

.portfolio-area.one .portfolio-shape {
  position: absolute;
  top: 25%;
  right: 5%;
}
.portfolio-card {
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 3px solid #e3e3e3;
  cursor: default;
}

.portfolio-card:first-child {
  border-top: 3px solid #e3e3e3;
}
.portfolio-card:hover .btn-wrapper .arrow-btn {
  color: #23262d;
  transform: rotate(-25deg);
  transition: all 0.5s ease-out;
}
.portfolio-card.active .title {
  color: #a97300;
  transition: all 0.5s ease-out;
}
.portfolio-card.active .btn-wrapper .arrow-btn {
  color: #23262d;
  transform: rotate(-25deg);
  transition: all 0.5s ease-out;
}
.portfolio-card .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #23262d;
  width: 170px;
  flex-shrink: 0;
  margin-bottom: 0;
  transition: all 0.5s ease-out;
}
.portfolio-card .content {
  padding-right: 36px;
  flex-grow: 1;
  position: relative;
}
.portfolio-card .content .short-title {
  font-size: 16px;
  font-weight: 400;
  display: block;
  font-family: "Oswald", sans-serif;
  color: #444444;
}

.portfolio-card .btn-wrapper .arrow-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 20px;
  color: #444444;
  transition: all 0.5s ease-out;
}
.portfolio-card .btn-wrapper .arrow-btn:hover {
  color: #a97300;
}
.portfolio-fullscreen-image {
  height: 100%;
  width: 100%;
  position: relative;
}

.portfolio-fullscreen-image .tabimg {
  transform: scale(1.1);
  opacity: 0;
  transition: all 0.5s ease-out;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 645px;
  width: 100%;
  height: 100%;
}

.portfolio-fullscreen-image .tabimg.active {
  transform: scale(1);
  opacity: 1;
}

/*** 

====================================================================
	project-style
====================================================================

***/
.project-style {
  position: relative;
  padding: 110px 0px 110px;
  background-color: #101010;
}

.project-tab .p-tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}

.project-tab .p-tab.active-tab {
  position: relative;
  visibility: visible;
  opacity: 1;
  z-index: 5;
}

.project-tab .p-tabs-content {
  position: relative;
  display: block;
}

.project-tab .p-tab.active-tab .project-block-two {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.project-tab .p-tab .project-block-two {
  position: relative;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
}
.project-style .sec-title h2 {
  color: #fff;
}
.project-style .sec-title h2 span {
  color: #a97300;
}
.project-style .sec-title p {
  color: #999;
  margin-top: 15px;
}

.project-style .sec-title {
  margin-bottom: 24px;
}

.project-style .tab-btns .p-tab-btn {
  position: relative;
  display: block;
  margin-bottom: 0px;
}

.project-style .tab-btns .p-tab-btn h4 {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 55px;
  padding-right: 16px;
  cursor: pointer;
  color: #fff;
}
.project-style .tab-btns .p-tab-btn h4:hover {
  color: #a97300;
}
.project-style .tab-btns .p-tab-btn h4 span {
  position: absolute;
  top: 12px;
  right: 0px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 11px;
  text-align: center;
  border-radius: 50%;
  transform: scale(0, 0);
  color: #fff;
  transition: all 500ms ease;
}

.project-style .tab-btns .p-tab-btn.active-btn h4 span,
.project-style .tab-btns .p-tab-btn h4:hover span {
  transform: scale(1, 1);
}

.project-style .tab-btns .p-tab-btn h4:before {
  position: absolute;
  content: "";
  background: #999999;
  width: 0%;
  height: 1px;
  left: 0px;
  bottom: 0px;
  transition: all 500ms ease;
}

.project-style .tab-btns .p-tab-btn.active-btn h4:before,
.project-style .tab-btns .p-tab-btn h4:hover:before {
  width: 100%;
}
.large-container {
  max-width: 1560px;
  padding: 0px 15px;
  margin: 0 auto;
}

.project-style .owl-nav {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 38px;
}

.nav-style-one .owl-nav button {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 40px;
  font-size: 20px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  place-items: center;
  cursor: pointer;
  background: transparent;
  margin: 0px 10px;
  transition: all 500ms ease;
}
.project-style .tab-btns .p-tab-btn h4 span {
  background: #a97300;
}

.nav-style-one .owl-nav button:hover {
  border-color: #a97300;
  color: #a97300;
}
.project-style .project-card {
  position: relative;
}
.project-style .project-card:hover .img .arrow {
  background-color: #a97300;
  color: #fff;
}
.project-style .project-card .img {
  height: 650px;
  position: relative;
  border-radius: 0 20px 20px 20px;
  overflow: hidden;
  display: block;
}
.project-style .project-card .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}
.project-style .project-card .img .year {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  padding: 30px 20px 40px 10px;
  text-align: center;
  z-index: 10;
}
.project-style .project-card .img .year .txt {
  position: relative;
  z-index: 10;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
}
.project-style .project-card .img .year .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.ico-45 {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.project-style .project-card .img .arrow {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 20px;
  color: #a97300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}
.project-style .project-card .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%;
  padding: 40px;
  color: #fff;
}
.project-style .project-card .info .title {
  font-size: 35px;
  font-weight: 500;
}
.project-style .project-card .info .tags {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.project-style .project-card .info .tags a {
  padding: 8px 20px;
  border-radius: 30px;
  background-color: #fff;
  color: #000;
  font-weight: 500;
  font-size: 12px;
  font-family: "Oswald", sans-serif;
}

/*** 

====================================================================
	Testimonial Two
====================================================================

***/

.testimonial-two {
  position: relative;
  overflow: hidden;
  padding: 110px 0px 190px;
}

.testimonial-two_color-layer {
  position: absolute;
  right: -50px;
  top: -100px;
  width: 860px;
  height: 860px;
  border-radius: 50%;
  background: #ffe6af;
  background: linear-gradient(to right, #ffe6af 0%, #ebb542 100%);
}

.testimonial-two_bg {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 35px;
  background-size: cover;
}

.testimonial-two .auto-container {
  position: relative;
}

/* Testimonial Nav */

.testimonial-two .testimonial__nav {
  position: absolute;
  right: 15px;
  bottom: -40px;
  z-index: 1;
  max-width: 610px;
  margin: 0 auto;
}

.testimonial-two .testimonial__nav-thumb {
  position: relative;
  cursor: pointer;
  width: 306px;
  height: 407px;
  overflow: hidden;
  display: inline-block;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.testimonial-two .testimonial__nav-thumb img {
  position: relative;
  overflow: hidden;
}

/* Testimonial Block One */

.testimonial-block_one {
  position: relative;
}

.testimonial-block_one-inner {
  position: relative;
  padding: 50px 45px;
  max-width: 630px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.testimonial-block_one-text {
  position: relative;
  font-size: 18px;
  line-height: 28px;
  color: #444444;
  padding-bottom: 25px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-family: "Oswald", sans-serif;
}

.testimonial-block_one-author {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  font-family: "Rajdhani", sans-serif;
}

.testimonial-block_one-author span {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  margin-top: 10px;
  font-family: "Oswald", sans-serif;
}

.testimonial-block_one-rating {
  position: relative;
  color: #a97300;
}

.testimonial__nav-arrow {
  position: absolute;
  right: 15px;
  top: 25px;
  z-index: 10;
}

.testimonial__nav-arrow .testimonial__nav-slider-prev,
.testimonial__nav-arrow .testimonial__nav_slider-next {
  position: relative;
  margin-left: 15px;
  display: inline-block;
}
/*** 

====================================================================
	partners-section
====================================================================

***/

.partners-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.partners-section .brand-title {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 65px;
}

.partners-section .brand-title::before {
  position: absolute;
  top: 16px;
  left: 0;
  height: 1px;
  width: 33%;
  content: "";
  background: #2a2a2a;
}

.partners-section .brand-title::after {
  position: absolute;
  top: 16px;
  right: 0;
  height: 1px;
  width: 33%;
  content: "";
  background: #2a2a2a;
}

.partners-section .brand-title h4 {
  font-size: 16px;
  line-height: 32px;
  color: #d4d4d4;
  font-weight: 400;
  margin: 0 0 0;
  position: relative;
  z-index: 1;
}

.partners-section .brand-title h4 span {
  color: #a97300;
}
.partners-section .section-title {
  margin-bottom: 24px;
}
.partners-section .bg {
  position: absolute;
  top: -20%;
  right: 0;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: inherit;
}
.partners-section::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: calc(((100% - 1320px) / 2) + 1320px);
  height: 1px;
  background-color: #0003;
}
.partners-section .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.partners-section .logos .logo-card {
  position: relative;
  background-color: #fff;
  height: 258px;
  border: 1px solid #ececec;
  width: 20%;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  background-color: rgba(169, 115, 0, 0.42);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
}
.partners-section .logos .logo-card:hover {
  border-color: #a97300;
}
.partners-section .logos .logo-card .logo {
  max-width: 135px;
  max-height: 45px;
}
.partners-section .logos .logo-card .num {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  color: #fff;
  font-family: "Oswald", sans-serif;
}
.partners-section .logos .logo-card p {
  position: absolute;
  left: 30px;
  bottom: 30px;
  text-transform: uppercase;
  color: #fff;
  z-index: 10;
}
/*** 

====================================================================
	blog__section
====================================================================

***/
.blog__section {
  position: relative;
  overflow: hidden;
  padding: 110px 0px 190px;
}
.blog__section .section-title {
  margin-bottom: 24px;
}
.blog__section .blog-shap {
  position: absolute;
  top: 14%;
  left: 5%;
}

.blog__section .blog-shape {
  position: absolute;
  top: 14%;
  right: 5%;
}
.main__title.two h2 {
  color: #fff;
  padding-bottom: 60px;
}
.blog__data .news__block__one {
  padding: 40px 40px 70px;
}
.news__block__one .author__info ul {
  display: flex;
  align-items: center;
  padding: 0 0 30px;
  gap: 33px;
  margin: 0;
}
.news__block__one .author__info ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
  font-family: "Oswald", sans-serif;
}
.news__block__one .author__info ul li a:hover {
  color: #a97300;
}
.news__block__one .author__info ul li a i {
  font-size: 24px;
  color: #a97300;
}
.news__title h4 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  padding: 25px 0px;
  color: #fff;
  font-family: "Oswald", sans-serif;
}
.news__title h4 a:hover {
  color: #a97300;
}
.news__block__one img {
  width: 100%;
  border-radius: 10px;
}
.news__block__one .inner__box .image__box {
  border-radius: 10px;
}
.inner__box:hover img {
  transform: scale(1.2) rotate(1deg);
}
.inner__box:hover .image__box:before {
  left: 50%;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  right: 50%;
}
.inner__box:hover .image__box:after {
  bottom: 50%;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  top: 50%;
}
.inner__box .image__box:after {
  background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 700ms ease 0s;
  -o-transition: all 700ms ease 0s;
  transition: all 700ms ease 0s;
  right: 0;
  top: 0;
  z-index: 1;
}
.inner__box .image__box:before {
  background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 700ms ease 0s;
  -o-transition: all 700ms ease 0s;
  transition: all 700ms ease 0s;
  right: 0;
  top: 0;
  z-index: 1;
}
.inner__box {
  position: relative;
  display: block;
}
.inner__box .image__box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
}
.more__btn a {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 1.6px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #fff;
  font-family: "Oswald", sans-serif;
}
.more__btn a:hover {
  letter-spacing: 3px;
  color: #a97300;
}
.blog__data {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.blog__border {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.all___blog {
  padding-top: 70px;
}
.blog__section .blog-button {
  position: relative;
  z-index: 1;
  transition: 0.5s;
  overflow: hidden;
  transition: 0.5s;
}

.blog__section .blog-button a {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 32px;
  color: #ffffff;
  font-weight: 400;
  transition: 0.5s;
  margin-left: -103px;
  font-family: "Oswald", sans-serif;
}

.blog__section .blog-button::before {
  position: absolute;
  content: "";
  top: 1px;
  left: 8.5%;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: 0.5s;
}

.blog__section .blog-button a::before {
  position: absolute;
  content: "";
  top: 16px;
  right: -60px;
  height: 1px;
  width: 46px;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
}

.blog__section .blog-button a::after {
  position: absolute;
  content: "";
  top: 13px;
  right: -65px;
  height: 8px;
  width: 8px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}

.blog__section .news__block__one:hover .blog-button::before {
  left: 33%;
  border: 1px solid #d9aa7c;
}

.blog__section .news__block__one:hover .blog-button a::before {
  background: #d9aa7c;
}

.blog__section .news__block__one:hover .blog-button a::after {
  background: #d9aa7c;
}

.blog__section .news__block__one:hover .blog-button a {
  margin-left: 0px;
}

/*** 

====================================================================
main-footer
====================================================================

***/

.main-footer {
  position: relative;
  padding: 43px 0px 38px 0px;
}
.centred {
  text-align: center;
}
.main-footer .bg-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.main-footer .bg-layer:after {
  position: absolute;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(39, 39, 39, 0) -9.17%,
    #272727 96.07%
  );
  transform: rotate(-180deg);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.main-footer .bg-layer:before {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.7;
}

.main-footer .sec-title a {
  position: relative;
  display: inline-block;
  width: 66px;
  height: 66px;
  line-height: 70px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  background-color: #a97300;
  border-radius: 50%;
}

.main-footer .sec-title a:hover {
  background: #fff;
  color: #a97300;
}
.main-footer .sec-title {
  position: relative;
  display: block;
  margin-bottom: 28px;
}

.main-footer .sec-title .sub-title {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin-bottom: 17px;
  color: #a97300;
}

.main-footer .sec-title h2 {
  display: block;
  font-size: 45px;
  line-height: 55px;
  font-weight: 400;
}

.main-footer .sec-title h2 {
  margin-bottom: 29px;
  color: #fff;
}

.main-footer .sec-title {
  margin-bottom: 9px;
}

.main-footer .widget-title {
  position: relative;
  display: block;
  padding-bottom: 12px;
  margin-bottom: 40px;
}

.main-footer .widget-title:before {
  position: absolute;
  content: "";
  background: #4d4d4d;
  width: 70%;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.main-footer .widget-title:after {
  position: absolute;
  content: "";
  width: 43px;
  height: 2px;
  left: 0px;
  bottom: -1px;
  background: linear-gradient(270deg, #0d7dfc -22.92%, #ff9360 56.63%);
  -webkit-mask-image: linear-gradient(
    -75deg,
    rgba(244, 55, 55, 0.6) 50%,
    #f43737 50%,
    rgba(0, 0, 0, 1) 70%
  );
  -webkit-mask-size: 200%;
  animation: shine_2 2s infinite;
}

.main-footer .widget-title h3 {
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  color: #fff;
}

.main-footer .contact-widget {
  position: relative;
  padding-left: 260px;
  padding-right: 80px;
}

@-webkit-keyframes shine_2 {
  from {
    -webkit-mask-position: 150%;
  }

  to {
    -webkit-mask-position: -50%;
  }
}

.main-footer .contact-widget .info-list li {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  margin-bottom: 25px;
  padding: 4px 0px 6px 57px;
}

.main-footer .contact-widget .info-list li:last-child {
  margin-bottom: 0px;
}

.main-footer .contact-widget .info-list li i {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  color: #fff;
  background: #fd1a5a;
  text-align: center;
  border-radius: 50%;
}

.main-footer .contact-widget .info-list li:last-child i {
  top: 6px;
}

.main-footer .contact-widget .info-list li:nth-child(2) i {
  background: #84cb74;
}

.main-footer .contact-widget .info-list li:last-child i {
  background: #333333;
}

.main-footer .contact-widget .info-list li a {
  color: #fff;
}

.main-footer .subscribe-widget form .form-group {
  position: relative;
  margin-bottom: 32px;
}

.main-footer .subscribe-widget form .form-group input[type="text"],
.main-footer .subscribe-widget form .form-group input[type="email"],
.main-footer .subscribe-widget form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 85px;
  background: rgb(153 153 153 / 30%);
  border: 1px solid rgb(153 153 153 / 30%);
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  color: #999;
  padding: 10px 150px 10px 30px;
  transition: all 500ms ease;
}

.main-footer .subscribe-widget form .form-group button {
  position: absolute;
  top: 11px;
  right: 15px;
  font-size: 20px;
  line-height: 30px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  padding: 16px 40px;
  cursor: pointer;
  transition: all 500ms ease;
}

.main-footer .subscribe-widget form .form-group input:focus + button,
.main-footer .subscribe-widget form .form-group button:hover {
  background: #000;
}

.main-footer .subscribe-widget .social-links li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 30px;
}

.main-footer .subscribe-widget .social-links li:last-child {
  margin: 0px !important;
}

.main-footer .subscribe-widget .social-links li h4 {
  font-size: 20px;
  line-height: 30px;
  display: block;
  color: #fff;
}

.main-footer .subscribe-widget .social-links li a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  color: #999999;
}

.main-footer .subscribe-widget form .form-group button {
  background: #a97300;
}

.footer-bottom {
  position: relative;
  padding-top: 15px;
}

.footer-bottom .copyright h4 {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
}

.footer-bottom .copyright h4 a {
  color: #a97300;
}

.main-footer .image-layer-1 {
  position: absolute;
  left: 386px;
  top: 58px;
  width: 149px;
  height: 149px;
  z-index: 1;
} 

.main-footer .image-layer-2 {
  position: absolute;
  right: 40px;
  top: 58px;
  width: 231px;
  height: 231px;
  z-index: 1;
}

.main-footer .image-layer-3 {
  position: absolute;
  left: 40px;
  bottom: 113px;
  z-index: 1;
}
/***

====================================================================
	Scroll To Top style
====================================================================

***/

.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 40px;
	height: 35px;
	width: 35px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	color: #a97300;
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.20);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	transform: translateY(15px);
	-webkit-transform: translateY(15px);
	-moz-transform: translateY(15px);
	-ms-transform: translateY(15px);
	-o-transform: translateY(15px);
}

.progress-wrap::after {
    position: absolute;
    content: '\f176';
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 35px;
    font-size: 15px;
    stroke: #a97300;
    left: 0;
    top: 0;
    height: 35px;
    width: 35px;
    cursor: pointer;
    display: block;
    font-weight: 700;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-size: 13px;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #a97300;
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/*** 

====================================================================
                        All-Page-Css
====================================================================

***/

.page__title {
  overflow: hidden;
  padding: 150px 0px;
}
.page__title h1.title {
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  text-transform: uppercase;
  color: #fff;
}
.page__title .bread__crumb {
  display: flex;
  align-items: center;
  padding-top: 10px;
}
.page__title .bread__crumb li {
  display: flex;
  align-items: center;
  padding-top: 5px;
  color: #a97300;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: 9.3px;
  text-transform: uppercase;
  font-family: "Rajdhani", sans-serif;
}
.page__title .bread__crumb li a span {
  margin-right: 10px;
  font-size: 14px;
  color: #fe6809;
  transition: all 500ms ease;
}
.p_relative {
  position: relative;
}
.page__title .bread__crumb li a {
  color: #a97300;
}
.page__title .bread__crumb li:last-child span {
  margin: 0px 5px 0px 5px;
  color: #a97300;
}
.page__title .anim-icon .icon.layer-bg {
  width: 478px;
  height: 409px;
  top: 0px;
  right: 0px;
}
.bg-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.page__title:before {
  position: absolute;
  content: "";
  background: #01193d;
  width: 100%;
  opacity: 70%;
  height: 100%;
  left: 0px;
  top: 0px;
}
.page__title .icon__layer {
  position: absolute;
  width: 100%;
  height: 46px;
  left: 0;
  bottom: 0;
  background-repeat: repeat-x;
  animation: slide 100s linear infinite;
  -webkit-animation: slide 100s linear infinite;
}

/*** 

====================================================================
	Welcome Two
====================================================================

***/

.about-two {
  position: relative;
  padding: 90px 0px 70px;
}

.about-two_content-column {
  position: relative;
  margin-bottom: 30px;
}

.about-two_content-column {
  position: relative;
}

.about-two_list {
  position: relative;
  margin-top: 30px;
}

.about-two_list li {
  position: relative;
  font-size: 16px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #444444;
  font-family: "Oswald", sans-serif;
}

.about-two_list li::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  display: inline-block;
  border: 2px solid #a97300;
}

.about-two_list li:last-child {
  margin-bottom: 0px;
}

.about-two_author {
  position: relative;
  font-weight: 700;
  font-size: 27px;
  margin-top: 45px;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
}

.about-two_author span {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  margin-top: 5px;
  font-family: "Oswald", sans-serif;
}

.about-two_signature {
  position: relative;
  margin-top: 15px;
  width: 35%;
}

.about-two_image-column {
  position: relative;
  margin-bottom: 30px;
}

.about-two_image-outer {
  position: relative;
}

.about-two_image {
  position: relative;
}

.about-two_image img {
  position: relative;
  width: 100%;
  display: block;
}

.about-two_experiance {
  position: absolute;
  left: -150px;
  bottom: 0px;
  text-align: center;
}

.about-two_experiance::before {
  position: absolute;
  content: "";
  left: 8px;
  top: 8px;
  right: 8px;
  bottom: 8px;
  background-color: #101010;
}

.about-two_experiance-count {
  position: absolute;
  left: 0px;
  top: 50px;
  right: 0px;
  z-index: 1;
  line-height: 1em;
  font-size: 134px;
  font-weight: 400;
}

.about-two_experiance-count .count-box {
  position: relative;
  font-family: "Oswald", sans-serif;
  background: url(../img/about-4.jpg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-two_experiance-count sub {
  position: relative;
  margin-left: 10px;
  line-height: 1em;
  font-weight: 400;
  bottom: -10px;
  background: url(../img/about-4.jpg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-two_experiance i {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 18px;
  text-align: left;
  margin-left: 60px;
  line-height: 24px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  background: url(../img/about-4.jpg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*** 

====================================================================
	Progress One
====================================================================

***/

.progress-one {
  position: relative;
  padding: 110px 0px 0px;
}

.progress-one_image-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 150px;
  background-size: cover;
}

.progress-one .sec-title {
  margin-bottom: 50px;
}

.progress-one_content-column {
  position: relative;
  margin-bottom: 40px;
}

.progress-one_content-outer .skills {
  position: relative;
  padding-right: 30px;
}

/* Skills Section */

.skills {
  position: relative;
  margin-top: 40px;
}

.skills .skill-item {
  position: relative;
  margin-bottom: 45px;
  padding-left: 250px;
}

.skills .skill-item:last-child {
  margin-bottom: 0px;
}

.skills .skill-item .skill-bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 0px;
  border: 1px solid #a97300;
}

.skills .skill-item .skill-bar .bar-inner {
  position: relative;
  width: 100%;
}

.skills.style-two .skill-item .skill-bar .bar-inner {
  background-color: #eeeeee;
  font-family: "Oswald", sans-serif;
}

.skills .skill-item .skill-bar .bar-inner .bar {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0px;
  border-radius: 0px;
  border-bottom: 6px solid #a97300;
  -webkit-transition: all 2000ms ease;
  -ms-transition: all 2000ms ease;
  -o-transition: all 2000ms ease;
  -moz-transition: all 2000ms ease;
  transition: all 2000ms ease;
}

.skills .skill-item .skill-header {
  position: absolute;
  left: 0px;
  top: -6px;
}

.skills .skill-item .skill-header .skill-title {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  text-transform: capitalize;
}

.skills .count-box {
  position: absolute;
  left: -60px;
  top: -8px;
  z-index: 1;
  text-align: center;
  padding-left: 5px;
  padding-top: 1px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  font-family: "Oswald", sans-serif;
}

.progress-one_images-column {
  position: relative;
}

.progress-one_images-outer {
  position: relative;
  padding-top: 140px;
}

.progress-one_image {
  position: relative;
}

.progress-one_image .image img {
  display: block;
  width: 100%;
  height: auto;
}

.progress-one_image:nth-child(2) {
  position: relative;
  margin-top: 60px;
}
.progress-one_play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130px;
  height: 130px;
  text-align: center;
  border-radius: 50%;
  line-height: 130px;
  transform: translateX(-50%) translateY(-50%);
}

.progress-one_play span {
  position: relative;
  width: 110px;
  height: 110px;
  z-index: 10;
  text-align: center;
  display: block;
  line-height: 110px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  padding-left: var(--padding-left-5);
  background-color: #000;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.progress-one_play span:hover {
  color: #fff;
  background-color: #a97300;
}

.progress-one_play .ripple,
.progress-one_play .ripple:before,
.progress-one_play .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: ripple 3s infinite;
  -moz-animation: ripple 3s infinite;
  -ms-animation: ripple 3s infinite;
  -o-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.progress-one_play .ripple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.progress-one_play .ripple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
  }
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
  }
}

/*** 

====================================================================
	awards
====================================================================

***/

.awards {
  position: relative;
  padding: 110px 0;
}
.awards .award-card {
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  background-color: rgba(169, 115, 0, 0.42);
  border-radius: 12px;
  border: 1px ridge rgba(255, 255, 255, 0.125);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.awards .award-card a {
  font-family: "Oswald", sans-serif;
}
.awards .award-card:hover a {
  color: #000 !important;
  text-decoration: underline;
}
.awards .award-card .logo {
  height: 35px;
}
.awards .award-card .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  margin: 15px 0;
  min-height: 90px;
}

/*** 

====================================================================
portfolio full-bg
====================================================================

***/

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}
.portfolio.full-bg {
  position: relative;
}
.portfolio.full-bg .cluom {
  height: 90vh;
  padding: 0;
  position: relative;
  z-index: 2;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.portfolio.full-bg .cluom.current {
  background: rgba(0, 0, 0, 0.3);
}
.portfolio.full-bg .cluom:hover .info {
  color: inherit;
}
.portfolio.full-bg .cluom:hover .info:after {
  height: 100%;
}

.portfolio.full-bg .cluom .info {
  padding: 40px 10px 40px 20px;
  color: #fff;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  overflow: hidden;
}
.portfolio.full-bg .cluom .info:after {
  content: "";
  position: absolute;
  top: 0;
  left: -2%;
  width: 104%;
  height: 0;
  background: #fff;
  z-index: -1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.portfolio.full-bg .cluom .info h6 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.portfolio.full-bg .cluom .info h5 {
  font-size: 21px;
}
.portfolio.full-bg .cluom .more {
  position: absolute;
  bottom: 50px;
  right: 50px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.portfolio.full-bg .cluom .more i {
  font-size: 10px;
  margin-left: 2px;
}
.portfolio.full-bg .glry-img,
.portfolio.full-bg .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.portfolio.full-bg .glry-img {
  overflow: hidden;
}
.portfolio.full-bg .glry-img .bg-img {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  opacity: 0;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  background-size: cover;
  background-position: center center;
}
.portfolio.full-bg .glry-img .bg-img.current {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
/*** 

====================================================================
Preloader
====================================================================

***/
.preloader {
  background: #141414;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.twLoader {
  width: 209px;
  height: 200px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.twLoader:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/loader2.png) no-repeat center center;
  opacity: 0.7;
  animation: rotate 15s infinite linear;
}
.loaderO {
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  z-index: 1;
  line-height: 18px;
}
.loaderO span {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: aliceblue;
  display: inline-block;
  transition: all 0.5s;
  animation: animate 2s infinite;
}
.loaderO span:nth-child(1) {
  animation-delay: 0.1s;
}
.loaderO span:nth-child(2) {
  animation-delay: 0.2s;
}
.loaderO span:nth-child(3) {
  animation-delay: 0.3s;
}
.loaderO span:nth-child(4) {
  animation-delay: 0.4s;
}
.loaderO span:nth-child(5) {
  animation-delay: 0.5s;
}
.loaderO span:nth-child(6) {
  animation-delay: 0.6s;
}
.loaderO span:nth-child(7) {
  animation-delay: 0.7s;
}
@keyframes animate {
  0% {
    color: aliceblue;
    transform: translateY(0);
    margin-left: 0;
  }
  25% {
    color: aliceblue;
    transform: translateY(-15px);
    margin-left: 5px;
    text-shadow: 0 15px 5px rgba(0, 0, 0, 1);
  }
  100% {
    color: aliceblue;
    transform: translateY(0);
    margin-left: 0;
  }
}
/*** 

====================================================================
services
====================================================================

***/
.services {
  position: relative;
  padding: 110px 0px 0px;
}
.services .item {
  padding: 40px 30px;
  position: relative;
  background-size: cover;
  background-position: 50% 0% !important;
  margin-bottom: 20px;
}
.services .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1e1e1ecc;
}
.services .item:hover:after {
  opacity: 0;
}
.services .item:hover h5,
.services .item:hover p,
.services .item:hover h5 .services .item:hover span {
  color: #fff;
}
.services .item:hover .numb {
  -webkit-text-stroke: 1px #fff;
}
.services .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #101010;
  z-index: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.services .item .con {
  position: relative;
  z-index: 7;
  text-align: center;
}
.services .item .con .icon-img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.services .item .con .icon-img img {
  width: 80px;
  margin: 0 auto;
}
.services .item h5 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.services .item .numb {
  position: absolute;
  right: 15px;
  top: 18px;
  font-weight: 700;
  font-size: 70px;
  font-family: "Oswald", sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.1;
}
.services .item p {
  font-size: 15px;
}
.services .bg-1 {
  background-image: url(../img/s1.jpg);
}
.services .bg-2 {
  background-image: url(../img/s2.jpg);
}
.services .bg-3 {
  background-image: url(../img/s3.jpg);
}

.services .bg-4 {
  background-image: url(../img/s4.jpg);
}
.services .bg-5 {
  background-image: url(../img/s5.jpg);
}
.services .bg-6 {
  background-image: url(../img/s3.jpg);
}
/*** 

====================================================================
Content Lines style
====================================================================

***/
.content-wrapper {
  position: relative;
  overflow: hidden;
}
.content-lines-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.content-lines-inner {
  position: absolute;
  width: 1140px;
  left: 50%;
  margin-left: -570px;
  top: 0;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.content-lines {
  position: absolute;
  left: 33.666666%;
  right: 33.666666%;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
}
/*** 

====================================================================
positions
====================================================================

***/
.positions {
  position: relative;
  padding: 110px 0px 110px;
}
.position {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: -1px;
  padding: 40px 45px 40px 50px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background-color: transparent;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.position-link {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.position-category {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  -webkit-flex-basis: 30%;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  font-family: "Rajdhani", sans-serif;
}

.position-title {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #999;
  -webkit-flex-basis: 40%;
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
}

.position-time {
  font-weight: 400;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #999;
  font-family: "Rajdhani", sans-serif;
}

.position-icon {
  font-size: 16px;
  line-height: 1;
  color: #a97300;
}

.position-icon i {
  display: inline-block;
}
.position:hover {
  background-color: #a97300;
}
.position:hover .position-category {
  color: #fff;
}
.position:hover .position-title,
.position:hover .position-time {
  color: #fff;
}
.position:hover .position-icon i {
  -webkit-animation: vlt_animate_icon_top_right 0.3s 150ms forwards;
  animation: vlt_animate_icon_top_right 0.3s 150ms forwards;
  color: #fff;
}

/*** 

====================================================================
project tabs
====================================================================

***/

.mixitUp-menu-nav {
  margin-bottom: 90px;
}
.mixitUp-menu-nav.center-text {
  text-align: center;
}
.tran3s,
.project-item-wrapper .single-project ul li:before,
.project-item-wrapper .single-project ul li,
.mixitUp-menu-nav li:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.project-item-wrapper .single-project:hover span.number,
.mixitUp-menu-nav li:hover {
  color: #d7aa78;
}
.project-item-wrapper .single-project ul li:hover:before,
.mixitUp-menu-nav li.active:before,
.mixitUp-menu-nav li:hover:before {
  background: #d7aa78;
}
.mixitUp-menu-nav li {
  display: inline-block;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  color: #444444;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  margin: 10px 0;
  line-height: 18px;
  padding-left: 17px;
  padding-right: 10px;
}
.mixitUp-menu-nav li:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #292929;
  position: absolute;
  top: 0;
  left: 0;
}
.mixitUp-menu-nav li.active:before,
.mixitUp-menu-nav li:hover:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#mixitUp-item .mix {
  display: none;
}
.future-project.project-v3 .project-item-wrapper .single-project > ul {
  text-align: center;
}
.future-project.project-v3 .project-item-wrapper .single-project {
  margin-bottom: 46px;
}

.future-project {
  position: relative;
  padding: 110px 0px 110px;
}
.future-project.fix {
  margin-top: 173px;
}
.future-project .theme-main-title {
  margin-bottom: 110px;
}
.project-item-wrapper .single-project {
  margin-bottom: 60px;
  position: relative;
}
.project-item-wrapper .single-project .img {
  position: relative;
  overflow: hidden;
}
.project-item-wrapper .single-project .img img {
  width: 100%;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.project-item-wrapper .single-project:hover .img img {
  -webkit-transform: scale3D(1, 1.1, 1);
  -moz-transform: scale3D(1, 1.1, 1);
  -ms-transform: scale3D(1, 1.1, 1);
  -o-transform: scale3D(1, 1.1, 1);
  transform: scale3D(1, 1.1, 1);
}
.project-item-wrapper .single-project .img .overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
}
.project-item-wrapper .single-project .img .overlay > div {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
}
.project-item-wrapper .single-project .img .overlay > div > div {
  display: table-cell;
  vertical-align: middle;
}
.project-item-wrapper .single-project .img .overlay > div > div h4 {
  font-size: 31px;
  font-weight: 600;
  display: block;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 60px;
  -webkit-transform: translate3D(0, -200px, 0);
  -moz-transform: translate3D(0, -200px, 0);
  -ms-transform: translate3D(0, -200px, 0);
  -o-transform: translate3D(0, -200px, 0);
  transform: translate3D(0, -200px, 0);
}
.project-item-wrapper .single-project .img .overlay > div > div > a {
  position: relative;
  width: 71px;
  height: 71px;
  margin: 0 auto;
  -webkit-transform: translate3D(0, 200px, 0);
  -moz-transform: translate3D(0, 200px, 0);
  -ms-transform: translate3D(0, 200px, 0);
  -o-transform: translate3D(0, 200px, 0);
  transform: translate3D(0, 200px, 0);
}
.project-item-wrapper .single-project .img .overlay > div > div > a,
.project-item-wrapper .single-project .img .overlay > div > div h4 {
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0.3s; /* Safari */
  transition-delay: 0.3s;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.project-item-wrapper .single-project .img .overlay > div > div > a:before,
.project-item-wrapper .single-project .img .overlay > div > div > a:after {
  content: "";
  background: #fff;
  position: absolute;
}
.project-item-wrapper .single-project .img .overlay > div > div > a:before {
  width: 71px;
  height: 1px;
  top: 50%;
  left: 50%;
  margin-left: -35px;
}
.project-item-wrapper .single-project .img .overlay > div > div > a:after {
  height: 71px;
  width: 1px;
  top: 0;
  left: 50%;
}
.project-item-wrapper .single-project:hover .img .overlay {
  opacity: 1;
  visibility: visible;
}
.project-item-wrapper .single-project:hover .img .overlay > div > div > a,
.project-item-wrapper .single-project:hover .img .overlay > div > div h4 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3D(0, 0, 0);
  -moz-transform: translate3D(0, 0, 0);
  -ms-transform: translate3D(0, 0, 0);
  -o-transform: translate3D(0, 0, 0);
  transform: translate3D(0, 0, 0);
}
.project-item-wrapper .single-project ul li {
  display: inline-block;
  position: relative;
  margin-right: 8px;
  margin-top: 17px;
}
.project-item-wrapper .single-project ul li {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: normal;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-left: 45px;
}
.project-item-wrapper .single-project ul li:before {
  content: "";
  width: 34px;
  height: 1px;
  background: #444444;
  position: absolute;
  top: 47%;
  left: 0;
}
.project-item-wrapper .single-project ul li:hover:before {
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.project-item-wrapper .single-project span.number {
  font-family: "Oswald", sans-serif;
  font-size: 65px;
  color: #e7e3e3;
  position: absolute;
  top: -20px;
  right: 20px;
  z-index: 1;
}
.project-item-wrapper .theme-button {
  display: block;
  margin: 29px auto 0 auto;
}

/*** 

====================================================================
faq
====================================================================

***/

.faq {
  position: relative;
  padding: 110px 0px 110px;
}
.ot-accordions .acc-item {
  border-bottom: 1px solid #444444;
}
.ot-accordions .acc-item .acc-toggle {
  cursor: pointer;
  justify-content: space-between;
  overflow: hidden;
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  color: #f0f0f0;
  font-weight: 900;
  padding: 15px 0 20px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.ot-accordions .acc-item .acc-toggle i {
  float: right;
  text-align: center;
  line-height: 30px;
  font-size: 10px;
  color: #f0f0f0;
}
.ot-accordions .acc-item .acc-toggle i.up {
  display: none;
}
.ot-accordions .acc-item .acc-toggle i.down {
  margin-top: 5px;
}
.ot-accordions .acc-item .acc-toggle i:before {
  font-size: 14px;
}
.ot-accordions .acc-item .acc-content {
  display: none;
  padding: 0 20px 27px 0;
  font-size: 14px;
  line-height: 30px;
  color: #f0f0f0;
  font-family: "Oswald", sans-serif;
}
.ot-accordions .acc-item .acc-content p:last-child,
.ot-accordions .acc-item .acc-content ul:last-child {
  margin-bottom: 0;
}
.ot-accordions .acc-item.current .acc-toggle i.down {
  display: none;
}
.ot-accordions .acc-item.current .acc-toggle i.up {
  display: inherit;
}
.ot-accordions .acc-item:last-child {
  border-bottom: none;
}
.ot-accordions .acc-item .acc-toggle span.up {
  display: none;
}
.ot-accordions .acc-item.current .acc-toggle span.down {
  display: none;
}
.ot-accordions .acc-item.current .acc-toggle span.up {
  display: inherit;
}
.ot-accordions.s-dark .acc-item {
  background-color: transparent;
}
.ot-accordions.s-dark .acc-item .acc-toggle {
  color: #fff;
}
.ot-accordions.s-dark .acc-item .acc-toggle i {
  color: #a3a3a3;
}
.flex-middle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pr-4 {
  padding-right: 1.5rem;
}
@media (min-width: 1230px) {
  .container {
    max-width: 1200px;
  }
}
.mb-5 {
  margin-bottom: 3rem;
}

/*** 

====================================================================
blog__details
====================================================================

***/
ul.tags-list-1 a {
  font-family: Open Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #f0f0f0;
}

.tags-left {
  display: flex;
  align-items: center;
}

.tags-left h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5em;
  color: #f0f0f0;
}

ul.tags-list-1 {
  display: flex;
}

.blog-tags-box {
  backdrop-filter: blur(25px) saturate(57%);
  -webkit-backdrop-filter: blur(25px) saturate(57%);
  background-color: rgba(169, 115, 0, 0.14);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding: 20px 40px;
}
.mt-30 {
  margin-top: 30px;
}

ul.tags-list-1 li a {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2em;
  font-family: "Oswald", sans-serif;
  padding: 10px;
  backdrop-filter: blur(25px) saturate(57%);
  -webkit-backdrop-filter: blur(25px) saturate(57%);
  background-color: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  margin: 0 15px;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 0px rgba(212, 212, 212, 0.25);
}

ul.blog-social-icons {
  display: flex;
  justify-content: end;
  align-items: center;
}

ul.blog-social-icons li a {
  height: 35px;
  width: 35px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  margin-left: 15px;
  justify-content: center;
  display: flex;
  align-items: center;
  color: #f0f0f0;
  transition: all 500ms ease;
}

ul.tags-list-1 li:hover {
  color: #a97300;
}

ul.blog-social-icons li:hover {
  color: #a97300;
}

h3.comments-title {
  margin: 40px 0;
  color: #f1f1f1;
}

.comments-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid #ddd;
  margin-top: 60px;
}

.comments-box:nth-last-child(-n + 2) {
  border-bottom: none;
}

.comments-content .upper h4 {
  font-size: 20px;
  line-height: 1.5em;
  color: #f0f0f0;
}

.comments-content a.reply-btn {
  padding: 5px 20px;
  backdrop-filter: blur(25px) saturate(57%);
  -webkit-backdrop-filter: blur(25px) saturate(57%);
  background-color: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  transition: all 500ms ease;
  color: #a97300;
  font-family: "Oswald", sans-serif;
}

.comments-content a.reply-btn:hover {
  backdrop-filter: blur(25px) saturate(57%);
  -webkit-backdrop-filter: blur(25px) saturate(57%);
  background-color: rgba(169, 115, 0, 0.14);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  color: #ffffff !important;
}

.comments-content .upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comments-content {
  margin-left: 40px;
  flex-shrink: 1;
}

.comments-box .image-box {
  flex-shrink: 0;
  display: flex;
}

.comments-form.contact-section.two .form-inner {
  max-width: 100%;
}

.single-sidebar-box.two ul.popular-tag {
  display: flex;
  flex-wrap: wrap;
}

ul.popular-tag li a {
  color: #ffff;
  font-size: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  line-height: 30px;
  padding: 5px 10px;
  backdrop-filter: blur(25px) saturate(57%);
  -webkit-backdrop-filter: blur(25px) saturate(57%);
  background-color: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  display: inline-block;
  margin: 20px 14px 0 0;
  border-radius: 5px;
  transition: all 500ms ease;
}

ul.popular-tag li:hover {
  color: #a97300;
}

.single-sidebar-box.two.last-box .title h3 {
  margin-bottom: 0;
}

/* sidebar */

.sidebar-search-box {
  padding: 46px 40px;
  backdrop-filter: blur(25px) saturate(57%);
  -webkit-backdrop-filter: blur(25px) saturate(57%);
  background-color: #a9730024;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}

.sidebar-search-box .search-form input[type="text"] {
  position: relative;
  display: block;
  width: 100%;
  height: 55px;
  backdrop-filter: blur(25px) saturate(57%);
  -webkit-backdrop-filter: blur(25px) saturate(57%);
  background-color: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  color: #f0f0f0;
  font-size: 14px;
  font-weight: 400;
  padding-left: 24px;
  padding-right: 60px;
  transition: all 500ms ease 0s;
}

.sidebar-search-box form.search-form button {
  position: absolute;
  top: 0;
  right: 65px;
  bottom: 0;
  display: block;
  text-align: center;
  font-size: 22px;
  color: rgba(171, 171, 171, 1);
  background: transparent;
}

.single-sidebar-box.two {
  padding: 60px 39px;
  backdrop-filter: blur(25px) saturate(57%);
  -webkit-backdrop-filter: blur(25px) saturate(57%);
  background-color: rgba(169, 115, 0, 0.14);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  margin: 40px 0;
}

.single-sidebar-box.two .title h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.single-sidebar-box.two .inner {
  display: flex;
  align-items: center;
  padding: 10px;
  transition: all 500ms ease;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.single-sidebar-box.two .inner .title-box h4 {
  font-size: 16px;
  line-height: 1.2em;
}

.single-sidebar-box.two .inner .title-box .date {
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  font-family: "Oswald", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.single-sidebar-box.two .title-box {
  margin-left: 15px;
  flex-shrink: 1;
}

.single-sidebar-box.two .inner .img-box {
  flex-shrink: 0;
  display: flex;
}

.single-sidebar-box.two .inner:hover {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

ul.sidebar-categories-box li {
  position: relative;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3em;
  margin-left: 45px;
  margin-bottom: 10px;
}

ul.sidebar-categories-box li:hover:before {
  background: #a97300;
}

ul.sidebar-categories-box li:before {
  content: "\f061";
  font-family: FontAwesome;
  position: absolute;
  top: 1px;
  left: -45px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: #a97300;
  color: #f0f0f0;
  font-size: 10px;
  padding: 0 8px;
  line-height: 24px;
  transition: all 500ms ease;
}
.blog-inner-box {
  padding: 40px 50px 80px 40px;
  box-shadow: 0px 4px 40px 0px rgba(121, 121, 121, 0.05);
}
.blog-inner-box .author__info a {
  color: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
}

.blog-inner-box .author__info ul {
  display: flex;
  align-items: center;
  gap: 33px;
}

.blog-inner-box .author__info a i {
  color: #a97300;
}

.blog-inner-box .blog-title {
  padding: 20px 0px;
  color: #f0f0f0;
}
.form-inner textarea,
.form-inner input {
  transition: all 500ms ease;
  width: 100%;
  border-radius: 5px;
  background: #101010;
  margin-bottom: 30px;
  border: 1px solid#ebebeb;
  padding: 15px 20px;
  font-family: "Oswald", sans-serif;
  color: #f0f0f0;
}
.form-inner textarea {
  height: 141px;
}

@media only screen and (max-width: 768px) {
  .blog-inner-box {
    padding: 30px;
  }

  ul.blog-social-icons {
    justify-content: start;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 510px) {
  .comments-box {
    flex-direction: column;
  }

  .comments-box .image-box {
    margin-bottom: 20px;
  }
}
/*** 

====================================================================
contact-area
====================================================================

***/
.contact-area{
position: relative;
padding: 110px 0px 200px;
}

.contactMap{
  position: relative;
}
.map{
  padding: 0 55px 0;
}
.map iframe{
  display: block;
  width: 100%;
  min-height: 874px;
  border: none;

  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}
.contact{
  margin: -119px 0;
  position: relative;
  
}
.contactBox{
  backdrop-filter: blur(25px) saturate(57%);
  -webkit-backdrop-filter: blur(25px) saturate(57%);
  background-color: rgba(169, 115, 0, 0.14);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding: 117px 99px 119px 99px;
}
.contactBox h2.contactBigTitle{
  font-size: 32px;
  line-height: 1;
  letter-spacing: 3.2px;
  margin: 0 0 0;
}
.contactBox h2.contactBigTitle>span{
  color: #b4b4b4;
}
.information h4{
  font-size: 18px;
  letter-spacing: 1.8px;
  margin-bottom: 43px;
  color: #fff;
}
.information p{
  margin: 16px 0 0;
  color: #fff;
}
.flowUsSocial{
  display: flex;
  align-items: center;
  margin: 13px 0 0;
}
.flowUsSocial span{
  color: #fff;
  font-family: "Oswald", sans-serif;
  margin-right: 26px;
  font-weight: 300;
}
.flowUsSocial a{
  color: #b4b4b4;
  font-size: 15px;
  margin-right: 24px;
}
.flowUsSocial a:last-child{
  margin-right: 0;
}
.flowUsSocial a:hover{
  color: #a9997a;
}
.sayHello h4{
  color: #fff;
  font-size: 18px;
  letter-spacing: 1.8px;
  margin-bottom: 43px;
}
.sayHello ul{
  padding: 0;
  margin-top: 36px;
}
.sayHello ul li{
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}
.sayHello ul li:last-child{
  margin-bottom: 0;
}
.sayHello ul li span{
  color: #777777;
}
.leaveAComment{
  position: relative;
  margin: 108px 0 0;
}
.leaveAComment h2{
  font-size: 24px;
  letter-spacing: 2.4px;
  line-height: 1;
  margin: 0 0 13px;
  color: #fff;
}
.leaveAComment p{
  margin: 0;
  padding-right: 30%;
  color: #fff;
}
/* Contact From */
.contactFrom{
  margin-top: 36px;
}

.nameInput label,
.emailInput label,
.messageTextarea label{
  display: block;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  margin: 0;
}
.contactFrom input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
.contactForm select{
  width: 100%;
  height: 55px;
  backdrop-filter: blur(25px) saturate(57%);
  -webkit-backdrop-filter: blur(25px) saturate(57%);
  background-color: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  font-size: 14px;
  letter-spacing: 1.4px;
  color: #fff;
  padding-left: 27px;
  margin-top: 10px;
}
.contactFrom .messageTextarea{
  margin: 23px 0 62px;
}
.contactFrom .messageTextarea textarea{
  width: 100%;
  height: 128px;
  backdrop-filter: blur(25px) saturate(57%);
  -webkit-backdrop-filter: blur(25px) saturate(57%);
  background-color: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  color: #ffff;
  padding: 20px 0 0 27px;
  margin-top: 20px;
}
.contactFrom input::placeholder,
.contactFrom input::-moz-placeholder,
.contactForm textarea::placeholder,
.contactForm textarea::-moz-placeholder{
  font-size: 14px;
  letter-spacing: 1.4px;
  padding-left: 27px;
  color: #fff;
}
.contactForm textarea::placeholder,
.contactForm textarea::-moz-placeholder{
  padding: 20px 0 0 27px;
  color: #fff;
}



