

/***** ====== 01-global.css ===== *****/

/* 
	font-family: "Rubik", sans-serif;
	font-family: "Space Grotesk", sans-serif;
 */

/*****====== 02-color.css ====== *****/

  /* Default Color File  */

:root {
    /*  primary color */
    --primary-color: #D9A95B;

    /* text-color 1 */
    --text-color-1: #666;

    /* black color */
    --black-color: #1A1A1A;
    --black-color-rgb: 26, 26, 26;

    /* white color */
    --white-color: #ffffff;
    --white-color-rgb: 255, 255, 255;

    /* Bg 1 */
    --bg-1: #F7F7F7;

    /* Bg 2 */
    --bg-2: #F9FEF9;

    /* Bg 3 */
    --bg-3:  #EBF2F6;
   
     
    /* Shadow 1 */
    --shadow-1: 2px 1px 28.7px -2px rgba(255, 255, 255, 0.15);

    /* Shadow 2 */
    --shadow-2: 2px 1px 28.7px -2px rgba(0, 0, 0, 0.15);

}


* {
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
	font-size: 100%;
	line-height: inherit;
}

.page-wrapper {
	position: relative;
	width: 100%;
	min-width: 320px;
	margin: 0px auto;
	overflow: hidden;
}
body {
	font-size: 16px;
	color: var(--text-color-2);
	line-height: 24px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	font-family: "Rubik", sans-serif;
}
::selection {
    background-color: var(--primary-color); 
    color: var(--white-color); 
}
.p_relative {
    position: relative !important;
}
a{
	display: inline-block;
	color: var(--white-color);
}
a,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-family: "Rubik", sans-serif;
}

a:hover {
  text-decoration: none;
  outline: none;
  color: var(--primary-color);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	position: relative;
	font-weight: normal;
	margin: 0px;
	font-family: "Rubik", sans-serif;
	color: var(--black-color);
}

h1, .h1 {
	font-size: 100px;
	font-weight: 400;
	font-family: "Space Grotesk", sans-serif;
}	

h2, .h2 {
	font-size: 90px;
	font-weight: 700;
	line-height:80px;
	font-family: "Space Grotesk", sans-serif;
}

h3, .h3 {
	font-size: 40px;
	font-weight: 500;
	line-height: 60px;
}

h4, .h4 {
	font-size: 24px;
	font-weight: 600;
	line-height: 40px;
}

h5, .h5 {
	font-size: 20px;
	font-weight: 500;
	line-height: 28px;
}

h6, .h6 {
	font-size: 17px;
	font-weight: 400;
	line-height: 24px;
}

p {
	font-size: 18px;
	line-height: 32px;
	color: var(--text-color-1);
	font-family: "Rubik", sans-serif;
}

textarea {
	overflow: hidden;
}
button {
	outline: none !important;
	cursor: pointer;
}
section {
	position: relative;
}
::-webkit-input-placeholder {
	color: inherit;
}
::-moz-input-placeholder {
	color: inherit;
}
::-ms-input-placeholder {
	color: inherit;
}
input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}
.row {
	margin-left: -15px;
	margin-right: -15px;
}
.row.no-gutters {
	margin: 0;
}
.row-15 {
	margin-left: -7.5px;
	margin-right: -7.5px;
}
.row-20 {
	margin-left: -10px;
	margin-right: -10px;
}

.row-15 {
	margin: 0 -15px;
}
.row>* {
	padding: 0 15px;
}
.row.no-gutters>* {
	padding: 0;
}
.row-15>* {
	padding: 0 7.5px;
}
.row-20>* {
	padding: 0 10px;
}
.nav-tabs .nav-link {
	border: none;
	background: transparent;
	margin: 0;
	padding: 0;
}
.nav-tabs {
	border: 0;
}

.container {
	position: static;
	max-width: 1440px;
	margin: 0 auto;
}

.custom-container {
	position: static;
	max-width: 1760px;
	margin: 0 auto;
}
ul, li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
figure {
	margin-bottom: 0;
}
img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}
.dropdown-toggle::after {
	display: none;
}
.fa {
	line-height: inherit;
}

/* =========================
Preloader start
=========================== */
.handle-preloader {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	-webkit-justify-content: center;
	position: fixed;
	background: var(--black-color);
	left: 0;
	top: 0;
	width: 100%;
	z-index: 12;
  }
  
  .preloader-close{
	position: fixed;
	z-index: 13;
	font-size: 26px;
	background: var(--primary-color);
	color: var(--black-color);
	width: 40px;
	height: 40px;
	line-height: 36px;
	text-align: center;
	border-radius: 50%;
	cursor: pointer;
	right: 30px;
	top: 30px;
  }

  .preloader-image {
    display: flex;
    align-items: start;
    justify-content: center;
    margin-bottom: -50px;
  }
  
  .handle-preloader .animation-preloader {
	position: absolute;
  }
  
  .handle-preloader .animation-preloader .spinner{
	animation: spinner 1s infinite linear;
	border: 5px solid var(--primary-color);
	border-top-color: rgba(255, 255, 255, 0.3); 
	border-radius: 50%;
	height: 150px;
	width: 150px;
	margin: 0 auto 45px auto;
  }
  .handle-preloader .animation-preloader .txt-loading {
	text-align: center;
	user-select: none;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:before{
	animation: letters-loading 4s infinite;
	content: attr(data-text-preloader);
	left: 0;
	opacity: 0;
	top:0;
	position: absolute;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: 15px;
    display: inline-block;
    position: relative;
    font-size: 74px;
    line-height: 75px;
    text-transform: uppercase;
  }
  .preloader .loaded .animation-preloader {
	opacity: 0;
	transition: 0.3s ease-out;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading{
	color: var(--primary-color);
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading:before{
	color: var(--primary-color);
  }
  
  /* Animation preloader */
  @keyframes spinner {
	to {
	  transform: rotateZ(360deg);
	}
  }
  @keyframes letters-loading {
	0%,
	75%,
	100% {
	  opacity: 0;
	  transform: rotateY(-90deg);
	}
  
	25%,
	50% {
	  opacity: 1;
	  transform: rotateY(0deg);
	}
  }
  

/* =====================
Preloader start
======================== */

/* =====================
    button starts
========================*/
.btn-1 {
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: .5s;
    color: var(--white-color);
    padding: 10px 25px;
    border-radius: 32px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 300;
  }
  .btn-1 span {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	color: var(--white-color);
	border-radius: 50%;
	transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
	transform: translate(-50%, -50%);
	background: var(--black-color);
	z-index: -1;
  }
  .btn-1:hover span {
	width: 225%;
	height: 562.5px;
	z-index: -1;
  }
  .btn-1:hover, .btn-1:active, .btn-1:focus {
	color: var(--white-color) !important;
	z-index: 1;
	position: relative;
  }
  .btn-1 i {
    margin-left: 7px;
    font-weight: 300;
    font-size: 13px;
  }
  
/* btn-2 */
.round-btn {
    position: relative;
    overflow: hidden;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    border: 1px solid var( --text-color-1);
    display: flex;
    align-items: center;
    z-index: 2;
    transition: .5s;
    padding: 10px 18px;
    background-color: transparent;
 }
.round-btn p {
    color: var(--white-color);
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    font-weight: 300;
    max-width: 80px;
 }
.round-btn span {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	color: var(--white-color);
	border-radius: 50%;
	transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
	transform: translate(-50%, -50%);
	background: var(--primary-color);
	z-index: -1;
  }
  .round-btn:hover span {
	width: 225%;
	height: 562.5px;
	z-index: -1;
  }
  .round-btn:hover {
	color: var(--white-color) !important;
	z-index: 1;
	position: relative;
  }
  .round-btn i {
    margin-bottom: -27px;
    margin-left: -4px;
    font-size: 17px;
    font-weight: 400;
  }

/* btn-3 */
.btn-3{
	position: absolute;
	bottom: -18px;
	right: -18px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 3px solid #CBCBCB;
	color: var(--white-color);
	background-color: transparent;
	transition: 0.5s;
	transition-delay: 0.2s;
}
.btn-3:hover{
	transform: rotate(45deg);
}
  /* =======================
	  button ends
  ==========================*/

/* =========================
	common title 
============================ */
.common-title{
	margin-bottom: 50px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.common-title h3{
	position: relative;
	font-size: 40px;
	font-weight: 500;
	line-height: 60px;
	display: flex;
	align-items: center;
	gap: 24px;
}
.common-title img{
	margin-top: 25px;
}
/* =========================
	common title 
============================ */

/*===========================================
	Scroll To Top style
============================================= */
.scroll-to-top{
    position: fixed;
    right: 0px;
    bottom: 100px;
    transform: rotate(90deg);
    z-index: 10;
}
.scroll-to-top .visible {
    visibility: visible!important;
    opacity: 1!important;
}  
.scroll-to-top .scroll-top-inner {
    opacity: 0;
    visibility: hidden;
}  
.scroll-to-top .scroll-top-inner{
    display: flex;;
    align-items: center;
    transition: all cubic-bezier(.4,0,.2,1) .4s;
}  
.scroll-to-top .scroll-bar {
    width: 50px;
    height: 2px;
	color: var(--primary-color);
    margin-right: 10px;
    position: relative;
}
.scroll-to-top .scroll-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #CBCBCB;
    opacity: .3;
}  
.scroll-to-top .scroll-bar .bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: currentColor;
}  
.scroll-to-top .scroll-bar-text{
    font-size: 14px;
    font-weight: 500;
	color: var(--primary-color);
    cursor: pointer;
    transition: all 500ms ease;
}  
.scroll-to-top .scroll-bar-text:hover{
    transform: scale(1.1);
}



/* responsive */
/* ===========================================
Scroll To Top style
==============================================*/

/* scroll bar */
::-webkit-scrollbar {
    width: 5px;
	height: 5px;
  }
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color) !important;
  }
  /* scroll bar */


/*****====== 01-header.css ====== *****/

/* Header Style */
.main-header {
	position: absolute;
	display: block;
	width: 100%;
	z-index: 10;
	top: 0px;
	left: 0px;
	clear: both;
}

/* =======================================
Header Lower
==========================================*/
.main-header .header-lower {
	position: relative;
}
.main-header .header-lower .logo-box .logo {
	position: relative;
	display: block;
}
.main-header .header-lower .left-column {
	position: relative;
}
.main-header .nav-outer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.navbar-right-info .mobile-nav-toggler {
	position: relative;
	width: 50px;
	height: 50px;
	line-height: 44px;
	text-align: center;
	color: rgb(255, 255, 255);
	font-size: 20px;
	margin-left: 30px;
	cursor: pointer;
	border-radius: 50%;
}

.header-lower {
    padding-top: 40px;
}
.main-menu .navbar-collapse {
	padding: 0px;
	display: block !important;
}
.main-menu .navigation {
	margin: 0px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.main-menu .navigation>li {
    position: relative;
    padding: 24px 0px;
    margin-right: 20px;
    padding-right: 20px;
    transition: all 300ms ease;
}
.main-menu .navigation>li:before {
    position: absolute;
    content: '';
    top: 50%;
    left: -13px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
	transition: 0.5s;
    opacity: 0;
}
.main-menu .navigation>li:hover:before {
	opacity: 1;
}
.main-menu .navigation>li.current:before{
	opacity: 1;
}
.main-menu .navigation>li:last-child {
	margin-right: 0px;
	padding-right: 0px !important;
}
.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-transform: uppercase;
    opacity: 1;
    font-size: 16px;
    line-height: 28px;
    font-family: "Rubik", sans-serif;
    color: var(--white-color);
    font-weight: 300;
}
.main-menu .navigation>li.current>a, .main-menu .navigation>li>a:hover {
    color: var(--primary-color);
}
.navigation .active{
	color: var(--primary-color) !important;
}
.main-menu .navigation>li>ul {
	position: absolute;
	left: 0px;
	top: 100%;
	width: max-content;
	min-width: 240px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
    background-size: cover;
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform: translateY(30px);
	transition: .5s;
	border-top: 3px solid var(--primary-color);
	border-left: 1px solid #3e3d3d;
	border-right: 1px solid #3e3d3d;
	border-bottom: 1px solid #3e3d3d;
	padding: 10px 20px;
}

.sticky-header .main-menu .navigation>li>ul {
    top: 100%;
}

.main-menu .navigation>li>ul.from-right {
	left: auto;
	right: 0px;
}
.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    padding: 3px 0;
    border-bottom: 1px solid #3e3d3d;
}
.main-menu .navigation>li>ul>li:last-child {
	border-bottom: none;
}
.main-menu .navigation>li>ul>li:before {
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	width: 0%;
	height: 100%;
	display: block;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}
.main-menu .navigation>li>ul>li>a {
	position: relative;
	display: block;
	padding: 8.5px 0px;
	line-height: 22px;
	text-align: left;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	text-transform: uppercase;
	color: var(--white-color);
	font-size: 16px;
	font-weight: 300;
}
.main-menu .navigation>li>ul>li>a.active {
	color: var(--primary-color);
}
.main-menu .navigation>li>ul>li>a.active:before {
	opacity: 1;
}
.main-menu .navigation>li>ul>li:last-child>a {
	border-bottom: 0px;
}
.main-menu .navigation>li>ul>li>a:hover {
	color: var(--primary-color);
}
.main-menu .navigation>li>ul>li>a.active{
	color: var(--secondary-color);
}
.main-menu .navigation>li>ul>li>ul {
	position: absolute;
	left: 103%;
	top: 0;
	width: 270px;
	z-index: 10;
	display: none;
	background-color: #fff;
	transition: .5s;
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
	border-top: 3px solid var(--secondary-color);
	padding: 20px 0;
}
.main-menu .navigation>li>ul>li>ul.from-right {
	left: auto;
	right: 0px;
}
.main-menu .navigation>li>ul>li>ul>li {
	position: relative;
	width: 100%;
	padding: 0 30px;
}
.main-menu .navigation>li>ul>li>ul>li:last-child {
	border-bottom: none;
}
.main-menu .navigation>li>ul>li>ul>li:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 0%;
	height: 100%;
	display: 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;
}
.main-menu .navigation>li>ul>li>ul>li:last-child {
	border-bottom: none;
}
.main-menu .navigation>li>ul>li>ul>li>a {
	position: relative;
	display: block;
	padding: 8.5px 0;
	line-height: 24px;
	font-weight: 500;
	font-size: 17px;
	color: #fff;
	text-align: left;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	font-size: 16px;
	color: #6e6c70;
	font-weight: 400;
	font-family: "Heebo";
}
.main-menu .navigation>li>ul>li>ul>li>a:before {
	position: absolute;
	content: '*';
	left: 0;
	top: 11px;
	transition: .5s;
	opacity: 0;
	font-size: 26px;
	line-height: 28px;
	color: var(--theme-color);
	font-weight: 600;
	font-family: "Inter";
}
.main-menu .navigation>li>ul>li>ul>li>a:hover:before {
	opacity: 1;
}
.main-menu .navigation>li>ul>li>ul>li:last-child>a {
	border-bottom: 0;
}
.main-menu .navigation>li>ul>li>ul>li>a:hover {
	color: var(--theme-color);
	padding-left: 20px;
}
.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
	font-family: 'Font Awesome 5 Pro';
	content: "\f105";
	position: absolute;
	right: 30px;
	top: 12px;
	display: block;
	line-height: 24px;
	font-size: 16px;
	font-weight: 400;
	z-index: 5;
}
.main-menu .navigation>li.dropdown:hover>ul {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}
.main-menu .navigation li>ul>li.dropdown:hover>ul {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}
.main-menu .navigation li.dropdown .dropdown-btn {
	position: absolute;
	right: 10px;
	top: 8px;
	width: 34px;
	height: 30px;
	border: 1px solid #ffffff;
	text-align: center;
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
	cursor: pointer;
	z-index: 5;
	display: none;
}

/* right-column */
.header-right-column {
    gap: 72px;
}
.header-right-btn-area {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-right-btn-area .offcanvas-btn a i {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 400;
}
/* ==============================
Header one
================================= */

/* ==============================
Header two
================================= */
.header-style-two .btn-1 {
    padding: 13px 38px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: -7px;
}
.header-style-two .btn-1 i{
	font-size: 12px;
}
.header-style-two .header-lower {
	position: relative;
    border-bottom: 1px solid #2F2F2F;
	padding-top: 0;
}
.header-style-two .main-menu .navigation>li:last-child {
    margin-right: 0px;
    padding-right: 32px !important;
}
.header-style-two .header-lower::after, .header-style-two .header-lower::before{
	content: '';
	width: 1px;
	height: 100%;
	background-color: #2F2F2F;
	position: absolute;
	top: 0;
} 
.header-style-two .header-lower::before{
	left: 20%;
}
.header-style-two .header-lower::after{
	right: 15%;
}
.header-style-two  .main-menu .navigation>li {
    padding: 45px 0px;
    padding-right: 18px;
}
/* ==============================
Header two
================================= */

/* ==============================
Sticky Header
================================= */
.sticky-header {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	left: 0px;
	top: 0px;
	width: 100%;
	padding: 0px 0px;
	z-index: 10;
	-webkit-transition: top 300ms ease;
	-o-transition: top 300ms ease;
	transition: top 300ms ease;
}
.sticky-header .main-menu .navigation {
	margin-left: 0;
}
.fixed-header .sticky-header {
	opacity: 1;
	visibility: visible;
	background-color: var(--black-color);
	box-shadow: var(--shadow-1);
}
.fixed-header .sticky-header .inner-container {
	margin-bottom: 0;
}

.main-header .sticky-header .header-lower .logo-box .logo {
	padding: 18.5px 0px;
}
.sticky-header .main-menu .navigation>li {
	padding: 17px 0px;
	padding-right: 25px;
}
.main-header .sticky-header .header-lower .inner-container {
	min-height: 70px;
}
.sticky-header .main-menu .navigation>li:before {
	bottom: 20px;
}
.sticky-header .right-column{
	gap: 25px;
}


/*****====== 02-mobile-menu.css ====== *****/

/* ===============================================================
			Mobile Menu
================================================================= */
.nav-outer .mobile-nav-toggler {
	position: relative;
	width: 36px;
	height: 45px;
	line-height: 39px;
	text-align: center;
	color: #222222;
	font-size: 20px;
	cursor: pointer;
	border-radius: 50%;
	float: right;
	margin: 13px 0;
	display: none;
	transition: .5s;
}

.mobile-menu {
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	padding-right: 30px;
	max-width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 10;
	pointer-events: auto;;
}
.mobile-menu .mCSB_scrollTools {
	right: -6px;
}
.mobile-menu .mCSB_inside>.mCSB_container {
	margin-right: 5px;
}
.mobile-menu .navbar-collapse {
	display: block !important;
}
.mobile-menu .nav-logo {
	position: relative;
	padding: 30px 25px;
	text-align: left;
	margin-bottom: 50px;
	margin-top: 25px;
}
.mobile-menu-visible {
	overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
	opacity: 1;
	visibility: visible;
}
.mobile-menu .menu-backdrop {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
	transition: all 900ms ease;
	-moz-transition: all 900ms ease;
	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
	background-color: rgba(0,0,0, 0.90);
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
	opacity: 0.70;
	visibility: visible;
	-webkit-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}
.mobile-menu .menu-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	background: var(--black-color);
	box-shadow: 2px 2px 5px 1px rgba(255, 255, 255, 0.05), -2px 0px 5px 1px rgba(255, 255, 255, 0.05);
	padding: 0px 0px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	border-radius: 0px;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}
.mobile-menu-visible .mobile-menu .menu-box {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}
.mobile-menu .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
	font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}
.mobile-menu .navigation {
	position: relative;
	display: block;
	width: 100%;
	float: none;
}
.mobile-menu .navigation li {
	position: relative;
	display: block;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.mobile-menu .navigation:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.mobile-menu .navigation li>ul>li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.mobile-menu .navigation li>a {
	position: relative;
	display: block;
	line-height: 24px;
	padding: 10px 25px;
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	text-transform: uppercase;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.mobile-menu .navigation li ul li>a {
	font-size: 15px;
	margin-left: 20px;
	text-transform: capitalize;
}
.mobile-menu .navigation li>a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.mobile-menu .navigation li.current>a:before {
	height: 100%;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
	position: absolute;
	right: 6px;
	top: 6px;
	width: 32px;
	height: 32px;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.10);
	cursor: pointer;
	border-radius: 2px;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn.open {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.mobile-menu .navigation li>.megamenu,
.mobile-menu .navigation li>ul, 
.mobile-menu .navigation li>ul>li>ul {
	display: none;
}
.mobile-menu .social-links {
	position: relative;
	text-align: center;
	padding: 30px 25px;
	margin-top: 50px;
}
.mobile-menu .social-links li {
	position: relative;
	display: inline-block;
	margin: 0px 10px 10px;
}
.mobile-menu .social-links li a {
	position: relative;
	line-height: 32px;
	font-size: 16px;
	color: #ffffff;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

/*****====== 02-color.css ====== *****/

/* banner-section */
.banner-section{
    width: 100%;
    height: 1295px;
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 5;
}
.banner-content-box{
    padding: 262px 0  0;
	position: relative;
}
.banner-content-box h1 {
    font-size: 100px;
    font-weight: 600;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 32px;
}
.banner-content-box-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.banner-video-content{
    position: relative;
}
.banner-video-image img{
    border-radius: 60px;
}

/* video btn */
.banner-video-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.play_btn {
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: var(--black-color);
    color: var(--white-color);
    position: relative;
    z-index: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.play_btn:hover{
    color: var(--primary-color);
}
.play_btn::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--black-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    animation: playAnimi 2s infinite;
    -webkit-animation: playAnimi 2s infinite;
}
.play_btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--black-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    animation: playAnimi 3s infinite;
    -webkit-animation: playAnimi 3s infinite;
}
@keyframes playAnimi {
    from {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(2);
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
    }
}
/* video btn */

/* animatedheadline (Text Animation) */
.ah-words-wrapper{
    width: auto;
}
.ah-headline.loading-bar .ah-words-wrapper b::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #222;
    -webkit-transition: width .3s -.1s;
    transition: width .3s -.1s;
}
/* animatedheadline (Text Animation) */

.ah-headline {
    font-size: 90px;
    font-weight: 600;
    line-height: 77px;
    color: var(--white-color);
    margin-bottom: -30px;
}
.ah-headline span{
    color: var(--primary-color);
}

.banner-image{
    margin-top: 70px;
}

/* client  */

.client {
    position: absolute;
    bottom: 33px;
    left: -3px;
    height: 70px;
    background-color: var(--primary-color);
    transform: rotate(358deg);
    z-index: 1;
}
.client-slid {
    position: static;
    height: 100%;
    width: 100%;
    margin: 0 auto;
}
.client-slid  .swiper-container {
    height: 100%;
}
.client-content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
}
.client-content-title h3 {
    color: var(--white-color);
    font-family: "Space Grotesk", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 58px;
    transition: 0.3s;
}
.client-content-title h3:hover{
    -webkit-text-stroke: 1px var(--white-color);
    color: transparent;
}

/* ----------------------------------------
banner two
------------------------------------------ */
.banner-two{
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    z-index: 5;
}
.banner-two-contact-info {
    position: absolute;
    top: 41%;
    left: -4%;
    display: flex;
    align-items: center;
    gap: 70px;
    transform: rotate(90deg);
}
.banner-two-media-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: absolute;
    right: 4%;
    top: 25%;
}

.animation-btn {
    position: absolute;
    bottom: 27px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.animation-btn-parent{
    position: relative;
    width: 34px;
    height: 76px;
    border-radius: 90px;
    border: 1px solid #A3A3A3;
    display: flex;
    justify-content: center;
    padding: 7px 0 0;
}
.animation-btn-parent:hover{
    border: 1px solid var(--primary-color);
}
.animation-btn-child{
    width: 13px;
    height: 19px;
    border-radius: 90px;
    border: 1px solid #A3A3A3;
}
.animation-btn-icon{
    position: absolute;
    left: 50%;
    bottom: 7px;
    transform: translateX(-50%);
    animation: down 0.5s linear infinite alternate;
}
@keyframes down{
    0%{
        bottom: 10px;
    }
    100%{
        bottom: 7px;
    }
}

.media-content ul li a{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #22241D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.media-content  ul li a:hover{
    background-color: var(--primary-color);
    color: var(--white-color);
}
.media-content ul li a .icon-twiter{
    font-size: 12px;
}
.media-content ul li a .fa-linkedin-in{
    font-size: 14px;
}
.banner-two-container{
    padding: 215px 0  32px;
    position: relative;
    z-index: 5;
}
.banner-left-content  h1 {
    font-size: 100px;
    font-weight: 600;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 32px;
}
.banner-two-content-box-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
    margin-bottom: 55px;
}
.banner-two-content-box-wrapper .banner-two-title h6{
    position: relative;
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 24px;
}
.banner-two-content-box-wrapper .banner-two-title h6 img{
    margin-right: 5px;
}
.banner-two-content-box-wrapper .banner-two-title h4{
    color: var(--white-color);
    font-size: 40px;
    font-weight: 500;
    line-height: 60px;
    max-width: 442px;
}
.banner-two-arrow {
    margin-left: 42px;
    margin-bottom: 20px;
}
.banner-two-image img {
    border-radius: 100px;
}
.banner-two-big-title h2 {
    font-size: 160px;
    font-weight: 700;
    line-height: 165px;
}
.banner-two-big-title .ah-headline span {
    color: var(--white-color);
}
.strock-letter{
    color: var(--primary-color) !important;
    -webkit-text-stroke: 2px var(--white-color);
}

.banner-two-right-container {
    margin-left: 66px;
}
.banner-two-right-shape {
    margin-bottom: 105px;
    margin-top: 40px;
}
.banner-two-right-content p{
    color: #A3A3A3;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.banner-two-right-content a{
    color: var(--primary-color);
    margin-top: 20px;
}
.banner-two-right-content a i{
    margin-left: 5px;
    transition: 0.3s;
}
.banner-two-right-content a:hover i{
    transform: rotate(45deg);
}
.customers{
    display: flex;
    align-items: center;
    gap: 16px;
}
.customers-image ul{
    display: flex;
    align-items: center;
}
.customers-image ul li{
    margin-left: -24px;
}
.customers-image ul li:first-child{
    margin-left: 0;
}
.customers-image ul li a img{
    border-radius: 50%;
}
.customers {
    margin-top: 170px;
}
.customers-content p{
    font-size: 17px;
    max-width: 159px;
    color: #A3A3A3;
}

/* ---------------------------------------
common-banner 
----------------------------------------- */
.common-banner{
    position: relative;
    width: 100%;
    height: auto;
}
.bg-layer{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.common-banner .banner-two-contact-info {
    top: 57%;
    left: 2%;
}
.common-banner  .banner-two-media-info {
    right: 4%;
    top: 42%;
}
.common-banner-content{
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.common-banner-content-inner{
    text-align: center;
    margin-bottom: -80px;
}
.common-banner-content h2 {
    color: var(--white-color);
    font-size: 60px;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: 7px;
}
.common-banner-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.common-banner-btn a{
    color: var(--white-color);
    font-size: 20px;
    font-weight: 400;
}
.common-banner-btn span {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 400;
}
.common-banner .dot-shape{
    position: absolute;
    top: 203px;
    left: 502px;
    animation: scale 3s linear infinite alternate;
}
@keyframes scale{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.1);
    }
}

/*****====== 04-footer.css ====== *****/
.main-footer {
    padding-top: 116px;
    position: relative;
    background: var(--black-color);
}
.footer-top{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 0 24px;
    border-bottom: 1px solid #2F2F2F;
}
.footer-media ul{
    display: flex;
    align-items: center;
    gap: 53px;
}
.footer-media ul li a{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-media ul li a i {
    font-size: 14px;
}
.footer-media ul li a .fa-instagram{
    font-size: 16px;
}
.footer-media ul li a .icon-youtube{
    font-size: 18px;
}

.footer-bottom {
    padding: 47px 0 65px;
}
.footer-bottom-left {
    margin-top: 20px;
}
.link-widget-box{
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between; 
}
.footer-widget h6{
    color: var(--white-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 25px;
}
ul.footer-widget-list li{
    display: flex;
    align-items: center;
}
ul.footer-widget-list li p:first-child{
    max-width: 169px;
    width: 100%;
}
ul.footer-widget-list li {
    margin-bottom: 22px;
}
ul.footer-widget-list a {
    color: #A3A3A3;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}
ul.footer-widget-list a:hover {
    color: var(--primary-color);
}
ul.footer-widget-list li p{
    line-height: 18px;
}
.footer-form {
    position: relative;
    margin-top: 18px;
}
.footer-form-input {
    width: 100%;
    background: transparent;
    color: var(--white-color);
    padding: 10px 0 10px 25px;
    border-bottom: 1px solid #2F2F2F;
}
.footer-form-input::placeholder{
    color: #A3A3A3 !important;
}
.footer-form-icon i{
    position: absolute;
    top: 10px;
    left: 0;
    color: #A3A3A3;
}
.footer-form-btn{
    position: absolute;
    right: 0;
    top: 10px;
    background-color: transparent;
    color: var(--white-color);
}

.footer-bottom-right {
    position: relative;
    padding: 0 0px 0 45px;
    margin-left: 40px;
}
.footer-bottom-right::before{
    content: '';
    width: 1px;
    height: 324px;
    background-color: #2F2F2F;
    position: absolute;
    left: 0;
    top: -48px;
    z-index: 1;
}
.footer-bottom-right-title{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.footer-bottom-right-title h2{
    color: var(--white-color);
    font-size: 90px;
    font-weight: 400;
    line-height: 80px;
}
.footer-bottom-right-title h2 span{
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
}
.footer-bottom-right-content{
    margin-top: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom-right-content a{
    padding: 8px 24px;
    border-radius: 32px;
    border: 1px solid rgba(247, 238, 222, 0.10);
    color: var(--white-color);
    color: var(--White-01, #FFF);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.footer-copyright{
    padding: 10px 16px;
    background-color: #22241D;
}
.footer-copyright p , .footer-time p {
    color:#A3A3A3;
    font-size: 15px;
}
.footer-copyright p a, .footer-time p span{
    font-size: 16px;
    color: var(--white-color);
    margin-right: 6px;
}
.footer-copyright p a{
    margin-left: 5px;
}
.footer-copyright p a:hover{
    color: var(--primary-color);
}

/* ----------------------------------------
footer two
------------------------------------------- */
.footer-top-time p span{
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    margin-right: 8px;
}
.footer-top-time p{
    color: #A3A3A3;
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
}
.footer-two-media ul{
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-widget p{
    color: #A3A3A3;
    margin-bottom: 24px;
}
.call-widget{
    margin-left: 70px;
}
.company-widget {
    margin-left: 30px;
}
.newsletter-widget {
    margin-left: 50px;
}
.call-widget .footer-mail {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 18px;
}
.newsletter-widget .footer-form-btn{
    font-size: 22px;
}
.newsletter-widget .footer-form-btn i{
    font-size: 17px;
}
.footer-mail-title {
    margin-top: 30px;
    margin-bottom: 20px !important;
}

/* checkbox */
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 10px;
}
.custom-checkbox .checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: transparent;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
}
.custom-checkbox:hover input ~ .checkmark {
    opacity: 1;
    border: 1px solid #E0E0E0;
}
.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--primary-color);
}
.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.custom-checkbox .checkmark:after {
    left: 4px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.custom-checkbox .label-text{
    color: #A3A3A3;
}

/*****====== 05-about.css ====== *****/
.about{
    padding: 170px 0 120px;
}
.about .common-title h3{
    max-width: 385px;
}

.about-right {
    position: relative;
}
.about-right-shape {
    position: absolute;
    right: 0;
    top: -100px;
}
.about-right-shape .shape{
    animation: scale 3s linear infinite alternate;
}
@keyframes scale{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.05);
    }
}
.about-article{
    max-width: 545px;
    margin-bottom: 10px;
}
.about-article p {
    font-size: 17px;
    line-height: 30px;
    margin-right: 30px;
    margin-left: -25px;
}
.about-right-content{
    position: relative;
    display: flex;
    justify-content: space-between;
}

/* round text */
.about-round-text {
    position: absolute;
    bottom: 0;
    left: -10px;
}
.round-box-content {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    text-align: center;
    background-color: #F7EEDE;
    display: flex;
    align-items: center;
    justify-content: center;
}
.round-box-content::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: -9px;
    width: 198px;
    height: 198px;
    border-radius: 50%;
    border: 1px solid #E9E9E9;
}
.round-box-content .curved-circle {
    font-size: 17px;
    letter-spacing: 1px;
    color: var(--black-color);
    font-weight: 400;
    text-align: center;
    transition: .7s;
    animation: round 20s linear infinite;
}
.round-box-icon{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.round-box-icon a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes round{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

/* -------------------------------------
about 2
--------------------------------------- */
.about-two{
    padding: 120px 0 120px;
}
.about-two-right-container{
    display: flex;
    align-items: flex-end;
    gap: 40px;
    height: 100%;
}
.about-two-right-icon {
    position: relative;
    text-align: center;
    max-width: 155px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-two-right-icon .icon {
    margin-left: 30px;
    margin-bottom: -130px;
}
.about-two-right-content {
    margin-left: 20px;
}
.about-two-round-text .round-box-content {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
}
.about-two-round-text .round-box-content::after {
    content: '';
    width: 78px;
    height: 78px;
    border: 1px solid #E9E9E9;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.about-two-round-text .round-box-icon img{
    width: 24px;
}
.about-two-round-text {
    position: absolute;
    left: 50px;
    bottom: 30px;
}
.about-two-right-image-box{
    position: relative;
    margin-top: 67px;
    height: 631px;
}
.about-two-right-image-two{
    position: absolute;
    right: 0;
    bottom: 0;
}
.about-two-dot-shape{
    position: absolute;
    left: 0;
    bottom: 0;
}
.about-two-star-shape{
    position: absolute;
    right: 0;
    top: 0;
    animation: scale 3s linear infinite alternate;
}
.about-two-right-round {
    position: absolute;
    top: 34px;
    left: 96px;
}
.about-two-right-round .round-box-content::after{
    display: none;
}
.about-two-right-round  .round-box-content {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    text-align: center;
    background-color: rgba(217, 169, 91, 0.40);
    border: 2px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.about-two-right-round  .round-box-content .curved-circle-3 {
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #000000;
    font-weight: 400;
    text-align: center;
    transition: .7s;
    animation: round 20s linear infinite;
}

.about-two-right-round .play_btn{
    background-color: transparent;
    color: var(--black-color);
    font-size: 32px;
}
.about-two-right-round .play_btn::after, .about-two-right-round .play_btn::before{
    display: none;
}

/*****====== 06-service.css ====== *****/
.service{
    overflow: hidden;
    padding: 120px 0 60px;
    background-color: #0C0900;
}
.light-one{
    position: absolute;
    top: 0;
    left: 0;
    animation: light 1s linear alternate infinite;
}
.light-two{
    position: absolute;
    right: 0;
    bottom: 0;
    animation: light 1s linear alternate infinite;
}
@keyframes light {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.5);
    }
}
.service-title-box{
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}
.service-title-left {
    max-width: 597px;
}
.service-title-left p{
    color:  #A3A3A3;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}
.service-title-left a{
    margin-top: 16px;
    color:  var(--white-color);
    font-size: 16px;
    font-weight: 300;
}
.service-title-left a i{
    font-size: 12px;
    margin-left: 5px;
    font-weight: 200;
}
.service-title-right{
    max-width: 504px;
}
.service-title-right h3{
    color: var(--white-color);
    font-size: 40px;
    font-weight: 500;
    line-height: 60px;
}

.service-list-container{
    position: relative;
    padding: 60px 0 60px;
    border-top: 1px solid #2F2F2F;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}
.service-list-image{
    position: absolute;
    right: 110px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.service-list-container:hover .service-list-image{
    opacity: 1;
    visibility: visible;
}
.service-list-left{
    display: flex;
    align-items: center;
    gap: 42px;
}
.service-list-number h3{
    font-size: 60px;
    -webkit-text-stroke: 1px #A3A3A3;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    color: transparent;
}
.service-list-content{
    max-width: 926px;
}
.service-list-content a{
    color: var(--white-color);
    font-size: 40px;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 16px;
}
.service-list-content a:hover{
    color: var(--primary-color);
}
.service-list-right a{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateX(-50%);
}
.service-list-right a img{
    transition: 0.5s;
}
.service-list-right a:hover img{
    transform: rotate(45deg);
}

/* -------------------------------------
service two
--------------------------------------- */
.service-two{
    padding: 120px 0 120px;
}
.service-two-left-container{
    position: relative;
    height: 100%;
}
.service-two-left-container .common-title{
    display: block;
}
.service-two-left-container .common-title h3{
    margin-bottom: 30px;
}
.service-two-right-container{
    height: 688px;
    overflow-y: auto;
}
.service-two-right-single {
    border-radius: 16px;
    border: 1px solid #E9E9E9;
    padding: 30px 0 32px 24px;
    margin: 0 53px 32px 35px;
    transition: 0.3s;
}
.service-two-right-single:hover{
    background-color: #E9E9E9;
}
.service-two-right-single:last-child{
    margin-bottom: 0;
}
.service-two-right-single a{
    color: var(--black-color);
    font-size: 40px;
    font-weight: 400;
    line-height: 60px;
    text-transform: capitalize;
}
.service-two-right-single a:hover{
    color: var(--primary-color);
}
.service-two-right-single a span{
    margin-right: 10px;
    -webkit-text-stroke: 1px #666;
    color: transparent;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
}
.service-two-right-single p{
    max-width: 482px;
    margin-top: 20px;
}

/* -------------------------------------
service-details
--------------------------------------- */
.service-details{
    padding: 120px 0 120px;
}
.service-details-top-image{
    margin-bottom: 32px;
}
.service-details-content{
    margin-bottom: 40px;
}
.service-details-content h3{
    margin-bottom: 15px;
}
.service-details-single{
    width: 100%;
    padding: 28px 24px;
    background-color: #F7F7F7;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}
.service-details-single-icon{
    max-width: 92px;
    width: 100%;
}
.service-details-single-content h6{
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 5px;
}
.service-details-single-content p{
    font-size: 17px;
    line-height: 28px;
}
.service-details-left-list-container{
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}
.service-details-left-list-image{
    position: relative;
    width: 410px;
    height: 270px;
}
.service-details-left-list-video{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.service-details-left-list h5{
    color: var(--black-color);
    font-size: 24px;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 25px;
}
.service-details-left-list ul li{
    margin-bottom: 20px;
    color: var(--text-color-1);
    font-size: 18px;
}
.service-details-left-list ul li img{
    margin-right: 10px;
}

.service-details-process{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-details-process-content{
    text-align: center;
    max-width: 270px;
    height: 294px;
    border-radius: 4px;
    background: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}
.process-number{
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 30px;
}
.process-number::before {
    content: '';
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
}
.service-details-process-content a{
    color: var(--black-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 10px;
}
.service-details-process-content p{
    font-size: 17px;
    line-height: 28px;
}
.sidebar-content{
    width: 100%;
    border-radius: 4px;
    background:  #F7F7F7;
    padding: 30px 32px;
    margin-bottom: 32px;
}
.sidebar-earch{
    position: relative;
}
.bwall-search {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #EDEDED;
    background: var(--white-color);
    padding: 17px 0 17px 30px;
    font-size: 18px;
}
.bwall-search::placeholder{
    color: var(--black-color);
    opacity: 0.6;
}
.search-btn button{
    border-radius: 0px 4px 4px 0px;
    background: var(--primary-color);
    padding: 17px 21px;
    position: absolute;
    right: 0;
    top: 0;
}
.search-btn i {
    color: var(--white-color);
    background-color: transparent;
    font-size: 19px;
    font-weight: 600;
}
.sidebar-content h5{
    position: relative;
    color: var(--black-color);
    font-size: 24px;
    font-weight: 400;
    line-height: 38px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E9E9E9;
}
.sidebar-content h5::before {
    content: '';
    width: 2px;
    height: 25px;
    background-color: var(--primary-color);
    position: absolute;
    left: -34px;
    top: 8px;
}
.sidebar-category-list ul li a{
    width: 100%;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 4px;
    border: 1px solid #EDEDED;  
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}
.sidebar-category-list ul li a:hover{
    color: var(--primary-color);
}
.sidebar-category-list ul li a i{
    font-size: 22px;
    font-weight: 300;
}
.sidebar-advertisment{
    position: relative;
}
.sidebar-advertisment .add-image{
    width: 100%;
    height: auto;
}
.sidebar-call-center{
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-color);
    text-align: center;
    padding: 24px 0;
    position: absolute;
    left: 32px;
    bottom: 32px;
}
.sidebar-call-center h6{
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 16px;
}
.sidebar-call-center h6 i{
    margin-right: 7px;
}
.sidebar-call-center .btn-1{
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 30px;
}

/*****====== 07-choose.css ====== *****/
.choose{
    padding: 120px 0 120px;
}
.choose .common-title h3{
    max-width: 500px;
}
.choose-left-container {
    display: flex;
    gap: 30px;
    margin-right: 80px;
}
.choose-counter{
    margin-top: 30px;
    padding: 35px 27px;
    background-color: #E9E9E9;
}
.odometer-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.odometer-box h5, .odometer-box .odometer-text {
    color: var(--black-color);
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
}
.choose-counter p {
    color: var(--black-color);
    font-size: 18px;
}
.choose-right-container {
    margin-left: 30px;
}
.choose-right-round-btn .round-btn{
    width: 130px;
    height: 130px;
    justify-content: center;
    border: 1px solid #A3A3A3;
}
.choose-right-round-btn .round-btn p{
    color: var(--black-color);
    font-weight: 400;
    transition: 0.5s;
}
.choose-right-round-btn .round-btn:hover p, .choose-right-round-btn .round-btn:hover i{
    color: var(--white-color) !important;
}
.choose-right-round-btn .round-btn i {
    color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
    margin-left: -24px;
    transition: 0.5s;
}
.choose-right-btn-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.choose-right-content{
    margin-bottom: 40px;
}
.choose-right-content h5 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

/* progress */
.progress{
    position: relative;
    width: 100%;
    height: 4px;
    background-color: #eeeeee;
    margin-bottom: 30px;
    overflow: visible;
  }
  .progress .progress-bar{
    position: relative;
    width: 0%;
    height: 100%;
    background: var(--black-color);
    border-radius: 10px;
    position: relative;
    transition: all 5s;
    overflow: visible;
  }
  .progress span{
    display: inline-block;
    position: absolute;
    top: -40px;
    padding: 5px;
    right: 0;
    z-index: 2;
    font-size: 16px;
    color: var(--black-color);
  }
  .skills-section h6{
    color: var(--black-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 8px;
  }

/*****====== 08-portfolio.css ====== *****/

.portfolio{
    padding: 120px 0 120px;
    background-color: var(--black-color);
}
.common-title-container{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #2F2F2F;
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.portfolio .common-title-container{
    padding-bottom: 50px;
}
.portfolio .common-title{
    margin-bottom: 0;
}
.portfolio .common-title h3{
    max-width: 374px;
    color: var(--white-color);
}
.portfolio-round-btn .round-btn{
    justify-content: center;
    width: 130px;
    height: 130px;
}
.portfolio-round-btn .round-btn i {
    font-size: 14px;
    margin-left: -26px;
    margin-bottom: -32px;
}
.portfolio-carousol{
    margin-left: 220px;
    margin-right: -220px;
}
.portfolio-single-image{
    position: relative;
}
.portfolio-single-image::after{
    content: '';
    width: 100%;
    height: 0;
    background-color: rgba(var(--black-color-rgb),0.5);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.5s;
}
.portfolio-single:hover .portfolio-single-image::after{
    height: 100%;
}
.portfolio-single-caption{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.portfolio-single-caption h6{
    position: relative;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 32px;
    padding-left: 40px;
    margin-bottom: 16px;
}
.portfolio-single-caption h6::before{
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 16px;
}
.portfolio-single-caption a{
    color: var(--white-color);
    font-size: 24px;
    font-weight: 400;
    line-height: 38px;
}
.portfolio-single-caption a:hover{
    text-decoration: underline;
    color: var(--primary-color);
}
.portfolio-single-caption-icon a i {
    font-size: 32px;
    font-weight: 200;
}
.portfolio-single:hover .portfolio-single-caption-icon a {
    transform: rotate(45deg);
    color: var(--primary-color);
}
.portfolio-carousol-container .swiper-slide-next .portfolio-single-caption-icon a {
    transform: rotate(45deg);
    color: var(--primary-color);
}
.portfolio-carousol-container .swiper-slide-next .portfolio-single-caption a{
    color: var(--primary-color);
    text-decoration: underline;
}
.portfolio-carousol-container .swiper-slide-next .portfolio-single-image::after{
    height: 100%;
}

/* --------------------------------------
project page + project-details
---------------------------------------- */
.project-page{
    padding: 120px 0 40px;
}
.project-page .portfolio-single{
    margin-bottom: 80px;
}
.project-page .portfolio-single-caption a {
    color: var(--black-color);
}
.project-page .portfolio-single-caption a:hover{
    color: var(--primary-color);
}

/* project-details */
.project-details{
    padding: 120px 0 80px;
}
.project-details-top-container{
    position: relative;
}
.project-top-info {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    margin-top: -90px;
    margin-bottom: 60px;
    background-color: var(--white-color);
    padding: 30px 60px;
    border-radius: 4px;
    box-shadow: var(--shadow-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}
.project-top-info-single p{
    margin-bottom: 10px;
}
.project-top-info-border{
    width: 1px;
    height: 130px;
    background-color: #EDEDED;
}
.project-top-info-single .media-content ul{
    display: flex;
    align-self: center;
    gap: 16px;
}
.project-top-info-single .media-content ul li a {
    background-color: #E9E9E9;
    color: var(--black-color);
    margin-bottom: 0;
}
.project-top-info-single .media-content ul li a:hover{
    background-color: var(--primary-color);
    color: var(--white-color);
}
.project-details-counter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0 50px;
}
.project-details-list{
    margin-top: 30px;
}
.project-details-list ul li{
    font-size: 18px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.project-details-list ul li:last-child{
    margin-bottom: 0;
}
.project-details-list ul li i{
    color: #A3A3A3;
    font-size: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #EDEDED;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-details-counter-single-icon{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.5s;
}
.project-details-counter-single-icon:hover{
    background-color: var(--primary-color);
}
.project-details-counter-single .odometer-box h5, .project-details-counter-single .odometer-box .odometer-text {
    color: var(--black-color);
    font-size: 42px;
    font-weight: 500;
    line-height: 50px;
}
.video-counter-single .odometer-box .odometer-text {
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
}
.project-details-counter-single-icon i {
    font-size: 82px;
    font-weight: 400;
    color: var(--text-color-1);
    transition: 0.5s;
}
.project-details-counter-single-icon:hover i{
    color: var(--white-color);
    transform: scale(1.1);
}

/*****====== 09-testimonial.css ====== *****/

.testimonial{
    padding: 120px 0 120px;
}
.testimonial-left-container {
    position: absolute;
    left: 0;
}
.testimonial-left-container-inner{
    position: relative;
}
.testimonial-round-text {
    position: absolute;
    right: 25px;
    top: -6px;
}
.testimonial-round-text .round-box-content {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    background-color: #F7EEDE;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-round-text .round-box-content::after {
    bottom: -7px;
    left: -7px;
    width: 135px;
    height: 135px;
}
.testimonial-round-text  .curved-circle-2 {
    font-size: 12px;
    color: var(--black-color);
    font-weight: 400;
    text-align: center;
    transition: .7s;
    animation: round 20s linear infinite;
}
.testimonial-round-text .round-box-icon img{
    animation: roundTwo 10s linear infinite;
}
@keyframes roundTwo{
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(-360deg);
    }
}
.testimonial .common-title {
    display: block;
    margin-bottom: 64px;
}
.testimonial .common-title h3{
    max-width: 366px;
    display: block;
    margin-bottom: 32px;
}
.testimonial .common-title h3 span{
    color: var(--primary-color);
}
.testimonial-single {
    background-size: contain;
    position: relative;
    padding: 32px 120px 60px 124px;
}
.testimonial-single-icon{
    position: relative;
    margin-bottom: 32px;
}
.testimonial-single-icon::before {
    content: '';
    width: 65px;
    height: 2px;
    background-color: var(--black-color);
    position: absolute;
    left: -80px;
    top: 30px;
}
.testimonial-single-info{
    margin-top: 40px;
}
.testimonial-single-info h5{
    color: var(--black-color);
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
}
.testimonial-single-info h6{
    color: var(--black-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.testimonial-single-image{
    position: absolute;
    left: 15px;
    bottom: 45px;
}
.testimonial-single-shape{
    position: absolute;
    right: 40px;
    bottom: 40px;
}

.testimonial .swiper-navigetions {
    background-image: none;
    top: 165px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.testimonial .swiper-button-prev{
    left: 81.5%;
}
.testimonial .swiper-button-next{
    left: 85%;
}
.testimonial .swiper-button-prev::after,
.testimonial .swiper-button-next::after{
    content:none;
}
.testimonial .swiper-button-prev,
.testimonial .swiper-button-next{
    z-index:2;
}
.testimonial .swiper-navigetions:hover{
    background-color: var(--black-color);
    color: var(--white-color);
}
.testimonial .swiper-button-next, .testimonial .swiper-button-prev {
    font-size: 20px;
}

/* --------------------------------------
testimonial-2
---------------------------------------- */
.testimonial-2{
    padding: 120px 0 120px;
    background-color: var(--black-color);
}
.testimonial-2 .common-title-container {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    margin-bottom: 0px;
    padding-bottom: 34px;
}
.testimonial-2 .common-title h3{
    display: block;
    color: var(--white-color);
    max-width: 376px;
}
.testimonial-2 .common-title h3 span{
    color: var(--primary-color);
}
.testimonial-2 .testimonial-single-icon::before {
    display: none;
}

.testimonial-2-form {
    margin-right: 80px;
}
.testimonial-2-form .form-group{
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.testimonial-2-form .cmn-input{
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0;
    /*margin-bottom: 30px;*/
}
.testimonial-2-form .form-group .cmn-input{
    max-width: 300px;
    width: 100%;
}
.testimonial-2-form .cmn-input::placeholder, .testimonial-2-form .cmn-input{
    color: #A3A3A3;
    font-size: 17px;
}
.testimonial-2-form textarea{
    width: 100%;
    height: 120px;
}
.testimonial-2-form .btn-1{
    font-size: 20px;
    font-weight: 400;
    padding: 15px 28px;
}

.testimonial-2-single-info{
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 70px;
}
.testimonial-2-single-info .testimonial-single-info {
    margin-top: 0;
}
.testimonial-2-single-info .testimonial-single-info h5 {
    color: var(--white-color);
}
.testimonial-2-single-info .testimonial-single-info h6 {
    color: var(--white-color);
}
.testimonial-2-single-text p{
    color: #A3A3A3;
    max-width: 604px;
}
.testimonial-2 .swiper-navigetions {
    background-image: none;
    top: 80%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #F7F7F7;
    border: 1px solid #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.testimonial-2 .swiper-button-prev::after,
.testimonial-2 .swiper-button-next::after {
    content:none;
}
.testimonial-2 .swiper-button-prev,
.testimonial-2 .swiper-button-next{
    z-index:2;
}
.testimonial-2 .swiper-button-prev{
    left: 82%;
}
.testimonial-2 .swiper-button-next{
    left: 85%;
}
.testimonial-2 .swiper-navigetions:hover{
    background-color: var(--black-color);
    color: var(--white-color);
}

/* --------------------------------------
about testimonial
---------------------------------------- */
.about-testimonial{
    padding: 120px 0 150px;
}
.about-testimonial .swiper-button-next {
    left: 41%;
}
.about-testimonial .swiper-button-prev {
    left: 38%;
}
.about-testimonial .common-title-container{
    margin-right: 50px;
}
.about-testimonial-image {
    position: absolute;
    right: 0;
}


/*****====== 10-video-containers.css ====== *****/

.video-container-top{
    background-color: #E8CB9D;
    padding: 120px 0 190px;
}
.video-container-top .common-title h3{
    max-width: 423px;
}
.video-container-top-text p{
    color: var(--black-color);
}
.video-container-top-shape{
    margin-top: 20px;
}
.video-container-top-text{
    margin-left: 20px;
}

.video-container-bottom{
    background-color: var(--black-color);
    padding-bottom: 120px;
}
.video-container-bottom-wrapper {
    margin-top: -174px;
}
.video-counter-content {
    background-color: #22241D;
    padding: 25px 40px 15px;
    margin-right: 40px;
}
.video-counter-single {
    text-align: center;
    padding: 15px 0 25px;
    border-bottom: 1px solid #2F2F2F;
}
.video-counter-single:last-child{
    border-bottom: none;
}
.video-counter-single .odometer{
    color: var(--primary-color);
}
.video-counter-single .odometer-text{
    color: var(--primary-color);
}
.video-counter-single p{
    color: #F7EEDE;
    margin-top: 8px;
}
.video-bottom-right-container{
    position: relative;
}
.video-bottom-right-btn {
    position: absolute;
    right: 40px;
    top: 25px;
}
.video-bottom-right-btn .play_btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--primary-color);
    color: var(--white-color);
}
.video-bottom-right-btn .play_btn::before, .video-bottom-right-btn .play_btn::after{
    background: var(--primary-color);
}

/*****====== 11-blog.css ====== *****/ 

.bwall-blog{
    padding: 120px 0 120px;
}
.bwall-blog .common-title-container{
    align-items: center;
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 40px;
    margin-bottom: 60px;
}
.bwall-blog .common-title{
    margin-bottom: 0;
}
.bwall-blog .common-title h3{
    max-width: 285px;
}
.common-title-container-text{
    max-width: 683px;
}
.blog-round-btn .round-btn{
    border: 1px solid #EDEDED;
    justify-content: center;
    width: 140px;
    height: 140px;
}
.blog-round-btn .round-btn p {
    color: var(--black-color);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    transition: 0.5s;
}
.blog-round-btn  .round-btn:hover p, .blog-round-btn  .round-btn:hover i{
    color: var(--white-color) !important;
}
.blog-round-btn .round-btn i {
    color: var(--black-color);
    font-size: 13px;
    margin-bottom: -30px;
    margin-left: 2px;
    font-weight: 500;
    transition: 0.5s;
}
.bwall-blog .blog-single {
    margin-bottom: 65px;
}
.blog-single-content{
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 20px;
    padding-right: 30px;
}
.blog-single-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.blog-single-info h6{
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    background-color: #F7F7F7;
    padding: 7px 20px;
    border-radius: 24px;
}
.blog-single-title a{
    color: var(--black-color);
    font-size: 24px;
    font-weight: 400;
    line-height: 38px;
    text-decoration: underline;
}
.blog-single-title a:hover{
    color: var(--primary-color);
    text-decoration: underline;
}
.blog-single-image {
    position: relative;
    margin-top: 43px;
    margin-right: 30px;
    overflow: hidden;
}
.blog-single-image a{
    width: 100%;
}
.blog-single-image a img{
    transition: 0.5s;
    width: 100%;
}
.blog-single:hover .blog-single-image img{
    transform: scale(1.1);
}
.blog-single-content-three {
    padding-left: 30px;
    padding-right: 0;
}
.blog-single-image-three {
    margin-right: 0;
    margin-left: 30px;
}
.blog-single-content-two {
    padding-right: 22px;
    padding-left: 22px;
}
.blog-single-image-two {
    margin-right: 22px;
    margin-left: 22px;
}

/* --------------------------------------
blog-2
---------------------------------------- */
.blog-2{
    padding: 120px 0 120px;
}
.blog-2 .common-title-container{
    border-bottom: none;
}
.blog-2 .common-title-container .common-title{
    margin-bottom: 0;
    max-width: 285px;
}
.blog-list ul{
    position: relative;
}
.blog-list-container {
    position: initial;
    padding: 60px 0 60px;
    border-top: 1px solid #EDEDED;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}
.blog-list-container:last-child{
    padding-bottom: 0;
}
.blog-list-link a{
    color: var(--black-color);
    font-size: 24px;
    font-weight: 400;
    line-height: 38px;
    max-width: 420px;
}
.blog-list-right a{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #E9E9E9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A3A3A3;
    font-size: 24px;
}
.blog-list-right a:hover{
    transform: rotate(45deg);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.blog-list-right a i{
    font-weight: 300;
}
.blog-list-image {
    position: absolute;
    left: 180px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.blog-list-container:hover .blog-list-image {
    opacity: 1;
    visibility: visible;
}
.blog-list-image-active{
    opacity: 1;
    visibility: visible;
}
.blog-list-info h6{
    font-size: 18px;
    margin-bottom: 6px;
}

.blog-list-link a {
    display: inline-block;
    transition: color 0.5s;
}
.blog-list-link a:hover {
    text-decoration: underline;
}
/* --------------------------------------
blog-2
---------------------------------------- */

/* --------------------------------------
blog-page + blog-details
---------------------------------------- */
.blog-page {
    padding: 120px 0 120px;
}
.blog-details-right-container .sidebar-content:last-child {
    margin-bottom: 0px;
}
.video-formet-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-formet-btn .play_btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--primary-color);
    color: var(--white-color);
}
.video-formet-btn .play_btn::before, .video-formet-btn .play_btn::after {
    background: var(--primary-color);
}
.blog-single-image .swiper-navigetions {
    background-image: none;
    top: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #F7F7F7;
    border: 1px solid #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.blog-single-image .swiper-navigetions:hover {
    background-color: var(--black-color);
    color: var(--white-color);
}
.blog-single-image.image {
    margin-top: 0;
}


/* blog details */
.blog-details{
    padding: 120px 0 100px;
}
.blog-details-top-image .image{
    position: relative;
    width: 100%;
    height: 526px;
    border-radius: 5px;
    overflow: hidden;
}
.blog-details-top-image .image img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.blog-details-image-info{
    margin: 40px 0 30px;
}
.blog-details-image-info ul{
    display: flex;
    align-items: center;
    gap: 70px;
}
.blog-details-image-info ul li{
    color:  #666;
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
}
.blog-details-image-info ul li i{
    color: var(--primary-color);
    font-size: 14px;
    margin-right: 5px;
}
.quote-container {
    width: 100%;
    border-radius: 4px;
    background:  #F7F7F7;
    border-left: 8px solid #f0a500;
    padding: 37px 32px 20px 31px;
    margin: 20px 0;
}
.quote-container blockquote {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 32px;
    color: var(--black-color);
}
.quote-container blockquote span {
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
    text-align: right;
}
.quote-container blockquote span::before {
    content: " ";
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    right: 125px;
    top: 16px;
}
.blog-details-image-container {
    margin: 60px 0 50px;
}
.blog-details-image-wrapper{
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
}
.blog-details-image-overlay {
    width: 100%;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--black-color-rgb),0.8);
    position: absolute;
    border-radius: 5px;
    left: 0;
    top: 0;
    transition: 0.3s;
}
.blog-details-image-wrapper:hover .blog-details-image-overlay{
    height: 100%;
}
.blog-details-image-video{
    position: relative;
}
.blog-details-image-video .play_btn {
    color: var(--black-color);
    background: var(--white-color);
    z-index: 12;
    opacity: 0;
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 24px;
    visibility: hidden;
}
.blog-details-image-video .play_btn::before {
    background: var(--white-color);
}
.blog-details-image-video .play_btn::after {
    background: var(--white-color);
}
.blog-details-image-wrapper:hover .blog-details-image-video .play_btn{
    visibility: visible;
    opacity: 1;
}
.blog-details-left-container .service-details-left-list {
    margin-top: 30px;
    margin-bottom: 50px;
}
.blog-details-left-tag {
    margin-top: 70px;
    margin-bottom: 42px;
    padding: 0 0 24px;
    border-bottom: 2px solid #EDEDED;
    display: flex;
    align-items: center;
    gap: 20px;
}
.blog-details-left-tag .tag {
    display: flex;
    align-items: center;
    gap: 14px;
}
.blog-details-left-tag .tag a {
    color: var(--black-color);
    font-size: 16px;
    background-color: #F7F7F7;
    border-radius: 4px;
    padding: 7px 22px;
}
.blog-details-left-tag .tag a:hover{
    background-color: var(--primary-color);
    color: var(--white-color);
}
.blog-details-left-tag .tag h6 {
    font-size: 24px;
}

.blog-details-author{
    width: 100%;
    border-radius: 4px;
    background: #F7F7F7;
    padding: 32px 29px 32px 32px;
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 40px;
}
.blog-details-author-image{
    max-width: 140px;
    width: 100%;
    height: 140px;
    border-radius: 50%;
}
.blog-details-author-deatils h6{
    color: var(--black-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 10px;
}

.daily-reviews-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.comment-wrapper  {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.daily-reviews-image{
    max-width: 80px;
    width: 100%;
    height: 80px;
}
.daily-reviews-image img{
    width: 100%;
    height: 100%;
}
.daily-reviews-content {
    max-width: 581px;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 2px solid #EAEAEA;
}
.daily-reviews-content-info{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.daily-reviews-content h6 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}
.daily-reviews-content-info .reply a {
    color: var(--white-color);
    font-size: 14px;
    background-color: var(--primary-color);
    border-radius: 4px;
    font-style: italic;
    padding: 4px 24px;
}
.daily-reviews-content p {
    font-size: 16px;
    margin: 10px 0 10px;
}
.daily-reviews ul li ul li .comment-wrapper{
    margin-left: 110px;
}
.daily-reviews-container-bottom .daily-reviews-content {
    max-width: 484px;
}
.leave-comments {
    margin-top: 50px;
    padding: 40px 40px 40px;
    background-color: #F7F7F7;
    border-radius: 4px;
}
.leave-comments h5{
    margin-bottom: 10px;
}
.leave-comments-form {
    margin-top: 20px;
}
.leave-comments-input {
    position: relative;
    margin-bottom: 24px;
}
.leave-comments-input .cmn-input {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #EAEAEA;
    background: var(--white-color);
    padding: 15px 20px;
    color: var(--black-color);
}
.leave-comments-input .cmn-input::placeholder{
    font-size: 18px;
    color: var(--text-color-1);
}
.leave-comments-form .textarea-box{
    position: relative;
}
.leave-comments-form textarea {
    width: 100%;
    height: 173px;
    border-radius: 4px;
    border: 1px solid #EAEAEA;
    background: var(--white-color);
    padding: 15px 15px;
    font-size: 18px;
    color: var(--text-color-1);
}
.leave-comments-form .textarea-box i{
    position: absolute;
    top: 19px;
    right: 19px;
}
.leave-comments-form .checkbox-input {
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.leave-comments-form .form-check-input {
    width: 17px;
    height: 17px;
    margin-top: 0;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.25);
}
.leave-comments-form .checkbox-input label {
    display: inline-block;
    line-height: normal;
    margin-top: -4px;
    color:  #666;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}
.leave-comments-form .btn-1 {
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 300;
}

/* blog details right */
.recent-post-list{
    width: 100%;
    background-color: var(--white-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}
.recent-post-info a{
    color: var(--black-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.recent-post-info p{
    font-size: 17px;
    line-height: 28px;
}
.recent-post-info p i{
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 14px;
}
.tags a {
    padding: 9px 20px;
    border-radius: 4px;
    border: 1px solid #EDEDED;
    font-size: 16px;
    background: var(--white-color);
    color: var(--black-color);
    margin-right: 6px;
    margin-top: 24px;
}
/* --------------------------------------
blog-page + blog-details
---------------------------------------- */

/* paigination */
.paigination ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.paigination ul li a{
    border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	color: var(--black-color);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 5px;
	border: 1px solid #D9D9D9;
}
.paigination ul li a:hover{
	background-color: var(--primary-color);
	color: var(--white-color);
}
.paigination ul li a i{
	font-weight: 700;
	font-size: 14px;
}
.paigination .dot p {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    color: #E0E0E0;
	margin-top: -12px;
}

/*****====== 11-team.css ====== *****/
.team{
    padding: 120px 0 90px;
}
.team .common-title-container {
    align-items: center;
    padding-bottom: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid #EDEDED;
}
.team .common-title {
    margin-bottom: 0px;
}
.team-round-btn .round-btn{
    color: var(--black-color);
}
.team-left-image{
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 23px;
}
.team-left-image:last-child{
    margin-bottom: 0
}
.team-member{
    position: relative;
    width: 319px;
    height: 329px;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s;
    border-bottom: 10px solid transparent;
    margin-bottom: 30px;
}
.team-member .member-image{
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
.team-member .member-image img{
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
.member-image-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.4);
    bottom: 0;
    left: 0;
    transition: 0.3s;
}
.team-member.active{
    border-bottom: 10px solid var(--primary-color);
}
.team-member.active .member-image-overlay{
    height: 0;
}

.team-right-container {
    margin-left: 40px;
}
.team-member-details{
    display: flex;
    justify-content: space-between;
    padding-bottom: 13px;
    padding-top: 69px;
    border-bottom: 1px solid #EDEDED;
}
.team-member-details:first-child{
    padding-top: 0;
}
.team-member-info h6{
    color: var(--text-color-1);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 12px;
}
.team-member-info h3{
    -webkit-text-stroke: 1px #A3A3A3;
    color: var(--white-color);
    font-size: 40px;
    font-weight: 500;
    line-height: 60px;
    transition: 0.3s;
}
.team-member-media{
    display: flex;
    align-items: center;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}
.team-member-media ul{
    display: flex;
    gap: 16px;
}
.team-member-media ul li a{
    background-color: #E9E9E9;
    color: var(--black-color);
}
.team-member-details.active .team-member-info h3{
    -webkit-text-stroke: 1px var(--primary-color);
    color: var(--primary-color);
}
.team-member-details.active .team-member-media{
    opacity: 1;
    visibility:visible;
}

/*****====== 13-faq.css ====== *****/
.faq{
    padding: 120px 0 30px;
    background-color: var(--black-color);
}
.faq-left-container {
    margin-right: 60px;
    height: 100%;
    display: flex;
    align-items: center;
}
.faq .common-title h3{
    color: var(--white-color);
}

/* accordion */
.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    font-size: 18px;
    color: var(--white-color);
    background-color: transparent;
    border: none;
    border-bottom: none;
}
.faq-page-container .accordion-button span {
    display: inline-block;
    color: #000;
    font-weight: 500;
}
.accordion-button i{
    color: var(--white-color);
}
.accordion-button:not(.collapsed) {
    color: var(--white-color);
    background-color: transparent;
}
.accordion-button.collapsed {
    border-bottom: 1px solid rgba(var(--white-color-rgb),0.15);
}
.accordion-button:focus {
    z-index: 3;
    border-color: 1px solid transparent;
    outline: 0;
    box-shadow: none;
}
.accordion-button:not(.collapsed) i {
    background-image: none;
    transform: rotate(90deg);
    color: var(--primary-color);
}
.accordion-button::after {
    display: none;
}
.accordion-body {
    border-bottom: 1px solid rgba(var(--white-color-rgb),0.15);
    padding: 0 0 20px 0;
}
.accordion-body p{
    color: #A3A3A3;
    font-size: 17px;
    padding-bottom: 30px;
}
.accordion{
    border-top: 1px solid rgba(var(--black-color-rgb),0.15);
}
/* accordion */

.faq-right-container{
    position: relative;
}
.faq-right-sun-icon{
    position: absolute;
    left: 0;
    top: 0;
    animation: scale 1s linear infinite alternate;
}
@keyframes scale{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.2);
    }
}
.faq-transparent {
    position: relative;
    max-width: 430px;
    height: 580px;
    border-radius: 16px;
    background-color: #22241D;
    margin-left: 90px;
}
.border-box {
   padding-top: 111px;
   margin-left: 47px;
}
.border-box img{
    animation: rotate 5s linear infinite;
}
@keyframes rotate{
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}
.border-box-2{
    position: absolute;
    top: 76px;
    right: 73px;
}
.faq-right-icon{
    position: absolute;
    top: 44px;
    right: 43px;
}
.faq-image-1{
    position: absolute;
    left: 45px;
    top: 40px;
    z-index: 1;
}
.faq-image-2{
    position: absolute;
    right: 0;
    bottom: 40px;
    z-index: 1;
}
.faq-client-box{
    max-width: 275px;
    height: 70px;
    padding: 10px 12px;
    border-radius: 8px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    left: 50px;
    bottom: 90px ;
    z-index: 1;
}
.faq-client-box-icon{
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    color: var(--black-color);
    font-size: 28px;
}
.faq-client-box p{
    color: var(--black-color);
}

/* ----------------------------------------
faq-page
------------------------------------------- */
.faq-page{
    padding: 120px 0 120px;
}
.faq-page-image {
    margin-right: -45px;
}
.faq-page-image img{
    width: 100%;
    height: 544px;
}
.faq-page-container {
    margin-left: 50px;
}
.faq-page-container .accordion-collapse {
    border: none;
}
.faq-page-container .accordion-button:not(.collapsed) {
    color: var(--black-color);
    background-color: transparent;
    line-height: 30px;
    margin-bottom: 10px;
    padding-top: 20px;
} 
.faq-page-container .accordion-button {
    color: var(--black-color);
}
.faq-page-container .accordion-button i {
    color: var(--black-color);
}
.faq-page-container .accordion-button.collapsed {
    border-bottom: 1px solid #EDEDED;
    line-height: 30px;
    padding: 19px 0;
}
.faq-page-container .accordion-body {
    border-bottom: 1px solid #EDEDED;
    padding: 0 0 20px 0;
}
.faq-page-container .accordion-body p {
    padding-bottom: 15px;
}

/*****====== 14-contact.css ====== *****/
.contact-page{
    padding: 120px 0 120px;
}
.contact-page-image{
    height: 100%;
}
.contact-page-image img{
    height: 100%;
}
.contact-page-container {
    padding: 36px 40px 40px;
    border-radius: 10px;
    background: #F7F7F7;
}
.contact-page-container h5 {
    margin-bottom: 41px;
}
.contact-input-fild{
    position: relative;
    margin-bottom: 20px;
}
.contact-page-form .contact-input {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #EAEAEA;
    background: var(--white-color);
    padding: 17px 20px;
    color: var(--black-color);
}
.contact-input-fild .contact-input::placeholder{
    color: #A3A3A3;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.contact-page-form textarea{
    height: 160px ;
    color: #A3A3A3 !important;
}
.contact-input-fild i{
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
}
.contact-page-form .nice-select {
    width: 100% !important;
    background-color: #fff;
    color: #A3A3A3;
    border-radius: 5px;
    border: solid 1px #EAEAEA;
    font-size: 16px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    padding-left: 15px;
    padding-right: 30px;
}
.contact-page-form .nice-select:hover {
    border-color: #EAEAEA;
}
.contact-page-form .nice-select:active, .contact-page-form .nice-select.open, .contact-page-form .nice-select:focus {
    border-color: #EAEAEA;
}
.contact-page-form .nice-select:after {
    border-bottom: 1px solid #A3A3A3;
    border-right: 1px solid #A3A3A3;
    height: 9px;
    width: 9px;
    margin-top: -4px;
    right: 24px;
    top: 50%;
}
.contact-page-form .nice-select .list {
    width: 100%;
    background-color:  var(--black-color);
}
.contact-page-form .nice-select .option:hover, .contact-page-form .nice-select .option.focus, .contact-page-form .nice-select .option.selected.focus {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.checkbox-input {
    margin: 20px 0 35px;
}
.checkbox-input label{
    margin-left: 10px;
    color: #A3A3A3;
}
.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.form-check-input:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
}
.contact-page-form .btn-1 {
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 300;
}

.contact-page-info{
    padding-bottom: 120px;
}
.contact-page-info-single{
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-page-info-icon{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #F7F7F7;
    color: #666666;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.contact-page-info-icon .icon-watch{
    font-size: 56px;
}
.contact-page-info-content a, .contact-page-info-content span{
    display: inline-block;
    color: var(--black-color);
    font-size: 16px;
    margin-top: 10px;
}
.contact-page-info-single:hover .contact-page-info-icon{
    background-color: var(--primary-color);
    color: var(--white-color);
}
