/* ****************************************
****************************************
      
  WEBSITE NAME         :-        WARDECK LASER GAMING ZONE
  WEB DEVELOPER NAME   :-        MONU SONI
  DATE                 :-        17-07-2023
  DEVELOPER PORTFOLIO  :-        https://monuportfolio.000webhostapp.com/ 
  DEVLOPER E-MAIL      :-        monusoni9350@gmail.com  


****************************************
**************************************** */


* {
    font-family: 'arial';
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
  }

:root{
    --primary-color:   #b63c26;
    --main-color :      rgb(64, 226, 43);
    --dark-color:        #000;
    --light-color:       #fff;

}
p{
    color:var(--light-color);
    opacity: 0.8;
    font-weight: bold;
    font-size: 17px;
}
/* --------------------------------------------
MAIN BUTTON IN HTML 
--------------------------------------------- */

.main-btn
{
  line-height:40px;
  font-size: 13px;
  display: inline-block;
  color:var(--light-color);
  font-weight: 700;
  text-transform: uppercase;
  padding:0 10px;
  position: relative;

}
.main-btn::after,
.main-btn::before
{
position: absolute;
top:50%;
background: rgba(255,255,255,.3);
left:0;
height:1px;
width:100%;
content:"";
transition: all .5s ease-out 0s;
transform: translateY(-20px);
-webkit-transform: translateY(-20px);
}
.main-btn::after{
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
}
.main-btn:hover::before{
  transform: rotate(20deg);
  background: var(--light-color);
}
.main-btn:hover::after {
  transform: rotate(-20deg);
    background: var(--light-color);
}

.main-btn:hover{
  color:var(--primary-color) !important;
  text-decoration: none;
  font-weight: bold;
  
  text-shadow: 0 4px 14px var(--light-color), 0 19.8584px 23.358px rgba(255,255,255,.14);
}

/* --------------------------------------------
MAIN BUTTON  END THERE
--------------------------------------------- */
  /* scrollbar */

  ::-webkit-scrollbar{
    width:5px;
  }
  
  ::-webkit-scrollbar-track
  {
    background: var(--light-color);
  
  }
  ::-webkit-scrollbar-thumb
  {
    background:var(--primary-color);
  }
  
  .navigation-wrap .scroll-on .navlink:hover,
  .navigation-wrap .scroll-on .navlink:active
  {
    color:var(--primary-color);

  }
  
body {
    font-family:'arial';
    line-height: 25px;
    color: #333333;
    /* background-image: url(../images/bg02.png); */
    background-color:var(--dark-color);
}

::selection {
    background:var(--primary-color);
    color: var(--light-color);
    text-shadow: none;
}

.mb-30 {
    margin-bottom: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family:'arial';

}

/*affix start here*/

.affix {
    top: 0;
    width: 100%;
    z-index: 9999 !important;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.affix-top {
    position: static;
    top: -50px;

}

.affix + .container-fluid {
    padding-top: 70px;
}

/*affix close here*/



/*toogle section start here*/
.icon {
    width: 40px;
    height: 40px;
    margin: auto;
    position: absolute;
    right: 17px !important;
    top: 10%;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    display: none;
}


@media screen and (max-width:991px) {
    .icon {
        display: block;
    }
}

.humbuger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 3px;
    background-color: #94908a;
    cursor: pointer;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
    transition: 0.5s ease-in-out;
}

.humbuger::before,
.humbuger::after {
    content: '';
    position: absolute;
    width: 25px;
    cursor: pointer;
    height: 3px;
    background-color: #94908a;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
    transition: 0.5s ease-in-out;
}

.humbuger::before {
    top: -6px;
    transition: 0.5s ease-in-out;
}

.humbuger::after {
    top: 6px;
    transition: 0.5s ease-in-out;
}

.icon.active .humbuger {
    background-color: transparent;
    transition: 0.5s ease-in-out;
    box-shadow: none;
}

.icon.active .humbuger::after {
    top: 0px;
    transform: rotate(137deg);
    transition: 0.5s ease-in-out;
}

.icon.active .humbuger::before {
    top: 0px;
    transform: rotate(45deg);
    transition: 0.5s ease-in-out;
}

/*toogle section close here*/

/* 
--------------------------------------------
NAVBAR START THERE
--------------------------------------------- 
*/

.navbar-bg {
    border-radius: 0px;
    background-color: var(--dark-color);
    border: none;
    box-shadow: 0px 4px 7px 0px rgba(0,0,0,0.1);
    margin-bottom: 0px;
}

.navbar-bg .navbar-nav > li > a {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 14px;
    transition: .2s ease;
    
}

.navbar-bg .nav > li > a {
    position: relative;
    display: block;
    padding: 30px 12px;
    text-transform: uppercase;
}

.navbar-bg .navbar-nav > li > a:hover,
.navbar-bg .navbar-nav > li > a:focus {
    color:var(--light-color);
    background-color: transparent;
}

.company img {
    position: relative;
    top: -12px;
    width: 65%;
}

.navbar-bg .navbar-collapse,
.navbar-bg .navbar-form {
    border-color: var(--light-color);
}

.dropdown-menu-hover {
    min-width: 90px;
    border: 1px solid #000;
    padding: 10px 0px;
    background-color: var(--dark-color);
    box-shadow: 0px 8px 33px 0px rgba(0, 0, 0, 0.13);
    margin: 0px;
    -webkit-transition: all 0.5s ease-in-out;
    /* Safari */
    transition: all 0.5s ease-in-out;
}

.dropdown-menu-hover li {
    padding: 0px 25px;
}

.fa-icon-caret {
    font-size: 12px !important;
}

.fa-icon-plus {
    font-size: 12px !important;
    float: right
}

.dropdown-menu-hover li a i {
    font-size: 8px !important;
    font-weight: bold;
    color: var(--light-color);
    margin-right: 8px;
}

.dropdown-menu-hover li a {
    font-size: 15px;
    color: var(--light-color);
    border-bottom: 1px solid var(--dark-color);
    font-weight: bold;
    height: 31px;
    line-height: 22px;
}

.dropdown-menu-hover li:last-child a {
    border-bottom: none;
}

.dropdown-menu-hover li a:hover {
    color:var(--main-color);
    background-color: transparent;
}

.dropdown-menu-hover li a:hover i {
    color:var(--primary-color);
}

.dropdown-hover:hover .dropdown-menu-hover {
    display: block !important;
    margin-top: 0px !important;
    -webkit-transition: all 0.5s ease-in-out;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus{
    color: var(--main-color);
}

@media (max-width: 992px) {
    .affix {
        position: fixed !important;
    }
    .company img{
        width: 40%;
    }
    .navbar-header {
        float: none;
        position: relative;
    }

    .navbar-left,
    .navbar-right {
        float: none !important;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin-top: 7.5px;
    }

    .navbar-nav > li {
        float: none;
    }

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .collapse.in {
        display: block !important;
    }

    .navbar-bg .nav > li > a {
        position: relative;
        display: block;
        padding: 5px 15px;
        display: block;
    }

    .dropdown-menu-hover {
        margin: 0px !important;
    }

    .dropdown-menu-hover li {
        padding: 0px;
    }
}

@media (max-width: 992px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

}

 
/*--------------------------------------------
NAVBAR END THERE
--------------------------------------------- */



/* --------------------------------------------
BANNER START THERE
--------------------------------------------- */

.banner_area
{
    background-image: url(../images/wardeck_main_banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding:60px 40px;
}
.banner_content h2{
    font-size:65px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: var(--light-color);
    margin-left:22px;
}
.banner_content p
{
    color:var(--main-color);
    font-size: 20px;
    letter-spacing:1px;
    margin-top: 20px;
    margin-bottom:20px;
    /* text-shadow: 0 4px 12px var(--primary-color), 0 19.8584px 23.358px rgba(255,255,255,.29); */
    margin-left:22px;
}
.banner_content a{
    margin-left:22px;
}


/* --------------------------------------------
BANNER END THERE
--------------------------------------------- */

/* --------------------------------------------
GAME OPTION CARD START THERE
--------------------------------------------- */

.game_option h2{
    color:var(--light-color);
    text-align: center;
    margin-bottom:28px;
    font-weight: bold;
}
.flip_card
{
    position: relative;
    height: 100%;
    width: 100%;
    transition: transform 1000ms;
    transform-style: preserve-3d;
    padding:20px;
    cursor: pointer;
    background: rgba(0,0,0,.3);
}

.front_card
{
    padding:10px;
    position: absolute;
    border-radius: 2rem;
    background: rgba(0, 0, 0, 1);
}
.front_card p{
    color:var(--light-color);
    text-shadow: 0 19.8584px 23.358px rgba(255,255,255,.29);
    font-weight: bold;
    font-size: 17px;
    text-align: center;
    line-height: 40px;
}
.front_card p span{
    color:yellow;
    text-shadow: 0 4px 18px #f5cf07, 0 19.8584px 23.358px rgba(255,255,255,.29);
    padding: 10px;
    margin-bottom: 20px;;
}

.back_card{
    visibility: hidden;
    transform: rotateX(180deg); 
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    transition: .2s;
}
.back_card p 
{
    font-size: 14px;
    transform: rotateY(180deg);
    font-weight: bold;
    color:var(--light-color);
}
.back_card p span{
    color:#f5cf07;
}

.back_card a
{
    text-decoration: none;
    color:#f5cf07;
    border:1px solid #f5cf07;
    padding:10px;
    margin-top: 10px;
    font-weight: bold;
    transform: rotateZ(360deg);
    transform: rotate3d(180deg);
}

.flip_card:hover .front_card
{
    visibility: hidden;
}

.flip_card:hover .back_card
{
    box-shadow: 0 4px 18px #f5cf07, 0 19.8584px 23.358px rgba(255,255,255,.29);
    visibility: visible;
    transition: .5s;
    transform: rotateY(180deg); 
}

/* --------------------------------------------
GAME OPTIONS END THERE
--------------------------------------------- */




/* --------------------------------------------
OFFERS CARDS START THERE
--------------------------------------------- */
.offers
{
    padding:20px;
    background-image: url(../images/bg01.png);
}

.offers h2{
    color:var(--light-color);
    text-align: center;
    margin-bottom: 30px;;
}

.offers_card
{
    padding: 20px;
    background: rgba(24, 22, 22, 0.8);
    border-radius: 2rem;
}
.offers_card h4{
    color:var(--main-color);
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    padding:10px;
}

.offers_card p
{
    color:var(--light-color); 
    padding:10px;
    font-family: Arial, Helvetica, sans-serif;
    transition: .2s;
    text-align: center;
}

/* --------------------------------------------
OFFERS CARD END THERE
--------------------------------------------- */

/* ---------------------------------------------
HOVER CARD IN START
--------------------------------------------- */
 
.our-portfolio {
    background-image: url(../images/bg01.png);
    max-height:100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 60px;
    padding-bottom:40px;
  }

  .our-portfolio h2 {
    text-align: center;
    color:var(--light-color);
    margin: 0px 90px 0px 90px;
    font-size: 38px;
    margin-bottom: 10px;
    z-index: 1;
  }

  .our-portfolio img{
    margin-bottom: 30px;
  }
  
  .our-portfolio .item {
    position: relative;
  }
  
  .our-portfolio .item:hover .hidden-content {
    top: -60px;
    opacity: 1;
    visibility: visible;
  }
  
  .our-portfolio .item:hover .showed-content {
    top: 90px;
  }
  
  .our-portfolio .hidden-content {
    background: rgb(255,77,30);
    background: linear-gradient(105deg, #9f2522 0%, rgb(0 0 0) 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    opacity: 0;
    top: 0;
    visibility: hidden;
    position: absolute;
    z-index: 2;
    transition: all 0.5s;
  }
  
  .our-portfolio .hidden-content:after {
    width: 20px;
    height: 20px;
    position: absolute;
    background: rgb(255,77,30);
    content: '';
    left: 50%;
    bottom: -8px;
    margin-left: -5px;
    transform: rotate(45deg);
    background: linear-gradient(105deg, 1da1f2  0%, rgba(255,51,78,1) 100%);
    z-index: -1;
  }
  
  .our-portfolio .hidden-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .our-portfolio .hidden-content p {
    color: #fff;
  }
  
  .our-portfolio .showed-content {
    top: 0px;
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    transition: all 0.5s;
  }
  .our-portfolio .showed-content i
  {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    padding:20px;
    border-radius: 50%;
  }
  
  .our-portfolio .showed-content i {
    font-size: 40px;
    color:#fff;
  } 

/* ---------------------------------------------
HOVER CARD IN END
--------------------------------------------- */

/* 
---------------------------------------------
 SIMPLE TEXT START 
--------------------------------------------- 
*/


.content_area h2{
    margin-top:10px;
    padding:25px;
    text-align: center;
    color:#fff;
    font-weight:bold;
}

/* 
---------------------------------------------
 SIMPLE TEXT END 
--------------------------------------------- 
*/


/* 
---------------------------------------------
 BANNER  AREA START THERE 
--------------------------------------------- 
*/

.carousel-control.right,
.carousel-control.left {
    background-image: none !important;
}

.carousel-indicators li {
    transition: .5s all ease;
}

.carousel-indicators .active {
    width: 30px;
    transition: .5s all ease;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    font-size: 20px;
    border: 1px solid #ff0000;
    line-height: 36px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: .8s all ease;
}

.carousel-control:hover .glyphicon-chevron-left,
.carousel-control:hover .glyphicon-chevron-right,
.carousel-control:focus .glyphicon-chevron-left,
.carousel-control:focus .glyphicon-chevron-right {
    background-color: #80b435;
    transition: .8s all ease;
}
.carousel-caption h5{
    color:var(--main-color);
    font-weight: bold;
    text-shadow: 0 4px 12px var(--primary-color), 0 19.8584px 23.358px rgba(255,255,255,.29);
    font-size:19px;
}
.carousel-caption p{
    font-weight:bold;
    color:var(--light-color);
    text-shadow: 0 4px 12px var(--dark-color), 0 19.8584px 23.358px rgba(255,255,255,.29);
}
.carousel-indicators .active
{
    background-color:var(--main-color);
    border: 1px solid var(--dark-color);
}


/* 
---------------------------------------------
 BANNER  AREA END THERE 
--------------------------------------------- 
*/
/* 



/* 
---------------------------------------------
 FOOTER AREA START THERE  
--------------------------------------------- 
*/

footer{
    background-image: url(../images/bg01.png);
    padding: 25px;
    color: #ddd;
}
.foot h4{
    color: var(--primary-color);
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    padding: 10px 5px;
}

.foot a{
    text-decoration: none;
    color: #ddd;
    font-weight: bold;
    font-size: 13px;
    transition: .5s all ease;
}
.foot i{
    padding: 5px;
}
.foot a:hover{
    color: var(--primary-color);
    transition: .5s all ease;
    transform: scaleX(-1,2);
}


/* 
---------------------------------------------
 FOOTER AREA END THERE  
--------------------------------------------- 
*/

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
#  NOT SURE FORM START
--------------------------------------------------------------*/

.contact-us {
    padding: 160px 0px;
    /* background-image: url(https://cdn.pixabay.com/photo/2020/01/12/08/12/keyboard-4759499_640.jpg); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  
  .contact-us .section-heading h2,
  .contact-us .section-heading h2 em,
  .contact-us .section-heading h2 span {
    color: #fff;
  }
  
  .contact-us .section-heading p {
    color: #fff;
    margin-top: 30px;
  }

  
form#contact .contact-dec {
    position: absolute;
    right: -166px;
    bottom: 0;
  }
  
  form#contact .contact-dec img {
    max-width: 178px;
  }
  
  form#contact {
    margin-left: 30px;
    position: relative;
    background-color: #fff;
    padding: 60px 30px;
    border-radius: 20px;
  }
  
  form#contact input {
    width: 100%;
    height: 46px;
    border-radius: 33px;
    background-color: #d1f3ff;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 300;
    color: #2a2a2a;
    padding: 0px 20px;
    margin-bottom: 20px;
  }
  
  form#contact input::placeholder {
    color: #2a2a2a;
  }
  
  form#contact textarea {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    max-height: 180px;
    min-height: 140px;
    height: 140px;
    border-radius: 20px;
    background-color: #d1f3ff;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 300;
    color: #2a2a2a;
    padding: 15px 20px;
    margin-bottom: 20px;
  }
  
  form#contact textarea::placeholder {
    color: #2a2a2a;
  }
  
  form#contact button {
    display: inline-block;
    background-color: #9f2522;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    border: none;
    outline: none;
    transition: all .3s;
  }
  
  form#contact button:hover {
    background-color: #fe3f40;
  }
  .extra_area
  {
    background: #03a4ed;
    margin-bottom:20px;
    padding:50px;
    border-radius: 30px;
    text-align: center;
  }

  
  
/*--------------------------------------------------------------
#  NOT SURE FORM END
--------------------------------------------------------------*/

  /*********************************************************
						  whyWeChoose
	**********************************************************/
.whychoose-wrap
{
    background: #f8fafe; 
    background-size:cover; 
    padding:70px 0;
}
.whychoose-wrap .section-title h3:after{
    left:0;
     margin-left:0;
}
.whychoose-wrap .section-title{
    text-align:left;
     padding-bottom:15px;
}
.whychoose-wrap .section-title h3{
    font-size:24px;
     font-weight:600;
}
.whychoose-wrap .section-title h3 span{
    font-size:40px;
     margin-bottom:50px;
      text-transform:uppercase;
       font-weight:700; 
       line-height:42px;
}
.whychoose-description li{
    font-size:14px;
     color:#000;
      margin-top:12px; 
      position:relative;
       padding-left:28px;
}
.whychoose-description li:before{
    content: "\f0a9";
     font-family: 'FontAwesome';
      position:absolute;
       top:0;
       left:0; 
       font-size:18px; 
       color:#03a4ed;
}
.whychoose-wrap .about-video-item{
    margin-left:40px;
}
.whychoose-wrap .about-video-item .about-video-img
{
    position:relative;
     width:92%;
}
.whychoose-wrap .about-video-item .about-video-img img
{
    width:100%;
     box-shadow:20px 20px 0px 0px #03a4ed;
}
.whychoose-wrap .about-video-item .about-video-img a.xs-video
{
    display:block;
     width:73px; 
     height:73px; 
     position:absolute; 
     left:0; 
     padding:24px 0px; 
     bottom:0; font-size:20px;
	text-align:center; 
    border-radius:50%;
     color:#fff; 
    left:0;
     top:0;
     margin:auto; 
    right:0;
     -webkit-animation:glowing 1500ms infinite; 
    -moz-animation:glowing 1500ms infinite;
	 -o-animation:glowing 1500ms infinite; 
     animation:glowing 1500ms infinite;
    }
	@-webkit-keyframes glowing {
	  0% {background-color: #900000; -webkit-box-shadow: 0 0 3px #900000; }
	  50% {background-color: #03a4ed; -webkit-box-shadow: 0 0 40px #03a4ed; }
	  100% {background-color: #900000; -webkit-box-shadow: 0 0 3px #900000; }
	}
	
	@-moz-keyframes glowing {
	  0% { background-color: #900000; -moz-box-shadow: 0 0 3px #900000; }
	  50% { background-color: #03a4ed; -moz-box-shadow: 0 0 40px #03a4ed; }
	  100% { background-color: #900000; -moz-box-shadow: 0 0 3px #900000; }
	}
	
	@-o-keyframes glowing {
	  0% { background-color: #900000; box-shadow: 0 0 3px #900000; }
	  50% { background-color: #03a4ed; box-shadow: 0 0 40px #03a4ed; }
	  100% { background-color: #900000; box-shadow: 0 0 3px #900000; }
	}
	
	@keyframes glowing {
	  0% { background-color: #900000; box-shadow: 0 0 3px #900000; }
	  50% { background-color: #03a4ed; box-shadow: 0 0 40px #03a4ed; }
	  100% { background-color: #900000; box-shadow: 0 0 3px #900000; }
	}
.whychoose-wrap .about-video-item .about-video-img a.xs-video:before{
    position:absolute; left:0; top:0; right:0; color:#fff; bottom:0; margin:auto; content:'';-webkit-animation:move 3s  infinite ease-in-out; animation:move 3s  infinite ease-in-out;
}
.whychoose-wrap .about-video-item .about-img2{
    width:90%; display: block; margin-right: 0; margin-left: auto;  margin-top: -282px; -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.15); box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.15);
}			  
	

  /*********************************************************
						  whyWeChoose END
	**********************************************************/




/*--------------------------------------------------------------
# Why Us VIDEO SECTION START
--------------------------------------------------------------*/
.why-us .why-box {
    padding: 30px;
    cursor: pointer;
  }
  
  .why-us .why-box h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
  }
  
  .why-us .why-box p {
    margin-bottom: 30px;
  }
  
  .why-us .why-box .more-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
  }
  
  .why-us .why-box .more-btn i {
    font-size: 14px;
  }
  
  .why-us .why-box .more-btn:hover {
    color: var(--color-primary);
    background: #fff;
  }
  
  .why-us .icon-box {
    text-align: center;
    background: rgba(255, 255, 255, 1);
    cursor: pointer;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: 0.3s;
  }
  
  .why-us .icon-box i {
    color:#9f2522;
    margin-bottom: 30px;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
   
  }
  
  .why-us .icon-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 30px 0;
    font-family: var(--font-secondary);
  }
  
  .why-us .icon-box p {
    font-size: 15px;
    color: #000000;
  }
  
  @media (min-width: 1200px) {
    .why-us .icon-box:hover {
      transform: scale(1.1);
    }
  }


  

/*--------------------------------------------------------------
# Why Us VIDEO SECTION END
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# LASER CONTENT AREA START
--------------------------------------------------------------*/

  .laser_content
  {
    /* background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT00h0oZjy2YyQmuKhHEnDbtmx7LqrpRdoUTA&usqp=CAU); */
    
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;;
    
  }
  .section-bg h1{
    color:#fff;
    padding:20px;

  }

  .laser_tag h1
  {
    color: #fff;
    font-family: 'arial';
    padding: 5px;
    margin-bottom:40px;

  }
  .laser_tag h1 span{
    color:#9f2522;

    font-weight: bold;
    font-family: cursive;
  }


/*--------------------------------------------------------------
# LASER CONTENT AREA END
--------------------------------------------------------------*/




     
  	/*********************************************************
						  3RD CARD START THRERE
	**********************************************************/
.Supprt_area h2
{
    font-family: 'cursive';
    text-align: left;
    margin-top:40px;
    color:#fff;
}
.image_text
{
    background: #f0f0f0;
    box-shadow: 2px -5px 5px 2px rgba(0, 0, 0, 0.2);
    margin-top:25px;
    border-radius: 30px;
    padding:10px;
    text-align: center;
    padding:10px;
}
.text_drive_form
{
    padding:20px;
}

  	/*********************************************************
						  3RD CARD END THRERE
	**********************************************************/


/*********************************************************
						  SECTIPN AREA START  THRERE
	**********************************************************/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*********************************************************
						  SECTIPN AREA END  THRERE
	**********************************************************/


/*********************************************************
						  BLOG AREA START  THRERE
	**********************************************************/

.card
{
    border:1px solid #000;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    background-color: rgba(24, 22, 22, 0.8);
    border-radius: 8px;
    color:#fff;
}
.card img

{
    transition: .5s;
}

.card:hover img {
    transform: scale(1.1);
    border-radius: 10px;
  }

.card-text
{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    padding:20px;
}

.blog h2{
    font-weight:bold;
    font-family: 'arial';
    color:#fff;
    margin-bottom: 35px;;
}

/*********************************************************
						  BLOG AREA END  THRERE
	**********************************************************/

    /*********************************************************
						  CONTACT US PAGE AREA START  THRERE
	**********************************************************/
.contact_us_area
{
    background: #FFF;
    padding:20px;
    border-radius: 10px;;
} 


    /*********************************************************
						  CONTACT US PAGE AREA END  THRERE
	**********************************************************/
        /*********************************************************
						  ABOUT US PAGE AREA START  THRERE
	**********************************************************/
.about_us_area
{
    background: #FFF;
    padding:20px;
    border-radius: 10px;;
}
.about_head
{
    font-weight: bold;
    margin-bottom:40px;
    margin-top:20px;
    color: var(--light-color);
    text-align: center;
}

.laser_about h2{
    color:var(--primary-color);
    font-weight: bold;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.laser_about p
{
    color:#fff;
    opacity: 0.8;
    font-weight: bold;
    font-size: 17px;
}
.laser_about p span{
    font-weight:bold;
    font-size:20px;
    text-transform: uppercase;
    color:#dd4b39;
}

.bhai p a{
    text-align: center;
    color:var(--primary-color);
}

.bhai img
{
    display: block;
    margin: auto;
}
.contact_bg
{
    background: rgba(255, 255, 255, 0.1);
}

.contact_form h5
{
 color: var(--primary-color);
 margin-top:20px;
 font-weight: bold;
 font-size:14px;
 /* background:rgba(182, 60, 38, 0.94); */
 background: var(--dark-color);
 display: inline-block;
 padding:8px;  
 border-radius: 10px;
 
}

.contact_form
{
    /* border:1px solid rgba(255, 255, 255, 0.54) */
}

.contact_form h2
{
    color:var(--primary-color);
    font-family: 'arial';
    font-size:36px;
    padding:0px 10px ;
    font-weight: bold;
}
.contact_form p{
    color:var(--light-color);
    opacity: 0.7;
    letter-spacing: 1px;
    padding:0px 10px ;
    font-size: 13px;
}
.form-floating
{
    padding:10px;
}

.form-floating .form_best
{
    padding:20px;
    background: transparent;
}

/*********************************************************
ABOUT US PAGE AREA END  THRERE
**********************************************************/

/*---------------------------------------
  Scroll Button(Button To Top)         
-----------------------------------------*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 25px;
    z-index: 99;
    font-size: 22px;
    border: 2px solid #fff;
    /* outline: none; */
    /* background-color:var(--light-color); */
    color: white;
    cursor: pointer;
    /* padding: 10px 15px; */
    border-radius: 10px;
    transition: .3s;
  }
 
  #myBtn:hover {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }


.guns
{
    background-image: url(../images/bg01.png);
    padding:30px;
    background-size:cover;
    background-repeat: no-repeat;
    background-color: rgba(0,0,0,0.20);
}
.text_best h2
{
    color:#fff;
    text-align: center;
}
.first_gun
{
    padding:20px;
    color:#fff;
    position: relative;
    
}
.first_gun h3
{
    /* font-size: 30px; */
    background: var(--primary-color);
    /* text-align: center; */
    color:var(--light-color);
    text-align: center;
    /* display: inline;  */
    padding:8px;
    border-radius: 10px;
}

.first_gun img
{
    display: block;
    margin:auto;
    border-radius: 7px;;
    /* margin-left: 90px; */
    transition: .3s;
    cursor: pointer;
   
}
.first_gun img:hover
{
    box-shadow: -4px 0px 24px #fff;
}
.first_gun p{
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
    font-size: 17px;
}
.guns_img
{
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.guns_img1 h2,
.guns_img1 p
{
 color:#fff;
 text-align: center;
}

.mainopo p{
    color:var(--light-color);
    opacity: 0.8;
    font-weight: bold;
    text-align: center;
    font-size: 17px;
}

.icon_area
{
    color:var(--light-color);
    opacity: 0.8;
    font-weight: bold;
    font-size: 17px;
}
.img-to 
{
    display: flex;
}

.one
{
    display: flex; 
}
.one i
{
 color:rgb(255, 238, 0);
 font-size: 30px;

 opacity: 1;
}
.one i,
.one p{
    padding:10px;
}
.machinery,
.machinery1
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.display
{
    text-align: center;
    color:var(--light-color);
}
.display h3{
    color:var(--main-color);
}
.display p{
    color:var(--light-color);
    opacity: 0.8;
    font-weight: bold;
    font-size: 17px;
}

.display_content
{
    display: block;
  margin:auto;
}
.display_content h3
{
  color:var(--main-color);
  font-size:28px;
}
.display_content li{
    list-style: none;
    color:var(--light-color);
    opacity: 0.8;
    font-weight: bold;
    font-size: 17px;
}
.display_content li span
{
    color:var(--main-color);
}

.headband
{
    display: flex;
    justify-content: center;
    align-items: center;
}
.headband img
{
    border-radius: 10px;;
}
.best h3
{
    color:var(--main-color);
}
.best p
{
    color:var(--light-color);
    opacity: 0.8;
    font-weight: bold;
    font-size: 17px;
}
.bestline p{
    color:var(--light-color);
    opacity: 0.8;
    font-weight: bold;
    font-size: 17px;
}
.bestline h3
{
 color:var(--main-color);
}
.About_domination h3
{
    color:var(--main-color);
}
.About_domination li
{
    color:var(--light-color);
    opacity: 0.8;
    font-weight: bold;
    font-size: 17px;
}

.About_domination span
{
    color:var(--main-color);
}