/*
    Template Name: Sasup - Sass Landing HTML5 Template
    Author: Bdevs
    Support: https://support.bdevs.net
    Description: Sass & Softwer Startup HTML Template
    Version: 1.1
*/

/* CSS Index
-----------------------------------
1. Theme default css
2. header
3. slider
4. about-area
5. features-box
6. department
7. team
8. video-area
9. counter
10. footer
*/

/* 1. Theme default css */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,500&display=swap");
/*
--------------------------------------------
4.animated
*/
@use '../abstracts/mixins' as *;

/* circle animation effect 
----------------------------------*/
@keyframes hero-thumb-animation {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes hero-thumb-sm-animation {
  0% {
    -webkit-transform: translateY(-20px) translateX(50px);
    -moz-transform: translateY(-20px) translateX(50px);
    -ms-transform: translateY(-20px) translateX(50px);
    transform: translateY(-20px) translateX(50px);
  }
  100% {
    -webkit-transform: translateY(-20px) translateX(0px);
    -moz-transform: translateY(-20px) translateX(0px);
    -ms-transform: translateY(-20px) translateX(0px);
    transform: translateY(-20px) translateX(0px);
  }
}
@keyframes hero-thumb-sm-2-animation {
  0% {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes services-triangle {
  0% {
    -webkit-transform: rotate(0deg) translateX(-50px);
    -moz-transform: rotate(0deg) translateX(-50px);
    -ms-transform: rotate(0deg) translateX(-50px);
    transform: rotate(0deg) translateX(-50px);
  }
  100% {
    -webkit-transform: rotate(360deg) translateY(100px);
    -moz-transform: rotate(360deg) translateY(100px);
    -ms-transform: rotate(360deg) translateY(100px);
    transform: rotate(360deg) translateY(100px);
  }
}
.circle-shape-change {
    -webkit-border-radius: 45% 55% 60% 40% / 59% 56% 44% 41%;
  -moz-border-radius: 45% 55% 60% 40% / 59% 56% 44% 41%;
  border-radius: 45% 55% 60% 40% / 59% 56% 44% 41%;
  -webkit-animation: hero-border 2s linear infinite alternate;
  -moz-animation: hero-border 2s linear infinite alternate;
  -o-animation: hero-border 2s linear infinite alternate;
  animation: hero-border 2s linear infinite alternate;
}

@keyframes hero-border {
    0% {
        -webkit-border-radius: 45% 55% 60% 40% / 59% 56% 44% 41%;
        -moz-border-radius: 45% 55% 60% 40% / 59% 56% 44% 41%;
        border-radius: 45% 55% 60% 40% / 59% 56% 44% 41%;
    }
    100% {
        -webkit-border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        -moz-border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
}




/* movement animation effect 
----------------------------------*/

.horizontal_move50px {
  -webkit-animation: horizontal_move50 8s linear 0s infinite alternate;
  -moz-animation: horizontal_move50 8s linear 0s infinite alternate;
  -o-animation: horizontal_move50 8s linear 0s infinite alternate;
  animation: horizontal_move50 8s linear 0s infinite alternate;
}
@keyframes horizontal_move50 {
    0% {
      -webkit-transform: translateX(50px);
      -moz-transform: translateX(50px);
      -ms-transform: translateX(50px);
      transform: translateX(50px);
    }
    100% {
      -webkit-transform: translateX(0px);
      -moz-transform: translateX(0px);
      -ms-transform: translateX(0px);
      transform: translateX(0px);
    }
  }




.horizontal_move100px {
  -webkit-animation: horizontal_move100 5s linear 0s infinite alternate;
  -moz-animation: horizontal_move100 5s linear 0s infinite alternate;
  -o-animation: horizontal_move100 5s linear 0s infinite alternate;
  animation: horizontal_move100 5s linear 0s infinite alternate;
}
@keyframes horizontal_move100 {
    0% {
      -webkit-transform: translateX(-100px);
      -moz-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
      transform: translateX(-100px);
    }
    100% {
      -webkit-transform: translateX(0px);
      -moz-transform: translateX(0px);
      -ms-transform: translateX(0px);
      transform: translateX(0px);
    }
  }


  .upward_movement200px {
    -webkit-animation: upward_movement200 8s linear 0s infinite alternate;
    -moz-animation: upward_movement200 8s linear 0s infinite alternate;
    -o-animation: upward_movement200 8s linear 0s infinite alternate;
    animation: upward_movement200 8s linear 0s infinite alternate;
  }


  @keyframes upward_movement200 {
    0% {
      -webkit-transform: translateY(-200px);
      -moz-transform: translateY(-200px);
      -ms-transform: translateY(-200px);
      transform: translateY(-200px);
    }
    100% {
      -webkit-transform: translateX(0px);
      -moz-transform: translateX(0px);
      -ms-transform: translateX(0px);
      transform: translateX(0px);
    }
  }


/* image animation effect 
----------------------------------*/

.img-animation-left, .img-animation-right {
  -webkit-animation-name: vamtam-scale-out-left;
  animation-name: vamtam-scale-out-left;
  animation-duration: 3s;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  animation-fill-mode: backwards;
}


@keyframes vamtam-scale-out-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}


.img-animation-right {
  -webkit-animation-name: vamtam-scale-out-right;
  -webkit-animation-name: vamtam-scale-out-right;
  animation-name: vamtam-scale-out-right;
  animation-duration: 3s;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  animation-fill-mode: backwards;
}

@keyframes vamtam-scale-out-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* visible animation effect 
----------------------------------*/

.top_right_visible_animation {
  -webkit-animation-name: top_right_visible;
  -webkit-animation-name: top_right_visible;
  animation-name: top_right_visible;
  animation-duration: 5s;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  animation-fill-mode: backwards;
}

@keyframes top_right_visible {
  from {
    transform: translate(100%, -100%);
  }
  to {
    transform: translate(0, 0);
  }
}


.width_visible_animation {
  -webkit-animation: width_visible 3s linear 0s;
  -moz-animation: width_visible 3s linear 0s;
  -o-animation: width_visible 3s linear 0s;
  animation: width_visible 3s linear 0s;
}
@keyframes width_visible {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* hvr-buzz-out animation effect 
----------------------------------*/

@-webkit-keyframes hvr-buzz-out {
	10% {
		-webkit-transform: translateX(3px) rotate(2deg);
		transform: translateX(3px) rotate(2deg);
	}
	20% {
		-webkit-transform: translateX(-3px) rotate(-2deg);
		transform: translateX(-3px) rotate(-2deg);
	}
	30% {
		-webkit-transform: translateX(3px) rotate(2deg);
		transform: translateX(3px) rotate(2deg);
	}
	40% {
		-webkit-transform: translateX(-3px) rotate(-2deg);
		transform: translateX(-3px) rotate(-2deg);
	}
	50% {
		-webkit-transform: translateX(2px) rotate(1deg);
		transform: translateX(2px) rotate(1deg);
	}
	60% {
		-webkit-transform: translateX(-2px) rotate(-1deg);
		transform: translateX(-2px) rotate(-1deg);
	}
	70% {
		-webkit-transform: translateX(2px) rotate(1deg);
		transform: translateX(2px) rotate(1deg);
	}
	80% {
		-webkit-transform: translateX(-2px) rotate(-1deg);
		transform: translateX(-2px) rotate(-1deg);
	}
	90% {
		-webkit-transform: translateX(1px) rotate(0);
		transform: translateX(1px) rotate(0);
	}
	100% {
		-webkit-transform: translateX(-1px) rotate(0);
		transform: translateX(-1px) rotate(0);
	}
}
@keyframes hvr-buzz-out {
	10% {
		-webkit-transform: translateX(3px) rotate(2deg);
		transform: translateX(3px) rotate(2deg);
	}
	20% {
		-webkit-transform: translateX(-3px) rotate(-2deg);
		transform: translateX(-3px) rotate(-2deg);
	}
	30% {
		-webkit-transform: translateX(3px) rotate(2deg);
		transform: translateX(3px) rotate(2deg);
	}
	40% {
		-webkit-transform: translateX(-3px) rotate(-2deg);
		transform: translateX(-3px) rotate(-2deg);
	}
	50% {
		-webkit-transform: translateX(2px) rotate(1deg);
		transform: translateX(2px) rotate(1deg);
	}
	60% {
		-webkit-transform: translateX(-2px) rotate(-1deg);
		transform: translateX(-2px) rotate(-1deg);
	}
	70% {
		-webkit-transform: translateX(2px) rotate(1deg);
		transform: translateX(2px) rotate(1deg);
	}
	80% {
		-webkit-transform: translateX(-2px) rotate(-1deg);
		transform: translateX(-2px) rotate(-1deg);
	}
	90% {
		-webkit-transform: translateX(1px) rotate(0);
		transform: translateX(1px) rotate(0);
	}
	100% {
		-webkit-transform: translateX(-1px) rotate(0);
		transform: translateX(-1px) rotate(0);
	}
}


/* wobble-vertical animation effect 
----------------------------------*/


@-webkit-keyframes wobble-vertical {
  16.65% {
      transform: translateY(8px);
  }
  33.3% {
      transform: translateY(-6px);
  }
  49.95% {
      transform: translateY(4px);
  }
  66.6% {
      transform: translateY(-2px);
  }
  83.25% {
      transform: translateY(1px);
  }
  100% {
      transform: translateY(0);
  }
}

@-webkit-keyframes animation-pulse-shrink {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.5);
    }
    75% {
        transform: scale(0.7);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes wobble-vertical {
  16.65% {
      transform: translateY(8px);
  }
  33.3% {
      transform: translateY(-6px);
  }
  49.95% {
      transform: translateY(4px);
  }
  66.6% {
      transform: translateY(-2px);
  }
  83.25% {
      transform: translateY(1px);
  }
  100% {
      transform: translateY(0);
  }
}


/* video play animation */

.popup-video:before, .popup-video:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid #cccccc;
  animation: popupBtn 1.8s linear infinite;
}
.popup-video:before {
  animation-delay: 0.8s;
}

@keyframes popupBtn {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.3;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
@keyframes hero-triangle-1 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* icon bounce  */

@keyframes icon-bounce { 
  0%, 100%, 20%, 50%, 80% { transform: translateY(0px); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}
@keyframes about-sm {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes hero-thumb-sm-3-animation {
  0% {
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes services-triangle-2 {
  0% {
    -webkit-transform: rotate(0deg) translateX(-15px);
    -moz-transform: rotate(0deg) translateX(-15px);
    -ms-transform: rotate(0deg) translateX(-15px);
    transform: rotate(0deg) translateX(-15px);
  }
  100% {
    -webkit-transform: rotate(360deg) translateY(30px);
    -moz-transform: rotate(360deg) translateY(30px);
    -ms-transform: rotate(360deg) translateY(30px);
    transform: rotate(360deg) translateY(30px);
  }
}
@keyframes services-circle-2 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}
.message-box,.map-bg-2 {
  animation-name: message-box;
  animation-duration: 4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.map-bg-2 {
  animation-delay: 1s;
}
.body-1-main,.body-2-main,.flower-box-1 {
  animation-name: message-box;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: .9s;
}
.body-2-main {
  animation-delay: .5s;
}
.flower-box-1{
  animation-delay: .11s;
}
@keyframes message-box {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.dot-animated {
  animation-name: dot-animated;
  animation-duration: .5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  &.delay-2 {
    animation-delay: .3s;
  }
  &.delay-3 {
    animation-delay: .6s;
  }
}

@keyframes dot-animated {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}
.leaves-rotate-1 {
  animation-name: leaves-rotate-1;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}
.leaves-rotate-2 {
  animation-name: leaves-rotate-2;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}
@keyframes leaves-rotate-1 {
  0% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(35deg);
      transform-origin: left;
  }
  100% {
    transform: rotateY(0);
  }
}
@keyframes leaves-rotate-2 {
  0% {
    transform: rotateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: rotateX(0);
  }
}
.parcentage-box {
  -webkit-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
}

@keyframes hero-thumb-sm-3-animation {
  0% {
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}
.icon-animated-hidden {
  transform: translateX(120px);
  opacity: 0;
}

@keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}




@keyframes video-scale-up {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}


body {
	font-family: "DM Sans", sans-serif;
	font-weight: normal;
	font-style: normal;
	color: #003242;
}
#loading {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 999;
	margin-top: 0px;
	top: 0px;
	&:is(.loading-1) {
		background-color: #2f75ff;
	}
}
.img {
	max-width: 100%;
	transition: all 0.3s ease-out 0s;
}
.f-left {
	float: left;
}
.f-right {
	float: right;
}
.fix {
	overflow: hidden;
}
a,
.button {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
a:focus,
.button:focus {
	text-decoration: none;
	outline: none;
}
a:focus,
a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
	color: #0071dc;
	text-decoration: none;
}
a,
button {
	color: #1696e7;
	outline: medium none;
}
.uppercase {
	text-transform: uppercase;
}
.capitalize {
	text-transform: capitalize;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "DM Sans", sans-serif;
	font-weight: normal;
	color: #003242;
	margin-top: 0px;
	font-style: normal;
	font-weight: 400;
	text-transform: normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}
h1 {
	font-size: 40px;
	font-weight: 500;
}
h2 {
	font-size: 35px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
ul {
	margin: 0px;
	padding: 0px;
}
li {
	list-style: none;
}
p {
	font-size: 16px;
	font-weight: normal;
	line-height: 28px;
	color: #758799;
	margin-bottom: 15px;
}
hr {
	border-bottom: 1px solid #eceff8;
	border-top: 0 none;
	margin: 0;
	padding: 0;
}
label {
	color: #7e7e7e;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
}
*::-moz-selection {
	background: #d6b161;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #444;
	color: #fff;
	text-shadow: none;
}
::selection {
	background: #444;
	color: #fff;
	text-shadow: none;
}
*::-moz-placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}
*::placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}
.theme-overlay {
	position: relative;
}
.theme-overlay::before {
	background: #1696e7 none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.6;
	position: absolute;
	top: 0;
	width: 100%;
}
.separator {
	border-top: 1px solid #f2f2f2;
}
/* button style */

.btn {
	-moz-user-select: none;
	background: #1696e7 none repeat scroll 0 0;
	border: medium none;
	border-radius: 2px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1;
	margin-bottom: 0;
	padding: 13px 25px;
	text-align: center;
	text-transform: uppercase;
	touch-action: manipulation;
	transition: all 0.3s ease 0s;
	vertical-align: middle;
	white-space: nowrap;
}
.btn.btn-black {
	background: #303b41;
}
.btn.btn-black:hover {
	background: #1a1a1a;
}
.btn:hover {
	background: #106fab;
	color: #fff;
}
.btn.btn-large {
	padding: 10px 25px;
}
.btn-lg {
	font-weight: 700;
	padding: 13px 31px;
}
.btn.white-btn:hover {
	border-color: #ddd;
	color: #ddd;
}
.btn.btn-base.btn-link {
	background: transparent none repeat scroll 0 0;
	border: 0 none;
	color: #1696e7;
	padding: 0;
	text-decoration: none;
}
.btn.btn-base.btn-link:hover {
	color: #106fab;
}
.theme-bg {
	background: #1696e7;
}
.bg-white {
	background-color: #ffffff;
}
.breadcrumb > .active {
	color: #888;
}
.owl-carousel .owl-nav div {
	background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
	height: 40px;
	left: 20px;
	line-height: 40px;
	opacity: 0;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease 0s;
	visibility: hidden;
	width: 40px;
}
.owl-carousel .owl-nav div.owl-next {
	left: auto;
	right: 20px;
}
.owl-carousel:hover .owl-nav div {
	opacity: 1;
	visibility: visible;
}
.owl-carousel .owl-nav div:hover {
	background: #2b96cc;
	color: #fff;
}

/* header */
.header-menu ul li {
	display: inline-block;
	margin: 0 15px;
}
.header-menu {
	text-align: center;
}
.header-menu ul li a {
	color: #fff;
	position: relative;
}
.header-menu ul li a::before {
	content: "";
	width: 0;
	height: 1px;
	background: #fff;
	position: absolute;
	left: auto;
	right: 0;
	bottom: -4px;
	opacity: 0;
	transition: all 0.3s linear;
}
.header-menu ul li a:hover::before,
.header-menu ul li.active a::before {
	opacity: 1;
	width: 100%;
	left: 0;
	right: auto;
	transition: all 0.2s linear;
}
.logo {
	margin-top: 4px;
}

.header-area {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 99;
	padding: 20px 50px;
}
.purchase-link {
	margin-top: 4px;
}
.purchase-link a {
	display: inline-block;
	font-weight: 600;
	text-align: center;
	border: 1px solid transparent;
	line-height: 1;
	border-radius: 0;
	transition: 0.3s;
	background: #fff;
	padding: 23px 40px;
	text-transform: uppercase;
	font-size: 13px;
	color: #222222;
	height: 60px;
	letter-spacing: 2px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	border-radius: 5px;
}
.purchase-link a:hover {
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	transform: translateY(-3px);
}

.sticky-bar {
	position: fixed;
	background: #2f75ff;
	padding-top: 10px;
	padding-bottom: 10px;
	z-index: 9999;
	-webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}
/* intro */
.page-title-area {
	padding-top: 100px;
	padding-bottom: 100px;
	background-size: cover;
	background-position: center center;
	position: relative;
	min-height: 750px;
	background-image: -moz-linear-gradient(60deg, #380c7f 0%, #6922fa 100%);
    background-image: -webkit-linear-gradient(
60deg
, #380c7f 0%, #6922fa 100%);
    background-image: -ms-linear-gradient(60deg, #380c7f 0%, #6922fa 100%);
}
.page-title-area::before {
	position: absolute;
	content: "";
	background: #040021;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0.4;
}

.intro-wrapper h4 {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.title-area {
	padding: 150px 0;
}
.intro-wrapper h2 {
	font-size: 52px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
	line-height: 1.4;
	padding: 0 50px;
}
.intro-wrapper p {
	margin: 0;
}
.ready-wrapper > h4 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: -1px;
	color: #040021;
}
.ready-wrapper > h4 span {
	color: #2f75ff;
}
.ready-wrapper > p {
	margin: 0;
}
.intro-wrapper p {
	margin: 0;
	color: #fff;
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 35px;
}
.smoth-scroll {
	background: #fff;
	color: #222;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 20px 45px;
	display: inline-block;
	text-transform: uppercase;
	border-radius: 5px;
}
.smoth-scroll:hover,
.smoth-scroll:focus {
	background: #2f75ff;
	color: #fff;
}

/* demo */
.demo-area {
	padding-left: 100px;
	padding-right: 100px;
}
.demo-wrapper {
	margin-bottom: 60px;
}
.demo-thumb {
	box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
	transition: 0.3s;
	position: relative;
}
.demo-thumb:hover {
	box-shadow: 0 30px 65px rgba(0, 0, 0, 0.15);
}
.demo-thumb > a {
	display: block;
	overflow: hidden;
	position: relative;
}
.demo-thumb > a::before {
	background: #040021;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: 0.3s;
	z-index: 1;
}
.demo-wrapper:hover .demo-thumb > a::before {
	opacity: 0.7;
}
.demo-wrapper:hover .demo-thumb > a img {
	transform: scale(1.05);
}
.demo-thumb a > img {
	width: 100%;
	transition: 0.3s;
}
.demo-thumb img {
	max-width: 100%;
}
.demo-title > h4 {
	font-size: 22px;
	font-weight: 600;
	text-transform: capitalize;
	color: #040021;
}
.demo-title > h4:hover {
	color: #040021;
}
.demo-title {
	padding-top: 35px;
}
.demo-thumb span {
	-webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-50%);
	padding: 20px 30px;
	background: #fff;
	color: #222;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	width: 215px;
	right: 0;
	margin: auto;
	border-radius: 30px;
	z-index: 2;
}
.demo-thumb:hover span {
	visibility: visible;
	opacity: 1;
}
.demo-title span {
	position: relative;
}
.demo-title span:after {
	content: "NEW";
	position: absolute;
	background: #21AD95;
	inset-inline-end: 10px;
	top: 50%;
	right: -88px;
	transform: translate(-50%, -50%);
	font-size: 12px;
	display: inline-block;
	height: 20px;
	line-height: 19px;
	color: var(--clr-common-white);
	padding: 0 9px 0px 12px;
	border-radius: 0;
	clip-path: polygon(5px 0, 100% 0, 100% 100%, 5px 100%, 0 50%);
}
.demo-thumb h3 {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.95);
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	color: #ff4646;
	transition: all 0.3s ease 0s;
	border-radius: 4px;
	font-size: 24px;
	font-weight: 600;
}
/* features */
.bakix-features {
	border-radius: 5px;
	-webkit-box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
	padding: 45px 15px;
	text-align: center;
}
.bakix-features img {
	border-radius: 5px;
	margin-bottom: 15px;
	width: 70px;
}
.bakix-features h4 {
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	text-transform: capitalize;
}

/* footer */
.footer-area {
	background-size: cover;
	background-position: center right;
	background-image: -moz-linear-gradient(60deg, #380c7f 0%, #6922fa 100%);
    background-image: -webkit-linear-gradient(
60deg
, #380c7f 0%, #6922fa 100%);
    background-image: -ms-linear-gradient(60deg, #380c7f 0%, #6922fa 100%);
	position: relative;
}
.footer-area::before {
	position: absolute;
	content: "";
	background-color: #040021;
	opacity: 0.4;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.footer-text h2 {
	color: #fff;
	font-size: 50px;
	font-weight: 600;
	letter-spacing: -1px;
	margin-bottom: 20px;
}
.footer-text h2 i {
	font-family: "DM Sans", sans-serif;
}
.footer-text p {
	color: #fff;
	margin-bottom: 30px;
	font-size: 20px;
}
.footer-text a {
	display: inline-block;
	font-weight: 500;
	text-align: center;
	border: 1px solid transparent;
	line-height: 1;
	border-radius: 0;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	padding: 20px 40px;
	text-transform: uppercase;
	font-size: 14px;
	color: #fff;
	height: 60px;
	letter-spacing: 2px;
	border: 2px solid #fff;
	border-radius: 4px;
}
.footer-text a:hover {
	background: #2f75ff;
	color: #fff;
	border-color: #2f75ff;
}

.various h2 {
	font-size: 45px;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: -1px;
	color: #fff;
}
.various p {
	color: #fff;
}
.solid-area {
	padding-top: 150px;
	padding-bottom: 250px;
}
.shot-area {
	margin-top: -210px;
	padding-left: 50px;
	padding-right: 50px;
}
.single-shot {
	padding: 50px 15px;
}
.single-shot img {
	box-shadow: 1.294px 4.83px 25px 0px rgba(0, 22, 46, 0.1);
	border-radius: 5px;
}
.owl-dots {
	text-align: center;
}
.owl-dots .owl-dot {
	width: 13px;
	height: 13px;
	background: #dfeded;
	display: inline-block;
	margin: 0 6px;
	border-radius: 30px;
	display: inline-block;
}
.owl-dots .owl-dot.active {
	background: #c480ef;
}

/*--- end of custom attributes ---*/
.dark #preloader {
	background-color: #232323;
}

#loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
}
#loading.loading-1 {
	background-color: #f7f7f7;
}

.preloader {
	width: 50px;
	height: 50px;
	display: inline-block;
	padding: 0px;
	text-align: left;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
}

.preloader span {
	position: absolute;
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: #003242;
	-webkit-animation: preloader 1.3s linear infinite;
	animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
	animation-delay: -0.8s;
	-webkit-animation-delay: -0.8s;
}

@keyframes preloader {
	0% {
		transform: scale(0, 0);
		opacity: 0.5;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@-webkit-keyframes preloader {
	0% {
		-webkit-transform: scale(0, 0);
		opacity: 0.5;
	}

	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}

#scrollUp {
	background: #2f75ff;
	height: 60px;
	width: 60px;
	right: 50px;
	bottom: 77px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	border-radius: 50%;
	font-size: 20px;
	line-height: 59px;
	transition: 0.3s;
}
#scrollUp:hover {
	background: #000;
}
.demo-thumb {
	height: 500px;
	background-position: top;
	transition: all 2.3s;
	background-size: 100%;
}
.demo-thumb:hover {
	background-position: bottom;
}
.demo-thumb > a {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
#loading-center {
	width: 100%;
	height: 100%;
	position: relative;
}
#loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 200px;
	width: 200px;
	margin-top: -100px;
	margin-left: -100px;
	-ms-transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.object {
	-moz-border-radius: 50% 50% 50% 50%;
	-webkit-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%;
	position: absolute;
	border-top: 5px solid #fff;
	border-bottom: 5px solid transparent;
	border-left: 5px solid #fff;
	border-right: 5px solid transparent;
	-webkit-animation: animate 2s infinite;
	animation: animate 2s infinite;
}
#object_one {
	left: 75px;
	top: 75px;
	width: 50px;
	height: 50px;
}
#object_two {
	left: 65px;
	top: 65px;
	width: 70px;
	height: 70px;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
#object_three {
	left: 55px;
	top: 55px;
	width: 90px;
	height: 90px;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
#object_four {
	left: 45px;
	top: 45px;
	width: 110px;
	height: 110px;
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
@-webkit-keyframes animate {
	50% {
		-ms-transform: rotate(360deg) scale(0.8);
		-webkit-transform: rotate(360deg) scale(0.8);
		transform: rotate(360deg) scale(0.8);
	}
}
@keyframes animate {
	50% {
		-ms-transform: rotate(360deg) scale(0.8);
		-webkit-transform: rotate(360deg) scale(0.8);
		transform: rotate(360deg) scale(0.8);
	}
}

.footer-area {
	background-size: cover;
}
