:root {
	--red: #f81414;
	--darkred: #400c0c;
	--white: #ffffff;
}

.text-white {
	color: var(--white);
}

.text-red {
	color: var(--red);
}

.swiper-pagination-bullet {
	background: var(--white);
	opacity: 0.8;
}

.counter-box i {
	color: var(--red);
}

.service-icon {
	width: 100%;
	max-width: 100px;
}

.portfolio-title {
	font-size: 17px;
	font-weight: 700;
}

.testimonial-wrapper .black-bg-inner {
	background-color: black;
	height: 150px;
}

.testimonial-wrapper img {
	margin-top: -75px;
	border: 3px solid #fff;
}

.testimonial-info {
	padding: 0 50px 30px;
}

.testimonial-slider .swiper-slide {
	opacity: 0.5;
	transform: scale(0.84);
}

.testimonial-slider .swiper-slide-active {
	transform: scale(1) !important;
	opacity: 1 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
	background: #333;
	opacity: 0.8;
}

.testimonial-pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

.transparent-header-top {
	padding-top: 100px;
}

.price-header {
	padding-top: 40px;
}

.price-header h3 {
	font-weight: 700;
	color: #000;
	font-size: 40px;
	margin-bottom: 0;
}

.price-header h5 {
	background-color: var(--red);
	color: white;
	padding-block: 10px;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 0;
}

.pricing-box {
	border-radius: 20px;
	box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.custom-li-mark {
	list-style-type: none;
	position: relative;
	padding-inline: 60px;
	text-align: left;
}

.custom-li-mark li {
	text-transform: uppercase;
}

.custom-li-mark li::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	left: -35px;
	top: 2px;
	background-image: url(../img/checked.png);
	background-size: contain;
}

.custom-li-mark-mega li::before {
	left: -40px;
}

.pricing-features {
	padding-block: 40px;
}

/*.address-text {*/
/*	min-height: 72px;*/
/*}*/

.footer-standard-dark {
	background-color: #000;
	color: #fff;
}

.widget,
.widget ul li,
.widget a,
.widget > div {
	color: white;
}

.btn-dark {
	background-color: #000;
	color: #fff;
}

.c-price-title {
	position: relative;
	margin-bottom: 50px;
	font-size: 36px;
	color: #000;
}

.c-price-title-mega {
	margin-bottom: 30px;
}

.c-price-title::before {
	content: "";
	position: absolute;
	background-color: var(--red);
	height: 5px;
	width: 40px;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

/* .icon-right{
    position: relative;
}
.icon-right:before{
    position: absolute;
    content: "";
    background-image: url(../img/24.png);
    height: 237px;
    width:300px;
    right: -50%;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    z-index: -1;
} */

.w-75 {
	width: 75%;
}

.cta-wrapper {
	padding-block: 60px;
}

.bg-dark-new {
	background-color: #000;
	color: #fff;
}

.mt-40 {
	margin-top: 40px;
}

.flag-address {
	max-width: 80px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select {
	color: #fff;
}

.contact-form option {
	color: black;
}

.contact-card {
	border-radius: 20px;
	box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

/* loader */

.brandship-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000000;
}

.brandship-overlay .overlayDoor:before,
.brandship-overlay .overlayDoor:after {
	content: "";
	position: absolute;
	width: 50%;
	height: 100%;
	background: #111;
	transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
	transition-delay: 0.8s;
}

.brandship-overlay .overlayDoor:before {
	left: 0;
}

.brandship-overlay .overlayDoor:after {
	right: 0;
}

.brandship-overlay.loaded .overlayDoor:before {
	left: -50%;
}

.brandship-overlay.loaded .overlayDoor:after {
	right: -50%;
}

.brandship-overlay.loaded .overlayContent {
	opacity: 0;
	margin-top: -15px;
}

.brandship-overlay .overlayContent {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.brandship-overlay .overlayContent .skip {
	display: block;
	width: 130px;
	text-align: center;
	margin: 50px auto 0;
	cursor: pointer;
	color: #fff;
	font-family: "Nunito";
	font-weight: 700;
	padding: 12px 0;
	border: 2px solid #fff;
	border-radius: 3px;
	transition: 0.2s ease;
}

.brandship-overlay .overlayContent .skip:hover {
	background: #ddd;
	color: #444;
	border-color: #ddd;
}

.loader {
	width: 60px;
	height: 60px;
	border: 3px solid #fff;
	border-bottom: 3px solid transparent;
	border-radius: 50%;
	position: relative;
	animation: spin 1s linear infinite;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loader .inner {
	width: 40px;
	height: 40px;
	border: 3px solid transparent;
	border-top: 3px solid #fff;
	border-radius: 50%;
	animation: spinInner 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes spinInner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-720deg);
	}
}

/* loader ends here */

.parallax-category-text {
	mix-blend-mode: difference;
	color: white;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: var(--red);
	border-color: var(--red);
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	box-shadow: none;
}

/* slider */

.slide-1 {
	background-image: url(../img/slide4.png);
}

.slide-2 {
	background-image: url(../img/slide3.png);
}

.slide-3 {
	background-image: url(../img/slide2.png);
}

.slide-4 {
	background-image: url(../img/slide1.png);
}

#contact-main {
	padding-block: 100px 80px;
}

.counter-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.counter-wrapper strong {
	margin-left: 3px;
	font-size: 22px;
	color: #4e4b4b;
	font-weight: 400;
}

.desktop-footer-logo{
    display: block !important;
}

.mobile-footer-logo{
    display: none !important;
}

.smm-duration-title{
    margin-bottom: 5px;
    font-size: 25px;
    line-height: normal;
    font-weight: 500;
}

.benefits-pricing-title{
    font-size: 22px;
    background: var(--red);
    color: white;
    padding-block: 5px;
}
.pricing-features-new{
    padding-top: 10px;
}
/* modal css */
.btn-modal:focus{
    color: #fff !important;
    
}
.modal-content{
    padding:30px;
}
.modal-header{
    border-bottom: 0;
    position: relative;
    justify-content: center;
}
.modal-header .close{
    position: absolute;
    right: 20px;
}
.smm-service ::placeholder, .smm-service select{
    color: black !important;
}
.swal2-confirm{
    background-color: var(--red);
    color: #fff;
}
.modal-dialog{
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    border: 0;
}
/* modal css ends */
.price-header .graphics{
    padding-block: 3px;
}

.seo-service-icon{
    width: 100%;
    max-width: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(15%) sepia(78%) saturate(6416%) hue-rotate(355deg) brightness(113%) contrast(98%);
}

.seo-services-border {
  position: relative;
  display: inline-block;
  padding: 20px;
      display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  border: 2px solid transparent;
}

.seo-services-border::before,
.seo-services-border::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 2px solid #ff5733; /* Adjust color */
  opacity: 0;
  clip-path: inset(0 100% 100% 0);
  transition: clip-path 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.seo-services-border:hover::before,
.seo-services-border:hover::after {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.seo-services-border:not(:hover)::before,
.seo-services-border:not(:hover)::after {
  clip-path: inset(0 100% 100% 0);
  opacity: 0;
  transition: clip-path 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.service-icon.seo{
    padding: 20px;
}


@media (max-width: 767px) {
	/* .mobile-height, .swiper-full-screen {
        height: 100vh !important;
    }
    .mobile-height .full-screen, .swiper-full-screen .full-screen {
        height: auto !important;
        min-height: -webkit-fill-available !important;
    }*/
	.overlaySlider {
		position: absolute;
		height: 100%;
		width: 100%;
		z-index: 99;
		background-color: rgba(0, 0, 0, 0.7);
	}
	.slider-typography {
		z-index: 100;
	}
	/*.address-text {*/
	/*	min-height: unset;*/
	/*}*/
	.price-header h3 {
		margin-bottom: 10px;
	}
	.m-btn-none.m-btn-none {
		display: none;
	}
	.desktop-footer-logo{
        display: none !important;
    }
    .mobile-footer-logo{
        display: block !important;
    }
}

@media (max-width: 600px) {
	.mobile-height,
	.swiper-full-screen {
		height: 100vh !important;
	}
	.mobile-height .full-screen,
	.swiper-full-screen .full-screen {
		height: auto !important;
		min-height: -webkit-fill-available !important;
	}
	.slide-1 {
		background-image: url(../img/mslide-1.jpg);
	}
	.slide-2 {
		background-image: url(../img/mslide-3.jpg);
	}
	.slide-3 {
		background-image: url(../img/mslide-2.jpg);
	}
	.slide-4 {
		background-image: url(../img/mslide-4.jpg);
	}
	.overlaySlider {
		background-color: rgba(0, 0, 0, 0.1);
	}
}
