/*!
Theme Name: Carnival Promotions
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: carnival
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: #f7da15;
	--secondery-color: #420d6b;
	--white-color: #ffffff;
    --black-color: #000000;
	--section-bg: #e5438c;
	--title-color: #711cb3;
	
    --body-font: "Open Sans", sans-serif;
	--heading-font: "Gigalypse Trial", 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: 300;
	color: var(--black-color);
}
.btn {
	font-size: 18px;
	padding: 22px 40px 18px 40px;
	font-weight: 800;
	border-radius: 8px;
	border: none;
	color: var(--title-color);
	background-color: var(--primary-color);
	transition: all .4s ease-out;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: var(--heading-font);
	line-height: 1;
}
.btn:hover{
	background-color: var(--white-color);
	color: var(--title-color);
}
.btn-secondery {
	background-color: var(--white-color);
	color: var(--title-color);
}
.btn-secondery:hover {
	background-color: var(--primary-color);
	color: var(--title-color);
}
h1, h2, h3, h4, h5, h6, .h3{
	margin: 0;
	padding: 0;
	font-weight: 800;
	font-family: var(--heading-font);
}
.f-15 h1 {
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 40px;
	font-family: var(--body-font);
}
h1, .f-68 h2, .h1 {
	font-size: 68px;
	line-height: .9;
	text-transform: uppercase;
	word-break: break-word;
}
h2{
	font-size: 55px;
	line-height: 1;
	text-transform: uppercase;
}
h3, .h3{
	font-size: 25px;
	line-height: 1.2;
}
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: 10px;
	padding: 10px 30px !important;
	color: var(--black-color);
	background: #f6f0fa;
	font-size: 16px !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;
}
.p-100{
	padding: 100px 0;
}
.pt-100{
	padding-top: 100px;
}
.pb-100{
	padding-bottom:100px;
}
.container {
	transition: .4s;
	max-width: 1242px;
	padding: 0 24px;
	margin-left: auto;
	margin-right: auto;
}
.section-title h2{
	margin-bottom: 24px;
}
.section-title-large h2{
	margin-bottom: 40px;
}
.card-btn {
	margin-top: 36px;
}
.row {
	--bs-gutter-x: 12px;
}
.rounded-12 {
	border-radius: 12px;
	overflow: hidden;
}

/* Header */
.header-sec {
	left: 0;
	right: 0;
	top: 0;
	z-index: 99;
	padding: 36px 0;
	position: fixed;
	background-color: transparent;
	transition: .2s;
}
.header-sec.sticky-active {
	background-color: var(--secondery-color);
	padding: 20px 0;
}
.header-logo {
	margin-right: 10px;
	transition: .4s all ease;
	width: 132px;
}
.header-logo svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.admin-bar .header-sec {
	top: 32px;
}
.h-btn {
	gap: 60px;
	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: 10px;
}
.main-menu ul li {
	display: inline-block;
	position: relative;
}
.main-menu ul li a {
	color: var(--white-color);
	font-size: 13px;
	padding: 10px 15px;
	font-weight: 400;
	display: block;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 3px;
	border-radius: 30px;
	transition: .6s;
}
.main-menu ul li a:hover {
	color: var(--primary-color);
}
.main-menu ul li ul {
	position: absolute;
	width: 270px;
	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: 8px;
}
.main-menu ul li ul li {
	display: block;
}
 .main-menu > ul > li.menu-item-has-children::before {
	content: "";
	position: absolute;
	background: var(--primary-color);
	bottom: 0;
	height: 2px;
	width: 20px;
	right: 18px;
}
.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 a:hover {
	background-color: var(--secondery-color);
}
.main-menu ul li ul li ul {
	left: 100%;
	top: 0;
	overflow: hidden;
}
.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 {
	border-radius: 8px;
}
.wpcf7-form-control.wpcf7-submit.has-spinner {
	max-width: 215px;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: .4s;
	border-radius: 8px;
	border: none;
	background: var(--primary-color);
	color: var(--title-color);
	margin-top: 40px;
	font-family: var(--heading-font);
	font-size: 18px !important;
	line-height: 1 !important;
	display: flex;
	padding: 20px 30px 14px 30px !important;
	height: unset;
	margin-left: auto;
	margin-right: auto;
}
.wpcf7-form-control.wpcf7-submit.has-spinner:hover{
	background-color: var(--secondery-color);
	color: var(--white-color);
}
.wpcf7-spinner {
	display: none;
}
.contact-form {
	padding: 80px 30px;
}
.contact-shortcode p {
	margin-bottom: 0;
}
.contact-shortcode {
	margin-top: 75px;
}
.contact-form-info {
	width: calc(38% - 6px);
	padding: 50px;
}
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 16 16'%3E%3Cpath fill='currentColor' d='M13 4v2l-5 5l-5-5V4l5 5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) 50%;
}
.form-wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  justify-content: space-between;
  row-gap: 16px;
}
.form-space.f-4 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-space {
  width: calc(50% - 12px);
}
.st-message-form, .st-message-form p, .st-message-form span, .st-message-form textarea {
	height: 100%;
}
.st-message-form textarea {
	max-height: 195px;
}
.st-message-form span {
	display: block;
}
.contact-img img {
  aspect-ratio: 1/.4;
  object-fit: cover;
  border-radius: 12px;
}
.contact-img {
  padding-left: 60px;
}
.contact-area::before {
	background-image: url(assets/img/rounded.svg);
	height: 194px;
	width: 227px;
	bottom: -75px;
	right: 90px;
	z-index: -1;
	transform: rotate(245deg);
}

/* default page */
.single-content h2, .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
	margin-bottom: 16px;
	margin-top: 30px;
	color: var(--secondery-color);
}
.single-content h4{
	font-size: 20px;
}
.single-content h5{
	font-size: 18px;
}
.single-content h6{
	font-size: 17px;
}
.single-content img {
	width: 100%;
	border-radius: 12px;
}
.single-content ul li {
	margin-bottom: 3px;
	text-align: start;
}
.wp-block-list {
	margin-bottom: 20px;
}
.single-content ul {
	margin-bottom: 16px;
}
/* banner */
.f-100 h2 {
	font-size: 100px;
	line-height: .9;
	text-transform: uppercase;
}
.banner-img-video {
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  right: 0;
}
.banner-img-video img, .banner-img-video video {
  height: 100%;
  object-fit: cover;
}
.banner-area {
  background-color: var(--secondery-color);
  padding-top: 210px;
  padding-bottom: 540px;
}
.banner-content {
  max-width: 50%;
  padding-right: 98px;
}
.banner-content-wrap h2 strong, .banner-content-wrap h2 b {
	color: var(--primary-color);
}
.banner-content-wrap h2 {
	margin-bottom: 24px;
}
.title-color h2, .title-color h3 {
	color: var(--title-color);
}
.banner-area::before, .page-banner-area::before {
	content: "";
	position: absolute;
	background-image: url(assets/img/shape-25.webp);
	height: 680px;
	width: 50%;
	bottom: 80px;
	right: 50%;
	background-repeat: no-repeat;
	mix-blend-mode: screen;
	background-size: cover;
}
.page-banner-area::before {
	height: 315px;
	width: 53%;
	right: 47%;
	bottom: 0;
}

/* why-us */
.why-us-title {
	margin-bottom: 60px;
}
.why-us-area {
	margin-top: -410px;
	padding-top: 120px;
	padding-bottom: 60px;
}
.why-us-area::after {
	content: "";
	position: absolute;
	background-color: var(--secondery-color);
	height: 50%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.why-us-icon img {
	height: 68px;
}
.why-us-area::before {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	background-image: url(assets/img/2s-01.svg);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
/* service child */
.service-child-pages::before {
	content: "";
	position: absolute;
	background-image: url(assets/img/ab_bg.svg);
	height: 100%;
	width: 50%;
	top: 0;
	right: 0;
	background-repeat: no-repeat;
	background-size: cover;
}
.h-sc-bg {
	background-color: #551586;
	height: 100%;
	width: 50%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.sc-list {
	margin-top: 80px;
}
.service-list-content {
	padding-left: 80px;
}
.service-child-pages {
	padding-top: 80px;
}
.card-box-img img {
	width: 100%;
	aspect-ratio: 1/.98;
	object-fit: cover;
	transition: 1s;
}
.sc-box:hover .card-box-img img {
	transform: scale(1.2);
}
.card-box {
	background-color: var(--primary-color);
}
.card-box-text {
	padding: 20px;
}
.sc-box-title {
	padding: 20px 40px;
}
.sc-box-title h3 {
	font-size: 35px;
}
.card-box-text h3 {
	color: var(--secondery-color);
}
.service-child-pages::after {
	content: "";
	position: absolute;
	background-image: url(assets/img/rounded.svg);
	height: 190px;
	width: 200px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
	bottom: -80px;
	left: 0;
	z-index: -1;
	transform: rotate(70deg);
}
.card-link::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
/* logo-slider */
.logo-slider-bg {
	position: absolute;
	height: 100%;
	width: 50%;
	top: 0;
	left: 0;
}
.logo-slider-bg img {
	height: 100%;
	object-fit: cover;
}
.logo-slider-title h2 {
  margin-bottom: 20px;
}
.logo-slider-title {
  margin-bottom: 60px;
}
.logo_slider::before, .events_logo_slider::before {
	content: "";
	position: absolute;
	background-color: var(--secondery-color);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	border-radius: 12px;
	opacity: .94;
}
.splide__arrow svg {
	fill: var(--secondery-color);
	height: 20px;
	width: 20px;
}
.splide__arrow {
	background: var(--white-color);
	height: 60px;
	opacity: .9;
	top: 50%;
	width: 60px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .13);
	transition: .4s;
}
.splide__arrow:hover {
	background: var(--primary-color);
}
.splide__arrow--prev {
	left: -30px;
}
.splide__arrow--next {
	right: -30px;
}
.gallery-logo img {
	width: 180px;
	object-fit: contain;
}
.logo_slider, .events_logo_slider {
	padding: 70px 100px;
}
/* cta */
.cta-area::before {
	content: "";
	position: absolute;
	background-image: url(assets/img/pink_bg.svg);
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 57%;
}
.cta-area {
	background-color: var(--section-bg);
}
.cta-content {
	max-width: 600px;
}
/* text autoscroll */
.text-autoscroll {
	background-color: var(--title-color);
}
.text-autoscroll.text-scroll-pink {
	background-color: var(--section-bg);
}
.text-autoscroll {
	padding-top: 36px;
	padding-bottom: 32px;
}
.slider-text::before {
	content: "";
	position: absolute;
	background-color: var(--primary-color);
	height: 36px;
	width: 36px;
	top: 8px;
	right: -90px;
	transform: rotate(45deg);
}
@media all and (max-width: 1599.98px){
	.slider-text h2 {
		font-size: 42px;
	}
	.slider-text::before {
	height: 28px;
	width: 28px;
	top: 6px;
}
}
@media all and (max-width: 1699.98px){
	.slider-text::before {
		right: -80px;
	}
}
/* why-choose */
.why-choose-area::before {
	background-image: url(assets/img/rounded.svg);
	height: 210px;
	width: 190px;
	top: 100px;
	right: -80px;
	z-index: -1;
}
/* gallery */
.gallery-content {
	max-width: 860px;
}
.gallery-content-area::before {
	background-image: url(assets/img/rounded.svg);
	height: 210px;
	width: 190px;
	bottom: 80px;
	left: -60px;
	z-index: -1;
	transform: rotate(100deg);
}
.gallery-img img {
	object-fit: cover;
	aspect-ratio: 1;
}
.gallery_slider .splide__arrow--prev {
	left: 90px;
}
.gallery_slider .splide__arrow--next {
	right: 90px;
}
/* footer */
.footer-area::before {
	content: "";
	position: absolute;
	background-image: url(assets/img/footer_bg.svg);
	height: 100%;
	width: 115%;
	top: 0;
	left: 50%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 33%;
	transform: translateX(-50%);
}
.copyright-cover {
	background-color: #551585;
	padding: 40px 0;
}
.footer-area {
	padding: 80px 0;
	word-break: break-word;
	background-color: var(--secondery-color);
}
.footer-logo {
  width: 132px;
  margin-bottom: 24px;
}
.footer-area ul {
  list-style: none;
}
.footer-area a {
  color: var(--white-color);
}
.footer-list-headeng {
  font-family: var(--heading-font);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.footer-area a:hover {
  color: var(--primary-color);
}
.footer-menu {
  padding-left: 60px;
}
.seo-logo img {
	filter: invert(96%) sepia(71%) saturate(2%) hue-rotate(210deg) brightness(106%) contrast(100%);
	width: 60px;
	object-fit: contain;
}
/* testimonials */
.testimonials-area::before {
	content: "";
	position: absolute;
	background-color: var(--secondery-color);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: .95;
}
.star-img {
	width: 140px;
}
.claint-name {
	font-weight: 500;
}
.testimonials-title h2 {
	color: var(--primary-color);
	margin-bottom: 60px;
}
.testimonials-img {
	max-width: 392px;
}
.test-two {
	margin-top: 80px;
}
.testimonials-info {
	margin-top: 50px;
}
/* page banner area */
.page-banner-area {
	background-color: var(--secondery-color);
	padding-top: 210px;
	padding-bottom: 130px;
}
/* about template */
.intro-img img {
	aspect-ratio: 1;
}
.splide__pagination {
	bottom: -60px;
	gap: 16px;
}
.splide__pagination__page {
	background: #f6f0fa;
	height: 12px;
	margin: 0;
	opacity: 1;
	width: 12px;
}
.splide__pagination__page.is-active {
	background: var(--section-bg);
	transform: scale(1);
}
.intro-area::before {
	background-image: url(assets/img/rounded.png);
	height: 194px;
	width: 227px;
	bottom: 0;
	left: -130px;
	z-index: -1;
}
.full-card-area::before {
	background-image: url(assets/img/rounded.png);
	height: 194px;
	width: 227px;
	top: 0;
	right: -110px;
	z-index: -1;
	transform: rotate(140deg);
}
.st-efect::before {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.about-cta-area::before {
	content: "";
	position: absolute;
	background-image: url(assets/img/ab_bg.svg);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 28%;
}
.about-cta-content {
	max-width: 940px;
}
.about-cta-area {
	background-color: var(--title-color);
}
/* blog */
.page-numbers {
	height: 45px;
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--black-color);
	font-size: 16px;
	border-radius: 8px;
	font-weight: 400;
}
.page-numbers.current {
	background-color: var(--primary-color);
	color: var(--white-color);
}
.prev.page-numbers, .next.page-numbers {
	background-color: var(--white-color);
	box-shadow: 0 0 10px rgba(0, 0, 0, .13);
	border-radius: 100px;
	height: 50px;
}
.blog-thumb img, .popular-blog-thumb img {
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 12px;
	transition: 1s;
}
.blog-wrap:hover .blog-thumb img, .popular-post-box:hover .popular-blog-thumb img {
	transform: scale(1.2);
}
.meta-cat div {
	background-color: #f6f0fa;
	color: var(--secondery-color);
	font-size: 10px;
	line-height: 1;
	padding: 11px 20px 11px 20px;
	font-weight: 500;
	letter-spacing: 2px;
	border-radius: 4px;
}
.blog-subtitle {
	display: flex;
}
.blog-content h3 {
	margin-top: 24px;
	margin-bottom: 16px;
}
.blog-content {
	padding-left: 30px;
}
.blog-content h3 {
	color: var(--secondery-color);
}
.blog-content .btn:hover {
	background-color: var(--secondery-color);
	color: var(--white-color);
}
.blog-btn::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.single-blog-category {
	margin-bottom: 40px;
}
.single-blog-category div {
	background-color: var(--title-color);
	color: var(--white-color);
}
.single-blog-banner h1 {
	text-transform: unset;
}
.single-content-area {
	padding-top: 40px;
	padding-bottom: 40px;
}
.popular-blog-thumb img {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.popular-post-box {
	background-color: #f6f0fa;
}
.popular-content-wrap {
	padding: 40px;
}
.popular-blog-category div {
	background-color: var(--white-color);
	color: var(--secondery-color);
}
.popular-content-wrap h3 {
	color: var(--secondery-color);
	margin-top: 30px;
	margin-bottom: 16px;
}
/* contact-page */
.contact-info a {
	display: block;
}
.contact-info a:hover {
	color: var(--primary-color);
}
.contact-info {
	margin-top: 20px;
}
.contact-info a {
	display: flex;
	gap: 10px;
	line-height: 1.2;
	margin-bottom: 12px;
	color: var(--black-color);
}
.contact-info img {
	height: 16px;
	width: 16px;
	margin-top: 4px;
}
.contact-form-area::before {
	background-image: url(assets/img/rounded.svg);
	height: 194px;
	width: 227px;
	bottom: 0;
	right: -130px;
	z-index: -1;
}
.setp-content {
	max-width: 1020px;
}
.step-slider::before {
	background-image: url(assets/img/rounded.svg);
	height: 194px;
	width: 227px;
	top: 40px;
	left: -110px;
	z-index: -1;
	transform: rotate(145deg);
}
.child-pages-area {
  background-color: #f9f6fc;
}
.child-pages-title {
  max-width: 1020px;
}
.category-page-list::before {
	background-image: url(assets/img/rounded.svg);
	height: 194px;
	width: 227px;
	top: 40%;
	left: -109px;
	z-index: -1;
	transform: rotate(200deg);
}
.parent-link {
	background-color: #340955;
	color: var(--white-color);
	padding: 14px 18px;
	border-radius: 8px;
	letter-spacing: 5px;
}
.product-info-box {
	background-color: var(--secondery-color);
	color: var(--white-color);
	padding: 36px;
}
.pi-number {
	font-size: 57px;
	font-family: var(--heading-font);
	line-height: 1;
}
.child-gallery-content {
	max-width: 810px;
}
.event-child-pages::before, .child-info-gallery::before {
	background-image: url(assets/img/rounded.svg);
	height: 194px;
	width: 227px;
	top: 0;
	right: -130px;
	z-index: -1;
}
.event-why-us::before {
	background-image: url(assets/img/rounded.svg);
	height: 194px;
	width: 227px;
	top: 0;
	left: -130px;
	z-index: -1;
	transform: rotate(200deg);
}
.error404 .header-sec {
	background-color: var(--secondery-color);
}
.error-404-area {
	padding-top: 230px;
}












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

/* responsive */
@media all and (max-width: 1399.98px){
.splide__arrow--prev {
	left: -20px;
}
.splide__arrow--next {
	right: -20px;
}
.slider-text::before {
	right: -55px;
	height: 25px;
	width: 25px;
}
.slider-text h2 {
	font-size: 36px;
}
h1, .f-68 h2, .h1 {
	font-size: 65px;
}
.page-banner-area::before {
	height: 250px;
}

}

@media all and (max-width: 1199.98px){
.h-btn {
	gap: 30px;
}
.f-100 h2 {
	font-size: 80px;
}
.banner-content {
	padding-right: 30px;
}
h3 {
	font-size: 20px;
}
h2 {
	font-size: 42px;
}
.why-us-icon img {
	height: 60px;
}
.why-us-area {
	margin-top: -410px;
	padding-top: 100px;
	padding-bottom: 50px;
}
.why-us-title {
	margin-bottom: 50px;
}
.service-list-content {
	padding-left: 40px;
}
.sc-list {
	margin-top: 60px;
}
.logo_slider, .events_logo_slider {
	padding: 70px;
}
h1, .f-68 h2, .h1 {
	font-size: 60px;
}
.banner-area::before {
	height: 600px;
}
.page-banner-area::before {
	height: 200px;
}

/* 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: 13px;
		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(--primary-color);
		border-radius: 8px;
		height: 58px;
		width: 58px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.menu-trigger span {
		display: block;
		height: 3px;
		width: 26px;
		background-color: var(--title-color);
		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: 20px;
	}
	/* menu-end */


}

@media all and (max-width: 991.98px){
	.p-100{
		padding: 80px 0;
	}
	.pt-100{
		padding-top: 80px;
	}
	.pb-100{
		padding-bottom: 80px;
	}
.banner-img-video {
	position: unset;
	width: 100%;
	padding: 0 24px;
	margin-bottom: 60px;
}
.banner-img-video img, .banner-img-video video {
	border-radius: 12px;
	overflow: hidden;
}
.banner-content {
	padding-right: 0;
	max-width: 100%;
}
.banner-area {
	padding-top: 180px;
	padding-bottom: 330px;
}
.f-100 h2 {
	font-size: 60px;
}

.why-us-area {
	margin-top: -200px;
}
.service-list-content {
	padding-left: 20px;
}
.gallery-logo img {
	width: 140px;
}
.why-choose-area::before {
	top: 50px;
}
.gallery_slider .splide__arrow--prev {
	left: 20px;
}
.gallery_slider .splide__arrow--next {
	right: 20px;
}
.acknowledgement-text, .footer-menu {
	padding-left: 40px;
}
.contact-details, .acknowledgement-text {
	margin-top: 50px;
}
.page-banner-area {
	padding-top: 180px;
}
h1, .f-68 h2, .h1 {
	font-size: 50px;
}
.blog-content {
	padding-left: 12px;
}
.contact-info a {
	justify-content: center;
}
.contact-info {
	margin-bottom: 30px;
}
.contact-form-area .contact-shortcode {
	margin-top: 24px;
}
.banner-area::before, .page-banner-area::before {
	width: 100%;
	right: 0;
}
.page-banner-area::before {
	height: 270px;
}
.banner-area::before {
	height: 320px;
}


	

	.contact-img {
	padding-left: 0;
}
.testimonials-info {
	margin-top: 30px;
}
	
}

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

@media all and (max-width: 767.98px){
	h1, .f-46 h2, .h1 {
		font-size: 32px;
	}
	h2{
		font-size: 32px;
	}
	h1 br, .f-46 h2 br, .h1 br, h2 br{
		display: none;
	}
	.p-100{
		padding: 60px 0;
	}
	.pt-100{
		padding-top: 60px;
	}
	.pb-100{
		padding-bottom: 60px;
	}
	.header-btn {
		display: none !important;
	}

.error-404 h1 {
	font-size: 100px;
}
.header-logo {
	width: 100px;
}
.header-sec {
	padding: 24px 0;
}
.menu-trigger a {
	height: 52px;
	width: 56px;
}
.banner-area {
	padding-top: 140px;
}
.f-100 h2 {
	font-size: 48px;
}
.banner-img-video img, .banner-img-video video {
	aspect-ratio: 1/.7;
}
.banner-img-video {
	margin-bottom: 50px;
}
.why-us-area {
	padding-top: 60px;
	padding-bottom: 0;
}
h3 {
	font-size: 18px;
}
.why-us-title {
	margin-bottom: 40px;
}
.why-us-area {
	margin-top: -80px;
}
.banner-area {
	padding-bottom: 200px;
}
.sc-list {
	margin-top: 40px;
}
.service-child-pages::before {
	width: 100%;
}
.service-child-pages {
	padding-top: 60px;
}
.service-list-title h2 {
	color: var(--white-color);
	margin-bottom: 24px;
}
.service-list-content {
	padding-left: 0;
}
.logo-slider-bg {
	position: unset;
	height: 100%;
	width: calc(100% - 48px);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 32px;
}
.logo-slider-bg img {
	border-radius: 12px;
	aspect-ratio: 1/.7;
}
.logo-slider-title {
	margin-bottom: 40px;
}
.splide__arrow, .page-numbers, .prev.page-numbers, .next.page-numbers {
	height: 45px;
	width: 45px;
}
.logo_slider, .events_logo_slider {
	padding: 50px 30px;
}
.gallery-logo img {
	width: 100px;
}
.page-id-8 .logo-slider-area::before {
	content: "";
	position: absolute;
	background-image: url(assets/img/rounded.svg);
	height: 110px;
	width: 147px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom right;
	top: -10px;
	left: -50px;
	z-index: -1;
}
.service-child-pages::after {
	display: none;
}
.slider-text h2 {
	font-size: 26px;
}
.slider-text::before {
	right: -30px;
	height: 16px;
	width: 16px;
}
.why-choose-area::before {
	height: 80px;
	width: 60px;
	right: -15px;
	top: -40px;
}
.gallery-content-area::before {
	height: 116px;
	width: 87px;
	bottom: -60px;
	left: -28px;
}
.gallery_slider .splide__arrow--prev {
	left: 5px;
}
.gallery_slider .splide__arrow--next {
	right: 5px;
}
.footer-area {
	padding: 60px 0;
}
.footer-logo {
	width: 100px;
	margin-left: auto;
	margin-right: auto;
}
.acknowledgement-text, .footer-menu {
	padding-left: 0;
}
.footer-list-headeng {
	margin-bottom: 12px;
}
.footer-menu, .contact-details, .acknowledgement-text {
	margin-top: 36px;
}
.copyright-area {
	flex-direction: column;
	gap: 20px !important;
}
.seo-logo {
	flex-direction: column;
	gap: 12px !important;
}
.form-space {
	width: 100%;
}
.contact-area::before {
	height: 130px;
	width: 150px;
	bottom: -50px;
	right: -60px;
}
.contact-shortcode {
	margin-top: 24px;
}
.contact-text {
	margin-bottom: 30px;
}
.contact-text h2 {
	margin-bottom: 20px;
}
.contact-img img {
	aspect-ratio: 1/.5;
}
.testimonials-img {
	max-width: 100%;
	margin-bottom: 40px;
}
.testimonials-title h2 {
	margin-bottom: 32px;
}
.star-img {
	width: 120px;
}
.claint-name {
	font-size: 12px;
}
.test-two {
	margin-top: 40px;
	border-top: 1px solid #946abd;
	padding-top: 32px;
}
.page-banner-area {
	padding-top: 140px;
}
h1, .f-68 h2, .h1 {
	font-size: 40px;
}
.full-card-slider-wrap {
	margin-left: -24px;
	margin-right: -24px;
}
.intro-area::before, .full-card-area::before, .contact-form-area::before, .category-page-list::before, .product-info-area::before, .event-child-pages::before, .event-why-us::before, .child-info-gallery::before {
	height: 100px;
}
.contact-form-area::before, .product-info-area::before, .event-child-pages::before, .event-why-us::before, .child-info-gallery::before {
	right: -114px;
}
.blog-content {
	padding-left: 0;
	margin-top: 30px;
}
.step-slider::before {
	height: 100px;
	top: 0;
}
.text_autoscroll h2 {
	font-size: 16px;
	line-height: 1.5;
}
.text_autoscroll .slider-text::before {
	top: 3px;
}
.error-404-area {
	padding-top: 160px;
}
.banner-area::before {
	height: 250px;
	bottom: 0;
}
.page-banner-area::before {
	height: 200px;
}
.h-sc-bg {
	width: 100%;
}
		

}

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