*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*--first part start (navbar part start)--*/


body {
	font-family: "Montserrat", sans-serif;
	background: black;
    width: 100%;
}

.logo{
	height: 100px;
	width: 100%;
	background: rgb(0, 0, 0);
	position: relative;
}
.logo img{
	height: 120px;
	width: 250px;
	margin-left: 150px;
}

.logo video{
	height: 120px;
	width: 250px;
	margin-left: 150px;
}



.container{
	cursor: pointer;
	/* position:fixed;
	top: 5%;
	right: 5%; */
	position: absolute;
	top:40px;
	right:170px;
	width: 30px;
	height: 20px;
  
}

.bars{
	width: 30px;
	height: 4px;
	background: #F09E1F;
}

.bars::before,
.bars::after{
	content: '';
	position: absolute;
	width: 30px;
	height: 4px;
	background: #F09E1F;
}

.bars::before{
	margin-top: 9px;
}

.bars::after{
	margin-top: 18px;
}

nav{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height:0px;
	background: #000;
	display: flex;
	justify-content: center; 
    align-items: center;
	z-index: 1000;
	/* right: -200vw;
    overflow-x: hidden !important; */
}

 nav ul {
	list-style: none;
	order: 2;
	text-align: center;
}

nav ul li{
	margin: 50px 0;
}

nav ul li a{
	color: rgb(170, 170, 170);
	font-size: 2em;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	opacity: 0;
	pointer-events: none;
}
nav ul li a:after{
	content: '';
	width: 100%;
	position: absolute;
	height: 3px;
	border-radius: 5px;
	background: rgb(170, 170, 170);
	bottom: -10px;
	left: 0;
	transform-origin: left;
	transition: transform .5s ease;
	transform: scaleX(0);
}


 nav ul li a:hover:after{
	transform: scaleX(1);
}

 nav .close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 8%;
	right: 11%;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
}
/* 
 nav h2{
	position: absolute;
	top:5%;
	left: 5%;
	opacity: 0;
	pointer-events: none;
	color: #fff;
	font-size: 2em;
} */
nav .nav-logo{
	order: 1;
}
nav ul img{
	height: 120px;
	width: 250px;
}
nav .close div::before,
nav .close div::after{
	content: '';
	position: absolute;
	width: 30px;
	height: 4px;
	background: rgb(170, 170, 170);
	transition: background .5s ease;
}
nav .close div::before{
	transform: rotate(-45deg);
}

nav .close div::after{
	transform: rotate(45deg);
}

nav .close:hover div::before,
nav .close:hover div::after{
	background: #F09E1F;
}

@media (max-width: 992px){
  h1{
    font-size: 25px;
  }
  .logo video{
		height: 120px;
		width: 240px;
		margin-left: 40px;
   }
	.container{
		cursor: pointer;
		position: absolute;
		top:40px;
		right:100px;
		width: 30px;
		height: 20px;
	
	}
}
@media screen and (max-width:479PX){
	 .logo video{
		height: 100px;
		width: 200px;
		margin-left: 0px;
   }
   .container{
		cursor: pointer;
		position: absolute;
		top:40px;
		right:40px;
		width: 30px;
		height: 20px;
	
	}
}

/*--first part close (navbar part close)--*/


/*--Second Part Start*/

.animation-banner{
    height:700px;
    width: 100%;
    background: gray; 
	position: relative;
}
.animation-banner .img-banner{
    height: inherit;
    width: inherit;
}

 .container1 {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
	  height: auto;
	  /* border: 1px solid white; */
	  position: absolute;
	  top:100px;
	  left: 0;
      text-align: center;
    }
	.container1 h1{
		font-size:70px;
		text-transform: uppercase;
		font-family: "Archivo Black", sans-serif;
		background: linear-gradient(90deg,#F09E1F 0%, rgba(138, 218, 234, 0.79) 50%, #F09E1F 100%);
  		-webkit-background-clip: text;
  		-webkit-text-fill-color: transparent;
		line-height: 50px;
	}

    /* Cursor */
	.txt-type{
		display: inline-block;
		font-family: sans-serif;
		font-size: 30px;
		font-weight: 300;
		background: linear-gradient(90deg,#ffffff 0%, rgba(216, 239, 244, 0.79) 50%, #ffffff 100%);
  		-webkit-background-clip: text;
  		-webkit-text-fill-color: transparent;
		text-transform: capitalize;
	}
    .txt-type > .txt {
      border-right: 0.2rem solid #777;
    }

 



/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
	.animation-banner{
		height:180px;
		width: 100%;
		background: gray; 
	}
	.container1 {
	  position: absolute;
	  top:20px;
	  left: 0;
      text-align: center;
    }
	.container1 h1{
		font-size:18px;
		line-height: 20px;
	}

    /* Cursor */
	.txt-type{
		font-size: 13px;
	}
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	.animation-banner{
		height:300px;
		width: 100%;
		background: gray; 
	}
	.container1 {
	  position: absolute;
	  top:20px;
	  left: 0;
      text-align: center;
    }
	.container1 h1{
		font-size:40px;
		line-height: 30px;
	}

    /* Cursor */
	.txt-type{
		font-size: 20px;
	}
}

/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    .animation-banner{
		height:430px;
		width: 100%;
		background: gray; 
	}
	.container1 {
	  position: absolute;
	  top:40px;
	  left: 0;
      text-align: center;
    }
	.container1 h1{
		font-size:60px;
		line-height: 30px;
	}

    /* Cursor */
	.txt-type{
		font-size: 20px;
	}
}
/*--Second Part Start*/








/*--third part start--*/

.third-part{
    /* border: 1px solid red; */
    height: auto;
    width: 100%;
	padding-bottom: 40px;
}
.third-part .third-head{
    text-align: center;
    padding: 50px 0 50px 0;
    color: #81C5C4;
}
.third-part .third-head h1{
    font-family: Savate,sans-serif;
    font-size: 50px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 4px;
}

.third-part .third-inner{
    /* border: 1px solid white; */
    display: flex;
    flex-wrap: wrap;
    padding: 20px 100px 0 100px;
}
.third-part .third-inner1{
    height:auto;
    width:60%;
    padding: 0 30px 30px 30px;
	background: #000;
    border: 2px dashed #F09E1F;
}

.third-part .third-inner1 .inner1-h{
    padding: 40px 0 40px 0;
    text-align:center;
}
.third-part .third-inner1 .inner1-h h1{
     font-family: Savate,sans-serif;
     font-size: 30px;
     color: #81C5C4;
     font-style: oblique;
     font-weight: 500;
     letter-spacing: 3px;
     text-transform: capitalize;
}

.third-part .third-inner1 .third-box{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
    padding:0 10px 0 10px;
}
.third-part .third-inner1 .third-box .tb1{
    height: 380px;
    width: 48%;
    border: 1px dashed #F09E1F;
	text-align: center;
	color: rgb(170, 170, 170);
	padding: 0 20px 0 20px;
	
}
.third-part .third-inner1 .third-box .tb1 .shape-container {
  position: relative;
  width: 180px;
  height: 180px;
  border: 3px dotted rgb(170, 170, 170);
  border-radius: 50%;
  perspective: 600px;
  margin:20px auto;
  box-shadow: 0 0 20px #81C5C4;
}

/* Circle */
.third-part .third-inner1 .third-box .tb1 .shape-container .circle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: white;
  font-family: sans-serif;
  font-size: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.third-part .third-inner1 .third-box .tb1 .shape-container .circle.depth {
  animation: depth-animation 1.5s ease-in-out infinite alternate;
  /* background: #f09c1fb0; */
}
.third-part .third-inner1 .third-box .tb1 .shape-container .circle.depth img{
	height: 165px;
	width: 165px;
	border-radius: 50%;
}


@keyframes depth-animation {
  from {
    transform: translate3d(0, 0, 100px);
  }
  to {
    transform: translate3d(0, 0, -200px);
  }
}
.third-part .third-inner1 .third-box .tb1 h2{
	color: #81C5C4;
	font-family: Savate,sans-serif;
    font-size: 23px;
    font-weight: 600;
	letter-spacing: 3px;
    font-style: italic;
}
.third-part .third-inner1 .third-box .tb1 p{
	font-family: "Montserrat", sans-serif;
	font-weight:300;
	font-size: 12.5px;
	letter-spacing: 1px;
	margin-top: 10px;
	text-align:justify;
}

.third-part .third-inner2{
    height: auto;
    width: 40%;
    /* border: 1px solid red; */
}

.third-part .third-inner2 img{
	height:auto;
	width:100%;
}



/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
	.third-part .third-inner{
    	padding: 0px 0px 0 0px;
	}
	.third-part .third-inner1{
		height:auto;
		width:60%;
		padding: 0 10px 20px 10px;
		background: #000;
		border: 2px dashed #F09E1F;
	}
	.third-part .third-inner1 .third-box .tb1{
		height: 330px;
	}
	.third-part .third-inner1 .third-box .tb1 .shape-container {
		width: 140px;
		height: 140px;
	}
	.third-part .third-inner1 .third-box .tb1 .shape-container .circle.depth img{
		height: 135px;
		width: 135px;
	}
	.third-part .third-inner1 .third-box .tb1 h2{
		font-size: 20px;
	}
	.third-part .third-inner1 .third-box .tb1 p{
		font-size: 12px;	
	}

}
/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	.third-part .third-head{
		padding: 30px 0 30px 0;
	}
	.third-part .third-head h1{
        font-size:40px;   
    }
	.third-part .third-inner{
    	padding: 0px 0px 0 0px;
	}
	.third-part .third-inner1 .third-box .tb1{
		height: 280px;
		width: 48%;
		padding: 0 20px 0 20px;
	}
	.third-part .third-inner1 .third-box .tb1 .shape-container {
		position: relative;
		width: 96px;
		height: 100px;
		border: 3px dotted rgb(170, 170, 170);
		border-radius: 50%;
		perspective: 600px;
		margin:20px auto;
	}
	.third-part .third-inner1{
		height:auto;
		width:100%;
		padding: 0 40px 20px 40px;
		border: 2px dashed #F09E1F;
		/* order: 2; */
	}
	.third-part .third-inner1 .inner1-h h1{
		font-family: Savate,sans-serif;
		font-size: 30px;
	}
	.third-part .third-inner1 .third-box .tb1 h2{
		color: #F09E1F;
		font-family: Savate,sans-serif;
		font-size: 21px;
		font-weight: 600;
		letter-spacing: 3px;
		font-style:normal;
	}
	.third-part .third-inner1 .third-box .tb1 .shape-container .circle.depth img{
		height: 100px;
		width: 100px;
		border-radius: 50%;
	}
	.third-part .third-inner2{
		height:400px;
		width: 100%;
		text-align: center;
	}
	.third-part .third-inner2 img{
		height: 400px;
		width: auto;
	}

}
/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
	.third-part{
		padding-bottom: 40px;
	}
	.third-part .third-head{
		padding: 30px 0 30px 0;	
	}
	.third-part .third-head h1{
		font-size: 23px;
		letter-spacing: 2px;
		text-transform: uppercase;
	}
	.third-part .third-inner{
		padding: 0px 0px 0 0px;
	}
	.third-part .third-inner1{
		width:100%;
		padding: 0 20px 20px 20px;
	}
	.third-part .third-inner1 .third-box{
		gap: 20px;
	}
	.third-part .third-inner1 .third-box .tb1{
		height: 340px;
		width: 100%;
	}
	.third-part .third-inner1 .third-box .tb1 h2{
		font-size: 20px;
	}
	.third-part .third-inner1 .third-box .tb1 .shape-container {
		width: 140px;
		height: 140px;
	}
	.third-part .third-inner1 .third-box .tb1 .shape-container .circle.depth img{
		height: 130px;
		width: 130px;
	}
	.third-part .third-inner2{
		height:400px;
		width: 100%;
		text-align: center;
	}
	.third-part .third-inner2 img{
		height: 400px;
		width: auto;
	}
	.third-part .third-inner1 .inner1-h h1{
		font-family:sans-serif;
		font-size: 26px;
		font-style:normal;
	}
}
/*--third part close--*/



/*--fourth part start--*/

.fourth-inner{
	height:900px;
	width: 100%;
	background-image: url(/images/bg-2.jpg);
	background-size: cover;
	background-position: 100% 100%;
	background-repeat: no-repeat;
	text-align: center;
}
.fourth-inner .fourth{
	height:inherit;
	width: inherit;
	background: #000000be;
	padding:100px 0 0 0;
}
.fourth-inner h2{
	    font-family: Savate,sans-serif;
		color:#F09E1F;
		text-shadow: 0 0 20px #252424;
		font-size: 45px;
		font-weight: 600;
		font-style: italic;
		letter-spacing: 3px;
}

.fourth-inner p{
	color: rgb(232, 232, 232);
	text-align: justify;
	margin: 30px 250px 30px 250px;
}

	.swiper {
      width:700px;
      height:400px;
	  margin-top: 100px;
	   box-shadow: 0 0 10px rgb(239, 182, 85);
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .autoplay-progress {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 10;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--swiper-theme-color);
    }

    .autoplay-progress svg {
      --progress: 0;
      position: absolute;
      left: 0;
      top: 0px;
      z-index: 10;
      width: 100%;
      height: 100%;
      stroke-width: 4px;
      stroke: var(--swiper-theme-color);
      fill: none;
      stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
      stroke-dasharray: 125.6;
      transform: rotate(-90deg);
    }

	.video-wrapper {
      width: 100%;
      height: 100%;
      cursor: pointer;
      position: relative;
	  border: 3px solid #F09E1F;
	 
    }

    .video-thumbnail {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .video-wrapper iframe {
      width: 100%;
      height: 100%;
      display: none;
    }


	@media screen and (max-width:990px){
		.fourth-inner h2{
	    font-family: Savate,sans-serif;
		font-size:30px;
		font-weight: 600;
		font-style: italic;
		letter-spacing: 3px;
		}

		.fourth-inner p{
			margin: 30px 50px 0px 50px;
		}
		.swiper {
			width:700px;
			height:400px;
			margin-top:50px;
		}
	}

	/* Mobile devices (up to 767px) */
	@media (max-width: 767px) {
		.fourth-inner{
			height:750px;
			width: 100%;
			background-image: url(/images/bg-2.jpg);
			background-size:cover;
			background-position: 50% 50%;
			background-repeat: no-repeat;
			text-align: center;
		}
		.fourth-inner .fourth{
			height:inherit;
			width: inherit;
			padding:50px 0 0 0;
		}
		.fourth-inner .fourth h2{
			font-size: 28px;
		}
		.fourth-inner p{
			margin: 30px 10px 0px 10px;
			font-size: 12px;
		}
		.swiper {
			width:auto;
			height:270px;
			margin-top:50px;
		}
	}

	/* Tablets (768px to 1024px) */
	@media (min-width: 768px) and (max-width: 1024px) {
		.fourth-inner h2{
			font-family: Savate,sans-serif;
			font-size:30px;
			font-weight: 600;
			font-style: italic;
			letter-spacing: 3px;
		}

		.fourth-inner p{
			margin: 30px 50px 0px 50px;
		}
		.swiper {
			width:700px;
			height:400px;
			margin-top:50px;
		}
	}

	/* Small Laptops / Desktop (1025px to 1366px) */
	/* @media (min-width: 1025px) and (max-width: 1366px) {

	} */
/*--fourth part close--*/





/*Ten part start*/
.wrapper {
  height: 100px;
  display: grid;
  place-items: center;
  background-color:rgb(9, 9, 9);
  transition: background-color 0.8s;
}

.marquee {
  display: grid;
  grid-template-columns: repeat(9,minmax(12vmin,1fr));
  width:100%;
  height: 100px;
  overflow: hidden;
  /* border: 2px solid yellow; */
  background: #81C5C4;
  mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0),
    rgba(0,0,0,1) 10%,
    rgba(0,0,0,1) 90%,
    rgba(0,0,0,0)
  );

  & img {
    --time:50s;
    position: relative;
    width:220px;
	height: 100%;
    aspect-ratio: 1;
    grid-column: 1;
    grid-row: 1;
	/* border: 2px solid orange; */
    object-fit:cover;
    cursor: pointer;
    left: calc(100% * 9);
    animation: marquee var(--time) linear infinite;

    &:nth-of-type(1) { animation-delay: calc((var(--time) / 9) * (9 - 1) * -1); }
    &:nth-of-type(2) { animation-delay: calc((var(--time) / 9) * (9 - 2) * -1); }
    &:nth-of-type(3) { animation-delay: calc((var(--time) / 9) * (9 - 3) * -1); }
    &:nth-of-type(4) { animation-delay: calc((var(--time) / 9) * (9 - 4) * -1); }
    &:nth-of-type(5) { animation-delay: calc((var(--time) / 9) * (9 - 5) * -1); }
    &:nth-of-type(6) { animation-delay: calc((var(--time) / 9) * (9 - 6) * -1); }
    &:nth-of-type(7) { animation-delay: calc((var(--time) / 9) * (9 - 7) * -1); }
    &:nth-of-type(8) { animation-delay: calc((var(--time) / 9) * (9 - 8) * -1); }
    &:nth-of-type(9) { animation-delay: calc((var(--time) / 9) * (9 - 9) * -1); }
  }
}

@keyframes marquee {
  to {
    left: -100%;
  }
}

dialog {
  border: none;
  outline: none;
  margin: auto;
  border-radius: 0.25rem;
  background-color: transparent;

  &::backdrop { display: none; }

  & img {
    width: min(800px,80vw);
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
  }
}

@media (min-width: 1025px) and (max-width: 1366px) {
	.marquee {
		grid-template-columns: repeat(9,minmax(16vmin,1fr));
	}
	.marquee img {
		width: 160px;
	}
}
@media screen and (max-width:990px)
{
	.marquee {
		grid-template-columns: repeat(6,minmax(16vmin,1fr));
	}
	.marquee img {
		width: 160px;
	}
}

@media screen and (max-width:479px)
{
	.marquee {
		grid-template-columns: repeat(3, minmax(20vmin, 1fr));
	}

	.marquee img {
		width: 160px;
	}

	dialog img {
		width: 95vw;
		aspect-ratio: auto;
	}
}
/*Ten part close*/


/*Footer part start*/
.footer{
  /* background: #000000; */
  display:flex;
  flex-wrap: wrap;
  padding-right: 100px;
  padding-bottom: 50px;
  position: relative;
}
footer:before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(to top, #cf4f53 , #bf6c6e, #b47e7f, #a68c8d, #999999, #ffffff);
mix-blend-mode: color;
pointer-events: none;
}
.footer video{
object-fit: cover;
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.footer .f1{
  height: 320px;
  width: 35%;
  padding:30px 0 0 100px;
}
.footer .f1 img{
  height: 120px;
  width: 250px;
  border-radius:50%;
  margin-left: 50px;
}
.footer .f1 p{
  color:rgb(170, 170, 170);
  font-size:15px;
  font-family: "open sans",serif;
  margin-top: 10px;
  letter-spacing: 1px;
  transition: 1s;
}
.footer .f1 p:hover{
  color:#f7b148;
}
.footer .f2 .icon{
  margin-top: 15px;
}
.footer .f2 .icon a{
  text-decoration: none;
  color: rgb(170, 170, 170);
  transition: 1s;
  font-size:18px;
  border-bottom: none;
}
.footer .f2 .icon a:hover{
  text-shadow: 0 0 2px rgb(170, 170, 170);
  color: #f7b148;
  border-bottom: none;
}
.footer .f2 .icon a i{
  margin-right: 20px;
}

.footer .f2{
  height: 320px;
  width: 15%;
  text-align: center;
}
.footer .f2 h2,.footer .f3 h2{
  color:#f7b148;
  margin: 50px 0 15px 0;
  font-family: Savate,sans-serif;
  font-weight:400;
  font-size: 20px;
  display: inline-block;
  letter-spacing: 2px;
  border-bottom: 2px solid #f7b148;
}
.footer .f2 a{
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  font-family: "open sans",serif;
  color: rgb(170, 170, 170);
}
.footer .f2 a:hover{
  border-bottom: 1px solid #f7b148;
  color: #f7b148;
}
.footer .f3{
  height: 320px;
  width: 25%;
  text-align: center;
}
.footer .f3 .g{
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  justify-self: center;
  padding-left: 65px;
}
.footer .f3 .g .g1{
  height: 75px;
  width:25%;
}
.footer .f3 .g .g1 img{
  height: 100%;
  width: 100%;
}
.footer .f3 p{
  color: rgb(170, 170, 170);
  margin-top: 10px;
  font-family: "open sans",serif;
}
.footer .f3 p i{
  color: #f7b148;
  font-size: 25px;
}
.footer .f3 p a{
	text-decoration: none;
	color:rgb(170, 170, 170) !important;
}

@media screen and (max-width:990px){
  .footer{
      padding-right: 0px;
  }
  .footer .f1{
      padding:20px 0 0 60px;

  }
  .footer .f1,.footer .f2,.footer .f3{
      width: 50%;

  }
  .footer .f3 .g .g1{
      height: 80px;
  }
  
}
@media screen and (max-width:479px){
  .footer .f1,.footer .f2,.footer .f3{
      width: 100%;
      text-align: start;
      padding-left: 20px;
  }
  .footer .f3 .g{
      padding-left: 0px;
  }
  .footer .f3 .g .g1{
      height: 80px;
  }
}
/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
	.footer{
		padding-right: 50px;
		padding-bottom: 50px;
	}
	.footer .f1{
		padding:30px 0 0 50px;
	}
	.footer .f2 .icon a i{
		margin-right: 10px;
	}
	.footer .f3 .g{
		justify-self: center;
		padding-left: 30px;
	}
}

/*Footer part close*/


/*--fifth part start--*/

.fifth-part{
	padding: 50px 100px 50px 100px;
}
.fifth-part .fifth{
	border: 2px dashed #F09E1F;
	padding:40px 150px 40px 150px;
}

.fifth-part .fifth h1{
	font-family: Savate,sans-serif;
	font-size: 40px;
	font-weight: 400;
	color: #81C5C4;
	text-align: center;
	letter-spacing: 3px;
}

.fifth-part .fifth p{
	color: rgb(170, 170, 170);
	text-align:justify;
	font-size: 14px;
	margin-top: 20px;
	letter-spacing: 1px;
}

@media screen and (max-width:990px){
	.fifth-part{
		padding: 50px 20px 50px 20px;
	}
	.fifth-part .fifth{
		border: 2px dashed #F09E1F;
		padding:40px 30px 40px 30px;
	}
	.fifth-part .fifth h1{
		font-family: Savate,sans-serif;
		font-size: 30px;
		font-weight: 400;
		color: #81C5C4;
		text-align: center;
		letter-spacing: 3px;
	}
}

@media screen and (max-width:479px){
	.fifth-part .fifth{
		border: 2px dashed #F09E1F;
		padding:40px 10px 40px 10px;
	}
	.fifth-part .fifth h1{
		font-family: Savate,sans-serif;
		font-size: 25px;
	}
	.fifth-part .fifth p{
		color: rgb(170, 170, 170);
		text-align:start;
		font-size: 12px;
	}
}
/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
	.fifth-part .fifth{
		border: 2px dashed #F09E1F;
		padding:40px 30px 40px 30px;
	}
}
/*--fifth part close--*/



/*Cursor part start*/
.cursor {
    position: fixed;
    width: 13px;
    height: 13px;
    background: linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(253,187,45,1) 100%);
    border-radius: 50%;
    pointer-events:none; 
    z-index: 10000;
    transform: translate(-50%, -50%); 
    transition: transform 0.1s ease-out;
}
/*Cursor part close*/

/*----------------------Scroll Button------------------------*/
.scroll-button {
    position: fixed;
    bottom: 10px;
    right: 20px;
    padding: 15px 15px;
    font-size: 35px;
    background-color:#82c6c5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.715);
}

.scroll-button:hover {
    background-color: #f7d40c;
}





