@font-face {
	font-family: m;
	src: url("font/Carton-Six.ttf") format("truetype");
}

@font-face {
	font-family: sb;
	src: url("font/Carton-Six.ttf") format("truetype");
}

@font-face {
	font-family: eb;
	src: url("font/Carton-Six.ttf") format("truetype");
}

html,
body {
	overflow-x: hidden;
	scroll-behavior: smooth;
	margin: 0;
	padding: 0;
}
/*#notification-bar {*/
/*	position: fixed;*/
/*	top: 0;*/
/*	left: 0;*/
/*	width: 100%;*/
/*	font-family: eb;*/
/*	letter-spacing: 1px;*/
/*	background-color: #ff6f00;*/
/*	color: black;*/
/*	padding: 5px;*/
/*	text-align: center;*/
/*	display: none;*/ /* Initially hide */
/*	z-index: 50;*/ /* Ensure it's on top */
/*	font-size: 14px;*/
/*}*/
/*#notification-bar a{*/
/*	color: white;*/
/*}*/
/*#notification-bar a:hover{*/
/*	color: black;*/
/*}*/
/*pop-up*/
.calc-box{
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Overlay styles */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: top;
  z-index: 9999;
}

.overlay.show {
  display: flex;
  animation: scaleUp 0.3s ease-in-out forwards;
}
#calbtn{
    display: flex;
    align-items:center;
    justify-content: center;
    column-gap:20px;
}
.calculator-container {
  overflow-y: scroll;
  text-align: center;
  background: white;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  padding: 25px;
  position: relative;
  transform: scale(0.4);
  transition: transform 0.6s ease-in-out;
}

.overlay.show .calculator-container {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 50px;
  background: none;
  border: none;
  color: #ff6f00;
  cursor: pointer;
}

/* Button styles */
.open-btn {
  display: inline-block;
  margin: 20px;
  padding: 10px 20px;
  font-size: 1.5rem;
  font-family: m;
  color: white;
  background-color: #ff6f00e1;
  border: none;
  border-radius: 5px;
  z-index: 5;
  cursor: pointer;
}

.open-btn:hover {
  background-color: #ff6f00;
}

/* Fade out animation */
@keyframes scaleUp {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scaleDown {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.4);
    opacity: 0;
  }
}
  .calculator-container h1{
    color: #ff6f00;
    text-align: center;
    margin-bottom: 10px;
	font-family: m;
  }
  #selected-services{
    color: white;
    background-color: #ff6f00;
    width: 100%;
    font-weight: 700;
	padding: 0 4% 0 4%;
  }
  .total {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin: auto;
    background-color: #ff6f00;
    padding: 3%;
    color: white;
    width: fit-content;
  }
  
  .buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .service-btn {
    padding: 10px 20px;
    font-size: 1rem;
    color: #ff6f00;
    border: 2px solid #ff6f00;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .service-btn:hover {
    background: #ff6f00;
    color: #fff;
  }
  
  .service-btn.selected {
    background: #ff6f00;
    color: #fff;
    border-color: #ff6f00;
  }
/* Existing styles... */

.action-buttons {
    margin-top: 20px;
  }
  
  .action-btn {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background: #ff6f00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s;
  }
  
  .action-btn:hover {
    background: #ff6f00;
  }
  /* Add styles for packages */
.packages-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .package-btn {
    padding: 10px 20px;
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
    font-style: italic;
    color: #ff6f00;
    background: transparent;
    border: 2px solid #ff6f00;
    cursor: pointer;
    transition: all 0.3s;
  }
  .package-btn:hover {
    background: #ff6f00;
    color: white;
  }
  
  .package-btn.selected {
    background: #ff6f00;
    color: white;
  }
#overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	animation: invisible 30s forwards;
	z-index: 99;
}

#popup {
	display: none;
	background: #fff;
	padding: 15px 0 15px 0;
	border-radius: 10px;
	text-align: center;
	animation: scaleIn 0.5s ease-in-out, invisible 30s forwards;
	border: 3px solid #ff6f00;
	z-index: 100;
	margin: 0 2% 0 2%;
}
#popup h2{
	color: #ff6f00;
	font-family: eb;
	font-size: 30px;
}
#popup p{
	font-size: 20px;
	letter-spacing: 1.2px;
	font-weight: 600;
	font-family: m;
	padding: 0 8% 0 8%;
}
@keyframes scaleIn {
	from {
	  transform: scale(0);
	}
	to {
	  transform: scale(1);
	}
}
@keyframes scaleOut {
	from {
	  transform: scale(1);
	}
	to {
	  transform: scale(0);
	}
}
canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
#popup.shrink {
	animation: scaleOut 0.5s ease-in-out;
}

#closeBtn {
	cursor: pointer;
	background-color: #ff6f00;
	color: white;
	margin: 0 30% 0 30%;
	transition: .5s;
	padding: 0 0 0 0;
	font-family: eb;
	font-size: 22px;
	letter-spacing: 1px;
}
.base-timer {
	position: relative;
	width: 150px;
	height: 150px;
}
  
.base-timer__svg {
	transform: scaleX(-1);
}

.base-timer__circle {
	fill: none;
	stroke: none;
}

.base-timer__path-elapsed {
	stroke-width: 5px;
	stroke: grey;
}

.base-timer__path-remaining {
	stroke-width: 5px;
	stroke-linecap: round;
	transform: rotate(90deg);
	transform-origin: center;
	transition: 1s linear all;
	fill-rule: nonzero;
	stroke: currentColor;
}

.base-timer__path-remaining.green {
	color: #ff6f00;
}

.base-timer__path-remaining.orange {
	color: orange;
}

.base-timer__path-remaining.red {
	color: red;
}

.base-timer__label {
	position: absolute;
	width: 150px;
	height: 150px;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: #ff6f00;
	font-family: eb;
}
#discount{
	display: grid;
	align-items: center;
	justify-content: center;
	row-gap: 5px;
	padding: 0 20% 0 20%;
}
#email-3{
	border: 5px solid #ff6f00;
	height: 50px;
	width: 250px;
	border-radius: 15px;
}
#submit-3{
	width: 100%;
	position: unset;
	padding: 13px 50px;
	transition: all 0.3s ease-in-out;
	margin: unset;
}
#pbtn{
	position: fixed;
	top: 18%;
	right: 2%;
	border: 3px solid #ff6f00;
	padding: 1% .5% .5% .5%;
	cursor: pointer;
	transition: .4s;
	z-index: 1;
	color: white;
	font-family: eb;
	font-size: 27px;
	background-color: #ff6f00;
	border-radius: 10px;
	animation: blinking 1.5s infinite, invisible 30s forwards;
}
#pbtn:hover{
	transform: scale(.75);
	background-color: white;
	color: #ff6f00;
	animation: none;
}
@keyframes blinking {
	0%, 100% {
	  transform: scale(1);
	}
	50% {
		transform: scale(.75);
	}
}
@keyframes invisible {
	100% {
		display: none;
	}
}
#closeBtn:hover {
	margin: 0 40% 0 40%;
	background-color: #ff6f0050;
	border-radius: 10px;
	color: black;
}
/*pop-up*/
header img {
	height: 80px;
	width: 155px;
	filter: brightness(100%);
}

header img:hover {
	filter: brightness(95%);
}

#cf2 {
	display: flex;
	align-items: center;
	justify-content: left;
	margin: 1% 0 0 2%;
}
#navvy {
	position: fixed;
	right: -3%;
	top: 0;
	z-index: 98;
}

.overlay-navigation {
	position: fixed;
	z-index: 98;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: hsla(21, 100%, 50%, 0.507);
	transform: translateY(-100%);
}

.overlay-slide-down {
	transition: all .4s ease-in-out;
	transform: translateY(0)
}

.overlay-slide-up {
	transition: all .8s ease-in-out;
	transform: translateY(-100%)
}

nav,
nav ul {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	flex-basis: 20%;
	justify-content: center;
	align-items: center;
	height: 100%;
	overflow: hidden;
	transform: translateY(-100%);
}

nav li a {
	position: relative;
	top: 46%;
	text-transform: uppercase;
	font-family: eb;
	font-weight: 900;
	letter-spacing: 5px;
	text-decoration: none;
	display: block;
	text-align: center;
	font-size: 2.5rem;
}

nav li a:before {
	content: '';
	width: 70px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 100;
	transform: translateX(-100%);
	opacity: 0;
	transition: all .2s linear;
}

nav li a:after {
	content: attr(data-content);
	font-size: 1rem;
	transition: all .2s linear;
	opacity: 0;
	position: absolute;
	z-index: 100;
	display: block;
	margin-right: auto;
	margin-left: auto;
	left: 0;
	right: 0;
	bottom: -50px;
	text-transform: none;
	font-family: 'Open sans', serif;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0;
}

nav li a:hover:before {
	transform: translateX(0);
	opacity: 1;
}

nav li a:hover:after {
	transform: translateY(15px);
	opacity: 1;
}

nav li:nth-of-type(1) {
	background-color: white;
}

nav li:nth-of-type(2) {
	background-color: #ff6f00;
}

nav li:nth-of-type(3) {
	background-color: white;
}

nav li:nth-of-type(4) {
	background-color: #ff6f00;
}

nav li:nth-of-type(5) {
	background-color: white;
}

.slide-in-nav-item {
	animation: slide-in-nav-item 0.4s linear 1 .2s both;
}

.slide-in-nav-item-delay-1 {
	animation: slide-in-nav-item 0.4s linear 1 .4s both;
}

.slide-in-nav-item-delay-2 {
	animation: slide-in-nav-item 0.4s linear 1 .6s both;
}

.slide-in-nav-item-delay-3 {
	animation: slide-in-nav-item 0.4s linear 1 .8s both;
}

.slide-in-nav-item-delay-4 {
	animation: slide-in-nav-item 0.4s linear 1 1s both;
}

.slide-in-nav-item-reverse {
	animation: slide-in-nav-item-reverse .3s linear 1 .5s both;
}

.slide-in-nav-item-delay-1-reverse {
	animation: slide-in-nav-item-reverse .3s linear 1 .4s both;
}

.slide-in-nav-item-delay-2-reverse {
	animation: slide-in-nav-item-reverse .3s linear 1 .3s both;
}

.slide-in-nav-item-delay-3-reverse {
	animation: slide-in-nav-item-reverse .3s linear 1 .2s both;
}

.slide-in-nav-item-delay-4-reverse {
	animation: slide-in-nav-item-reverse .3s linear 1 both;
}

.open-overlay {
	position: absolute;
	right: 5rem;
	top: 2rem;
	z-index: 100;
	width: 34px;
	display: block;
	cursor: pointer;
}

.open-overlay span {
	display: block;
	height: 5px;
	background-color: #ff6f00;
	cursor: pointer;
	margin-top: 8px;
}

.animate-top-bar {
	animation: animate-top-bar .6s linear 1 both
}

.animate-bottom-bar {
	animation: animate-bottom-bar .6s linear 1 both
}

.animate-middle-bar {
	animation: animate-middle-bar .6s linear 1 both
}

.animate-out-top-bar {
	animation: animate-out-top-bar .6s linear 1 both
}

.animate-out-bottom-bar {
	animation: animate-out-bottom-bar .6s linear 1 both
}

.animate-out-middle-bar {
	animation: animate-out-middle-bar .6s linear 1 both
}

@keyframes slide-in-nav-item {
	from {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%)
	}

	to {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slide-in-nav-item-reverse {
	from {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	to {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%)
	}
}

@keyframes animate-top-bar {
	0% {
		background-color: red;
	}

	50% {
		-webkit-transform: translateY(9px);
		transform: translateY(9px)
	}

	80% {
		-webkit-transform: translateY(5px);
		transform: translateY(5px);
		background-color: #fff
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		background-color: #ff6f00;
	}
}

@keyframes animate-bottom-bar {
	0% {
		background-color: red;
	}

	50% {
		-webkit-transform: translateY(-9px);
		transform: translateY(-9px)
	}

	80% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
		background-color: #fff;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		background-color: #ff6f00;
	}
}

@keyframes animate-middle-bar {
	0% {
		background-color: red;
	}

	80% {
		background-color: #fff;
	}

	100% {
		background-color: #ff6f00;
	}
}

@keyframes animate-out-top-bar {
	0% {
		background-color: red;
	}

	50% {
		-webkit-transform: translateY(9px);
		transform: translateY(9px)
	}

	80% {
		-webkit-transform: translateY(5px);
		transform: translateY(5px);
		background-color: white
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		background-color: #ff6f00;
	}
}

@keyframes animate-out-bottom-bar {
	0% {
		background-color: red;
	}

	50% {
		-webkit-transform: translateY(-9px);
		transform: translateY(-9px)
	}

	80% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
		background-color: white;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		background-color: #ff6f00;
	}
}

@keyframes animate-out-middle-bar {
	0% {
		background-color: red;
	}

	80% {
		background-color: white;
	}

	100% {
		background-color: #ff6f00;
	}
}

.home a {
	font-family: "Work Sans", sans-serif;
	color: #fff;
	font-weight: 300;
	font-size: 50px;
	text-transform: uppercase;
	text-decoration: none;
	position: absolute;
	z-index: 10;
	top: 50px;
	left: 50px;
	padding-bottom: 3px;
	border-bottom: 1px solid #fff;
}

.content__title {
	text-align: center;
	font-family: eb;
	font-size: 6vw;
	margin: 0;
	position: relative;
	font-weight: normal;
	background: linear-gradient(to top, #ff6f00, #ff6f00 80%);
	background-clip: text;
	letter-spacing: 4px;
	background-size: 80%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	overflow: hidden;
}

.content__title01 {
	text-align: center;
	font-family: eb;
	font-size: 6vw;
	margin: 0;
	position: relative;
	letter-spacing: 3px;
	word-spacing: 5px;
	background: linear-gradient(to top, #ff6f00, #ff6f00 80%);
	background-clip: text;
	background-size: 80%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	overflow: hidden;
}

.content__subtitle {
	font-family: sb;
	font-size: 1.80rem;
	font-weight: 900;
	padding: 1rem 0;
	letter-spacing: 2px;
	text-align: center;
	color: #000;
}

.content__subtitle::after {
	content: '';
	position: relative;
	display: block;
	font-size: 2.75rem;
	text-align: center;
	font-weight: 900;
}

#content-1 {
	font-weight: 100;
	color: white;
	background: radial-gradient(circle at center, white, white);
	-webkit-overflow-Y: hidden;
	-moz-overflow-Y: hidden;
	-o-overflow-Y: hidden;
	overflow-y: hidden;
	-webkit-animation: fadeIn 1 1s ease-out;
	-moz-animation: fadeIn 1 1s ease-out;
	-o-animation: fadeIn 1 1s ease-out;
	animation: fadeIn 1 1s ease-out;
}

#vv {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 600px;
	height: 300px;
}

.light {
	position: absolute;
	width: 0px;
	opacity: .75;
	background-color: #ff6f00;
	box-shadow: #ff6f00 0px 0px 20px 2px;
	opacity: 0;
	top: 100vh;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
}

.x1 {
	-webkit-animation: floatUp 4s infinite linear;
	-moz-animation: floatUp 4s infinite linear;
	-o-animation: floatUp 4s infinite linear;
	animation: floatUp 4s infinite linear;
	-webkit-transform: scale(1.0);
	-moz-transform: scale(1.0);
	-o-transform: scale(1.0);
	transform: scale(1.0);
}

.x2 {
	-webkit-animation: floatUp 7s infinite linear;
	-moz-animation: floatUp 7s infinite linear;
	-o-animation: floatUp 7s infinite linear;
	animation: floatUp 7s infinite linear;
	-webkit-transform: scale(1.6);
	-moz-transform: scale(1.6);
	-o-transform: scale(1.6);
	transform: scale(1.6);
	left: 15%;
}

.x3 {
	-webkit-animation: floatUp 2.5s infinite linear;
	-moz-animation: floatUp 2.5s infinite linear;
	-o-animation: floatUp 2.5s infinite linear;
	animation: floatUp 2.5s infinite linear;
	-webkit-transform: scale(.5);
	-moz-transform: scale(.5);
	-o-transform: scale(.5);
	transform: scale(.5);
	left: -15%;
}

.x4 {
	-webkit-animation: floatUp 4.5s infinite linear;
	-moz-animation: floatUp 4.5s infinite linear;
	-o-animation: floatUp 4.5s infinite linear;
	animation: floatUp 4.5s infinite linear;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
	left: -34%;
}

.x5 {
	-webkit-animation: floatUp 8s infinite linear;
	-moz-animation: floatUp 8s infinite linear;
	-o-animation: floatUp 8s infinite linear;
	animation: floatUp 8s infinite linear;
	-webkit-transform: scale(2.2);
	-moz-transform: scale(2.2);
	-o-transform: scale(2.2);
	transform: scale(2.2);
	left: -57%;
}

.x6 {
	-webkit-animation: floatUp 3s infinite linear;
	-moz-animation: floatUp 3s infinite linear;
	-o-animation: floatUp 3s infinite linear;
	animation: floatUp 3s infinite linear;
	-webkit-transform: scale(.8);
	-moz-transform: scale(.8);
	-o-transform: scale(.8);
	transform: scale(.8);
	left: -81%;
}

.x7 {
	-webkit-animation: floatUp 5.3s infinite linear;
	-moz-animation: floatUp 5.3s infinite linear;
	-o-animation: floatUp 5.3s infinite linear;
	animation: floatUp 5.3s infinite linear;
	-webkit-transform: scale(3.2);
	-moz-transform: scale(3.2);
	-o-transform: scale(3.2);
	transform: scale(3.2);
	left: 37%;
}

.x8 {
	-webkit-animation: floatUp 4.7s infinite linear;
	-moz-animation: floatUp 4.7s infinite linear;
	-o-animation: floatUp 4.7s infinite linear;
	animation: floatUp 4.7s infinite linear;
	-webkit-transform: scale(1.7);
	-moz-transform: scale(1.7);
	-o-transform: scale(1.7);
	transform: scale(1.7);
	left: 62%;
}

.x9 {
	-webkit-animation: floatUp 4.1s infinite linear;
	-moz-animation: floatUp 4.1s infinite linear;
	-o-animation: floatUp 4.1s infinite linear;
	animation: floatUp 4.1s infinite linear;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-o-transform: scale(0.9);
	transform: scale(0.9);
	left: 85%;
}

@-webkit-keyframes floatUp {
	0% {
		top: 100vh;
		opacity: 0;
	}

	25% {
		opacity: .8;
	}

	50% {
		top: 0vh;
		opacity: .8;
	}

	75% {
		opacity: .8;
	}

	100% {
		top: -100vh;
		opacity: 0;
	}
}

@-moz-keyframes floatUp {
	0% {
		top: 100vh;
		opacity: 0;
	}

	25% {
		opacity: .8;
	}

	50% {
		top: 0vh;
		opacity: .8;
	}

	75% {
		opacity: .8;
	}

	100% {
		top: -100vh;
		opacity: 0;
	}
}

@-o-keyframes floatUp {
	0% {
		top: 100vh;
		opacity: 0;
	}

	25% {
		opacity: .8;
	}

	50% {
		top: 0vh;
		opacity: .8;
	}

	75% {
		opacity: .8;
	}

	100% {
		top: -100vh;
		opacity: 0;
	}
}

@keyframes floatUp {
	0% {
		top: 100vh;
		opacity: 0;
	}

	25% {
		opacity: .8;
	}

	50% {
		top: 0vh;
		opacity: .8;
	}

	75% {
		opacity: .8;
	}

	100% {
		top: -100vh;
		opacity: 0;
	}
}


.contentt {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 310px;
	background: #000000a6;
	box-sizing: border-box;
	overflow: hidden;
	box-shadow: 8px 8px 30px #ff6f00;
	border: 2px solid black;
	border-radius: 10px;
	color: white;
	padding: 5px 0px 10px 0px;
	transition: 4s;
}

.contentt:hover {
	background: linear-gradient(to top, white, black);
}

#content-2 {
	background: radial-gradient(circle at center, white, white);
	overflow: hidden;
}

.divv {
	display: grid;
	justify-content: center;
	align-items: center;
	row-gap: 20px;
}

.divv img {
	height: 35px;
	width: 35px;
}

.divv img:hover {
	opacity: 0.6;
}

#content-3 {
	background: radial-gradient(circle at center, white, white);
	overflow: hidden;
	height: fit-content;
}

.flip-box {
	background-color: transparent;
	width: 450px;
	height: 385px;
	perspective: 1000px;
	transition: transform .8s ease-in-out;
}

.flip-box-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
	transform: rotateY(180deg);
}

.flip-box-front p {
	font-family: sb;
	font-size: 1.4vmax;
	color: rgba(0, 0, 0, 0.8);
	text-indent: 4px;
}

.flip-box-front h2 {
	font-family: eb;
	font-size: 1.6vmax;
	color: #ff6f00;
}

.flip-box-front,
.flip-box-back {
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.flip-box-front {
	background-color: white;
	padding: 5% 2% 5% 2%;
	display: grid;
	align-items: center;
	justify-content: center;
	border: 5px solid #ff6f00;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.22) 0px 12px 15px, rgba(0, 0, 0, 0.3) 0px 19px 75px;
}

.flip-box-back {
	background-color: transparent;
	color: white;
	transform: rotateY(180deg);
}

#confl,
#confl2 {
	display: subgrid;
	align-items: center;
	justify-content: center;
}

#cf1,
#cf3 {
	align-items: center;
	justify-content: center;
	column-gap: 2%;
}

#video-card,
#web-card {
	width: 450px;
	height: 385px;
	position: relative;
	margin: 1.5% 0 1.5% 0;
}

#video-card iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 20px;
}

.flip-box-back {
	background-color: transparent;
	color: white;
	transform: rotateY(180deg);
}

.image-container {
	position: relative;
	display: inline-block;
	height: 385px;
	width: 450px;
	border: 5px solid #ff6f00;
	border-radius: 20px;
}

.image-container img {
	height: 100%;
	width: 100%;
	display: none;
}

.zoom-nav-btn {
	position: fixed;
	top: 60%;
	transform: translateY(-50%);
	color: #ff6f00;
	font-size: 40px;
	font-weight: 500;
	cursor: pointer;
	z-index: 9999;

}

#zoomPrevBtn {
	left: 10px;
}

#zoomNextBtn {
	right: 115px;
}

.zoom-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transform: translateX(100%);
	transition: opacity 0.3s, transform 0.3s;
	overflow-x: hidden;
	overflow-y: auto;
}

.arrow-container {
	width: 100px;
	height: 100px;
	margin: 0 auto;
	position: absolute;
	bottom: 25px;
	left: 0;
	right: 0;
}

.arrow-1 {
	width: 100px;
	height: 100px;
	background: #ff6f00;
	opacity: 0.5;
	border-radius: 50%;
	position: absolute;
}

.arrow-2 {
	width: 60px;
	height: 60px;
	background: #ff6f00;
	border-radius: 50%;
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 1;
	display: table;
}

.arrow-2:before {
	width: 52px;
	height: 52px;
	content: "";
	border: 2px solid white;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
}

.arrow-2 i.fa {
	font-size: 30px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: white;
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.4, .4, .4);
		transform: scale3d(.4, .4, .4);
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 0;
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.4, .4, .4);
		transform: scale3d(.4, .4, .4);
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 0;
	}
}

.outer {
	font-family: Helvetica, Arial, sans-serif;
	position: relative;
	margin: auto;
	width: 50px;
	cursor: pointer;
}

.inner {
	width: inherit;
	text-align: center;
}

#lbl {
	font-size: .3em;
	text-transform: uppercase;
	color: #fff;
	transition: all .3s ease-in;
	opacity: 0;
	cursor: pointer;
}

.inner:before,
.inner:after {
	position: absolute;
	content: '';
	height: 1px;
	width: inherit;
	background: #FFC107;
	left: 0;
	transition: all .3s ease-in;
}

.inner:before {
	top: 50%;
	transform: rotate(45deg);
}

.inner:after {
	bottom: 50%;
	transform: rotate(-45deg);
}

.outer:hover #lbl {
	opacity: 1;
}

.outer:hover .inner:before,
.outer:hover .inner:after {
	transform: rotate(0);
}

.outer:hover .inner:before {
	top: 39px;
}

.outer:hover .inner:after {
	bottom: 10px;
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

#zoomCloseBtn {
	position: fixed;
	top: 2px;
	right: 30px;
	color: #ff6f00;
	font-size: 50px;
	font-weight: 900;
	cursor: pointer;
	z-index: 9999;
}

.zoom-overlay.active {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0)
}

.zoom-prev {
	transform: translateX(-100%);
}

.zoom-next {
	transform: translateX(100%);
}

.zoomed-image {
	max-height: 450vh;
	max-width: 450vw;
}

.wrapper {
	margin: -20px auto 0;
	width: 70%;
	max-width: 1000px;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 35%;
}

.inform {
	display: grid;
	align-items: center;
	justify-content: center;
	width: 25%;
	z-index: 1;

}

.inform h2 {
	color: #ff6f00;
	text-align: center;
	text-decoration: underline;
	font-family: eb;
	font-size: 2vmax;
}

.inform a {
	color: black;
	text-align: center;
	text-decoration: none;
	font-family: sb;
	font-size: 2vmax;
}

.inform a:hover {
	color: #ff6f00;
}

form {
	width: 100%;
	margin: 0;
}

.c1,
.c2,
.c3 {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 15px;
}

.c4 {
	text-align: center;
	display: grid;
	align-items: center;
	justify-content: center;
}

form * {
	font-size: 20px;
	letter-spacing: 0.075em;
	font-weight: 600;
	font-family: m;
	text-transform: uppercase;
	cursor: pointer;
	text-decoration: none;
}

form .field {
	width: 100%;
	position: relative;
	margin-bottom: 15px;
}

form .field label {
	position: absolute;
	top: 0;
	left: -5px;
	background: linear-gradient(90deg, #ff6f00, #dd7f36);
	width: 100%;
	height: 64px;
	transition: width 333ms ease-in-out;
	text-align: center;
	padding: 18px 0;
	border-radius: 15px;
}

form .field input[type="text"],
form .field textarea {
	border: none;
	border-radius: 15px;
	width: 100%;
	height: 64px;
	margin: 0;
	padding-left: 19.5%;
	color: #313a3d;
}

form #message {
	height: 64px;
	resize: none;
	transition: all 333ms ease-in-out;
	padding-top: 18px;
}

form textarea:focus#message,
form textarea:not(:placeholder-shown)#message {
	height: 166px;
}

form input[type="text"]:focus+label,
form input[type="text"]:not(:placeholder-shown)+label,
form textarea:focus+label,
form textarea:not(:placeholder-shown)+label,
form .field:hover label {
	width: 20%;
}

form input[type="submit"] {
	background: linear-gradient(90deg, #ff6f00, #dd7f36);
	-webkit-appearance: none;
	border: none;
	position: relative;
	padding: 13px 50px;
	transition: all 0.3s ease-in-out;
	margin: 0 0 0 27%;
	border-radius: 15px;
	font-family: eb;
}

form input[type="submit"]:hover,
form input[type="submit"]:focus {
	background: orangered;
}


#content-4 {
	background: radial-gradient(circle at center, white, white);
}

.connni {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10%;
}

.connni img {
	height: 125px;
	width: 125px;
}

.connns {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 1%;
}

.snip1533 {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	color: #9e9e9e;
	display: inline-block;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 16px;
	margin: 35px 10px 10px;
	max-width: 310px;
	min-width: 250px;
	position: relative;
	text-align: center;
	width: 100%;
	height: 270px;
	background-color: #ffffff;
	border-radius: 5px;
	border-top: 5px solid #d2652d;
	transition: transform .5s ease-in-out;
}

.snip1533:hover {
	transform: scale(1.175);
}

.snip1533 *,
.snip1533 *:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.1s ease-out;
	transition: all 0.1s ease-out;
}

.snip1533 figcaption {
	padding: 13% 10% 12%;
}

.snip1533 figcaption:before {
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
	color: #d2652d;
	content: "\201D";
	font-family: eb;
	font-size: 40px;
	font-style: normal;
	left: 50%;
	line-height: 60px;
	position: absolute;
	top: -30px;
	width: 60px;
}

.snip1533 h3 {
	color: #3c3c3c;
	font-size: 20px;
	font-weight: 300;
	line-height: 24px;
	margin: 10px 0 5px;
	font-family: sb;
}

.snip1533 h4 {
	font-weight: 400;
	margin: 0;
	opacity: 0.5;
	font-family: sb;
	font-size: 15px;
}

.snip1533 blockquote {
	font-weight: 300;
	font-family: sb;
	margin: 0 0 20px;
}

#content-5 {
	background: radial-gradient(circle at center, white, white);
}

.connn {
	top: 75%;
	right: 2.3%;
	z-index: 20;
	position: fixed;
	display: grid;
	justify-content: right;
	align-items: center;
	row-gap: 20px;
}

.connn img {
	height: 40px;
	width: 40px;
	filter: brightness(100%);
}

.connn img:hover {
	filter: brightness(150%);
}

::-webkit-scrollbar {
	width: 7px;
}

::-webkit-scrollbar-track {
	background: lightyellow;
}

::-webkit-scrollbar-thumb {
	background: #ff6f00;
}

::-webkit-scrollbar-thumb:hover {
	background: orangered;
}

.custom-div {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 20px;
	margin: 40px 0 50px 0;
}

.custom-div .circle {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #ff6f00;
	margin: 0 5px;
}

#cc {
	text-align: center;
	margin: 5% 0 2% 0;
	font-size: 1em;
}

/*=========== Video Cost Calculator =========*/
.video-calculator-box {
  padding: 25px;
  display: grid;
  align-items: center;
  justify-content: center;
}

.calculator-container label {
  margin-top: 12px;
  font-weight: bold;
  color: #ff6f00;
}

.video-calculator-box input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ff6f00;
  background-color: white;
  color: #ff6f00;
  border-radius: 6px;
}

.video-calculator-box input:disabled {
  background: #eee;
  cursor: not-allowed;
}

/* Video Type Buttons */
.video-type-buttons {
  display: flex;
  gap: 10px;
  margin: 10px 0 15px 0;
}

.video-type-buttons button {
  flex: 1;
  padding: 10px;
  border: 1px solid #ff6f00;
  border-radius: 6px;
  background: white;
  color: #ff6f00;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.video-type-buttons button.active {
  background: #ff6f00;
  color: #fff;
}

.video-type-buttons button:hover {
  background: #e65c00;
  color: #fff;
}

/* Slider */
.video-calculator-box input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(to right, #ff6f00 0%, #ff6f00 var(--value, 0%), #ddd var(--value, 0%), #ddd 100%);
  outline: none;
  transition: background 0.25s ease;
  padding: 4px 0;
}

.video-calculator-box input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #ff6f00;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 4px rgba(255, 111, 0, 0.5);
  transition: all 0.3s ease;
}

.video-calculator-box input[type="range"]::-webkit-slider-thumb:hover,
.video-calculator-box input[type="range"]::-webkit-slider-thumb:active {
  background: #e65c00;
  box-shadow: 0 0 10px rgba(255, 111, 0, 0.9);
  transform: scale(1.2);
}

.video-calculator-box input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #ff6f00;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 4px rgba(255, 111, 0, 0.5);
  transition: all 0.3s ease;
}

.video-calculator-box input[type="range"]::-moz-range-thumb:hover,
.video-calculator-box input[type="range"]::-moz-range-thumb:active {
  background: #e65c00;
  box-shadow: 0 0 10px rgba(255, 111, 0, 0.9);
  transform: scale(1.2);
}

.result {
  margin-top: 20px;
  padding: 15px;
  background: #ff6f00;
  color: #fff;
  font-size: 18px;
  text-align: center;
  border-radius: 6px;
  font-weight: bold;
}

.seconds-display {
  text-align: center;
  margin-top: 5px;
  font-weight: bold;
  color: #333;
}

/* Mode & Package Buttons */
.mode-buttons, .package-buttons {
  display: flex;
  gap: 10px;
  margin: 10px 0 15px 0;
}

.mode-buttons button,
.package-buttons button {
  flex: 1;
  padding: 10px;
  border: 1px solid #ff6f00;
  border-radius: 6px;
  background: white;
  color: #ff6f00;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.mode-buttons button.active,
.package-buttons button.active {
  background: #ff6f00;
  color: #fff;
}

.mode-buttons button:hover,
.package-buttons button:hover {
  background: #e65c00;
  color: #fff;
}


/*this update*/
@media screen and (min-width: 1750px) {
	.flip-box-front p {
		font-size: 25px;
	}
}

@media screen and (max-width: 1406px) {
	.flip-box {
		width: 410px;
		height: 280px;
	}

	#video-card,
	#web-card {
		width: 410px;
		height: 280px;
	}

	.image-container {
		height: 280px;
		width: 410px;
	}
}

@media screen and (max-width: 1293px) {
	.zoomed-image {
		max-height: 400vh;
		max-width: 400vw;
	}

	.image-container {
		height: 240px;
		width: 370px;
	}
}

@media screen and (max-width: 1157px) {
	.flip-box {
		width: 330px;
		height: 220px;
	}

	#video-card,
	#web-card {
		width: 330px;
		height: 220px;
	}

	.image-container {
		height: 220px;
		width: 330px;
	}
}

@media screen and (max-width: 69em) {
	.flip-box {
		width: 300px;
		height: 220px;
	}

	#video-card,
	#web-card {
		width: 300px;
		height: 220px;
	}

	.image-container {
		height: 220px;
		width: 300px;
	}

	.zoomed-image {
		max-height: 350vh;
		max-width: 350vw;
	}

	.content__title {
		font-size: 7vmax;
		text-align: center;
	}

	.content__title01 {
		font-size: 7vmax;
		text-align: center;
	}

	.connni {
		column-gap: 10%;
	}

	.connni img {
		height: 85px;
		width: 85px;
	}

	.connns {
		display: grid;
		justify-content: center;
		align-items: center;
		row-gap: 1%;
	}

	.wrapper {
		display: grid;
		justify-content: center;
		align-items: center;
		row-gap: 1%;
	}

	.inform {
		width: 100%;
	}

	.inform h2 {
		font-size: 4vmax;
	}

	.inform a {
		font-size: 4vmax;
	}

	form .field {
		width: 100%;
	}

	form .field label {
		width: 100%;
	}

	form input[type="submit"] {
		margin: 0 29% 0 29%;
	}
}

@media screen and (max-width: 952px) {
	.zoomed-image {
		max-height: 300vh;
		max-width: 300vw;
	}
	#gut{
	 margin-top: 15px;   
	}

	.flip-box {
		width: 270px;
		height: 220px;
	}

	#video-card,
	#web-card {
		width: 270px;
		height: 220px;
	}

	.image-container {
		height: 220px;
		width: 270px;
	}

	#navvy {
		right: -5.5%;
	}

	nav ul li a {
		font-size: 1.75rem;
	}

	nav li a:after {
		font-size: 0.9rem;
	}
}

@media screen and (max-width: 850px) {
	.zoomed-image {
		max-height: 250vh;
		max-width: 250vw;
	}

	.flip-box {
		width: 230px;
		height: 220px;
	}

	#video-card,
	#web-card {
		width: 230px;
		height: 220px;
	}

	.image-container {
		height: 220px;
		width: 230px;
	}

	.connn {
		row-gap: 15px;
	}

	.connn img {
		height: 30px;
		width: 30px;
	}
}

@media screen and (max-width:755px) {
	.content__subtitle {
		font-size: 1.5rem;
	}

	#vv {
		width: 100%;
		height: 100%;
	}

	#content-1 {
		height: fit-content;
	}

	.contentt {
		height: 90%;
		width: 90%;
	}

	.zoomed-image {
		max-height: 200vh;
		max-width: 200vw;
	}

	form input[type="submit"] {
		margin: 0 24% 0 24%;
	}

	nav ul li a {
		font-size: 1.5rem;
		letter-spacing: 3px;
	}
}

@media screen and (max-width:570px) {
	#notification-bar {
		font-size: 10px;
	}
	#navv{
		margin-top: 4%;
	}
	form * {
		font-size: 17px;
	}

	form input[type="submit"] {
		font-size: 14px;
	}

	nav ul li a {
		font-size: 1.25rem;
	}

	.open-overlay {
		right: 1rem;
		top: 2rem;
	}

	#navvy {
		right: 0;
	}

	nav li a:before {
		width: 15px;
	}

	#cc {
		font-size: 0.7em;
	}

	.package-btn,.action-btn {
		font-size: 1rem;
	}
	.service-btn{
    	font-size: .9rem;
	}
	
}

@media screen and (max-width:500px) {
	.content__subtitle {
		font-size: 1.25rem;
		padding-left: 8%;
		padding-right: 8%;
		/*this update*/
	}

	.zoomed-image {
		max-height: 150vh;
		max-width: 150vw;
	}

	.connni img {
		height: 70px;
		width: 70px;
	}

	form input[type="submit"] {
		margin: 0 18% 0 18%;
	}

	.content__title01 {
		margin-top: 10%;
	}
}

@media screen and (max-width:490px) {
	#connni {
		column-gap: 5%;
	}
	#calbtn{
        display: grid;
        row-gap: 10px;
    }

	.connni img {
		height: 55px;
		width: 55px;
	}

	.zoomed-image {
		max-height: 100vh;
		max-width: 100vw;
	}

	nav ul li a {
		font-size: 1.2rem;
		letter-spacing: 1px;
	}

	#popup h2{
		font-size: 25px;
	}
	#popup p{
		font-size: 15px;
	}
	#closeBtn {
		font-size: 17px;
	}
	#pbtn{
		padding-top: 2%;
		padding-bottom: 0;
		font-size: 25px;
	}
}

@media screen and (max-width:415px) {
	#connni {
		column-gap: 5%;
	}

	.connni img {
		height: 55px;
		width: 55px;
	}

	.zoomed-image {
		max-height: 100vh;
		max-width: 100vw;
	}

	nav ul li a {
		font-size: 1.1rem;
		letter-spacing: 0;
	}

	nav ul li a::after {
		font-size: .7rem;
	}

	.inform a {
		font-size: 20px;
	}
	.package-btn,.action-btn {
		font-size: .7rem;
	}
	.service-btn {
    	font-size: .6rem;
	}
	.close-btn{
	    font-size: 30px;
	    top: 7px;
	    right: 7px;
	}
}
@media screen and (max-width:358px) {
	.package-btn{
		padding: 5px 10px;
	}
}