.imgg-box.boxx {
    border-radius: 20px!important;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 40%);
    transition: all .5s!important;
}
.imgg-box {
    position: relative;
    overflow: hidden;
    padding: 11px!important
}
.bg-white{
    background-color: rgb(255, 255, 255)!important;
}
.img-box {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 3px;
    transition: all .5s;
}
.img-box:before {
    content: "";
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    background: #000;
    position: absolute;
    border-radius: 4px;
    transition: all .5s;
}

.img-box img {
    display: block;
    position: relative;
    border-radius: 3px;
    transition: all .5s;
    /* min-height: 300px; */
   
}
.imgg-box.boxx:hover {
    box-shadow: 0 20px 15px rgba(0, 0, 0, 0.479)!important;
    transform: translateY(-5px)!important;
}
.img-box:hover {
    opacity: 1;
}
.section-bg-1{
    background-color: #9191913d!important;
}
.imago img{
    border-radius: 20px!important;
}

.imgg-box .w-40 img{
width: 40%!important;
}
.imgg-box .w-40{
display:flex;
justify-content: center;
}
.imgg-box .w-60 img{
    width: 60%!important;
    }
    .imgg-box .w-60{
        display:flex;
        justify-content: center;
        }


ul.icon-list {
    list-style: none;
    list-style-position: inside;
    /* padding: 0;
    margin: 0; */
}
.icon-line li:before {
    border-radius: 3px;
    height: 2px;
    background-color: #000;
    content: "";
    position: absolute;
    width: 8px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s;
}
ul.icon-list li {
    position: relative;
    list-style: none;
    padding-left: 30px;
    opacity: .8 ;
} 
/* ul .list-style li{
    list-style-type: circle!important;
} */

/* .p-align{
    font-size: 18px;
    font-family:'Roboto';
    letter-spacing: 3px;
} */



/* image animation */
/* ----------------------------------------------
 * Generated by Animista on 2022-11-2 15:58:47
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation kenburns-top
 * ----------------------------------------
 */
 /* ----------------------------------------------
 * Generated by Animista on 2022-11-2 16:50:21
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation kenburns-top
 * ----------------------------------------
 */
 /* @-webkit-keyframes kenburns-top {
    0% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
      -webkit-transform-origin: 50% 16%;
              transform-origin: 50% 16%;
    }
    100% {
      -webkit-transform: scale(1.25) translateY(-15px);
              transform: scale(1.25) translateY(-15px);
      -webkit-transform-origin: top;
              transform-origin: top;
    }
  }
  @keyframes kenburns-top {
    0% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
      -webkit-transform-origin: 50% 16%;
              transform-origin: 50% 16%;
    }
    100% {
      -webkit-transform: scale(1.25) translateY(-15px);
              transform: scale(1.25) translateY(-15px);
      -webkit-transform-origin: top;
              transform-origin: top;
    }
  }
  

  
  .bg_img_ani{
	-webkit-animation: kenburns-top 5s ease-out reverse  backwards;
	        animation: kenburns-top 5s ease-out reverse  backwards;
} */

/* Button animation */



.button_animation {
    /* background: #171618; */
    background: linear-gradient(90deg, #020202 0%, rgba(0, 0, 0, 0.315) 100%)!important;
	position: relative;
	padding: 20px 50px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.4);
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 4px;
	/* font: 700 30px consolas; */
	overflow: hidden;
    /* border-radius: 20px; */
   
}
.b-c{
    display: flex;
    justify-content: center;
}

.button_animation span:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, #171618, #ffffff);
	animation: animate1 2s linear infinite;
}

@keyframes animate1 {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.button_animation span:nth-child(2) {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to bottom, #171618, #ffffff);
	animation: animate2 2s linear infinite;
	animation-delay: 1s;
}
@keyframes animate2 {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

.button_animation span:nth-child(3) {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to left, #171618, #ffffff);
	animation: animate3 2s linear infinite;
}

@keyframes animate3 {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.button_animation span:nth-child(4) {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to top, #171618, #ffffff);
	animation: animate4 2s linear infinite;
	animation-delay: 1s;
}
.button_animation:hover{
    color: white!important;
}

@keyframes animate4 {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(-100%);
	}
}
.box-shadow{
    border-radius: 30px!important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.158);
    transition: all .5s!important;
}
.box-shadow:hover{
    box-shadow: 0 20px 15px rgba(0, 0, 0, 0.253)!important;
    transform: translateY(-5px)!important;
}

.form-button{
    background: linear-gradient(90deg, #020202 0%, rgba(0, 0, 0, 0.623) 100%)!important;
	position: relative;
	padding: 13px 40px;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.26);
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 4px;
    border-radius: 30px!important;
	/* font: 700 30px consolas; */
	overflow: hidden;
    /* border-radius: 20px; */
}
.form-button:hover{
    color: white!important;
}

.mh-235px{
    min-height: 235px;
}
body.light .intro-box .img .vid-show.non-icon:after {
    background: #000000!important;
}


