/*!
Theme Name: Harmonised Ireland
Theme URI: https://starlitdevs.com/
Author: Starlit Devs
Author URI: https://starlitdevs.com/
Description: Custom Wordpress Theme.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: harmonised
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Coldpoint Refrigeration is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root{
	--primary-color: #2D4E1A;
	--primary-hover: #1c370c;
	--secondery-color: #C2DEA1;
	--secondery-hover: #a1c07d;
	--white-color: #ffffff;
    --black-color: #000000;
	--section-bg: #EEF3F6;
	--btn-color: #14152C;
	
    --body-font: "Instrument Sans", sans-serif;
}
body{
	-webkit-font-smoothing: antialiased; /* Chrome, Safari */
	-moz-osx-font-smoothing: grayscale; /* Firefox */
	margin: 0;
	padding: 0;
	font-family: var(--body-font);
	line-height: 1.9;
	font-size: 16px;
	font-weight: 400;
	color: var(--black-color);
}
.btn {
	font-size: 11px;
	padding: 20px 40px;
	font-weight: 500;
	border-radius: 40px;
	border: none;
	color: var(--white-color);
	background-color: var(--primary-color);
	transition: all .4s ease-out;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: var(--body-font);
	line-height: 1;
}
.btn:hover{
	background-color: var(--primary-hover);
	color: var(--white-color);
}
.btn-secondery {
	background-color: var(--secondery-color);
	color: var(--btn-color);
}
.btn-secondery:hover {
	background-color: var(--secondery-hover);
	color: var(--btn-color);
}
h1, h2, h3, h4, h5, h6{
	margin: 0;
	padding: 0;
	font-weight: 600;
	font-family: var(--body-font);
}
.f-13 h1 {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: uppercase;
	line-height: 1.3;
	background-color: var(--white-color);
	padding: 10px 20px;
	border-radius: 21px;
	margin-bottom: 25px;
}
h1, .f-46 h2, .h1 {
	font-size: 46px;
	line-height: 48px;
	line-height: 1;
}
h2{
	font-size: 32px;
	line-height: 1.3;
}
h3{
	font-size: 20px;
	line-height: 1.3;
}
p{
	margin: 0;
}
p:not(:last-child){
	margin-bottom: 16px;
}
img{
	max-width: 100%;
	height: auto;
}
ul, ol {
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
	transition: .4s;
}
a:focus{
	outline: none;
}
textarea, input, select {
	box-sizing: border-box;
	width: 100%;
	border: none;
	border-radius: 50px;
	padding: 10px 30px !important;
	color: var(--black-color);
	background: var(--white-color);
	font-size: 14px !important;
}
input, select, textarea {
	height: 55px;
}
input:focus, textarea:focus{
	outline: none;
}
input::placeholder, textarea::placeholder, select {
    color: var(--black-color);
	opacity: 1;
}
.bg {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.section-bg{
	background-color: var(--section-bg);
}
.p-85{
	padding: 85px 0;
}
.pt-85{
	padding-top: 85px;
}
.pb-85{
	padding-bottom: 85px;
}
.container {
	transition: .4s;
	max-width: 1294px;
	padding: 0 16px;
	margin-left: auto;
	margin-right: auto;
}
.section-title h2{
	margin-bottom: 20px;
}
.card-btn {
	margin-top: 25px;
}
.row {
	--bs-gutter-x: 12px;
}
.rounded-45 {
	border-radius: 45px;
	overflow: hidden;
}

/* Header */
.header-sec {
	left: 0;
	right: 0;
	top: 0;
	z-index: 99;
	padding: 22px 0;
	position: fixed;
	background-color: var(--white-color);
	transition: .2s;
}
.header-logo {
	margin-right: 10px;
	transition: .4s all ease;
	width: 74px;
}
.header-logo svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.admin-bar .header-sec {
	top: 32px;
}
.h-btn {
	gap: 50px;
	display: flex;
	margin-left: 10px;
}
.slicknav_nav a:hover{
	background: none;
}
.menu-trigger-wrap {
	display: none;
}

/* main-menu */
.main-menu {
	flex: 1;
}
.main-menu > ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 11px;
}
.main-menu ul li {
	display: inline-block;
	position: relative;
}
.main-menu ul li a {
	color: var(--black-color);
	font-size: 13px;
	padding: 10px 20px;
	font-weight: 400;
	display: block;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0;
	border-radius: 30px;
	transition: .6s;
}
.main-menu ul li a:hover {
	background-color: var(--section-bg);
}
.main-menu ul li.menu-item-has-children a:hover {
	background-color: var(--secondery-color);
}
.main-menu ul li ul {
	position: absolute;
	width: 260px;
	background: var(--white-color);
	text-align: left;
	left: 0;
	top: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .4s all ease;
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	margin-left: 0;
	border-radius: 20px;
	overflow: hidden;
}
.main-menu ul li ul li {
	display: block;
}
.main-menu > ul > li.menu-item-has-children::before {
	content: "";
	position: absolute;
	height: 8px;
	width: 12px;
	right: 16px;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 7.4L0 1.4L1.4 0L6 4.6L10.6 0L12 1.4L6 7.4Z' fill='%231D1B20'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	transition: .6s;
}
.main-menu > ul > li.menu-item-has-children:hover::before {
	transform: rotate(-180deg);
	top: calc(50% - 4px);
}
.main-menu > ul > li.menu-item-has-children a{
	padding-right: 36px;
}
.main-menu > ul > li.menu-item-has-children:hover::before {
	transform: rotate(-180deg);
}
.main-menu ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
}
.main-menu ul li ul li a {
	display: block;
	padding: 18px 30px !important;
	font-size: 12px;
	color: var(--black-color);
	border-radius: 0;
}
.main-menu ul li ul li ul {
	left: 100%;
	top: 0;
}
.main-menu > ul > li ul li.menu-item-has-children::before {
	font-family: 'FontAwesome';
	content: '\f105';
	position: absolute;
	right: 10px;
	top: 50%;
	color: var(--primary-color);
	font-weight: 500;
	transform: translateY(-50%);
}
.main-menu ul li ul li a:hover{
	color: var(--primary-color);
}
.main-menu ul.sub-menu > li.current_page_item > a {
	color: var(--primary-color);
}


/* mmenu */
.mm-page {
	min-height: unset;
}

.mm-menu {
	display: none;
}
.modal-backdrop.show {
	opacity: .92;
}
.menu-trigger {
	display: none;
}
/* contact */
.field-space {
	padding-bottom: 12px;
	padding-left: 6px;
	padding-right: 6px;
}
.contact-input textarea {
	height: 250px;
	border-radius: 35px;
}
.wpcf7-form-control.wpcf7-submit.has-spinner {
	max-width: 176px;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 2px;
	transition: .4s;
	border-radius: 100px;
	border: none;
	background: var(--secondery-color);
	color: var(--black-color);
	margin-top: 40px;
}
.wpcf7-form-control.wpcf7-submit.has-spinner:hover{
	background-color: var(--secondery-hover);
}
.wpcf7-spinner {
	display: none;
}
.contact-form {
	padding: 80px 30px;
}
.contact-shortcode p {
	margin-bottom: 0;
}
.contact-shortcode {
	background-color: var(--primary-color);
	padding: 50px;
	width: calc(62% - 6px);
}
.contact-form-info {
	width: calc(38% - 6px);
	padding: 50px;
}
/* banner */
.banner-content {
	padding: 76px 50px;
	border-bottom-left-radius: 0;
}
.banner-img img {
	height: 100%;
	object-fit: cover;
}
.banner-content-wrap h2 {
	margin-bottom: 25px;
}
.b-review-info {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0 45px 79px 50px;
	gap: 10px;
}
.banner-info-icon img {
	height: 25px;
	object-fit: contain;
	width: 25px;
}
.banner-info-icon {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white-color);
  border-radius: 100%;
  transition: .4s;
}
.banner-info-icon:hover {
	background-color: var(--secondery-color);
}
.banner-info {
  padding: 20px 20px 47px 35px;
}
.b-info-mt {
	margin-top: 12px;
}
.banner-info h3 {
	margin-top: 24px;
}
.b-review-text {
	margin-top: 4px;
	margin-left: 16px;
	font-size: 13px;
}
.banner-content-wrap h1 {
	margin-bottom: 25px;
}
/* service pages link */
.service-thumbnail-wrapper img {
	width: 100%;
	aspect-ratio: 1/.65;
	object-fit: cover;
	transition: 1s;
}
.service-page-link:hover .service-thumbnail-wrapper img, .service-child-page-link:hover .service-child-thumbnail-wrapper img {
	transform: scale(1.2);
}
.service-title-cover {
	position: absolute;
	bottom: 15px;
	width: calc(100% - 30px);
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8.4px);
	border-radius: 49px;
	padding: 10px 10px 10px 20px;
}
.service-link {
	background-color: var(--white-color);
	height: 50px;
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	transition: .4s;
}
.service-page-link:hover .service-link, .service-child-page-link:hover .service-link {
	background-color: var(--secondery-color);
}
.pb-12 {
	padding-bottom: 12px;
}
.mb-12 {
	margin-bottom: 12px;
}
.service-page-link a::after, .service-child-page-link a::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.service-link svg {
	transition: .4s all;
}
.service-page-link:hover .service-link svg, .service-child-page-link:hover svg, .blog-cover:hover svg, .popular-post-inner svg {
	padding-left: 1px;
}
.splide__arrow.custom-arrow.splide__arrow--next.custom-next:hover::after {
	margin-left: 2px;
}
.splide__arrow.custom-arrow.splide__arrow--prev.custom-prev:hover::after {
	margin-right: 2px;
}
.splide__arrow {
	transition: .4s;
}
.service-content {
	padding: 50px;
	width: calc(25% - 6px);
}
.service-page-link-cover {
	width: calc(75% - 6px);
}
.service-page-link {
	width: calc(50% - 6px);
}
/* portfolio */
.portfolio-thumbnail {
  width: calc(63% - 6px);
}
.portfolio-info {
	width: calc(37% - 6px);
	gap: 12px;
}
.portfolio-details {
	padding: 50px;
}
.portfolio-thumbnail img, .portfolio-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.portfolio-info-icon img {
  height: 14px;
  width: 14px;
  object-fit: contain;
}
.portfolio-info-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white-color);
	border-radius: 100px;
	height: 12px;
	width: 12px;
}
.portfolio-icon-list {
	background-color: var(--white-color);
	padding: 10px;
	transition: .4s;
	width: 34px;
}
.portfolio-icon-list:hover {
	width: auto;
}
.portfolio-icon-text {
	flex: 1;
	line-height: 1;
	transition: .4s all;
}
.portfolio-details h2 {
	margin-top: 26px;
	margin-bottom: 25px;
}
.custom-prev::after{
  content:'';
  display:inline-block;
  width:17px;
  height:15px;
  background:url("data:image/svg+xml,%3Csvg width='17' height='15' viewBox='0 0 17 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 8.36395C16.5523 8.36395 17 7.91624 17 7.36395C17 6.81167 16.5523 6.36395 16 6.36395L16 7.36395L16 8.36395ZM0.292893 6.65684C-0.0976314 7.04737 -0.0976315 7.68053 0.292892 8.07106L6.65685 14.435C7.04738 14.8255 7.68054 14.8255 8.07107 14.435C8.46159 14.0445 8.46159 13.4113 8.07107 13.0208L2.41421 7.36395L8.07107 1.7071C8.46159 1.31657 8.46159 0.683409 8.07107 0.292884C7.68054 -0.0976403 7.04738 -0.0976403 6.65685 0.292884L0.292893 6.65684ZM16 7.36395L16 6.36395L0.999999 6.36395L0.999999 7.36395L0.999999 8.36395L16 8.36395L16 7.36395Z' fill='%2314152C'/%3E%3C/svg%3E") no-repeat;
}
.custom-next::after{
  content:'';
  display:inline-block;
  width:17px;
  height:15px;
  background:url("data:image/svg+xml,%3Csvg width='17' height='15' viewBox='0 0 17 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6.36395C0.447715 6.36395 0 6.81167 0 7.36395C0 7.91624 0.447715 8.36395 1 8.36395V7.36395V6.36395ZM16.7071 8.07106C17.0976 7.68054 17.0976 7.04737 16.7071 6.65685L10.3431 0.292885C9.95262 -0.0976396 9.31946 -0.0976396 8.92893 0.292885C8.53841 0.683409 8.53841 1.31657 8.92893 1.7071L14.5858 7.36395L8.92893 13.0208C8.53841 13.4113 8.53841 14.0445 8.92893 14.435C9.31946 14.8255 9.95262 14.8255 10.3431 14.435L16.7071 8.07106ZM1 7.36395V8.36395H16V7.36395V6.36395H1V7.36395Z' fill='%2314152C'/%3E%3C/svg%3E") no-repeat;
}
.splide__arrow svg {
	display: none;
}
.splide__arrow {
	background: var(--white-color);
	height: 50px;
	opacity: 1;
	width: 50px;
	z-index: 2;
}
.splide__arrow:hover {
	background: var(--secondery-color);
	opacity: 1 !important;
}
.portfolio_slider .splide__arrows {
	width: calc(63% - 35px);
	background: #fff;
	position: absolute;
	bottom: 50px;
	left: 15px;
}
.splide__pagination__page.is-active {
	background: var(--secondery-color) !important;
	transform: scale(1);
}
.splide__pagination__page {
	background: var(--white-color);
	height: 11px;
	opacity: 1;
	width: 11px;
}
.portfolio_slider .splide__pagination {
	bottom: 15px;
	left: 15px;
	width: calc(63% - 35px);
}
.splide__pagination {
	height: 70px;
	background: rgba(255, 255, 255, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8.4px);
	border-radius: 49px;
}
.portfolio-wrapp a::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.portfolio-wrapp a {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.portfolio-icon-list{
  --circle-size:32px;
  --pill-width:120px;

  display:inline-flex;
  align-items:center;
  gap:10px;

  width:var(--circle-size);
  height:var(--circle-size);
  padding:0;                     
  border-radius:999px;
  overflow:hidden;
  white-space:nowrap;
  box-sizing:content-box;

  transition: width 320ms cubic-bezier(.22,.9,.3,1),
  padding 300ms cubic-bezier(.22,.9,.3,1);
}
.portfolio-icon-list .portfolio-info-icon{
  flex:0 0 auto;
  width:16px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.portfolio-icon-list .portfolio-info-icon img{
  display:block;
  width:14px;
  height:14px;
}
.portfolio-icon-list .portfolio-icon-text{
  opacity:0;
  transform:translateX(-6px);
  transition: opacity 200ms ease 0s, transform 200ms ease 0s;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
}
.portfolio-icon-list:hover,
.portfolio-icon-list:focus{
  width:var(--pill-width);
  padding:0 12px;
}
.portfolio-icon-list:hover .portfolio-icon-text,
.portfolio-icon-list:focus .portfolio-icon-text{
  opacity:1;
  transform:translateX(0);
}
.portfolio-icon-list .portfolio-info-icon {
	width: 100%;
}
.portfolio-icon-list:hover .portfolio-info-icon {
	width: 16px !important;
}
/* img with text */
.img-with-text-cover img {
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/.5;
}
.img-with-text {
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 485px;
	background-color: var(--white-color);
	padding: 50px;
}
/* why-choose */
.wc-thumb-img img {
	aspect-ratio: 1;
	object-fit: cover;
}
.wc-title {
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 30px);
	position: absolute;
	bottom: 15px;
	background: rgba(255, 255, 255, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8.4px);
	border-radius: 35px;
	padding: 24px 32px;
}
.wc_slider .splide__pagination {
	bottom: -80px;
}
.wc_slider .splide__arrow {
	top: unset;
	bottom: -70px;
	transform: unset;
}
.why_choose_area {
	padding-bottom: 170px;
}
/* testimonials */
.review-title {
  background-color: var(--secondery-color);
  width: calc(25% - 6px);
  padding: 50px;
}
.review-list {
	width: calc(50% - 6px);
	padding: 50px;
}
.review-cover {
	width: calc(75% - 6px);
}
.review-info {
	margin-top: 40px;
}
/* img banner */
.owner-img {
  width: calc(25% - 6px);
}
.main-img {
  width: calc(75% - 6px);
}
.main-img img {
	height: 100%;
	object-fit: cover;
}
/* faq */
.faq-question {
	padding: 13px 40px;
	cursor: pointer;
	line-height: 1.5;
	font-weight: 600;
	font-size: 16px;
}
.faq-item {
	margin-bottom: 12px;
}
.faq-answer {
	display: none;
	padding: 15px 24px;
	text-align: start;
	padding: 0px 40px 24px 40px;
}
.faq-answer ul, .faq-answer ol {
	padding-left: 20px;
}
.faq-section {
	max-width: 932px;
}
/* footer */
.footer-logo {
  width: 70px;
  margin-bottom: 35px;
}
.footer-area h5 {
  margin-bottom: 21px;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}
.footer-area a {
  color: var(--black-color);
}
.footer-menu ul {
  list-style: none;
  gap: 5px;
}
.copyright-content {
  padding-top: 28px;
  padding-bottom: 44px;
  border-top: 1px solid #EEF3F6;
}
.copyright-text a {
  color: var(--black-color);
}
.copyright-text a:hover, .footer-area a:hover {
  color: var(--primary-color);
}
/* about */
.about-intro .img-with-text {
	bottom: unset;
	top: 15px;
	left: 15px;
	width: 507px;
}
.about-intro .img-with-text-cover img {
	aspect-ratio: 1/.45;
}
.content-box {
	max-width: 928px;
	padding: 0 24px;
}
/* service-child */
.service-child-thumbnail-wrapper img {
  width: 100%;
  aspect-ratio: 1/.65;
  object-fit: cover;
  transition: 1s;
}
.service-child-title-cover {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8.4px);
  width: 350px;
  padding: 50px 15px 15px 50px;
  border-radius: 35px;
  min-height: 230px;
}
.service-child-page-link::before {
  content: "";
  position: absolute;
  inset: 0;                     
  background-color: var(--black-color, rgba(0,0,0,0.6)); 
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;         
  z-index: 1;
}
.service-child-page-link:hover::before,
.service-child-page-link:focus::before {
  opacity: 0.1;
}
.service-list-title {
	transition: .4s;
}
.service-child-page-link:hover .service-list-title {
	color: var(--white-color);
}
.sc-card-text {
	padding: 60px 50px;
}
.sc-card-img img {
	height: 100%;
	object-fit: cover;
}
.page-id-68 .img-with-text-area {
	padding-bottom: 0;
}
/* default page */
.single-content h2, .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
	margin-bottom: 16px;
	margin-top: 30px;
}
.single-content h4{
	font-size: 20px;
}
.single-content h5{
	font-size: 18px;
}
.single-content h6{
	font-size: 17px;
}
.wp-block-image {
	margin: 24px 0;
}
.single-content img {
	width: 100%;
	border-radius: 45px;
}
.single-content ul li {
	margin-bottom: 3px;
	text-align: start;
}
.wp-block-list {
	margin-bottom: 20px;
}
.single-content ul {
	margin-bottom: 16px;
}
/* portfolio page */
.portfolio-page-info {
	padding: 50px;
}
.portfolio-page-info h2 {
	margin-top: 35px;
	margin-bottom: 35px;
}
.portfolio-page-thumbnail img {
	width: 100%;
	aspect-ratio: 1/.78;
	object-fit: cover;
	transition: 1s;
}
.portfolio-btn a::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.portfolio-page-wrapp:hover .portfolio-page-thumbnail img {
	transform: scale(1.2);
}
/* portfolio-banner */
.single-banner-content h1 {
	margin-top: 24px;
}
.single-banner-content {
	padding: 50px;
}
.portfolio-logo img {
	width: 250px;
}
.portfolio-logo {
	padding: 35px 24px;
}
.single-portfolio-content {
	padding: 60px 50px;
}
.portfolio-site-img {
	max-width: 800px;
	margin-bottom: 73px;
}
.portfolio-site-link {
	background: rgba(255, 255, 255, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8.4px);
	border-radius: 49px;
	padding: 10px;
	color: var(--white-color);
}
.portfolio-site-banner {
	padding: 80px 15px 15px 15px;
}
.portfolio-site-banner a::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.portfolio-site-banner:hover .service-link {
	background-color: var(--secondery-color);
}
.blog-banner-content h1 {
	margin-top: 0;
}
.blog-content {
	padding: 50px 15px 15px 50px;
}
.meta-cat h5 {
	font-size: 13px;
	font-weight: 400;
}
.blog-date, .blog-category {
	background-color: var(--white-color);
	padding: 10px 20px;
	border-radius: 35px;
}
.blog-category {
	background-color: var(--secondery-color);
}
.blog-permalink {
	background: rgba(255, 255, 255, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8.4px);
	border-radius: 49px;
	font-size: 13px;
	font-weight: 400;
	color: var(--black-color);
	text-transform: uppercase;
	padding: 10px;
	padding-left: 30px;
}
.blog-text h2 {
	margin-top: 24px;
	margin-bottom: 24px;
}
.blog-thumb img {
	height: 100%;
	object-fit: cover;
	transition: 1s;
}
.page-numbers {
	height: 50px;
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--black-color);
	font-size: 16px;
	border-radius: 50px;
}
.blog-subtitle {
	display: flex;
}
.page-numbers.current, .prev.page-numbers, .next.page-numbers {
	background-color: var(--secondery-color);
	&:hover {
		background-color: var(--secondery-hover);
	}
}
.blog-btn a::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.blog-cover:hover img {
	transform: scale(1.2);
}
.blog-cover:hover .service-link {
	background-color: var(--secondery-hover);
}
.popular-post-inner {
	padding: 15px;
}
.popular-post-thumb img {
	width: 100%;
	aspect-ratio: 1/.84;
	object-fit: cover;
	transition: 1s;
}
.popular-post-text h3 {
	margin-top: 24px;
	margin-bottom: 24px;
}
.popular-post-text {
	margin-top: 25px;
	padding: 0 24px;
}
.popular-post-btn .service-link {
	background-color: var(--section-bg);
}
.popular-post-btn {
	justify-content: end;
}
.popular-post-inner:hover img {
	transform: scale(1.2);
}
.popular-post-inner:hover .service-link {
	background-color: var(--secondery-hover);
}
.popular-post-inner a::after, .blog-cover a::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.page-id-263 .card-btn {
	display: none !important;
}
.page-id-263 .banner-content-wrap h1 {
	margin: 0;
}
.page-id-263 .banner-content {
	border-radius: 45px;
}
.popular-post-area {
	margin-bottom: 85px;
}



/*  New */

@media (min-width: 991px) {
	.b-review-info {
		overflow: inherit;
	}
	.banner-info {
		z-index: 2;
		position: relative;
	}
	.b-review-info::before {
		position: absolute;
		background: var(--section-bg);
		width: 100px;
		height: 100px;
		content: "";
		right: -50px;
		top: 0px;
		/* clip-path: circle(25px at 0 0); */
		/* border-radius: 45px; */
		right: -100px;
		/* transform: scale(-1); */
		border-radius: 60px;
		background: white;
		z-index: 1;
	}
	.b-review-info::after {
		content: "";
		width: 90px;
		height: 90px;
		background: var(--section-bg);
		right: -90px;
		position: absolute;
		top: 0;
		border-radius: 0 60px 60px;
	}
}



/* 404 */
.error-404 h1 {
	font-size: 200px;
	line-height: 1;
	font-family: var(--body-font);
}

/* responsive */
@media all and (max-width: 1399.98px){
	h1, .f-46 h2, .h1 {
		font-size: 44px;
	}
	.banner-content-wrap br {
		display: none;
	}
	.service-content {
	padding: 44px;
}
}

@media all and (max-width: 1199.98px){
	h1, .f-46 h2, .h1 {
		font-size: 42px;
	}
	.h-btn {
		gap: 24px;
	}
	.main-menu > ul {
		gap: 0;
	}
	.banner-content {
	padding: 60px 32px;
}
.banner-info {
	padding: 20px 20px 40px 20px;
}
.b-review-info {
	padding: 0 20px 50px 20px;
}
.service-content {
	padding: 30px 19px 36px 19px;
}
.portfolio-details {
	padding: 28px;
}
.review-title {
	padding: 24px;
}
.review-list {
	padding: 32px;
}
.contact-shortcode {
	padding: 35px;
}
.contact-form-info {
	padding: 35px;
}
.sc-card-text {
	padding: 50px 40px;
}
.single-banner-content {
	padding: 35px;
}

	

}

@media all and (max-width: 991.98px){
	h1, .f-46 h2, .h1 {
	font-size: 36px;
}
.b-review-info {
	border-top-left-radius: 45px;
	border-top-right-radius: 45px;
	padding: 20px;
}
.b-badge-mt {
	margin-top: 12px;
}
.banner-content {
	padding: 50px 24px;
	border-bottom-left-radius: 45px;
}
.banner-content .btn {
	flex: 1;
	padding: 20px 20px;
}
.service-page-link-cover, .service-content {
	width: 100%;
}
.service-content {
	padding: 30px 24px 36px 24px;
	margin-bottom: 12px;
}
.portfolio-details {
	padding: 24px;
}
.portfolio-details h2 {
	margin-top: 20px;
	margin-bottom: 20px;
}
.img-with-text {
	width: 410px;
	padding: 35px;
}
.img-with-text-cover .btn {
	padding: 20px;
	flex: 1;
}
.img-with-text-cover img {
	aspect-ratio: 1/.75;
}
.review-cover, .review-title {
	width: 100%;
}
.review-wrap {
	flex-direction: column-reverse;
	gap: 12px;
}
.review-title {
	padding: 80px 24px;
}
.contact-shortcode, .contact-form-info {
	padding: 35px 24px;
}
.contact-input textarea {
	height: 200px;
}
.about-intro .img-with-text-cover img {
	aspect-ratio: 1/.7;
}
.service-child-title-cover {
	width: 280px;
	padding: 24px 10px 10px 24px;
	min-height: unset;
}
.service-child-thumbnail-wrapper img {
	aspect-ratio: 1;
}
.sc-card-text {
	padding: 35px 24px;
}
.sc-card-text .btn {
	padding: 20px;
	flex: 1;
}
.portfolio-page-info {
	padding: 35px 24px;
}
.single-banner-content {
	padding: 35px 20px;
}
.single-portfolio-content {
	padding: 35px 24px;
}
.blog-content {
	padding: 35px 15px 15px 24px;
}
.meta-cat h5 {
	font-size: 11px;
}


	/* m-menu */
	.menu-close-btn {
		position: absolute;
		top: 14px;
		right: 10px;
		z-index: 9;
		font-size: 18px;
		display: flex;
		align-items: center;
	}
	.menu-close-btn i:hover{
		color: var(--primary-color);
	}
	.mm-navbar__title span::before {
		content: "Back to ";
	}
	.mm-navbar__title span{
		text-transform: uppercase;
		font-size: 14px;
		font-weight: bold;
		color: var(--secondery-color) !important;
	}
	.mm-panel ul li a {
		font-size: 12px;
		color: var(--black-color) !important;
		text-transform: uppercase;
		font-weight: 400;
		letter-spacing: 3px;
	}
	.mm-navbar .btn {
		color: var(--secondery-color) !important;
		font-weight: bold;
	}
	.mm-navbar .btn:hover {
		color: var(--primary-color) !important;
	}
	.mm-navbars--bottom {
		border-top: none;
	}
	.mm-menu {
		z-index: 100;
		display: block;
	}
	.mm-wrapper__blocker.mm-blocker.mm-slideout{
		z-index: 99;
	}
	.mm-panels {
		background: var(--white-color);
	}
	.menu--just-title a {
		border-top: 0 solid #EAEAEA;
		padding-top: 0 !important;
	}
	.mm-navbar__title {
		text-transform: uppercase;
		font-size: 16px;
		letter-spacing: 1.6px;
	}
	.mm-listitem__text {
		font-size: 15px;
	}
	.mm-menu {
		--mm-size: 100%;
		--mm-color-background: var(--white-color);
	}
	.menu-close-btn {
		position: absolute;
		right: 10px;
		z-index: 9;
		font-size: 18px !important;
		color: var(--secondery-color) !important;
		top: 15px;
	}
	.menu-close-btn {
		font-size: 14px;
	}
	.mm-navbar__title span {
		display: none;
	}
	.mm-panel--opened .mm-navbar__title span {
		display: block;
		font-size: 0;
	}
	#menu .mm-navbar .mm-navbar__title span {
		display: none;
	}
	.mm-navbar .btn {
		color: var(--white-color) !important;
	}
	.mm-panel .mega-menu {
		position: relative !important;
	}
	.mm-panels .sub-menu li a {
		padding: 15px 20px !important;
	}
	.menu-trigger{
		display: block;
	}
	.menu-trigger a {
		flex-direction: column;
		row-gap: 6px;
		position: relative;
		z-index: 999;
		cursor: pointer;
		background-color: var(--white-color);
		border-radius: 100px;
		height: 56px;
		width: 56px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.menu-trigger span {
		display: block;
		height: 3px;
		width: 26px;
		background-color: #14152C;
		border-radius: 100px;
	}
	.main-menu {
		display: none;
	}
	.mm-panel ul li.menu-btn a{
		color: var(--white-color) !important;
	}
	.menu-btn {
		margin: 20px;
		text-align: center;
	}
	.mm-panel ul li.menu-btn a:hover{
		background-color: var(--primary-color) !important;
	}
	.mm-panel ul li.menu-btn-primary a{
		background-color: var(--primary-color) !important;
	}
	.mm-panel ul li.menu-btn-primary a:hover{
		background-color: var(--secondery-color) !important;
	}
	.menu-btn::after{
		display: none;
	}
	.h-btn {
		gap: 0;
	}
	/* menu-end */
	
}

@media all and (max-width: 782px){
	.admin-bar .header-sec {
		top: 46px;
	}
}

@media all and (max-width: 767.98px){
	.f-13 h1 {
		font-size: 11px;
	}
	h1, .f-46 h2, .h1 {
		font-size: 32px;
	}
	h2{
		font-size: 24px;
	}
	.p-85{
		padding: 45px 0;
	}
	.pt-85{
		padding-top: 45px;
	}
	.pb-85{
		padding-bottom: 45px;
	}
	.header-btn {
		display: none !important;
	}
	.rounded-45 {
	border-radius: 35px;
}
.banner-content .btn {
	width: 100%;
}
.banner-content .card-btn {
	flex-direction: column;
}
.header-logo {
	width: 54px;
}
.header-sec {
	padding: 18px 0 12px 0;
}
.banner-content {
	margin-top: 12px;
}
.banner-content {
	padding: 35px 24px;
	padding-bottom: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.card-btn {
	margin-top: 20px;
}
.banner-content-wrap h2, .f-13 h1 {
	margin-bottom: 20px;
}
.b-review-info {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 16px 24px 35px 24px;
	justify-content: center;
}
.banner-info h3 {
	margin-top: 0;
}
.banner-info {
	padding: 20px 20px 20px 35px;
	border-radius: 100px !important;
}
.b-info-mt {
	margin-top: 4px;
}
.b-badge-mt {
	margin-bottom: 8px;
}
.service-thumbnail-wrapper img {
	aspect-ratio: 1/.7;
}
.portfolio-info, .portfolio-thumbnail-mb img, .service-page-link {
	width: 100%;
}
.portfolio-area {
	padding-bottom: 105px;
}
.portfolio_slider .splide__pagination {
	bottom: -54px;
	left: 50%;
	width: 100%;
	height: auto;
	background: none;
	border: none;
	backdrop-filter: none;
	transform: translateX(-50%);
}
.portfolio_slider .splide__arrow {
	background: var(--section-bg);
}
.portfolio_slider .splide__arrows {
	width: 100%;
	position: absolute;
	bottom: -45px;
	left: 0;
}
.portfolio_slider .splide__pagination__page {
	background: var(--section-bg);
}
.portfolio-content {
	flex-direction: column;
	gap: 20px !important;
}
.section-title h2 {
	margin-bottom: 16px;
}
.img-with-text {
	width: calc(100% - 30px);
	padding: 30px 24px 35px 24px; 
}
.img-with-text-cover img {
	aspect-ratio: 1/1.9;
}
.why_choose_area {
	padding-bottom: 130px;
}
.review-list {
	width: 100%;
	padding: 35px 24px;
}
.review-cover {
	gap: 12px;
}
.review-title {
	padding: 60px 24px;
}
.owner-img, .main-img {
	width: 100%;
}
.img-banner, .contact-cover {
	gap: 12px;
}
.main-img img {
	aspect-ratio: 1;
	object-fit: cover;
}
.owner-img img {
	aspect-ratio: 1/.55;
	object-fit: cover;
	object-position: 50% 8%;
}
.contact-shortcode, .contact-form-info {
	width: 100%;
}
.faq-answer {
	padding: 0px 24px 24px 24px;
}
.faq-question {
	padding: 13px 24px;
}
.copyright-content {
  flex-direction: column;
  align-items: start !important;
  padding-bottom: 35px;
  padding-top: 0;
  border: none;
}
.footer-menu, .company-details, .contact-links {
  margin-bottom: 35px;
}
.footer-area h5 {
  margin-bottom: 16px;
}
.footer-area {
	padding-bottom: 35px;
}
.about-intro .img-with-text {
	bottom: 15px;
	top: unset;
	left: 15px;
}
.about-intro .img-with-text-cover img {
	aspect-ratio: 1/2.4;
	object-position: 63% 50%;
}
.service-child-title-cover {
	right: 50%;
	width: calc(100% - 30px);
	transform: translateX(50%);
}
.service-child-thumbnail-wrapper img {
	aspect-ratio: 1/1.1;
}
.about-intro .img-with-text {
	width: calc(100% - 30px);
}
.single-banner-content {
	margin-top: 12px;
}
.portfolio-content {
	margin-top: 12px;
}
.portfolio-logo img {
	width: 200px;
}
.portfolio-logo {
	padding: 60px 24px;
}
.meta-cat h5 {
	font-size: 11px;
}
.single-content img {
	border-radius: 35px;
}
.page-id-263 .banner-content {
	border-radius: 35px;
}
.page-id-263 .banner-content {
	padding-bottom: 35px;
}
.error-404 h1 {
	font-size: 100px;
}
.wpcf7-form-control.wpcf7-submit.has-spinner {
	margin-top: 10px;
	display: flex;
	margin-left: auto;
	margin-right: auto;
}
	.popular-post-area {
	margin-bottom: 45px;
}
		

}

@media (max-width: 600px) {
	.admin-bar .header-sec.sticky-active {
		top: 0;
	}
}

@media (max-width: 576.98px) {
	.card-btn {
		flex-direction: column;
		width: 100%;
	}
	.card-btn .btn {
		width: 100%;
	}
}
