


@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@400;700&family=Roboto:wght@400;500;700;900&display=swap');

/*=============================
	01. Variable CSS
===============================*/
:root {
    --body-font-family: 'Oxygen', sans-serif;
    --heading-font-family: 'Roboto', sans-serif;
    --primary-color: #353D44;
    --secondary-color: #414C56;
    --white-paragraph: #E0E0E0;
    --title-color:#4A66AC;
    /* --gray: #D9D9D9; */
    --gray: #f2f6f7;
    --text-gray:#9BA4B5;
    --white: #F7F9FA;
    --black:#171717;
    --body-font-color: #171717;
    --heading-font-color: #183354;
    --paragraph-color: #171717;
    --border-color: #DFDFDF;
    --border-dark: #273341;
    --body-font-size: 16px;
    --body-font-weight: 400;
    --heading-font-weight: 700;
    --body-line-height: 1.75;
    --heading-line-height: 1.2;
    --primary-color-rgb: 53,61,68;
   
}
body {
	font-family: var(--body-font-family);
	font-weight: var(--body-font-weight);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	color: var(--body-font-color);
	font-style: normal;
}
img,
.img {
	max-width: 100%;
	-webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
}
.f-left {
	float: left
}
.f-right {
	float: right
}

a,
button {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	text-decoration: none;
}
a:focus,
.btn:focus,
button:focus {
	text-decoration: none;
	outline: none;
	box-shadow: none;
}

a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
	color: var(--secondary-color);
	text-decoration: none;
}
a,
button {
	color: var(--secondary-color);
	outline: medium none;
	text-decoration: none;
}
.btn:focus,
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
	outline: 0
}
.uppercase {
	text-transform: uppercase;
}
.capitalize {
	text-transform: capitalize;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font-family);
	color: var(--heading-font-color);
	margin-top: 0px;
	margin-bottom: .7rem;
	font-style: normal;
	line-height: var(--heading-line-height);
	font-weight: var(--heading-font-weight);
	text-transform: capitalize;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}
h1 {
	font-size: 2.5rem;
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.75rem;
}
h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1rem;
}
.list-wrap {
	margin: 0px;
	padding: 0px;
}
.list-wrap li {
	list-style: none
}
p {
	font-size: var(--body-font-size);
	font-weight: var(--body-font-weight);
	line-height: var(--body-line-height);
	color: var(--paragraph-color);
    
	margin-bottom: 15px;
}
hr {
	border-bottom: 1px solid var(--secondary-color);
	border-top: 0 none;
	margin: 30px 0;
	padding: 0;
}
label {
	color: var(--body-font-color);
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
}
*::-moz-selection {
	background: var(--secondary-color);
	color: var(--white);
	text-shadow: none;
}
::-moz-selection {
	background: var(--secondary-color);
	color: var(--white);
	text-shadow: none;
}
::selection {
	background: var(--secondary-color);
	color: var(--white);
	text-shadow: none;
}
*::-moz-placeholder {
	color: var(--body-font-color);
	font-size: var(--body-font-size);
	opacity: 1;
}
*::placeholder {
	color: var(--body-font-color);
	font-size: var(--body-font-size);
	opacity: 1;
}
.theme-overlay {
	position: relative
}
.theme-overlay::before {
	background: var(--secondary-color) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.6;
	position: absolute;
	top: 0;
	width: 100%;
}
.separator {
	border-top: 1px solid var(--secondary-color);
}

/* Bootstrap 5 */
.container {
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    --bs-gutter-x: 30px;
}
.row.g-0 {
	--bs-gutter-x: 0;
}
.gutter-y-30 {
  	--bs-gutter-y: 30px;
}
.gutter-40 {
    --bs-gutter-x: 40px;
}

/*=============================
	1. Button style
===============================*/
.btn {
    user-select: none;
    -moz-user-select: none;
    background: var(--secondary-color) none repeat scroll 0 0;
    border: medium none;
    border-radius: 4px;
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 45px;
    text-align: center;
    text-transform: capitalize;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    font-family: var(--heading-font-family);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.btn::before {
    content: "";
    position: absolute;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: var(--secondary-color);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}
.btn:hover {
    color: var(--white);
}
.btn:hover::before {
    top: -40%;
}
.btn-two {
    background: var(--secondary-color);
}
.btn-two::before {
    background: var(--secondary-color);
}
.breadcrumb > .active {
	color: var(--secondary-color);
}

/* scrollUp */
.scroll-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    bottom: -10%;
    right: 30px;
    font-size: var(--body-font-size);
    border-radius: 6px;
    z-index: 99;
    color: var(--white);
    text-align: center;
    cursor: pointer;
    background: var(--secondary-color);
    transition: 1s ease;
    border: none;
}
.scroll-top.open {
	bottom: 30px;
}
.scroll-top::after {
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 1;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll-top:hover {
	background: var(--secondary-color);
}


/*=============================
	02. Header
===============================*/
.custom-container {
    max-width: 1860px;
}
.transparent-header {
	position: absolute;
	left: 0;
	top: 0px;
	width: 100%;
	z-index: 9;
	height: auto;
}
#header-fixed-height.active-height {
    display: block;
    height: 95px;
}
/* header-top */
.header-top-wrap {
    background: var(--secondary-color);
    padding: 6px 35px;
}
.header-top-menu .list-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.header-top-menu .list-wrap li a {
    color: var(--white);
    font-family: var(--heading-font-family);
    font-size: 13px;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.header-top-menu .list-wrap li a:hover {
    color: var(--secondary-color);
}
.header-top-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-top-social .title {
    margin-bottom: 0;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-right: 6px;
    line-height: 1;
}
.header-top-social .list-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header-top-social .list-wrap li a {
    font-size: 14px;
    color: var(--white);
}
.header-top-social .list-wrap li a:hover {
    color: var(--secondary-color);
}

/* menu */
.menu-area {
    border-bottom: 1px solid var(--gray);
}
.menu-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.logo img {
  width: 250px;
}
.header-left-side {
    display: flex;
    height: 100%;
}
.offcanvas-toggle {
    border-right: 1px solid var(--gray);
    width: 100px;
}
.offcanvas-toggle a {
    padding: 30px 30px 30px 35px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    height: 100%;
}
.offcanvas-toggle a span {
    width: 33px;
    height: 2px;
    border-radius: 2px;
    background: var(--secondary-color);
    transition: .3s linear;
}
.navbar-wrap {
	display: flex;
}
.navbar-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0;
    margin: 0 0 0 185px;
}
.navbar-wrap ul li {
    list-style: none;
	display: block;
	position: relative;
}
.navbar-wrap ul li a {
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--heading-font-color);
    padding: 40px 17px;
    display: flex;
    align-items: center;
    line-height: 1;
    position: relative;
    z-index: 1;
    font-family: var(--heading-font-family);
    gap: 5px;
}
.navbar-wrap > ul > li.menu-item-has-children > a::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    color: var(--black);
    font-size: 14px;
    line-height: 0;
    transition: all 0.3s ease-out 0s;
}
.navbar-wrap > ul > li.menu-item-has-children.active > a::after,
.navbar-wrap > ul > li.menu-item-has-children:hover > a::after {
    color: var(--secondary-color);
}
.navbar-wrap > ul > li.active > a,
.navbar-wrap > ul > li:hover > a {
	color: var(--secondary-color);
}
.main-menu .navigation li.menu-item-has-children .dropdown-btn {
    display: none;
}
.header-right-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 35px;
}
.header-search-wrap form {
    position: relative;
    width: 340px;
}
.header-search-wrap form input {
    width: 100%;
    border: 1px solid var(--gray);
    background: transparent;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
    padding: 12px 45px 12px 20px;
    line-height: 1;
    height: 45px;
}
.header-search-wrap form input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--body-font-color);
}
.header-search-wrap form button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    font-size: 20px;
    line-height: 0;
    color: var(--secondary-color);
}
.header-search-wrap form button:hover {
    color: var(--secondary-color);
}
.header-action > ul {
    display: flex;
    align-items: center;
    margin-left: 25px;
}
.header-action > ul li {
    position: relative;
    margin-left: 25px;
    line-height: 0;
}
.header-action ul li:first-child {
	margin-left: 0;
}
.header-action ul li a {
    color: var(--paragraph-color);
    font-size: 24px;
    line-height: 0;
    position: relative;
    font-weight: 700;
}
.header-action ul li a:hover {
    color: var(--secondary-color);
}
.header-action ul li a span {
    position: absolute;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    right: -10px;
    top: -4px;
}
.header-cart {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-cart strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}
.header-action .header-sine-in a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--secondary-color);
}
.header-action .header-sine-in {
    margin-left: 20px;
}
.header-action .header-sine-in a i {
    color: var(--body-font-color);
    font-size: 24px;
}
.header-action .header-sine-in a:hover i {
    color: var(--secondary-color);
    transition: all 0.3s ease-out 0s;
}
.header-action .header-btn .btn {
	color: var(--white);
	font-size: 14px;
	padding: 13px 22px;
}
.navbar-wrap ul li .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 230px;
    border: 1px solid #f5f5f5;
    background: var(--white);
    margin: 0 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    border-radius: 0 0 5px 5px;
    padding: 18px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}
.navbar-wrap ul li .sub-menu .sub-menu {
	right: auto;
	left: 100%;
	top: 0;
}
.navbar-wrap ul li .sub-menu li {
	margin-left: 0;
	text-align: left;
	display: block;
}
.navbar-wrap ul li .sub-menu li a {
    padding: 9px 15px 9px 25px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--heading-font-color);
    text-transform: capitalize;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    justify-content: space-between;
}
.navbar-wrap ul li .sub-menu > li.active > a,
.navbar-wrap ul li .sub-menu li a:hover {
    color: var(--secondary-color);
}
.navbar-wrap ul li .sub-menu > li > a::before,
.navbar-wrap ul li .sub-menu li a::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 0px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 15px;
    background: var(--secondary-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.navbar-wrap ul li .sub-menu > li.active > a::before,
.navbar-wrap ul li .sub-menu li a:hover::before {
    height: 11px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.navbar-wrap ul li .sub-menu > li.menu-item-has-children > a::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    color: var(--black);
    font-size: 14px;
    line-height: 0;
    transition: all 0.3s ease-out 0s;
}
.navbar-wrap ul li .sub-menu > li.menu-item-has-children.active > a::after,
.navbar-wrap ul li .sub-menu > li.menu-item-has-children > a:hover::after {
    color: var(--secondary-color);
}
.navbar-wrap ul li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.sticky-menu {
	position: fixed;
	left: 0;
	margin: auto;
	top: 0;
	width: 100%;
	z-index: 99;
	background: var(--white);
	-webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
	-webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	border-radius: 0;
}
.menu-area.sticky-menu {
    border-bottom: none;
}

/* header-two */
.header-style-two {
    background: #12253E;
}
.header-logo-area {
    padding: 25px 0;
}
.hl-left-side {
    display: flex;
    align-items: center;
    gap: 30px;
}
.hl-left-side .offcanvas-toggle {
    border-right: none;
    width: auto;
}
.offcanvas-toggle .menu-tigger-two {
    padding: 0;
}
.offcanvas-toggle .menu-tigger-two span {
    background: var(--white);
}
.hl-right-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.hl-right-side .header-search-wrap form {
    width: 425px;
}
.hl-right-side .header-search-wrap form input {
    border: 1px solid #3A506B;
    color: var(--white);
}
.hl-right-side .header-search-wrap form input::placeholder {
    color: #8199B7;
}
.hl-right-side .header-search-wrap form button {
    color: var(--white);
}
.header-social .list-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-social .list-wrap li a {
    color: var(--gray);
}
.header-social .list-wrap li a:hover {
    color: var(--secondary-color);
}


/* header-three */
.menu-area.menu-style-three {
    border-bottom: 1px solid var(--border-color);
}
.header-top-wrap-two {
    background: var(--secondary-color);
    padding: 8px 0;
}
.header-top-left .offcanvas-toggle {
    border-right: none;
    width: auto;
    display: none;
}
.header-top-left {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-top-right .header-search-wrap form {
    width: 240px;
    margin-left: auto;
}
.header-search-wrap-two form input {
    border: none;
    background: transparent;
    border-radius: 0;
    color: var(--white);
    padding: 0 45px 0 0;
    height: auto;
}
.header-search-wrap-two form input::placeholder {
    color: #8199B7;
}
.header-search-wrap-two form button {
    right: 0;
    color: var(--white);
}
.menu-style-three .navbar-wrap ul {
    margin: 0 auto;
}


/*=============================
	03. Mobile Menu
===============================*/
.nav-outer .mobile-nav-toggler {
	position: relative;
	float: right;
	font-size: 40px;
	line-height: 50px;
	cursor: pointer;
	display: none;
	color: var(--white);
	margin-right: 30px;
	top: 15px;
}
.nav-logo img {
	width: 150px;
}
.mobile-menu {
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	padding-right: 30px;
	max-width: 100%;
	height: 100%;
	z-index: 99;
	border-radius: 0px;
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
	-o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}
.mobile-menu .navbar-collapse {
	display: block !important;
}
.mobile-menu .nav-logo {
	position: relative;
	padding: 30px 25px;
	text-align: left;
}
.mobile-menu-visible {
	overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
	-webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu .navigation li.current>a:before {
	height: 100%;
}
.menu-backdrop {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-webkit-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	opacity: 0;
	visibility: hidden;
	background: rgba(0, 0, 0, 0.5);
}
.mobile-menu-visible .menu-backdrop {
	opacity: 1;
	visibility: visible;
}
.mobile-menu .menu-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	background: var(--white);
	padding: 0px 0px;
	z-index: 5;
	box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}
.mobile-menu-visible .mobile-menu .menu-box {
	opacity: 1;
	visibility: visible;
}
.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: #292b37;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}
.mobile-menu-visible .mobile-menu .close-btn {
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
.mobile-menu .navigation {
	position: relative;
	display: block;
	width: 100%;
	float: none;
	margin: 0;
	padding: 0;
}
.mobile-menu .navigation ul {
	padding: 0;
	margin: 0;
}
.mobile-menu .navigation li {
	position: relative;
	display: block;
	border-top: 1px solid rgb(0 0 0 / 10%);
}
.mobile-menu .navigation:last-child {
	border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.mobile-menu .navigation li>ul>li:first-child {
	border-top: 1px solid rgb(0 0 0 / 10%);
}
.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 60px 10px 25px;
    font-size: 14px;
    font-weight: 700;
    color: var(--heading-font-color);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
    font-family: var(--heading-font-family);
}
.mobile-menu .navigation li ul li > a {
    font-size: 14px;
    margin-left: 20px;
    text-transform: capitalize;
}
.mobile-menu .navigation li ul li ul li a {
    margin-left: 40px;
}
.mobile-menu .navigation li ul li ul li ul li a {
    margin-left: 60px;
}
.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.menu-item-has-children .dropdown-btn {
	position: absolute;
	right: 15px;
	top: 6px;
	width: 32px;
	height: 32px;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	color: var(--white);
	background: var(--secondary-color);
	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.menu-item-has-children .dropdown-btn i {
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open i {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	color: var(--secondary-color);
}
.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
	display: none;
}
.mobile-menu .social-links ul {
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 6px 10px;
}
.mobile-menu .social-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	position: relative;
	line-height: 32px;
	font-size: 16px;
	color: var(--heading-font-color);
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: 1px solid var(--gray);
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}
.mobile-menu .social-links li a:hover {
	border-color: var(--secondary-color);
	background: var(--secondary-color);
	color: var(--white);
}
.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: var(--secondary-color);
    display: none;
    margin-top: 0;
    margin-left: 25px;
}
.mobile-search {
    padding: 0 20px 25px 25px;
}
.mobile-search form {
    position: relative;
}
.mobile-search input {
    display: block;
    width: 100%;
    border: 1px solid var(--gray);
    padding: 10px 45px 10px 20px;
    font-size: 14px;
    font-weight: 400;
    height: 45px;
    background: transparent;
    color: var(--secondary-color);
}
.mobile-search input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #171717;
}
.mobile-search button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    padding: 0;
    right: 20px;
    line-height: 1;
    background: transparent;
    color: var(--secondary-color);
}


/*=============================
	04. Search
===============================*/
.search__popup {
    padding-top: 70px;
    padding-bottom: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    backdrop-filter: blur(10px);
    z-index: 99;
    -webkit-transform: translateY(calc(-100% - 80px));
    -moz-transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(calc(-100% - 80px));
    -o-transform: translateY(calc(-100% - 80px));
    transform: translateY(calc(-100% - 80px));
    -webkit-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition-delay: 0.5s;
}
.search__input {
    position: relative;
    height: 80px;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    transition: all 0.3s ease-in-out;
    transition-delay: 0.5s;
    opacity: 0;
}
.search__input::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: var(--secondary-color);
    transition-delay: 0.3s;
    transition: all 0.3s ease-in-out;
}
.search__popup.search-opened .search__input::after {
    width: 100%;
    transition-delay: 0.5s;
}
.search__input input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 24px;
    color: var(--heading-font-color);
    border-bottom: 1px solid transparent;
    padding: 0;
    padding-right: 30px;
}
.search__input input::placeholder {
    font-size: 24px;
}
.search__input .search-input-field~.search-focus-border {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: all 0.5s;
}
.search__input .search-input-field:focus~.search-focus-border {
    width: 100%;
    left: 0;
    right: auto;
    transition: all .5s;
}
.search__input button {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--secondary-color);
    border: none;
    padding: 0 0;
    background: transparent;
}
.search__popup.search-opened {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    transition-delay: 0s;
    z-index: 99999999;
}
.search__popup.search-opened .search__input {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.3s;
}
.search__close {
    position: absolute;
    top: 10%;
    right: 2%;
    z-index: 2;
}
.search-close-btn {
    margin: 0;
    padding: 0;
    border: none;
	color: var(--secondary-color);
	cursor: pointer;
    background: transparent;
}
.search-popup-overlay {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.5s;
    opacity: 0;
    visibility: hidden;
    background: #000d25;
}
.search-popup-overlay.search-popup-overlay-open {
    opacity: .55;
    visibility: visible;
    transition-delay: 0s;
}

/*=============================
	05. OffCanvas
===============================*/
.offCanvas-wrap {
    position: fixed;
    overflow-y: auto;
    top: 0px;
    left: 0px;
    width: 395px;
    padding: 80px 58px 75px;
    transform: translateX(-100%);
    height: 100%;
    background-color: var(--white);
    z-index: 1020;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.06) 16px 0px 32px 0px;
}
.offCanvas-menu-visible .offCanvas-wrap {
    transform: translateX(0);
}
.offCanvas-wrap::-webkit-scrollbar {
    width: 0px;
}
.offCanvas-body {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.offCanvas-logo {
    margin: 0 0 25px;
}
.offCanvas-wrap .logo a.logo-light {
    display: none;
}
.offCanvas-content p {
    margin: 0 0;
}
.offCanvas-contact {
    margin: auto 0 0;
}
.offCanvas-contact .title {
    margin: 0 0 28px;
    font-size: 24px;
    letter-spacing: -0.5px;
}
.offCanvas-contact-list {
    margin: 0 0 60px;
}
.offCanvas-contact-list li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 0 20px;
    color: var(--secondary-color);
    margin: 0 0 8px;
}
.offCanvas-contact-list li i {
    color: var(--black);
    line-height: 1;
    width: 16px;
    flex: 0 0 auto;
}
.offCanvas-contact-list li a {
    color: var(--secondary-color);
}
.offCanvas-contact-list li a:hover {
    color: var(--secondary-color);
}
.offCanvas-social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 28px;
}
.offCanvas-social li a {
    display: block;
    font-size: 18px;
    color: var(--secondary-color);
}
.offCanvas-social li a:hover {
    color: var(--secondary-color);
}
.offCanvas-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.offCanvas-toggle span {
    width: 25px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.offCanvas-toggle span:nth-child(2) {
    transform: rotate(-90deg);
    left: 25%;
}
.offCanvas-toggle:hover {
    background: var(--secondary-color);
}
.offCanvas-overlay {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: #000;
}
.offCanvas-menu-visible .offCanvas-overlay {
    opacity: 0.6;
    visibility: visible;
}

section {
    padding: 100px 0 80px;
}




/*=============================
	07. Breadcrumb
===============================*/
.breadcrumb-area {
    background: var(--gray);
    padding: 37px 0;
}
.breadcrumb-content .breadcrumb {
    margin-bottom: 0;
}
.breadcrumb-content .breadcrumb-item {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--heading-font-family);
    color: var(--black);
}
.breadcrumb-content .breadcrumb-item a {
    color: var(--black);
}
.breadcrumb-content .breadcrumb-item a:hover {
    color: var(--secondary-color);
}
.breadcrumb-content .breadcrumb-item.active {
    color: var(--secondary-color);
}
.breadcrumb-content .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 8px;
    color: var(--black);
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}
.breadcrumb-content .breadcrumb-item+.breadcrumb-item {
    padding-left: 8px;
}


/* main title */

.ot-heading.is-dots {
    padding-bottom: 30px;
}

.ot-heading {
    position: relative;
}


.theratio-align-center .ot-heading.is-dots:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.ot-heading.is-dots:before {
    content: "";
    position: absolute;
    left: 1px;
    bottom: 1px;
    width: 66px;
    height: 2px;
    border-bottom: 2px dotted #1a1a1a;
}

.ot-heading > span {
    font-family: "Josefin Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #9f9e9e;
    display: inline-block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ot-heading h2 {
    margin-bottom: 0;
    line-height: 30px;
    font-size: 15px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
  }

  .carousel-caption h1 {
    font-family: var(--heading-font-family);
    font-weight: 700;
    color: var(--white);
  }

  .carousel-caption p {
    color: var(--white-paragraph);
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    border: 15px solid var(--primary-color);
    border-radius: 50px;
  }
  
  @media (max-width: 768px) {
    #header-carousel .carousel-item {
      position: relative;
      min-height: 400px;
    }
  
    #header-carousel .carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  
  .counter-main-wrapper-two {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
    border-bottom: 1px solid #E3E3E3;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-main-wrapper-two {
      flex-wrap: wrap;
      gap: 50px;
      justify-content: center;
    }
  }
  @media only screen and (max-width: 767px) {
    .counter-main-wrapper-two {
      flex-wrap: wrap;
      gap: 50px;
      justify-content: center;
    }
  }
  @media only screen and (max-width: 575px) {
    .counter-main-wrapper-two {
      /*flex-direction: column;*/
      align-items: center;
    }
  }
  .counter-main-wrapper-two .inner .title {
    margin-bottom: 0;
    font-family: var(--font-primary);
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    /* 55% */
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #30373E;
    color: transparent;
    display: block;
  }
  @media only screen and (max-width: 575px) {
    .counter-main-wrapper-two .inner .title {
      font-size: 70px;
      line-height: 18px;
    }
  }
  .counter-main-wrapper-two .inner .title span.counter {
    color: transparent;
  }
  .counter-main-wrapper-two .inner p {
    color: #7D7D7D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.36px;
    margin-top: 35px;
    display: block;
  }
  
  /* about section */

  .bg-cover {
    background-size: cover;
}
.bg-pos-cb {
    background-position: center bottom;
}
.bg-no-repeat {
    background-repeat: no-repeat;
}

.side-line-left {
  position: relative;
  padding-left: 70px;
  font-weight: 500;
  margin-bottom: 10px;
}

.mrb-45 {
  margin-bottom: 45px;
}

.t-h2 {
  font-size: 46px;
}

.mrb-40 {
  margin-bottom: 40px;
}

.about-text-block {
  background: var(--gray);
  padding: 18px 30px;
  border-bottom: 2px solid var(--primary-color);
  color: var(--secondary-color);
  font-size: 20px;
}
/* welcome teks */
.section-full {
    position: relative;
}

.bg-gray {
    background-color: #eef1f2;
}

.about-home-3 {
    position: relative;
    z-index: 1;
    padding: 30px;
}

.m-b30 {
    margin-bottom: 30px;
}
.bg-white {
    background-color: #fff!important;
}
.sx-tilte {
    position:relative;
    color:var(--title-color);
}

.video-section-full-v2 {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    margin-bottom: 50px;
    margin-right: 40px;
}

.video-section-full-v2 .video-section-full {
    padding: 200px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    bottom: 0px;
    margin-top: 0px;
    margin-left: 0px;
}

.video-section-full-v2:after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100%;
    height: auto;
    background-color: transparent;
    border: 20px solid #23252d;
    z-index: 0;
    bottom: -40px;
}


/* latest project */
/*========================================*/
/*----------- [_Section_Projects] --------*/
/*========================================*/
.v_mobile {
    display:none;
}
.custom-md-container {
  position: relative;
  max-width: 1640px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}
.title-box-center {
    position: relative;
}

.title-box-center h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;

}

.side-line-left:before {
    content: "";
    height: 2px;
    width: 50px;
    position: absolute;
    left: 0;
    bottom: 8px;
    background: var(--primary-color);
}

.side-line-left:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    left: 10px;
    bottom: 12px;
}

.mrb-60 {
    margin-bottom: 60px;
}

.mrb-10 {
    margin-bottom: 10px;
}
.side-line-left {
    position: relative;
    padding-left: 70px;
    font-weight: 500;
    margin-bottom: 10px;
}
.text-primary-color {
    color: var(--text-gray);
}

.text-title {
    color:var(--title-color);
}
.bg-secondary-color {
    background: #252531 !important;
}

.project-item-style1 .project-item-thumb {
    position: relative;
    overflow: hidden;
  }
  .project-item-style1 .project-item-thumb img {
    width: 100%;
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    transition: all 900ms ease;
    object-fit: cover;
    height: 475px;
    width: 400px;
  }
  .project-item-style1 .project-item-thumb .project-item-link-icon a {
    position: absolute;
    z-index: 2;
    top: 50px;
    right: -34px;
    width: 52px;
    margin-top: -25px;
    margin-left: -25px;
    height: 52px;
    background: var(--primary-color);
    text-align: center;
    line-height: 60px;
    color: var(--white);
    visibility: hidden;
    opacity: 0;
    -moz-transition: all 500ms ease-out 0s;
    -webkit-transition: all 500ms ease-out 0s;
    -ms-transition: all 500ms ease-out 0s;
    -o-transition: all 500ms ease-out 0s;
    transition: all 500ms ease-out 0s;
  }
  .project-item-style1 .project-item-thumb .project-item-details {
    padding: 15px;
    position: absolute;
    width: 88%;
    margin: 0 auto;
    left: 20px;
    bottom: 20px;
    -moz-transition: all 500ms ease-out 0s;
    -webkit-transition: all 500ms ease-out 0s;
    -ms-transition: all 500ms ease-out 0s;
    -o-transition: all 500ms ease-out 0s;
    transition: all 500ms ease-out 0s;
    opacity: 1;
    transform-origin: bottom;
    z-index: 2;
   
  }
  .project-item-style1 .project-item-thumb .project-item-details .project-item-category {
    color: var(--gray);
    padding-left: 40px;
    margin-bottom: 5px;
    position: relative;
  }
  .project-item-style1 .project-item-thumb .project-item-details .project-item-category:after {
    content: "";
    height: 1px;
    width: 30px;
    background: var(--gray);
    position: absolute;
    left: 0;
    top: 13px;
  }
  .project-item-style1 .project-item-thumb .project-item-details .project-item-title a {
    color: var(--white);
  }
  .project-item-style1 .project-item-thumb .project-item-details .project-item-title a:hover {
    color: var(--primary-color);
  }
  .project-item-style1 .project-item-thumb:after {
    position: absolute;
    background: linear-gradient(-60deg, #3d260ddb, #060505cc);
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    bottom: 0;
    opacity: 0;
    -moz-transition: all 500ms ease-out 0s;
    -webkit-transition: all 500ms ease-out 0s;
    -ms-transition: all 500ms ease-out 0s;
    -o-transition: all 500ms ease-out 0s;
    transition: all 500ms ease-out 0s;
  }
  .project-item-style1:hover .project-item-thumb img {
    -moz-transform: scale(1.2) rotate(3deg);
    -o-transform: scale(1.2) rotate(3deg);
    -ms-transform: scale(1.2) rotate(3deg);
    -webkit-transform: scale(1.2) rotate(3deg);
    transform: scale(1.2) ;
  }
  .project-item-style1:hover .project-item-thumb .project-item-link-icon a {
    visibility: visible;
    opacity: 1;
    right: 28px;
  }
  .project-item-style1:hover .project-item-thumb .project-item-details {
    opacity: 1;
    bottom: 20px;
    left: 30px;
  }
  .project-item-style1:hover .project-item-thumb:after {
    opacity: 1;
  }
  .project-item-style1:hover .project-item-thumb:before {
    -moz-transform: perspective(0) rotateX(0);
    -o-transform: perspective(0) rotateX(0);
    -ms-transform: perspective(0) rotateX(0);
    -webkit-transform: perspective(0) rotateX(0);
    transform: perspective(0) rotateX(0);
  }
  
  .owl-carousel.project-nav .owl-nav button.owl-prev, .owl-carousel.project-nav .owl-nav button.owl-next {
    opacity: 1;
    visibility: visible;
    top: -21%;
    right: 19.5%;
    height: 64px;
    width: 64px;
    line-height: 64px;
  }
  
  .owl-carousel.project-nav .owl-nav button.owl-prev {
    right: 23.5%;
    left: auto;
  }
  
  .owl-carousel.project-nav .owl-nav button.owl-prev:hover, .owl-carousel.project-nav .owl-nav button.owl-next:hover {
    background: var(--white);
  }
  
  .owl-carousel.project-nav .owl-nav button.owl-prev:hover i, .owl-carousel.project-nav .owl-nav button.owl-next:hover i {
    color: var(--primary-color);
  }


  /*--------------------------------------------------------------
## Portfolio
--------------------------------------------------------------*/
/* projects-grid
================================================== */
.project-item,
.grid-sizer {
  float: left;
  width: 33.3333333333%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.project-item.thumb2x,
.grid-sizer.thumb2x {
  width: 66.66666666%;
}

.projects-grid.pf_5_cols .project-item,
.projects-grid.pf_5_cols .grid-sizer {
  width: 20%;
}
.projects-grid.pf_5_cols .project-item.thumb2x,
.projects-grid.pf_5_cols .grid-sizer.thumb2x {
  width: 40%;
}

.projects-grid.pf_4_cols .project-item,
.projects-grid.pf_4_cols .grid-sizer {
  width: 25%;
}
.projects-grid.pf_4_cols .project-item.thumb2x,
.projects-grid.pf_4_cols .grid-sizer.thumb2x {
  width: 50%;
}

.projects-grid.pf_2_cols .project-item,
.projects-grid.pf_2_cols .grid-sizer {
  width: 50%;
}
.projects-grid.pf_2_cols .project-item.thumb2x,
.projects-grid.pf_2_cols .grid-sizer.thumb2x {
  width: 100%;
}

.projects-grid {
  position: relative;
  overflow: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  /* info style 2 */
  /* info style 3 */
  /* info hidden */
}
.projects-grid .projects-box {
  position: relative;
  overflow: hidden;
}
.projects-grid .projects-box .portfolio-info {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(10, 10, 10, 0.8);
  opacity: 0;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.projects-grid .projects-box .portfolio-info .overlay {
  opacity: 1;
  background: transparent;
  z-index: 0;
}
.projects-grid .projects-box .portfolio-info .portfolio-info-inner {
  text-align: center;
  width: 100%;
  z-index: 1;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.projects-grid .projects-box .portfolio-info h5 {
  color: #fff;
  font-size: 24px;
  padding: 0 25px;
  margin-bottom: 17px;
}
.projects-grid .projects-box .portfolio-info h5 a {
  color: #fff;
  font-size:16px;
}
.projects-grid .projects-box .portfolio-info .portfolio-cates {
  color: #9f9e9e;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  padding: 0 25px;
}
.projects-grid .projects-box .portfolio-info .portfolio-cates a {
  color: #9f9e9e;
  line-height: 1;
  display: inline-block;
  letter-spacing: 0.5px;
  margin: 0 5px;
}
.projects-grid .projects-box .portfolio-info .portfolio-cates a:before {
  content: "[";
  margin-right: 5px;
}
.projects-grid .projects-box .portfolio-info .portfolio-cates a:after {
  content: "]";
  margin-left: 5px;
}
.projects-grid .projects-box .portfolio-info .portfolio-cates a:hover {
  color: #fff;
}
.projects-grid .projects-box .portfolio-info .portfolio-cates a:first-child {
  margin-left: 0;
}
.projects-grid .projects-box .portfolio-info .portfolio-cates a:last-child {
  margin-right: 0;
}
.projects-grid .projects-box .projects-thumbnail {
  overflow: hidden;
}
.projects-grid .projects-box .projects-thumbnail .overlay {
  visibility: hidden;
}
.projects-grid .projects-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.projects-grid .projects-box:hover .portfolio-info {
  opacity: 1;
}
.projects-grid.style-2 .portfolio-info {
  background: none;
  align-items: flex-end;
  height: auto;
}
.projects-grid.style-2 .portfolio-info .portfolio-info-inner {
  text-align: left;
  background: #fff;
  padding: 27px 50px 26px;
  -webkit-transform: translateY(40%);
  -ms-transform: translateY(40%);
  transform: translateY(40%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.projects-grid.style-2 .portfolio-info .portfolio-info-inner h5 {
  margin-bottom: 8px;
  padding: 0;
}
.projects-grid.style-2 .portfolio-info .portfolio-info-inner h5 a {
  color: #1a1a1a;
}
.projects-grid.style-2 .portfolio-info .portfolio-info-inner .portfolio-cates {
  padding: 0;
}
.projects-grid.style-2 .portfolio-info .portfolio-info-inner .portfolio-cates a:hover {
  color: #1a1a1a;
}
.projects-grid.style-2 .projects-box:hover .portfolio-info-inner {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.projects-grid.style-2.w-auto .portfolio-info {
  width: auto;
}
.projects-grid.style-3 .projects-thumbnail {
  position: relative;
}
.projects-grid.style-3 .projects-thumbnail .overlay {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  display: none;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.projects-grid.style-3 .projects-thumbnail .overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  background: #000;
  color: #fff;
}
.projects-grid.style-3 .projects-thumbnail .overlay i:before {
  font-size: 22px;
}
.projects-grid.style-3 .projects-thumbnail .overlay i:hover {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
.projects-grid.style-3 .projects-thumbnail:hover .overlay {
  opacity: 1;
  visibility: visible;
}
.projects-grid.style-3 .portfolio-info {
  background: none;
  position: static;
  opacity: 1;
  align-items: flex-end;
}
.projects-grid.style-3 .portfolio-info .portfolio-info-inner {
  text-align: left;
  padding-top: 20px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.projects-grid.style-3 .portfolio-info .portfolio-info-inner h5 {
  padding: 0;
  margin-bottom: 7px;
}
.projects-grid.style-3 .portfolio-info .portfolio-info-inner h5 a {
  color: #1a1a1a;
  margin-bottom: 10px;
}
.projects-grid.style-3 .portfolio-info .portfolio-info-inner .portfolio-cates {
  padding: 0;
}
.projects-grid.style-3 .portfolio-info .portfolio-info-inner .portfolio-cates a:hover {
  color: #1a1a1a;
}
.projects-grid.style-3 .portfolio-info .overlay {
  display: none;
}
.projects-grid.style-4 .projects-thumbnail {
  position: relative;
}
.projects-grid.style-4 .projects-thumbnail .overlay {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  display: none;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.project-item {
    padding: 15px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}
.projects-grid.style-4 .projects-thumbnail .overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  background: #000;
  color: #fff;
}
.projects-grid.style-4 .projects-thumbnail .overlay i:before {
  font-size: 22px;
}
.projects-grid.style-4 .projects-thumbnail .overlay i:hover {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
.projects-grid.style-4 .projects-thumbnail:hover .overlay {
  opacity: 1;
  visibility: visible;
}
.projects-grid.style-4 .portfolio-info {
  display: none;
}
.projects-grid.img-popup .projects-thumbnail .overlay {
  display: block;
}
.projects-grid.img-scale .projects-box:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.projects-grid.no-cat .portfolio-cates {
  display: none;
}

/*** load more button ***/
.btn-block {
  text-align: center;
  clear: both;
}
.btn-block .octf-btn {
  margin-top: 60px;
}
.btn-block .octf-btn:after, .btn-block .octf-btn:before {
  display: none;
}

/**** isotope filtering ****/
.project_filters {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  padding-left: 0;
}
.project_filters:after {
  content: "";
  display: block;
  clear: both;
}

.project_filters li {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-left: 28px;
  margin-right: 28px;
  margin-bottom: 5px;
}
.project_filters li:last-child {
  margin-right: 0;
}
.project_filters li:first-child {
  margin-left: 0;
}

.project_filters li a {
  font-size: 14px;
}
.project_filters li a::before {
  width: 0;
}
.project_filters li a.selected:before {
  width: calc( 100% + 14px );
}
.project_filters li a:focus, .project_filters li a:active {
  color: #1a1a1a;
}
.project_filters li a .filter-count {
  position: absolute;
  top: -11px;
  right: -10px;
  width: 20px;
  text-align: left;
  font-size: 11px;
  color: #828282;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}
.project_filters li a.selected .filter-count, .project_filters li a:hover .filter-count {
  opacity: 1;
  visibility: visible;
  right: -20px;
}

/*Dark scheme*/
.dark-scheme .project_filters li a:focus, .dark-scheme .project_filters li a:active {
  color: #fff;
}

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.6s;
  -moz-transition-duration: 0.6s;
  -ms-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  transition-duration: 0.6s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

/* End: Recommended Isotope styles */
/* project carousel */
.project-slider .octf-swiper-pagination {
  margin-top: 30px;
}

.project-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 100px;
}

.single-portfolio-navigation {
  padding-top: 42px;
}
.single-portfolio-navigation .post-nav {
  margin-bottom: 0;
}

.portfolio-related-posts-wrap {
  padding-top: 70px;
}

.portfolio-related-title-wrap h2 {
  margin-bottom: 15px;
}

@media only screen and (min-width: 1025px) {
  .portfolio-related-posts-wrap .octf-swiper-pagination {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .projects-grid.pf_5_cols .grid-sizer,
.projects-grid.pf_5_cols .project-item,
.projects-grid.pf_4_cols .grid-sizer,
.projects-grid.pf_4_cols .project-item {
    width: 33.333333%;
  }
  .projects-grid.pf_5_cols .grid-sizer.thumb2x,
.projects-grid.pf_5_cols .project-item.thumb2x,
.projects-grid.pf_4_cols .grid-sizer.thumb2x,
.projects-grid.pf_4_cols .project-item.thumb2x {
    width: 66.666666%;
  }
}
@media only screen and (max-width: 992px) {
  .project-item,
.grid-sizer,
.projects-grid.pf_5_cols .grid-sizer,
.projects-grid.pf_5_cols .project-item,
.projects-grid.pf_4_cols .grid-sizer,
.projects-grid.pf_4_cols .project-item {
    width: 50%;
  }
  .project-item.thumb2x,
.grid-sizer.thumb2x,
.projects-grid.pf_5_cols .grid-sizer.thumb2x,
.projects-grid.pf_5_cols .project-item.thumb2x,
.projects-grid.pf_4_cols .grid-sizer.thumb2x,
.projects-grid.pf_4_cols .project-item.thumb2x {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .projects-box .portfolio-info {
    right: 0;
    opacity: 1;
  }

  .projects-style-1 .projects-box .portfolio-info .portfolio-info-inner {
    padding: 30px;
  }

  .projects-style-1 .projects-box .portfolio-info h5 {
    font-size: 20px;
  }

  .projects-style-1 .projects-box .portfolio-info .portfolio-cates {
    font-size: 12px;
  }
}
@media only screen and (max-width: 600px) {
  .project-item,
.grid-sizer,
.projects-grid.pf_5_cols .project-item,
.projects-grid.pf_4_cols .project-item,
.projects-grid.pf_2_cols .project-item {
    width: 100%;
  }

  .project_filters li {
    margin-left: 10px;
    margin-right: 10px;
  }

  .portfolio-related-title-wrap h2 {
    font-size: 30px;
  }
}
.space-40 {
    width: 100%;
    height: 40px;
}
  
/*========================================*/
/*------------ [_Section_News] -----------*/
/*========================================*/
.news-wrapper {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.news-wrapper .news-thumb {
  position: relative;
  overflow: hidden;
}
.news-wrapper .news-thumb:after {
  position: absolute;
  background: linear-gradient(-60deg, #252531e3, #332304ed);
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  bottom: 0;
  opacity: 0.15;
  -moz-transition: all 500ms ease-out 0s;
  -webkit-transition: all 500ms ease-out 0s;
  -ms-transition: all 500ms ease-out 0s;
  -o-transition: all 500ms ease-out 0s;
  transition: all 500ms ease-out 0s;
}
.news-wrapper .news-thumb img {
  -moz-transition: all 400ms ease-out 0s;
  -webkit-transition: all 400ms ease-out 0s;
  -ms-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;
}
.news-wrapper .news-thumb .news-top-meta {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: var(--white-paragraph);
  padding: 5px 18px;
  font-size: 14px;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  z-index: 1;
}
.news-wrapper .news-thumb .news-meta {
  width: 210px;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 12px;
  text-align: center;
  display: flex;
  z-index: 1;
}
.news-wrapper .news-thumb .news-meta a {
  color: var(--white-paragraph);
}
.news-wrapper .news-thumb .news-meta i {
  font-size: 15px;
  margin-right: 8px;
  vertical-align: middle;
  color: var(--white-paragraph);
}
.news-wrapper .news-thumb .news-meta .admin {
  background: #ececec;
  padding: 2px 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.2px;
  font-size: 11px;
  color: var(--secondary-color);
}
.news-wrapper .news-thumb .news-meta .admin a {
  color: var(--secondary-color);
}
.news-wrapper .news-thumb .news-meta .comment {
  background: var(--primary-color);
  padding: 2px 17.9px;
  min-width: 96px;
}
.news-wrapper .news-description {
  padding: 30px 25px;
  background: var(--white);
  border: 1px solid var(--border-color);
}
.news-wrapper .news-description .news-bottom-meta {
  color: #828c99;
}
.news-wrapper .news-description .the-title {
  margin-bottom: 20px;
}
.news-wrapper .news-description .the-content {
  margin-bottom: 25px;
}
.news-wrapper .news-description .news-bottom-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
.news-wrapper .news-description .news-bottom-part .post-author {
  display: flex;
  align-items: center;
}

.news-wrapper .news-description .news-bottom-part .post-link {
  color: #a49e98;
}
.news-wrapper .news-description .news-bottom-part .post-link > a {
  text-decoration: underline;
}
.news-wrapper:hover .news-thumb img {
  transform: scale(1.1);
}
.news-wrapper:hover .news-thumb:after {
  opacity: 0.8;
}

/*========================================*/
/*-------- [_Section_Single_News] --------*/
/*========================================*/
.img-full {
  width: 100%;
}
.blog-single-news .single-news-details .single-news-content .entry-meta {
  font-size: 15px;
  color: #888;
  font-weight: 500;
  margin: 25px 0px 10px 0px;
}
.blog-single-news .single-news-details .single-news-content .entry-meta i {
  font-size: 16px;
  margin-right: 5px;
  vertical-align: middle;
  color: var(--primary-color);
}
.blog-single-news .single-news-details .single-news-content .entry-meta .admin {
  background: #f6e1eb;
  padding: 4px 8px 6px 8px;
  color: var(--primary-color);
  border-radius: 3px;
  font-size: 13px;
}
.blog-single-news .single-news-details .single-news-content .single-news-tag-social-area {
  margin: 45px 0 38px;
  border-top: 1px solid #eee;
  padding: 40px 0px 45px;
  border-bottom: 1px solid #eeee;
}
.blog-single-news .single-news-details .single-news-content .single-news-tag-social-area .single-news-tags ul li {
  display: inline;
}
.blog-single-news .single-news-details .single-news-content .single-news-tag-social-area .single-news-tags ul li a {
  padding: 6px 12px;
  background: var(--gray);
  font-size: 14px;
  color: var(--body-font-color);
  border-radius: 0;
  margin-right: 5px;
  display: inline-block;
}
.blog-single-news .single-news-details .single-news-content .single-news-tag-social-area .single-news-tags ul li a:hover {
  color: var(--white);
  background-color: var(--primary-color);
}
.blog-single-news .single-news-details .single-news-content .single-news-tag-social-area .single-news-share .social-icons li {
  display: inline-block;
}
.blog-single-news .single-news-details .single-news-content .single-news-tag-social-area .single-news-share .social-icons li a {
  display: block;
  color: var(--primary-color);
  text-align: center;
  font-size: 18px;
  margin-left: 15px;
}
.blog-single-news .single-news-details .single-news-content .single-news-tag-social-area .single-news-share .social-icons li a:hover {
  color: var(--primary-color);
}
.blog-single-news .single-news-details .single-news-content .comments-area {
  background: var(--gray);
  padding: 30px 30px;
  margin-top: 40px;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comments-title {
  margin-bottom: 10px;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comment-list .comment .children {
  margin-left: 45px;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comment-list .comment .comment-body {
  padding-top: 30px;
  display: inline-block;
  border-bottom: 1px solid #e8e9ef;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comment-list .comment .comment-body .comment-author-thumb {
  margin-top: 5px;
  margin-right: 28px;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comment-list .comment .comment-body .comment-author-thumb img {
  border-radius: 6px;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comment-list .comment .comment-body .comment-content {
  margin-left: 95px;
  position: relative;
  overflow: hidden;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comment-list .comment .comment-body .comment-content .comment-author {
  margin-bottom: 5px;
  font-size: 18px;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comment-list .comment .comment-body .comment-content .comment-text {
  margin-bottom: 35px;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comment-list .comment .comment-body .comment-content .comment-meta .comment-metadata {
  margin-bottom: 10px;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comment-list .comment .comment-body .comment-content .comment-meta .comment-metadata span {
  font-size: 14px;
  color: #8b8b8b;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comment-list .comment .comment-body .comment-content .reply {
  position: absolute;
  top: 10px;
  right: 0;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comment-list .comment .comment-body .comment-content .reply .comment-reply-link {
  padding: 8px 24px;
  font-size: 13px;
  color: var(--white);
  background: var(--primary-color);
  border: 1px solid transparent;
  -moz-transition: all 200ms ease-out 0s;
  -webkit-transition: all 200ms ease-out 0s;
  -ms-transition: all 200ms ease-out 0s;
  -o-transition: all 200ms ease-out 0s;
  transition: all 200ms ease-out 0s;
}
.blog-single-news .single-news-details .single-news-content .comments-area .comment-list .comment .comment-body .comment-content .reply .comment-reply-link:hover {
  background: var(--secondary-color);
}

.single-news-details.news-wrapper {
  box-shadow: none;
}

.sidebar-widget {
  padding: 40px 45px 40px 45px;
  margin-bottom: 38px;
  background: var(--gray);
}

.mrb-30 {
  margin-bottom: 30px;
}

.mrb-20 {
  margin-bottom: 20px;
}

.mr-10, .mrr-10 {
  margin-right: 10px;
}

.mrr-20 {
  margin-right: 20px;
}
.single-blog-widget-title {
  position: relative;
  padding-left: 30px;
}

.single-blog-widget-title:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 5px;
  left: 0;
  top: 0;
  background: var(--primary-color);
}

.single-post .post-image img {
  border-radius: 6px;
  width: 70px;
    height: 70px;
}
.news-sidebar-widget {
  position: sticky;
  top: 100px;
}

.news-sidebar-widget .widget-popular-posts .post-date {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}

.news-sidebar-widget .widget-popular-posts .post-date i {
  color: var(--primary-color);
}
.mrr-5 {
  margin-right: 5px;
}

.news-sidebar-widget .widget-popular-posts .post-content h5{
 
    font-size: 18px;
    line-height: 24px;
}


/* btn box*/

.btn-box {
  position: relative;
  opacity: 0;
  z-index: 11;
  -moz-transform: translateY(100px);
  -o-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -moz-transition: all 1300ms ease;
  -webkit-transition: all 1300ms ease;
  -ms-transition: all 1300ms ease;
  -o-transition: all 1300ms ease;
  transition: all 1300ms ease;
}
.btn-box {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  -moz-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.animate-btn-style3 {
  position: relative;
  display: inline-block;
  color: var(--heading-font-color);
  background: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 1;
  letter-spacing: 1px;
  border: 1px solid var(--primary-color);
  -moz-transition: all 300ms ease-out 0s;
  -webkit-transition: all 300ms ease-out 0s;
  -ms-transition: all 300ms ease-out 0s;
  -o-transition: all 300ms ease-out 0s;
  transition: all 300ms ease-out 0s;
  padding: 10px 32px;
  font-size: 14px;
}
.animate-btn-style3:after {
  content: "";
  height: 15px;
  width: 15px;
  position: absolute;
  background: rgba(var(--primary-color-rgb), 0.9);
  bottom: 0;
  right: 0;
  z-index: -1;
  -moz-transition: all 300ms ease-out 0s;
  -webkit-transition: all 300ms ease-out 0s;
  -ms-transition: all 300ms ease-out 0s;
  -o-transition: all 300ms ease-out 0s;
  transition: all 300ms ease-out 0s;
}
.animate-btn-style3:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: rgba(var(--primary-color-rgb), 0.9);
  left: 0px;
  top: 0px;
  z-index: -1;
  -moz-transition: all 300ms ease-out 0s;
  -webkit-transition: all 300ms ease-out 0s;
  -ms-transition: all 300ms ease-out 0s;
  -o-transition: all 300ms ease-out 0s;
  transition: all 300ms ease-out 0s;
}
.animate-btn-style3:hover {
  color: var(--white);
}
.animate-btn-style3:hover:before, .animate-btn-style3:hover:after {
  width: 100%;
  height: 100%;
  background: var(--primary-color);
}
.animate-btn-style3.btn-sm {
  font-size: 12px;
  padding: 10px 28px;
}
.animate-btn-style3.btn-md {
  font-size: 14px;
  padding: 12px 48px;
}
.animate-btn-style3.btn-lg {
  padding: 18px 56px;
  font-size: 16px;
}
.animate-btn-style3.btn-xl {
  font-size: 18px;
  padding: 24px 56px;
}


.contact-block {
  background: var(--gray);
  padding: 30px 30px;
  border: 1px solid #ece9e3;
}

.contact-icon i {
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  text-align: center;
  line-height: 64px;
  display: inline-block;
  border-radius: 6px;
}
.contact-icon i:before {
  color: var(--white);
  font-size: 36px;
}

.contact-details {
  margin-left: 30px;
}

/*========================================*/
/*----------- [_Social_List] -------------*/
/*========================================*/
.social-list li {
  display: inline;
  margin-right: 5px;
}
.social-list li a {
  background: #323c5b;
  height: 42px;
  width: 42px;
  display: inline-block;
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  line-height: 42px;
  font-size: 16px;
}
.social-list li a:hover {
  background: var(--primary-color);
}
.social-list.list-primary-color li a {
  background: var(--primary-color);
}
.social-list.list-primary-color li a:hover {
  background: var(--secondary-color);
}
.social-list.list-flat li a {
  border-radius: 0;
}
.social-list.list-lg li a {
  height: 48px;
  width: 48px;
  font-size: 18px;
  line-height: 48px;
}
.social-list.list-sm li {
  margin-right: 10px;
  height: 34px;
  width: 34px;
  font-size: 14px;
  line-height: 34px;
}
.social-list.list-sm li a {
  height: 34px;
  width: 34px;
  font-size: 14px;
  line-height: 34px;
}
.mrb-80 {
  margin-bottom: 80px;
}

.mrb-30 {
  margin-bottom: 30px;
}
.mrb-35 {
  margin-bottom: 35px;
}
.faq-title {
  font-size: 54px;
  line-height: 1.2;
}

ul, ol {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}


/*----------------------------------------*/
/*  portfolio-single  
/*---------------------------------------------------------------*/
.ttm-pf-single-content-wrapper-innerbox,
.ttm-pf-single-content-wrapper{
    position: relative;
}
.ttm-pf-single-content-wrapper-innerbox .ttm-horizontal_sep {
    border-top: 1px solid #e3e3e3;
}
.ttm-pf-single-content-wrapper {
    margin-bottom: 42px;
}
.ttm-pf-single-detail-box .ttm-pf-detailbox-title {
    position: relative;
    font-size: 25px;
    line-height: 33px;
    margin-bottom: 6px;
}
.ttm-pf-view-top-image .ttm-pf-single-detail-box {
    position: absolute;
    padding: 40px 25px 43px 40px;
    right: 25px;
    bottom: -40px;
    z-index: 2;
    height: auto;
}
.ttm-pf-view-left-image .ttm-pf-single-detail-box .ttm-portfolio-title h2 {
    position: relative;
    font-size: 25px;
    line-height: 30px;
    padding: 0 30px 20px;
    margin: 0 -30px;
    margin-bottom: 20px;
    border-bottom: 2px solid #fff;
}
.ttm-pf-view-left-image .ttm-pf-single-detail-box {
    padding: 20px 30px 15px;
}
.ttm-bgcolor-grey.ttm-pf-single-detail-box ul li:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}
.ttm-pf-view-left-image .ttm-pf-single-detail-box ul li{
    padding: 11px 0px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}
.ttm-pf-single-detail-box ul li .ttm-pf-data-title{
    font-size: 17px;
}
.ttm-pf-single-detail-box ul li .ttm-pf-data-details {
    color: #777777;
}
.ttm-pf-view-left-image .ttm-pf-single-detail-box ul li .ttm-pf-data-title{
    font-weight: 500;
    font-size: 15px;
    margin-right: 10px;
}
.ttm-pf-view-left-image .ttm-pf-single-detail-box ul li .ttm-pf-data-details {
    padding-left: 0; 
    font-size: 16px;
    display: inline;
    overflow: hidden;
}
.ttm-pf-single-content-area h2 {
    text-align: left;
    font-size: 30px;
    line-height: 35px;
}
.ttm-pf-single-content-area .ttm-btn {
    padding: 14px 24px;
    text-transform: capitalize;
    font-size: 15px;
}
.ttm-pf-single-content-area .ttm-nextprev-bottom-nav .ttm-btn.ttm-btn-style-border {
    padding: 14px 28px;
    border: 1px solid currentColor;
}
.ttm-nextprev-bottom-nav {
    position: relative;
    margin-top: 30px;
    border-top: 1px solid #e3e3e3;
    padding-top: 40px;
    margin-bottom: 0px;
}

.ttm-pf-view-top-image .ttm-pf-single-detail-box {
  position: absolute;
  padding: 40px 25px 43px 40px;
  right: 25px;
  bottom: -40px;
  z-index: 2;
  height: auto;
}

.ttm-pf-single-content-wrapper .ttm-pf-single-detail-box {
  display: block;
  padding: 20px 30px 20px;
  height: auto !important;
}

.ttm-pf-single-detail-box .ttm-pf-detailbox-title {
  position: relative;
  font-size: 25px;
  line-height: 33px;
  margin-bottom: 6px;
}

.ttm-pf-detailbox-list {
  padding: 0;
  margin: 6px 0 16px;
}

.ttm-pf-detailbox-list li {
  position: relative;
  display: inline-block;
  padding: 15px 0 15px 0;
  width: 48%;
}

.ttm-pf-single-detail-box ul li .ttm-pf-data-title {
  font-size: 17px;
}
.ttm-pf-single-detail-box ul li .ttm-pf-data-details {
  color: #777777;
}
.ttm-single-pf-footer {
  display: block;
  clear: both;
  overflow: hidden;
}
.ttm-social-share-wrapper {
  display: flex;
  align-items: center;
}

.ttm-pf-single-content-wrapper .ttm-social-share-title {
  font-size: 17px;
  line-height: 26px;
  margin-top: 2px;
  margin-right: 5px;
  font-weight: 700;
  color: var(--black);
  padding-right: 10px;
}
ul.social-icons {
  margin: 0;
  padding: 0;
}
.social-icons.square li {
  margin: 0 0px;
}

.ttm-social-share-links ul li a {
  border: 1px solid rgba(255,255,255,.1);
  height: 34px;
  width: 34px;
  line-height: 34px;
  font-size: 13px;
  margin-right: 3px;
}

.social-icons.square li a {
  font-size: 14px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 2em;
  color: inherit;
  margin-right: 8px;
  border: 1px solid #e7e7e7;
}
.social-icons li {
  display: inline-block;
  border: none;
  z-index: 1;
  position: relative;
}
.ttm-bgcolor-darkgrey {
  background-color: var(--gray);
}
.social-icons li a {
  display: block;
  min-width: 26px;
  text-align: center;
}

@media (max-width: 991px) {
.ttm-pf-view-top-image .ttm-pf-single-detail-box {
    padding: 40px 15px 40px;
    width: 100%;
    top: 15px;
    left: 0;
    position: relative;
}
}
/*=============================
	31. Footer
===============================*/
.footer-area {
    background: var(--black);
}
.footer-top {
    padding: 100px 0 60px;
    position: relative;
    z-index: 1;
}
.footer-shape {
    background-size: cover;
    background-position: center;
    height: 61px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.footer-widget {
    margin-bottom: 40px;
}
.fw-logo {
    margin-bottom: 20px;
}

.fw-logo img {
    width:350px;
}
.footer-content p {
    margin-bottom: 0;
    color: var(--white-paragraph);
    width: 95%;
}
.footer-widget .fw-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
}
.footer-widget .fw-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 5px;
    background: var(--secondary-color);
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}
.footer-link-wrap .list-wrap li {
    margin-bottom: 8px;
}
.footer-link-wrap .list-wrap li:last-child {
    margin-bottom: 0;
}
.footer-link-wrap .list-wrap li a {
    color: var(--white-paragraph);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    
}
.footer-link-wrap .list-wrap li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--white-paragraph);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
    transition: transform 0.4s cubic-bezier(.74, .72, .27, .24);
}
.footer-link-wrap .list-wrap li a:hover::before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}
.footer-top .row [class*="col-"]:nth-child(3) .footer-widget {
    margin-left: 55px;
}
.footer-bottom {
    border-top: 1px solid #202E3F;
    padding: 35px 0;
}
.footer-bottom-menu .list-wrap {
    display: flex;
    align-items: center;
    gap: 25px;
}
.footer-bottom-menu .list-wrap li {
    position: relative;
}
.footer-bottom-menu .list-wrap li::before {
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #7C91AA;
}
.footer-bottom-menu .list-wrap li:last-child::before {
    display: none;
}
.footer-bottom-menu .list-wrap li a {
    color: #7C91AA;
    position: relative;
}
.footer-bottom-menu .list-wrap li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #7C91AA;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
    transition: transform 0.4s cubic-bezier(.74, .72, .27, .24);
}
.footer-bottom-menu .list-wrap li a:hover::before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}
.copyright-text p {
    margin-bottom: 0;
    color: var(--white-paragraph);
    text-align:center;
    font-size:11px;
}

.footer-social .list-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 50px;
}
.footer-social .list-wrap li a {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    gap: 8px;
}
.footer-social .list-wrap li a i {
    font-size: 20px;
}
.footer-social .list-wrap li a:hover {
    color: var(--secondary-color);
}
.preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: white;
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.preloader__wrap {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  border-radius: 30px;
  background-color: white;
  box-shadow: 0px 2px 24px 0px #00000014;
  -webkit-animation-name: preloaderWraper;
          animation-name: preloaderWraper;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.preloader__icon {
  position: absolute;
  -webkit-animation-name: preloader;
          animation-name: preloader;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.preloader__title {
  font-size: 47px;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: 0em;
  margin-top: 16px;
}

.preloader.-is-hidden {
  opacity: 0;
  pointer-events: none;
}

@-webkit-keyframes preloaderWraper {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: none;
  }
}

@keyframes preloaderWraper {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: none;
  }
}

@-webkit-keyframes preloader {
  0% {
    transform: translateY(150%) scale(1);
  }
  50% {
    transform: translateY(0%) scale(1.2) ;
  }
  100% {
    transform: translateY(-150%);
  }
}

@keyframes preloader {
  0% {
    transform: translateY(150%) scale(1);
  }
  50% {
    transform: translateY(0%) scale(1.2);
  }
  100% {
    transform: translateY(-150%);
  }
}

.jmw {
  color: var(--white);
}


.gallery-section{
  position: relative;

  padding: 80px 0 100px 0;

}

.gallery-section .right-bg{
  position: absolute;
  right: 0;
  bottom: 0;
 
} 

.gallery-section  .title-box h2{
  margin-bottom: 2.5rem;
}


.gallery-style .gallery-img {
  overflow: hidden;
  position: relative;
  border-radius: 15px
}

.gallery-style .gallery-img img {
  width: 100%;
  transform: scale(1.001);
  transition: all ease .4s
}

.gallery-style .gallery-img:after,
.gallery-style .gallery-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 40%;
  background-color: rgba(15,17,39, .8);
  opacity: 0;
  visibility: hidden;
  transition: all ease .6s;
  z-index: 1
}

.gallery-style .gallery-img:after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0
}

.gallery-style .gallery-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  visibility: hidden
}

.gallery-style .gallery-btn:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  right: 2px;
  bottom: 2px;
  background-color: var(--primary-color);
  border-radius: inherit;
  z-index: -1;
  transition: all ease .4s;
  transform: scale(0.5);
  opacity: 0;
  visibility: hidden
}

.gallery-style .gallery-btn:hover {
  color: var(--white)
}

.gallery-style .gallery-btn:hover:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1)
}

.gallery-style:hover .gallery-img:after,
.gallery-style:hover .gallery-img:before {
  opacity: 1;
  visibility: visible;
  height: 100%
}

.gallery-style:hover .gallery-img img {
  transform: scale(1.15)
}

.gallery-style:hover .gallery-btn {
  opacity: 1;
  visibility: visible
}

.gallery-style.radius-2 .gallery-img {
  border-radius: 150px 150px 30px 30px
}

.gallery-style.radius-3 .gallery-img {
  border-radius: 30px 30px 150px 150px
}

.gallery-style.layout2 .gallery-btn {
  background-color: rgba(0, 0, 0, 0);
  color: var(--white);
  font-size: 30px
}




.listing-card-one {
  background: #fff;
  overflow: hidden;
  transition: all 0.2s ease-in-out 0s;
}
.listing-card-one.border-layout {
  border: 1px solid #F3F3F3;
}
.listing-card-one.border-20, .listing-card-one .border-20 {
  border-radius: 20px;
}
.listing-card-one.border-25, .listing-card-one .border-25 {
  border-radius: 25px;
}
.listing-card-one.border-30, .listing-card-one .border-30 {
  border-radius: 30px;
}
.listing-card-one.p-15, .listing-card-one .p-15 {
  padding: 15px;
}
.listing-card-one.p-25, .listing-card-one .p-25 {
  padding: 15px 25px;
}
.listing-card-one .img-gallery {
  overflow: hidden;
}
.listing-card-one .img-gallery .carousel-indicators {
  opacity: 0;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out 0s;
}
.listing-card-one .img-gallery .tag {
  width: 90px;
  line-height: 27px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12px;
  color: #fff;
  text-align: center;
  background: var(--primary-color);
  position: absolute;
  left: 17px;
  top: 17px;
  z-index: 1;
}
.listing-card-one .img-gallery .tag.sale {
  background: #00B579;
}
.listing-card-one .img-gallery .fav-btn {
  font-size: 22px;
  color: #fff;
  position: absolute;
  right: 17px;
  top: 17px;
  z-index: 1;
}
.listing-card-one .img-gallery .fav-btn:hover {
  color: var(--primary-color);
}
.listing-card-one .title {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}
.listing-card-one .address {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
  margin: 3px 0 22px;
}
.listing-card-one .feature {
  margin: 0 -3px;
}
.listing-card-one .feature li {
  padding: 0 3px;
  margin-top: 5px;
}
.listing-card-one .pl-footer {
  margin-top: 28px;
  padding: 12px 0;
}
.listing-card-one .pl-footer.top-border {
  border-top: 1px dashed #c7c7c7;
}
.listing-card-one .pl-footer.bottom-border {
  padding: 16px 0;
  border-bottom: 1px dashed #c7c7c7;
}
.listing-card-one .price {
  font-size: 24px;
}
.listing-card-one .price sub {
  font-size: 20px;
  font-weight: normal;
  bottom: 0px;
}
.listing-card-one .action-icons {
  margin: 0 -10px;
}
.listing-card-one .action-icons li {
  padding: 0 10px;
}
.listing-card-one .action-icons li a {
  color: #BFBFBF;
  font-size: 1.1em;
  transition: all 0.2s ease-in-out 0s;
}
.listing-card-one .action-icons li a:hover, .listing-card-one .action-icons li a:focus {
  color: var(--primary-color);
}
.listing-card-one .img-slider-btn {
  position: absolute;
  left: 15px;
  bottom: 15px;
  line-height: 28px;
  padding: 0 10px;
  border-radius: 30px;
  font-size: 12px;
  color: #000;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out 0s;
}
.listing-card-one .img-slider-btn:hover {
  background:var(--primary-color);
  color: #fff;
}
.listing-card-one .img-slider-btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.listing-card-one:hover {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
}
.listing-card-one:hover .carousel-indicators {
  opacity: 1;
}
.listing-card-one:hover .title {
  color: var(--primary-color);
}
.listing-card-one:hover .img-slider-btn {
  opacity: 1;
  visibility: visible;
}
.listing-card-one.style-two:hover {
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.06);
}
.listing-card-one.style-two .tag {
  background: #fff;
  color: #000;
  left: 0;
}
.listing-card-one.style-two .price {
  font-size: 32px;
}
.listing-card-one.style-three:hover {
  box-shadow: 0px 30px 50px rgba(0, 45, 70, 0.03);
}
.listing-card-one.style-three .img-gallery .btn-four {
  bottom: 15px;
  right: 15px;
}
.listing-card-one.style-three .pl-footer {
  padding-bottom: 20px;
}

.buy-img {
    height:300px;
    object-fit:cover;
}
.btn-four {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0C0C0C;
  color: #fff;
  font-size: 1.3em;
  transition: all 0.3s ease-in-out 0s;
}
.btn-four:hover, .btn-four:focus {
  background: var(--primary-color);
}
.btn-four.inverse {
  background: var(--primary-color);
}
.btn-four.inverse:hover, .btn-four.inverse:focus {
  background: #0C0C0C;
}


.theme-details-one .border-20 {
  border-radius: 20px;
}
.theme-details-one .border-15 {
  border-radius: 15px;
}
.theme-details-one .border-10 {
  border-radius: 10px;
}
.theme-details-one .p-40 {
  padding: 40px;
}
.theme-details-one .p-30 {
  padding: 30px;
}
.theme-details-one .p-20 {
  padding: 20px;
}
.theme-details-one .p-15 {
  padding: 15px;
}
.theme-details-one .shadow4 {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.03);
}
.theme-details-one .bottom-line-dark {
  border-bottom: 1px solid #000;
}
.theme-details-one .info-pack-one {
  background: #F9F9F9;
}
.theme-details-one .info-pack-one .media {
  height: 100%;
  min-height: 400px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.theme-details-one .info-pack-one .tag {
  font-size: 14px;
  line-height: 29px;
  padding: 0 12px;
  left: 0;
  top: 15px;
  z-index: 1;
}
.theme-details-one .info-pack-one .designation {
  color: #FF6725;
}
.theme-details-one .info-pack-one table {
  background: transparent;
  margin: 28px 0 38px;
}
.theme-details-one .info-pack-one table td {
  background: transparent;
  border: none;
  padding: 11px 0;
  color: rgba(0, 0, 0, 0.5);
}
.theme-details-one .info-pack-one table td:last-child {
  font-weight: 500;
  color: #000;
}
.theme-details-one .info-pack-one .social-icon a {
  font-size: 25px;
  margin-right: 25px;
}
.theme-details-one .info-pack-one .social-icon a:hover {
  color: #FF6725;
}
.theme-details-one .video-wrapper {
  max-width: 100%;
  margin: 0 auto;
  max-height: 900px;
  overflow: hidden;
  background: #fff;
}
.theme-details-one .video-wrapper video {
  display: block;
  margin: 0 auto;
}
.theme-details-one .list-type {
  font-size: 12px;
  letter-spacing: 0.12px;
  color: #fff;
  width: 90px;
  line-height: 26px;
  border: 1px solid #000;
  background: #000;
  text-align: center;
}
.theme-details-one .price {
  font-size: 48px;
}
.theme-details-one .est-price {
  color: rgba(0, 0, 0, 0.5);
}
.theme-details-one .action-btns {
  margin: 0 -5px;
}
.theme-details-one .action-btns li {
  padding: 0 5px;
}
.theme-details-one .action-btns li a {
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-size: 1.1em;
}
.theme-details-one .action-btns li a:hover, .theme-details-one .action-btns li a:focus {
  color: #fff;
  background: #FF6725;
  border-color: #FF6725;
}
.theme-details-one .media-gallery-grid {
  padding: 0 40px;
}
.theme-details-one .media-gallery-grid .media-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: block;
}
.theme-details-one .media-gallery-grid .media-bg.sm {
  height: 360px;
}
.theme-details-one .media-gallery-grid .media-bg.lg {
  height: 560px;
}
.theme-details-one .media-gallery-grid .media-bg.xs {
  height: 170px;
}
.theme-details-one .media-gallery .carousel .carousel-indicators {
  display: block;
  margin: 0;
}
.theme-details-one .media-gallery .carousel .carousel-indicators button {
  text-indent: 0;
  margin: 0 0 25px 0;
  width: 100%;
  height: auto;
  border: none;
  opacity: 1;
}
.theme-details-one .media-gallery .carousel .carousel-indicators button:last-child {
  margin-bottom: 0;
}
.theme-details-one .media-gallery .carousel .carousel-control-next, .theme-details-one .media-gallery .carousel .carousel-control-prev {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  opacity: 1;
  color: #000;
  font-size: 25px;
  top: 30px;
  transition: all 0.3s ease-in-out 0s;
}
.theme-details-one .media-gallery .carousel .carousel-control-next:hover, .theme-details-one .media-gallery .carousel .carousel-control-prev:hover {
  background: #000;
  color: #fff;
}
.theme-details-one .media-gallery .carousel .carousel-control-prev {
  left: 30px;
}
.theme-details-one .media-gallery .carousel .carousel-control-next {
  left: 105px;
}
.theme-details-one .media-gallery .style-two .carousel-indicators button {
  text-indent: 0;
  margin: 0 25px 0 0;
  width: 190px;
  height: auto;
  border: none;
  opacity: 1;
}
.theme-details-one .media-gallery .style-two .carousel-indicators button:last-child {
  margin-bottom: 0;
}
.theme-details-one .media-gallery .style-two .img-fancy-btn {
  top: auto;
  right: auto;
  bottom: 35px;
  left: 35px;
}
.theme-details-one .media-gallery .style-two .carousel-control-next, .theme-details-one .media-gallery .style-two .carousel-control-prev {
  position: static;
  margin: 0 10px;
  border: 1px solid #000;
}
.theme-details-one .media-gallery .style-two .carousel-arrow {
  position: absolute;
  bottom: 50px;
  /*right: 40px;*/
  right:0;
  z-index: 3;
}
.theme-details-one .media-gallery .style-two .theme-sidebar-one {
  position: absolute;
  z-index: 1;
  top: 60px;
  right: 40px;
  bottom: 60px;
  width: 380px;
}
.theme-details-one .media-gallery .slick-list {
  overflow: visible;
}
.theme-details-one .media-gallery .slider-arrows {
  position: absolute;
  top: calc(50% - 37px);
  width: 100%;
  left: 0;
  z-index: 1;
}
.theme-details-one .media-gallery .slider-arrows li {
  width: 75px;
  height: 75px;
  background: #fff;
  color: #000;
  line-height: 75px;
  text-align: center;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out 0s;
}
.theme-details-one .media-gallery .slider-arrows li:hover {
  background: #000;
  color: #fff;
}
.theme-details-one .img-fancy-btn {
  position: absolute;
  right: 25px;
  top: 35px;
  background: #fff;
  line-height: 50px;
  padding: 0 25px;
  z-index: 2;
  transition: all 0.2s ease-in-out 0s;
}
.theme-details-one .img-fancy-btn:hover {
  background: #FF6725;
  color: #fff;
}
.theme-details-one .img-fancy-btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.theme-details-one .sub-title-one {
  font-size: 28px;
}
.theme-details-one .property-feature-list ul {
  margin: 0 -10px;
}
.theme-details-one .property-feature-list ul li {
  width: 20%;
  padding: 10px 10px;
  font-size: 16px;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
}
.theme-details-one .property-feature-list ul li .icon {
  height: 30px;
  margin-bottom: 15px;
}
.theme-details-one .property-feature-list ul li:before {
  content: "";
  position: absolute;
  height: 72px;
  width: 1px;
  transform: rotate(17deg) translateY(-50%);
  top: 50%;
  left: -25%;
  background: rgba(0, 0, 0, 0.22);
}
.theme-details-one .property-feature-list ul li:first-child::before {
  display: none;
}
.theme-details-one .property-feature-list .dark-bg {
  background: #000000;
}
.theme-details-one .property-feature-list .dark-bg.m-inverse {
  margin-top: -70px;
}
.theme-details-one .property-feature-list .dark-bg ul li .icon.sm {
  height: 24px;
}
.theme-details-one .property-feature-list .dark-bg ul li:before {
  background: rgba(255, 255, 255, 0.25);
}
.theme-details-one .accordion-style-two {
  background: none;
  padding: 0;
}
.theme-details-one .accordion-style-two .accordion {
  padding: 0;
}
.theme-details-one .accordion-style-two .accordion .accordion-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.theme-details-one .accordion-style-two .accordion .accordion-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.theme-details-one .accordion-style-two .accordion .accordion-button {
  padding: 20px 0;
  font-size: 22px;
}
.theme-details-one .accordion-style-two .accordion .accordion-button:after {
  width: 32px;
  height: 32px;
  font-weight: 300;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  background: #000;
  color: #fff;
}
.theme-details-one .accordion-style-two .accordion .accordion-button:not(.collapsed):after {
  line-height: 26px;
}
.theme-details-one .accordion-style-two .accordion .accordion-body {
  padding: 5px 15px 30px 0;
}
.theme-details-one .accordion-style-two.grey-bg .accordion-item {
  background: #F2F2F2;
  border: none !important;
  padding: 0 30px;
  margin-bottom: 10px;
}
.theme-details-one .accordion-style-two.full-accordion .accordion-item {
  border-top: 1px solid #000;
}
.theme-details-one .accordion-style-two.full-accordion .accordion-item:first-child {
  border-top: 1px solid #000;
}
.theme-details-one .accordion-style-two.full-accordion .accordion-item:last-child {
  border-bottom: 1px solid #000;
}
.theme-details-one .accordion-style-two.full-accordion .accordion-button {
  font-size: 26px;
  padding: 32px 0;
}
.theme-details-one .feature-list-two li {
  width: 42%;
  padding-bottom: 25px;
  display: flex;
  justify-content: space-between;
}
.theme-details-one .feature-list-two li span:nth-child(2) {
  text-align: right;
}
.theme-details-one .list-style-two li {
  width: 22%;
}
.theme-details-one .property-video-tour .image-bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.theme-details-one .property-video-tour .video-icon {
  width: 110px;
  height: 110px;
  font-size: 48px;
  background: #fff;
  color: #000;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.theme-details-one .property-video-tour .video-icon:hover {
  background: #FF6725;
  color: #fff;
}
.theme-details-one .property-floor-plan .bg-dot {
  background: url(../images/shape/shape_66.svg) no-repeat center;
  background-size: cover;
}
.theme-details-one .property-floor-plan .carousel-indicators {
  margin: 0;
  bottom: auto;
  left: auto;
  right: -35px;
  top: -90px;
}
.theme-details-one .property-floor-plan .carousel-indicators button {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  margin: 0 5px;
}
.theme-details-one .property-floor-plan .carousel-indicators button.active {
  background: #000;
}
.theme-details-one .property-floor-plan .accordion {
  background: transparent;
  padding: 0;
}
.theme-details-one .property-floor-plan .accordion-item {
  border: none;
  border-bottom: 1px solid #0D0D0D;
  border-radius: 0;
  background: transparent;
}
.theme-details-one .property-floor-plan .accordion-item:first-child {
  border-top: 1px solid #0D0D0D;
}
.theme-details-one .property-floor-plan .accordion-item .accordion-button {
  font-size: 20px;
  line-height: 1.55em;
  padding: 28px 0 28px 50px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  color: #000;
}
.theme-details-one .property-floor-plan .accordion-item .accordion-button ul li {
  display: flex;
  color: #000;
  font-size: 17px;
  margin-left: 20px;
}
.theme-details-one .property-floor-plan .accordion-item .accordion-button ul li img {
  width: 18px;
  margin-right: 5px;
}
.theme-details-one .property-floor-plan .accordion-item .accordion-button:not(.collapsed):after {
  content: "-";
  font-size: 30px;
  line-height: 24px;
}
.theme-details-one .property-floor-plan .accordion-item .accordion-button:after {
  content: "+";
  position: absolute;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  width: 28px;
  height: 28px;
  text-align: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  transform: none;
  left: 0;
  top: calc(50% - 14px);
}
.theme-details-one .property-floor-plan .accordion-item .accordion-body {
  padding: 0 0 38px 0;
}
.theme-details-one .property-floor-plan .accordion-item .accordion-body p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
}
.theme-details-one .nearby-list-item li {
  width: 26%;
  font-size: 17px;
  letter-spacing: -0.17px;
  margin-bottom: 25px;
}
.theme-details-one .nearby-list-item li span {
  float: right;
}
.theme-details-one .listing-card-one .img-gallery .tag {
  font-size: 11px;
  line-height: 23px;
  width: 80px;
}
.theme-details-one .listing-card-one .title {
  font-size: 22px;
  margin-bottom: 3px;
  letter-spacing: -0.22px;
}
.theme-details-one .listing-card-one .price {
  font-size: 22px;
  letter-spacing: -0.24px;
}
.theme-details-one .listing-card-one .action-icons li a {
  font-size: 17px;
}
.theme-details-one .similar-property .slick-dots {
  position: absolute;
  margin: 0;
  padding: 0;
  right: 15px;
  top: -60px;
}
.theme-details-one .similar-property .slick-dots li button {
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0);
}
.theme-details-one .similar-property .slick-dots .slick-active button {
  background: #000;
}
.theme-details-one .property-score .icon {
  width: 45px;
}
.theme-details-one .property-score .text {
  width: calc(100% - 45px);
  padding-left: 25px;
}
.theme-details-one .property-score .text h6 {
  font-size: 20px;
}
.theme-details-one .property-score .text p {
  color: rgba(0, 0, 0, 0.4);
}
.theme-details-one .property-location .map-banner {
  height: 485px;
}
.theme-details-one .review-panel-one .show .review.hide {
  display: flex;
}
.theme-details-one .review-panel-one .review {
  border-bottom: 1px solid #EDEDED;
  padding: 45px 0 25px;
  display: flex;
}
.theme-details-one .review-panel-one .review.hide {
  display: none;
}
.theme-details-one .review-panel-one .review .avatar {
  width: 60px;
  height: 60px;
}
.theme-details-one .review-panel-one .review .text {
  width: calc(100% - 60px);
  padding-left: 25px;
}
.theme-details-one .review-panel-one .review .text .name {
  font-size: 20px;
}
.theme-details-one .review-panel-one .review .text .time {
  color: rgba(0, 0, 0, 0.5);
}
.theme-details-one .review-panel-one .review .text .rating li:not(:first-child) {
  color: #FFCC4A;
  font-size: 13px;
  margin-left: 5px;
}
.theme-details-one .review-panel-one .review .text .rating li:first-child {
  font-size: 15px;
}
.theme-details-one .review-panel-one .review .text .review-help-btn a {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease-in-out 0s;
}
.theme-details-one .review-panel-one .review .text .review-help-btn a i {
  margin-right: 5px;
}
.theme-details-one .review-panel-one .review .text .review-help-btn a:hover {
  color: #000;
}
.theme-details-one .review-panel-one .review .text .review-gallery {
  margin: 0 -6px;
}
.theme-details-one .review-panel-one .review .text .review-gallery li {
  padding: 10px 6px 0;
}
.theme-details-one .review-panel-one .review .text .review-gallery li img {
  width: 100px;
  height: 100px;
}
.theme-details-one .review-panel-one .review .text .review-gallery li .more-img {
  background: #000;
}
.theme-details-one .review-panel-one .review .text .review-gallery li .more-img img {
  opacity: 0.4;
}
.theme-details-one .review-panel-one .review .text .review-gallery li .more-img a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.theme-details-one .review-panel-one .review .text .review-gallery li .more-img span {
  position: absolute;
  font-size: 24px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.theme-details-one .review-panel-one .load-more-review {
  background: #000;
  border: 1px solid #000;
  line-height: 60px;
  text-align: center;
  padding: 0 30px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
}
.theme-details-one .review-panel-one .load-more-review i {
  font-size: 1.5em;
  vertical-align: middle;
}
.theme-details-one .review-panel-one .load-more-review.inverse {
  color: #000;
  background: #fff;
}
.theme-details-one .review-panel-one .load-more-review.inverse:hover {
  color: #fff;
}
.theme-details-one .review-panel-one .load-more-review:hover {
  background: #FF6725;
  border-color: #FF6725;
}
.theme-details-one .review-panel-one .nice-select {
  width: 126px;
  line-height: 33px;
  height: 35px;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 15px;
  letter-spacing: -0.15px;
}
.theme-details-one .review-form .bg-dot {
  background: url(../images/shape/shape_66.svg) no-repeat center;
  background-size: cover;
}
.theme-details-one .agent-property-listing .filter-nav-one .isotop-menu-wrapper {
  margin: 0 -6px;
}
.theme-details-one .agent-property-listing .filter-nav-one .isotop-menu-wrapper li {
  border-radius: 0;
  border: 1px solid #000;
  font-size: 14px;
  padding: 0 18px;
  margin: 0 6px 10px;
}
.theme-details-one .agent-property-listing .filter-nav-one .isotop-menu-wrapper li.is-checked {
  border-color: #FF6725;
  background: #FF6725;
  color: #fff;
}

.theme-sidebar-one.dot-bg {
  background: url(../images/shape/shape_65.svg) no-repeat center;
  background-size: cover;
}
.theme-sidebar-one .btn-nine {
  font-size: 14px;
}
.theme-sidebar-one .agent-info .avatar {
  width: 100px;
  height: 100px;
}
.theme-sidebar-one .agent-info .name {
  font-size: 20px;
  letter-spacing: -0.2px;
}
.theme-sidebar-one .agent-info .social-icon {
  margin: 0 -12px;
}
.theme-sidebar-one .agent-info .social-icon li {
  padding: 0 12px;
}
.theme-sidebar-one .agent-info .social-icon li a {
  font-size: 20px;
  color: #3a3850;
  transition: all 0.3s ease-in-out 0s;
}
.theme-sidebar-one .agent-info .social-icon li a:hover {
  color: #FF6725;
}
.theme-sidebar-one .agent-info .divider-line {
  border-top: 1px solid #000;
}
.theme-sidebar-one .agent-info .divider-line li {
  font-size: 16px;
  padding-top: 22px;
}
.theme-sidebar-one .agent-info .divider-line li span {
  float: right;
  font-weight: 500;
  color: #000;
}
.theme-sidebar-one .agent-info .divider-line li span:hover a {
  text-decoration: underline;
}
.theme-sidebar-one .feature-listing .listing-card-one .btn-four {
  width: 35px;
  height: 35px;
  font-size: 1em;
}
.theme-sidebar-one .feature-listing .carousel-indicators {
  margin: 0;
  bottom: auto;
  left: auto;
  right: -3px;
  top: -58px;
}
.theme-sidebar-one .feature-listing .carousel-indicators button {
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  margin: 0 3px;
}
.theme-sidebar-one .feature-listing .carousel-indicators button.active {
  background: #000;
}
.theme-sidebar-one .agent-finder .input-box-one {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #000;
}
.theme-sidebar-one .agent-finder .input-box-one .label, .theme-sidebar-one .agent-finder .input-box-one .nice-select, .theme-sidebar-one .agent-finder .input-box-one .type-input {
  padding: 0;
}
.bg-gray-100 {
    background: var(--bs-gray-100);
}

.mr-10 {
    margin-right:10px;
}

/*---==================
    07. Team css 
=================----*/
.single-team-item {
  border-radius: 12px;
}
.single-team-item:hover .member-img .hover-content, .single-team-item:hover .member-img .hover-overlay {
  visibility: visible;
  opacity: 1;
}
.single-team-item:hover .member-img .hover-content ul.social-link {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.single-team-item .member-img {
  position: relative;
  overflow: hidden;
}
.single-team-item .member-img img {
  width: 100%;
  border-radius: 12px;
}
.single-team-item .member-img .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: rgba(28, 35, 31, 0.2);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.single-team-item .member-img .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.single-team-item .member-img .hover-content ul.social-link {
  background-color: #63AC45;
  padding: 10px 15px;
  border-radius: 5px;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: all 0.5s ease-out 0s;f
  transition: all 0.5s ease-out 0s;
}
.single-team-item .member-img .hover-content ul.social-link li {
  margin-left: 12.5px;
  margin-right: 12.5px;
}
.single-team-item .member-img .hover-content ul.social-link li a {
  color: #fff;
}
.single-team-item .member-info {
  padding-top: 30px;
}
.single-team-item .member-info h4.title {
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 5px;
}



/* Top Bar */
.top-bar {
  background-color: var(--secondary-color);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.top-bar .top-left li {
  font-size: 14px;
  color: #fff;
  display: inline-block;

  margin: 0;
  padding-top: 7px;
  padding-bottom: 7px;
}

.top-bar .top-left li a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}
.top-bar .top-social {
  padding: 7px 20px;
}
.top-bar .top-social li {
  display: inline-block;
  margin-left: 13px;
}
.top-bar .top-social li:first-child {
  margin-left: 0;
}
.top-bar .top-social li a {
  margin-left: 10px;
  color: #fff;
}
.top-bar .top-social li a:hover {
  color: #ddd;
}
@media (max-width: 767px) {
 
  .top-bar .top-left li,
  .top-bar .top-left li:first-child {
    border: none;
  }
  .top-bar .top-left li {
    padding-left: 0;
    padding-right: 20px;
  }
  
  .theme-sidebar-one  {
      margin-top:30px;
  }
}

.bg-slider {
    -webkit-animation: slide 24s linear infinite;
    animation: slide 24s linear infinite;
}


@-webkit-keyframes slide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.section-title span.sub-title {
    margin-bottom: 15px;
}

.sub-title {
    font-size: 20px;
    line-height: 0.9;
    font-weight: 500;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px){
.section-title h2 {
    font-size: 36px;
}
}

.section-title h2 span.thin {
    font-weight: 200;
    display: initial;
}

.mb-45 {
    margin-bottom: 45px;
}

.sub-title span.number {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sub-title span.number:after {
    content: "";
    width: 95px;
    height: 1px;
    background-color: #1C231F;
    margin: 0 25px;
}

.d-grid {
    display:grid;
}

.project-filter-wrapper {
    justify-self: center;
  align-self: center;
}