/*=============================
	1. Google Fonts
===============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,400;1,500&display=swap');

/*=============================
	1. Variable CSS
===============================*/

/* @font-face {
    font-family: 'Montserrat Static';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://maitland.agency/wp-content/uploads/2024/11/Montserrat-Regular.eot');
	src: url('https://maitland.agency/wp-content/uploads/2024/11/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
		url('https://maitland.agency/wp-content/uploads/2024/11/Montserrat-Regular.woff2') format('woff2'),
		url('https://maitland.agency/wp-content/uploads/2024/11/Montserrat-Regular.woff') format('woff'),
		url('https://maitland.agency/wp-content/uploads/2024/11/Montserrat-Regular.ttf') format('truetype'),
		url('https://maitland.agency/wp-content/uploads/2024/11/Montserrat-Regular.svg#MontserratStatic') format('svg');
} */

:root {
    --tg-body-font-family: "Poppins", sans-serif;
    --tg-heading-font-family: "Poppins", sans-serif;
    --tg-primary-color: #ec008c;
    --tg-secondary-color: #0a0c00;
    --tg-body-font-color: #0a0c00;
    --tg-heading-font-color: #0a0c00;
    --tg-paragraph-color: #0a0c00;
    --tg-body-font-size: 16px;
    --tg-body-font-weight: 400;
    --tg-heading-font-weight: 800;
    --tg-body-line-height: 1.66;
    --tg-heading-line-height: 1.2;
    --icon-font: "Font Awesome 5 Free";
    --tg-blue: #73cee2;
    --tg-orange: #f5821f;
    --tg-yellow: #fff200;
    --tg-white: #ffffff;
    --tg-gray: #f6f5f3;
    --facebook: #3b5998;
    --twitter: #00acee;
    --linkedin: #1976d2;
    --pinterest: #3b5998;
    --youtube: #c4302b;
    --skype: #00aff0;
}
body {
    font-family: var(--tg-body-font-family);
    font-weight: var(--tg-body-font-weight);
    font-size: var(--tg-body-font-size);
    line-height: var(--tg-body-line-height);
    color: var(--tg-body-font-color);
    font-style: normal;
}
img,
.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}
.f-left {
    float: left;
}
.f-right {
    float: right;
}
.fix {
    overflow: hidden;
}
.space{
    padding: 80px 0;
}
.bg-theme{
    background: var(--tg-primary-color);
}
.outline-text{
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}
.outline-text-black{
      -webkit-text-stroke: 2px #ec008c;
      color: transparent;
      font-size: 65px;
}
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(--tg-primary-color);
    text-decoration: none;
}
a,
button {
    color: var(--tg-primary-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(--tg-heading-font-family);
    color: var(--tg-heading-font-color);
    margin-top: 0px;
    margin-bottom: 0.7rem;
    font-style: normal;
    line-height: var(--tg-heading-line-height);
    font-weight: var(--tg-heading-font-weight);
    text-transform: inherit;
}
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(--tg-body-font-size);
    font-weight: var(--tg-body-font-weight);
    line-height: var(--tg-body-line-height);
    color: var(--tg-paragraph-color);
    margin-bottom: 15px;
}
hr {
    border-bottom: 1px solid var(--tg-primary-color);
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}
label {
    color: var(--tg-body-font-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}
*::-moz-selection {
    background: var(--tg-primary-color);
    color: #0a0c00;
    text-shadow: none;
}
::-moz-selection {
    background: var(--tg-primary-color);
    color: #0a0c00;
    text-shadow: none;
}
::selection {
    background: var(--tg-primary-color);
    color: #0a0c00;
    text-shadow: none;
}
*::-moz-placeholder {
    color: var(--tg-body-font-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
}
*::placeholder {
    color: var(--tg-body-font-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
}
.theme-overlay {
    position: relative;
}
.theme-overlay::before {
    background: var(--tg-primary-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(--tg-primary-color);
}

/* Bootstrap 5 */
.container {
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    --bs-gutter-x: 30px;
}
.gutter-24 {
    --bs-gutter-x: 24px;
}
.row.g-0 {
    --bs-gutter-x: 0;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}

/*=============================
	1. Button style
===============================*/
.btn {
    user-select: none;
    -moz-user-select: none;
    background: var(--tg-primary-color) none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    color: var(--tg-heading-font-color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 28px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    font-family: var(--tg-heading-font-family);
}
.link-effect {
    position: relative;
    overflow: hidden;
    display: block;
    height: 24px;
    line-height: normal;
}
.link-effect .effect-1 {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    top: 0%;
    transition: 0.3s;
    gap: 10px;
}
.link-effect:hover .effect-1 {
    top: 100%;
}
.btn:hover .link-effect .effect-1 {
    top: -100%;
}
.breadcrumb > .active {
    color: var(--tg-primary-color);
}

/* scrollUp */
.scroll-top {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: -10%;
    right: 20px;
    font-size: var(--tg-body-font-size);
    border-radius: 0;
    z-index: 99;
    color: var(--tg-secondary-color);
    text-align: center;
    cursor: pointer;
    background: var(--tg-primary-color);
    transition: 1s ease;
    border: none;
    border-radius: 50%;
}
.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(--tg-secondary-color);
    color: var(--tg-white);
}

/*=============================
	02. Header
===============================*/
#header-fixed-height.active-height {
    display: block;
    height: 90px;
}
.custom-container {
    max-width: 1670px;
}
.transparent-header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
}
.menu-area {
    /* background: var(--tg-secondary-color); 
    padding: 0 50px;
    padding-top: 20px;
    padding-bottom: 20px;*/
	position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 99;
    background:transparent;
	padding-top:15px;
}
.menu-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.menu-nav .btn{
    border-radius: 50px;
    height: 50px;
    width: 50px;
    text-align: center;
    padding: 0 15px;
    gap: 0;
    background: var(--tg-white);
    color: var(--tg-primary-color);
    rotate: -45deg;
	visibility:hidden;
}
.page-template-temp-home-page .menu-nav .btn{visibility:visible}
.home_projects_slide  .slider-navigation {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.home_projects_slide  .swiper-button-prev,
.home_projects_slide  .swiper-button-next {
    position: static !important;
    width: 40px;
    height: 40px;
    margin: 0;
    background: var(--tg-primary-color);
    border-radius: 50%;
    color: #fff;
}

.home_projects_slide .swiper-button-prev::after,
.home_projects_slide .swiper-button-next::after {
    font-size: 15px;
    font-weight: 700;
}
.home_projects_slide .swiper-button-prev:hover,
.home_projects_slide .swiper-button-next:hover {
	background:#000;
}
.menu-nav .btn:hover,.menu-area .mobile-nav-toggler:hover{
    background-color: var(--tg-primary-color);
    color: var(--tg-white);
}
.logo img {
    /* max-height: 54px; */
}
.navbar-wrap {
    display: flex;
    flex-grow: 1;
}
.navbar-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0;
    margin: 0 auto;
}
.navbar-wrap ul li {
    list-style: none;
    display: block;
    position: relative;
}
.navbar-wrap ul li a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--tg-white);
    padding: 44px 22px;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
    font-family: var(--tg-heading-font-family);
}
.navbar-wrap > ul > li.active > a,
.navbar-wrap > ul > li:hover > a {
    color: var(--tg-primary-color);
}
.main-menu .navigation li.menu-item-has-children .dropdown-btn {
    display: none;
}
.header-action > ul {
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.header-action > ul li {
    position: relative;
    margin-left: 30px;
}
.header-action ul li:first-child {
    margin-left: 0;
}
.header-action .header-btn .btn {
    color: var(--tg-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(--tg-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;
    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.4;
    font-weight: 500;
    color: #5d5d5d;
    text-transform: capitalize;
    -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;
}
.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(--tg-secondary-color);
    -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 rgb(108 108 108 / 10%);
    box-shadow: 0 10px 15px rgb(108 108 108 / 10%);
    border-radius: 0;
}

/*=============================
	04. Mobile Menu
===============================*/
.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--tg-white);
    margin-right: 30px;
    top: 15px;
}
.nav-logo img {
    max-height: 42px;
}
.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(--tg-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 {
	margin-top: 80px;
    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: 16px;
    font-weight: 700;
    color: var(--tg-heading-font-color);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}
.mobile-menu .navigation li ul li > a {
    font-size: 16px;
    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: #292b37;
    background: var(--tg-gray);
    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(--tg-primary-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(--tg-heading-font-color);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid var(--tg-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(--tg-primary-color);
    background: var(--tg-primary-color);
}
.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 42px;
    color: var(--tg-primary-color);
    /* display: none; */
    margin-top: 0;
    padding: 5px;
    border-radius: 50px;
    background: var(--tg-white);
    width: 50px;
    height: 50px;
    text-align: center;
}
/*=============================
	04. Banner
===============================*/

.home-slider-swiper .swiper-slide:before, .banner-area.inner-banner:before {
    content: '';
    background: #0404049e;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
 
.home-slider-swiper .swiper-slide{
	min-height:550px;
    padding-top: 50px;
	justify-content: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ec008c;
    position: relative;
    display: flex;
    align-items: center;}

.home-slider-swiper .swiper-button-next, .home-slider-swiper .swiper-button-prev{
	color:#fff; font-size:15px
}
.home_projects_slide  .swiper-pagination-bullet-active {background:#ec008c}
.home-slider-swiper  .swiper-pagination-bullet-active{
	background:#fff;
}
@media (min-width: 768px) {
    .home-slider-swiper  .swiper-pagination {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .home-slider-swiper  .swiper-button-prev,
    .home-slider-swiper .swiper-button-next {
        display: none;
    }
}
.banner-area.inner-banner{
    min-height: 400px;
    padding-top: 50px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ec008c;
	position:relative;
	justify-content:center;
	display: flex;
    align-items: center;
}
 
.banner-content {
    text-align: center;
}
.single-post .banner-content{max-width: 80%;margin: 0 auto;}
.single-post .banner-content .title {font-size: 42px;}
.banner-content .title {
    margin-bottom: 12px;
    color: #f6f5f3;
    font-size: 60px;
    font-weight: 900;
/*     letter-spacing: -3px; */
    text-transform: uppercase;
}
.banner-content p {
    margin-bottom: 135px;
    color: #f6f5f3;
    font-size: 24px;
    letter-spacing: -0.48px;
}
.banner-img {
    display: flex;
    align-items: flex-end;
}
.banner-img img:nth-child(1) {
    margin-right: -36px;
    z-index: -1;
}
.banner-img img:nth-child(3) {
    margin-left: -36px;
    z-index: -1;
}
.banner-shape img {
    position: absolute;
    left: 16%;
    bottom: 40%;
}
.rightToLeft {
    -webkit-animation-name: rightToLeft;
    animation-name: rightToLeft;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes rightToLeft {
    0% {
        transform: translateX(-40px);
    }
    50% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(-40px);
    }
}

/*=============================
	04. Features
===============================*/
.features-area {
    padding: 80px 0 80px;
}
.section-title .title {
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 900;
    /* letter-spacing: -1.8px; */
    line-height: 1;
    text-transform: uppercase;
}
.section-title p {
    margin-bottom: 0;
    margin-top: 20px;
}
.section-text p {
    /* margin-bottom: 0; */
}
.features-item {
    background: var(--tg-gray);
    margin-bottom: 25px;
}
.features-content {
    padding: 20px 35px 45px;
}
.features-content .title {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: -0.72px;
    font-weight: 600;
}
.features-content p {
    margin-bottom: 0;
}
.features-content-two .title {
    font-size: 24px;
}
.video-wrap {
    width: 100%;
    height: 720px;
}
.video-wrap iframe {
    width: 100%;
    height: 100%;
}

/*=============================
	04. count
===============================*/
.demo-area {
    background: var(--tg-primary-color);
    padding: 80px 0 80px;
    margin-top: 0;
}
.demo-area .row {
    --bs-gutter-x: 80px;
}
.demo-item {
    text-align: center;
    margin-bottom: 80px;
}
.demo-img {
    margin-bottom: 20px;
}
.demo-img img {
    border: 1px solid rgba(10, 12, 0, 0.2);
}
.count {
    margin-bottom: 25px;
    font-size: 120px;
    line-height: 0.8;
    font-weight: 600;
    color: #1601ac;
}
.demo-content .title {
    color: var(--tg-heading-font-color);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
}
.demo-content .title a:hover {
    color: var(--tg-heading-font-color);
}
.demo-item:hover .demo-img img {
    transform: translateY(5px);
}

/*=============================
	04. elementor
===============================*/
.page-template-temp-team .teams-row .features-area:first-child{ background:var(--tg-primary-color) !important}
.page-template-temp-team .teams-row .features-area:nth-child(3){background:var(--tg-orange) !important}
.feature-card {
    background: var(--tg-gray);
    padding: 40px 36px;
}
.wt-team-thumb img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    /* transform: scale(0); */
    transition: 0.6s ease-in-out;
    margin-bottom: 20px;
    border: 4px solid #ec008c;
}
.elementor-area {
    padding: 140px 0;
}
.elementor-content p {
    margin-bottom: 35px;
    width: 80%;
}
.elementor-content .list-wrap li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--tg-heading-font-family);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.elementor-content .list-wrap li:last-child {
    margin-bottom: 0;
}
.elementor-img {
    position: relative;
    padding-bottom: 42px;
}
.elementor-img img:nth-child(2) {
    position: absolute;
    left: 36%;
    bottom: 0;
    box-shadow: 0px 24px 40px 0px rgba(10, 12, 0, 0.2);
}

/*=============================
	04. Device
===============================*/
.device-item {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}
.page-template-temp-services .device-item::before{display:none}
.device-item::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 170px;
    background: var(--tg-heading-font-color);
}
.device-item-wrap .row [class*="col-"]:nth-child(4) .device-item::before {
    display: none;
}
.device-item .icon {
    margin-bottom: 30px;
}
.device-item .content .title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}
.device-item .content .title a:hover{ color:#000}
.device-item .content p {
    margin-bottom: 0;
}
.device-img-wrap {
    position: relative;
    text-align: center;
}
.device-img-wrap img:not(:nth-child(3)) {
    position: absolute;
}
.device-img-wrap img:nth-child(1) {
    left: 0;
    bottom: 40px;
    z-index: 1;
}
.device-img-wrap img:nth-child(2) {
    left: 23%;
    bottom: -85px;
    z-index: 2;
}
.device-img-wrap img:nth-child(3) {
    margin-bottom: -75px;
}
.device-img-wrap img:nth-child(4) {
    right: 0;
    bottom: -50px;
}

/*=============================
	04. inner-demo
===============================*/
.inner-demo-area {
    padding: 80px 0 80px;
    background: var(--tg-body-font-color);
    overflow: hidden;
}
.section-title.white-title p,
.section-title.white-title .title {
    color: var(--tg-gray);
}
.section-title .count-two {
    color: var(--tg-primary-color);
}
.inner-slider-one {
    margin: 0 -80px 0 -80px;
}
.inner-slider-one .inner-demo-item img{height:370px; width:100%; object-fit:cover}
.inner-slider-two {
    margin: 0 -334px 0 -334px;
}
.inner-demo-item {
    margin-bottom: 40px;
}
.inner-demo-item img, .portfolio-img img{
    border-radius: 30px;
}
/*=============================
	04. plugin
===============================*/
.plugin-area {
    padding: 140px 0 115px;
    background: var(--tg-gray);
}
.plugin-item {
    text-align: center;
    background: var(--tg-white);
    padding: 40px 25px 30px;
    margin-bottom: 25px;
    transition: 0.3s linear;
}
.plugin-item:hover {
    transform: translateY(-5px);
}
.plugin-icon {
    margin-bottom: 40px;
}
.plugin-content .title {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.5;
    text-transform: capitalize;
}

/*=============================
	04. Portfolio
===============================*/
.portfolio-area {
    padding: 80px 0 80px;
    background: var(--tg-blue);
}
.portfolio-area .project-content{
	column-count:2;
}
.portfolio-area .row:nth-child(2){
	flex-direction: row-reverse;
}
.portfolio-area .row:nth-child(2) .portfolio-content {
	margin-left:0;
	margin-right:55px;
}
.portfolio-img {
    position: relative;
    /* padding-top: 102px; */
}
.portfolio-img img{height:330px; object-fit:cover;}
.portfolio-img img:nth-child(2) {
    position: absolute;
    left: 100px;
    top: 0;
    box-shadow: 0px 24px 40px 0px rgba(10, 12, 0, 0.2);
}
.portfolio-content {
    margin-left: 55px;
}
.portfolio-content p {
    /* margin-bottom: 0; */
}

/*=============================
	04. blog
===============================*/

.link-btn {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--title-font);
    display: inline-block;
    line-height: .8;
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--title-color);
    display: inline-flex;
    gap: 10px;
    text-decoration: none
}

.link-btn i {
    font-size: .9rem
}

.link-btn:after,.link-btn:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--title-color);
    transition: all .4s ease
}

.link-btn:after {
    width: 0;
    left: 0;
    transition: all .8s ease
}

.link-btn:hover {
    color: var(--title-color)
}

.link-btn:hover:before {
    width: 0
}

.link-btn:hover:after {
    width: 100%
}

.link-btn:hover .effect-1 {
    top: -100%
}

.link-btn.style2 {
    font-weight: 500;
    font-family: var(--body-font);
    color: var(--title-color);
    display: inline-flex;
    text-transform: capitalize
}

.link-btn.style2:before {
    background-color: var(--title-color);
    bottom: -3px;
    left: 0;
    height: 1px;
    width: 100%
}

.link-btn.style2:hover {
    color: var(--theme-color)
}
.link-btn:after, .link-btn:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--title-color);
    transition: all .4s ease;
}
.link-btn.style2:hover:before {
    background-color: var(--theme-color);
    width: calc(100% - 55px)
}

.link-btn.text-theme:after,.link-btn.text-theme:before {
    background: var(--theme-color)
}

.link-btn.text-theme img {
    filter: brightness(99)
}
.blog-area {
    /* padding: 0 0 140px; */
}
.blog-content {
    /* margin-right: 110px; */
}
.blog-content p {
    margin-bottom: 0;
}
.blog-img {
    position: relative;
    text-align: right;
}
.blog-img img:nth-child(2) {
    position: absolute;
    box-shadow: 0px 24px 40px 0px rgba(10, 12, 0, 0.2);
    left: 0;
    bottom: 60px;
}

/*=============================
	04. review
===============================*/
.review-area {
    background: var(--tg-gray);
    padding: 80px 0 80px;
}
.customer-review-wrapper {
    position: relative;
    overflow: hidden;
    height: 650px;
}
.customer-review-wrapper::before,
.customer-review-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 62px;
    width: 100%;
    background: linear-gradient(0deg, #f6f5f3 0%, rgba(246, 245, 243, 0) 100%);
    z-index: 10;
}
.customer-review-wrapper::before {
    bottom: auto;
    top: 0;
    background: linear-gradient(180deg, #f6f5f3 0%, rgba(246, 245, 243, 0) 100%);
}
.review-item-wrap {
    animation: friskTestimonialScroll 30s linear infinite;
    transition: all 0.5s ease-in;
    animation-duration: 30s;
}
.review-item-wrap:hover {
    animation-play-state: paused;
}
@keyframes friskTestimonialScroll {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}
.review-item {
    background: var(--tg-white);
    padding: 40px 35px 25px;
    margin-bottom: 25px;
}
.review-item .rating {
	color:var(--tg-primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 18px;
}
.review-item .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.review-item .title span {
    font-family: var(--tg-body-font-family);
    font-weight: 400;
}
.review-item p {
    margin-bottom: 40px;
    font-size: 14px;
}
.review-item > span {
    color: rgba(10, 12, 0, 0.6);
    display: block;
    font-size: 15px;
    border-top: 1px solid #cececc;
    padding-top: 10px;
    font-weight: bold;
}

/*=============================
	04. footer
===============================*/
/* Newsletter Wrapper */
.newsletter-form {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

/* Email Input */
.newsletter-form input[type="email"] {
  	 width: 100%;
  	 padding: 14px 60px 14px 18px; /* space for button */
  	 font-size: 16px;
  	 border: 1px solid #ddd;
  	 border-radius: 16px;
  	 outline: none;
  	 color: #fff;
}
.newsletter-form input[type="submit"]::before {
    content: "\f1d8"; /* paper plane */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.newsletter-form input[type="email"]:focus {
    border-color: #ec008c;
}
.newsletter-form input[type="email"]::placeholder {
    color: #9ca3af; 
	font-size: 13px;
    opacity: 1;     
}

.newsletter-form input[type="email"]::-webkit-input-placeholder {
    color: #9ca3af;
	font-size: 13px;
}

.newsletter-form input[type="email"]::-moz-placeholder {
    color: #9ca3af;
    opacity: 1;
	font-size: 13px;
}

.newsletter-form input[type="email"]:-ms-input-placeholder {
    color: #9ca3af;
	font-size: 13px;
}

.newsletter-form input[type="email"]:focus::placeholder {
    color: #cbd5e1; /* lighter grey */
}

.newsletter-form input[type="submit"] {
    position: absolute;
    top: 30%;
    right: 6px;
    transform: translateY(-50%);
    padding: 10px 11px;
    background-color: #ec008c;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
    width: auto;
    height: auto;
}


.newsletter-form input[type="submit"]:hover {
    background-color: #084298;
}
@media (max-width: 480px) {
    .newsletter-form input[type="submit"] {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
    }

    .newsletter-form input[type="email"] {
        padding-right: 18px;
    }
}

.wpcf7 form .wpcf7-response-output {
    margin: 15px 0 0;
    padding: 10px;
    font-size: 14px;
}
.footer-area {
    background: var(--tg-secondary-color);
    position: relative;
    z-index: 1;
}
.footer-content {
    text-align: center;
    padding: 200px 0 200px;
}
.footer-content .title {
    color: var(--tg-gray);
    margin-bottom: 20px;
    font-size: 100px;
    letter-spacing: -3px;
    font-weight: 600;
}
.footer-content p {
    margin-bottom: 60px;
    color: var(--tg-gray);
}
.footer-content .shape img {
    position: absolute;
    left: 33%;
    bottom: 19%;
    z-index: -1;
}
.marquee-wrap {
    background: #1601ac;
    padding: 31px 0;
}
.marquee-wrap .marquee__group .m-item {
    margin-right: 25px;
    display: inline;
}
.marquee-wrap .marquee__group .m-item a {
    color: var(--tg-gray);
    font-size: 36px;
    font-weight: 600;
}
.marquee-wrap .marquee__group .m-item a i {
    color: var(--tg-primary-color);
    margin-right: 20px;
}

.demo-img a {
    display: block;
    position: relative;
    overflow: hidden;
}
.new-demo {
    position: absolute;
    left: -67px;
    top: 35px;
    background: #1701ac;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    z-index: 2;
    padding: 12px 70px;
    transform: rotate(-45deg);
    line-height: 1;
}

.accordion-card {
    transition: .4s ease-in-out;
    overflow: hidden;
    background: transparent;
    border-bottom: 2px solid var(--tg-body-font-color);
    border-radius: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    justify-content: space-between;
    gap: 20px
}

.accordion-card:first-child {
    border-top: 2px solid var(--tg-body-font-color)
}

.accordion-card .accordion-header {
    flex: none;
}
.accordion-card:hover {opacity:0.3}
.accordion-card:hover  .accordion-button:after{right: 20px;}
.accordion-card .accordion-button {
    font-size: 24px;
    font-weight: 600;
    /* font-family: var(--title-font); */
    color: var(--tg-body-font-color);
    border: 0;
    background-color: transparent;
    padding: 0;
    gap: 10px;
    margin-bottom: 0;
    text-align: left;
    transition: .3s;
    align-items: flex-start;
    position: inherit;
    outline: 0;
    box-shadow: none;
}

.accordion-card .accordion-button:after {
    content: "\f068";
    height: 40px;
    width: auto;
    border-radius: 7px;
    line-height: 38px;
    background: transparent;
    border: 0;
    font-family: var(--icon-font);
    color: var(--tg-body-font-color);
    font-weight: 900;
    font-size: 16px;
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 28px;
    right: 0;
    transition: .3s ease-in-out
}

.accordion-card .accordion-button.collapse:after {
    content: "-";
    transform: rotate(0)
}

.accordion-card .accordion-button .faq-number {
    font-size: 23px;
    font-weight: 600;
    margin-right: 40px
}

.accordion-card .accordion-button:focus {
    outline: none;
    box-shadow: none
}

.accordion-card .accordion-button:not(.collapsed):after {
    content: "\f054";
    transform: rotate(0)
}

.accordion-card .accordion-collapse {
    border: none;
    position: relative
}

.accordion-card .accordion-body {
    border-radius: 0;
    background-color: transparent;
    border: none;
    padding: 2px 60px 0 0;
    margin-top: -.5em;
    max-width: 365px
}

.accordion-card .accordion-body p {
    margin-bottom: -.3em;
    font-weight: 400;
    font-size: 19px;
}

.accordion-card:last-child {
    margin-bottom: 0
}

.blog-meta {
    display: block;
    margin-top: -.4em;
    margin-bottom: 12px;
    font-size: 13px;
    color: #8f8a8a;
}

.blog-meta a,.blog-meta span {
    display: inline-block;
    position: relative;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--title-color);
    margin-right: 0
}

.blog-meta a~a,.blog-meta a~span,.blog-meta span~a,.blog-meta span~span {
    margin-left: 22px
}

.blog-meta a~a:after,.blog-meta a~span:after,.blog-meta span~a:after,.blog-meta span~span:after {
    content: "";
    height: 4px;
    width: 4px;
    background-color: var(--body-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -15px;
    margin-top: -3px
}

.blog-meta a i,.blog-meta span i {
    margin-right: 8px;
    color: var(--theme-color)
}

.blog-meta a:last-child,.blog-meta span:last-child {
    margin-right: 0!important;
    padding-right: 0
}

.blog-meta span a {
    margin-right: 0!important
}

.blog-meta a:hover {
    color: var(--title-color)
}

.blog-card {
    background: transparent;
    position: relative;
    border-radius: 0;
    display: block
}

.blog-card .blog-title {
    /* font-weight: 600; */
    /* color: var(--title-color); */
    margin-bottom: 17px;
    font-size: 19px;
}

.blog-card .blog-title a {
    transition: .5s ease-in-out;
    /* color: var(--title-color); */
}

.blog-card .blog-title a:hover {
    color: var(--title-color)
}

.blog-card .blog-img {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 3;
    border-radius: 0
}

.blog-card .blog-img img {
    max-width: 100%;
    border-radius: 0;
    transform: scale(1.04);
    transition: .4s ease-in-out;
    height: 250px;
}

.blog-card .blog-content {
    border-radius: 0;
    position: relative;
    z-index: 2;
    padding-top: 20px;
	padding-bottom:20px;
    transition: .4s
}

.blog-card:hover .blog-img img,.blog-card:hover .post-img img {
    transform: scale(1.04) translateX(6px)
}

@media(max-width: 1199px) {
    .blog-card .blog-title {
        font-size:20px
    }
}

@media(max-width: 767px) {
    .blog-card .blog-img img {
        width:100%
    }
}

.blog-card.style2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg,rgba(10,12,0,0),#0a0c00),transparent 50%/cover no-repeat;
    transition: all .4s;
    z-index: 3
}

.blog-card.style2 .blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 40px 36px;
    --title-color: #fff;
    opacity: 1;
    transition: .4s
}

.blog-card.style2 .blog-content .blog-title {
    letter-spacing: -.48px
}

.blog-card.style2 .link-btn img {
    filter: brightness(999) grayscale(9)
}

.blog-card.style2 .blog-meta a~a:after,.blog-card.style2 .blog-meta span~a:after,.blog-card.style2 .blog-meta span~span:after {
    background: var(--title-color)
}

@media(max-width: 1399px) {
    .blog-card.style2 .blog-content .blog-title {
        font-size:22px
    }

    .blog-card.style2 .blog-content {
        padding: 30px 26px
    }
}

@media(max-width: 1199px) {
    .blog-card.style2 .blog-content .blog-title {
        font-size:18px
    }

    .blog-card.style2 .blog-meta a,.blog-card.style2 .blog-meta span {
        font-size: 14px
    }
}

@media(max-width: 767px) {
	.portfolio-area .project-content{
		column-count:1;
	}
    .blog-card.style2 .blog-content .blog-title {
        font-size:24px
    }

    .blog-card.style2 .blog-meta a,.blog-card.style2 .blog-meta span {
        font-size: 16px
    }
}

@media(max-width: 575px) {
    .blog-card.style2 .blog-content .blog-title {
        font-size:22px
    }
}

@media(max-width: 375px) {
    .blog-card.style2 .blog-content .blog-title {
        font-size:18px
    }

    .blog-card.style2 .blog-meta a,.blog-card.style2 .blog-meta span {
        font-size: 14px
    }
}

.blog-grid-static-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px
}

.blog-grid-static-wrap .blog-grid-static {
    position: -webkit-sticky;
    position: sticky;
    top: 155px;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: auto
}

.blog-grid {
    display: flex;
    border: 0;
    background: var(--smoke-color);
    border-radius: 0
}

.blog-grid,.blog-grid .blog-img {
    position: relative;
    overflow: hidden
}

.blog-grid .blog-img {
    min-width: 302px
}

.blog-grid .blog-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    transition: .4s ease-in-out
}

.blog-grid .blog-content {
    padding: 40px;
    align-self: center
}

.blog-grid .blog-title {
    font-size: 22px;
    margin-bottom: 21px;
    margin-top: 0;
    line-height: 32px;
    font-weight: 600
}

.blog-grid .blog-title a {
    color: var(--title-color)
}

.blog-grid .link-btn {
    margin-top: 50px
}

.blog-grid:hover .blog-img img {
    transform: scale(1.1)
}

@media(max-width: 1399px) {
    .blog-grid .blog-content {
        padding:40px 30px
    }

    .blog-grid .blog-img {
        min-width: 252px
    }

    .blog-grid .link-btn {
        margin-top: 30px
    }
}

@media(max-width: 1199px) {
    .blog-grid .blog-img {
        min-width:302px
    }

    .blog-grid .link-btn {
        margin-top: 70px
    }
}

@media(max-width: 767px) {
    .blog-grid .blog-img {
        min-width:180px
    }

    .blog-grid .link-btn {
        margin-top: 0
    }

    .blog-grid .blog-content {
        padding: 30px
    }

    .blog-grid .blog-title {
        font-size: 20px;
        line-height: 30px
    }

    .blog-grid-static-wrap .blog-grid-static {
        position: static
    }
}

@media(max-width: 575px) {
    .blog-grid {
        flex-direction:column
    }

    .blog-grid .blog-content {
        align-self: flex-start
    }

    .blog-grid .blog-meta a,.blog-grid .blog-meta span {
        font-size: 16px
    }
}

@media(max-width: 375px) {
    .blog-grid .blog-title {
        font-size:18px;
        line-height: 28px
    }
}

@media(max-width: 991px) {
    .accordion-card {
        display:block
    }

    .accordion-card .accordion-body {
        margin-top: 20px;
        max-width: none
    }
}

@media(max-width: 767px) {
    .accordion-card .accordion-body {
        padding-right:0
    }
    .footer-widget .widget_title{
        margin-top: 40px;
    }
}

@media(max-width: 575px) {
    .accordion-card .accordion-button .faq-number {
        margin-right:10px;
		font-size: 19px;
    }

    .accordion-card .accordion-button {
        font-size: 19px
    }

    .accordion-card .accordion-body p {
        font-size: 16px
    }
}


.footer-wrapper {
    background: var(--smoke-color)
}

.copyright-wrap {
    padding: 22px 0
}

.widget-area {
    padding: 80px 0 40px;
}

@media(max-width: 991px) {
    .widget-area {
        padding: 50px 0 30px;
    }
}

.copyright-text {
    margin: 0;
    font-weight: 400;
    font-size: 18px
}

.copyright-text,.copyright-text a {
    color: var(--title-color)
}

.footer-menu-area {
    border-bottom: 2px solid var(--title-color);
    border-top: 2px solid var(--title-color);
    padding: 21px 0
}

.footer-menu-area .footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 15px 40px
}

.footer-menu-area .footer-menu-list li {
    display: inline-block
}

.footer-menu-area .footer-menu-list li a {
    display: block;
    position: relative;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--title-font);
    color: var(--title-color);
    text-transform: uppercase;
    letter-spacing: -.14px
}

@media(max-width: 1199px) {
    .footer-menu-area .footer-menu-list {
        gap:15px 28px
    }
}
.footer-layout5 {
    background: #0a0c00;
    --title-color: #f6f5f3;
    --body-color: #f6f5f3
}

.footer-layout5 .footer-top .footer-top-title {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-layout5 .copyright-wrap {
    border-top: 1px solid #fff;
    padding: 28px 0 30px;
}

.footer-layout5 .copyright-wrap p {
    font-size: 14px;
    /* font-weight: 600; */
    /* font-family: var(--title-font); */
    margin-bottom: 0
}

@media(max-width: 1299px) {
    .footer-layout5 .footer-top .footer-top-title {
        font-size:70px
    }
}

@media(max-width: 1199px) {
    .footer-layout5 .footer-top .footer-top-title {
        font-size:60px
    }
}

@media(max-width: 991px) {
    .footer-layout5 .footer-top .footer-top-title {
        margin-bottom:30px;
        font-size: 50px
    }
}

@media(max-width: 575px) {
    .footer-layout5 .footer-top .footer-top-title {
        font-size:40px
    }
}
.widget_meta ul, .widget_nav_menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget_nav_menu ul li{
 margin-bottom: 8px;
}
.widget_meta ul a, .widget_nav_menu ul a, .widget_nav_menu ul li{
    color: #ffffffa2;
    font-size: 15px;
    font-weight: normal;
}
.widget_nav_menu ul a:hover{
    color: #fff;
}
.footer-layout8 .copyright-wrap {
    border-top: 2px solid var(--title-color);
    padding: 28px 0
}
.footer-widget .widget_title  {
    border-bottom: none;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    position: relative;
}
  .footer-widget.widget_pages a, .footer-widget.widget_recent_entries a {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 19px;
    color: #fff;
    display: flex;
    align-items: center;
    max-width: 100%;
    width: max-content;
    background-color: transparent;
    border: none;
    position: relative;
    padding: 0;
}
.footer-layout8 .copyright-wrap p {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--title-font);
    margin-bottom: 0
}

.footer-layout9 .copyright-wrap {
    border-top: 2px solid var(--title-color);
    padding: 28px 0 53px
}

.footer-layout9 .copyright-wrap p {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--title-font);
    margin-bottom: 0
}

.form-control.style-border, .form-select.style-border, .single-select.style-border, input.style-border, select.style-border, textarea.style-border {
    background: transparent;
    border-bottom: 2px solid #333;
    border-radius: 0;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    padding: 0;
}
textarea, textarea.form-control {
    min-height: 100px;
    padding-top: 16px;
    padding-bottom: 17px;
}
.form-control::placeholder{
    color: #000;
}
.footer-top-wrap .btn{
    background: var(--tg-body-font-color);
    color: #fff;
}
textarea.form-control.style-border, textarea.style-border {
    padding-top: 12px;
}
.form-control, .form-select, .single-select, input, select, textarea {
    height: 55px;
    border: 1px solid transparent;
    /* color: var(--body-color); */
    background-color: transparent;
    font-size: 16px;
    font-weight: 300;
    width: 100%;
    /* font-family: var(--body-font); */
    transition: .4s ease-in-out;
    padding: 0 45px 0 30px;
    border-radius: 5px;
}
.form-control:focus{
    outline: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
}
.rotate-text{
    writing-mode: tb;transform: rotate(180deg);
}