/* General */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,800&display=swap');

*{
    box-sizing: border-box;
    padding:0;
    margin:0;
}
:root{
    /* background color */
    --primary-color: #abadb0;
    --secondary-color: #dda812;
    --bg-color: #f4f4f4;
    --bg-white: #fff;
    --bg-black: #000;
    /* text color */
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Oswald', sans-serif;
    --primary-text: #abadb0;
    --secondary-text:  #dda812;
    --text-white: #fff;
    --text-black: #151515;
    --text-grey: #e4e4e4;
}
body{
    font-family: var(--primary-font);
    background-color: var(--bg-white);
  
}
a{
    text-decoration: none;
}
::-webkit-scrollbar{
    width: 0.575rem;
}
::-webkit-scrollbar-track{
    background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}
section{
    padding: 1.125rem 0px;
}
.main-btn{
    border: 0.0625rem solid var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    color:var(--text-white);
    text-transform: uppercase;
    background-color: transparent;
    padding:0.375rem 1.875rem;
    border-radius: 3.125rem;
    line-height: 1.75rem;
    display: inline-block;
    transition: all 0.3s ease-out 0s;
}
.main-btn:hover{
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color:var(--text-white);
}
h1{
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 4.25rem;
    color:var(--text-white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-family: var(--secondary-font);
}
h3{
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.875rem;
    color:var(--text-black);
    margin-bottom: 1.875rem;
    font-family: var(--secondary-font);
}
h3 span{
    color:var(--secondary-color);
}
h5{
    font-size: 1.5rem;
    line-height: 1rem;
    color:var(--text-black);
    font-weight: 500;
    font-family: var(--secondary-font);
}
h6{
    font-size: 0.875rem;
    font-weight: 300;
    color:var(--secondary-color);
    margin-bottom: 0.9375rem;
    text-transform: uppercase;
    font-family: var(--secondary-font);
}
p{
    font-size: 1rem;
    color:var(--text-black);
    line-height: 1.625rem;
}
/* navbar */
.header_wrapper .navbar{
    background-color:var(--bg-black);
    padding:0;
    box-shadow: 0 8px 6px -6px grey;
    transition : background 0s 0s ease-in-out, margin-top 0s 0s ease-in-out, opacity 0s 0s ease-in-out;
    
}
.header_wrapper .navbar a img{
    max-width: 300px;
}
.header_wrapper .navbar-toggler{
    border:0;
    color:var(--primary-text);
    line-height: 2;
    font-size: xx-large;
    font-weight: 800;
}
.header_wrapper .navbar-toggler:focus{
    box-shadow: none;
}
.header_wrapper .nav-item{
    margin:0 0.625rem;
}
.header_wrapper .nav-item .nav-link{
    font-size: 1rem;
    font-weight: 500;
    color:var(--text-white); 
    display:inline-block;
}
.header_wrapper .nav-item .nav-link:hover,
.header_wrapper .nav-item .nav-link.active{
    color:var(--secondary-text);
}
.header_wrapper .nav-item ul li a{
    color:var(--text-white)
}
 .header_wrapper .nav-item ul .dropdown-item:hover{
    color:var(--secondary-color);
} 
.navbar.header-scrolled{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    z-index: 9999;
    background-color: rgba(52, 49, 49, 0.85);
    animation: fadeIn 1s ease-in both;
}

.navbar.header-scrolled a img{
    max-width:200px;
  }

 @keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate3d(0, -20%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
} 
a[href^="tel:"]:before {
  content: "\260e";
  margin-right: 0.5em;
}

/* Banner Section */
.bounce-in-top {
    display:inline-block;
	-webkit-animation: bounce-in-top 2.5s both;
	animation: bounce-in-top 2.5s both;
}
/* products target with div id */
#AIRBIKE, #vivaplates, #threecut, #rubberplates, #fingerplates{
  height:80px;
}

@-webkit-keyframes bounce-in-top {
    0% {
      -webkit-transform: translateY(-500px);
              transform: translateY(-500px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateY(-65px);
              transform: translateY(-65px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateY(-28px);
              transform: translateY(-28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateY(-8px);
              transform: translateY(-8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  @keyframes bounce-in-top {
    0% {
      -webkit-transform: translateY(-500px);
              transform: translateY(-500px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateY(-65px);
              transform: translateY(-65px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateY(-28px);
              transform: translateY(-28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateY(-8px);
              transform: translateY(-8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
.banner_wrapper{
    height: 40.625rem;

}
 .banner_wrapper .swiper{
    width:100%;
    height:100%;
}
.banner_wrapper .swiper-slide{
    width:100%;
    height:100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner_wrapper .swiper-pagination-bullets .swiper-pagination-bullet{
    width:1rem;
    height:1rem;
    background-color: var(--secondary-color);
    border:0.0625rem solid var(--bg-color);
}
.banner_wrapper .swiper .slide-caption{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 99;
    height:100%;
}
.banner_wrapper .swiper .slide-caption p{
    max-width:37.5rem;
    margin: 0 auto;
    color:var(--text-white);
}
/* products Section */
.bouncer_wrapper{
    padding-top:9.125rem;
    background-color: var(--bg-color);
}
.bouncer_wrapper .bouncer img{
  max-width:75%;
  max-height:75%;
  margin-top:10px;
}
/* Equipment section */
.section-title::after{
    content: '';
    background-image: url(../images/headingimage.png);
    background-position: center center;
    background-repeat: no-repeat;
    display:block;
    margin-top: 0.7375rem;
    height: 0.9375rem;
}

 .equipments_wrapper .room-items{
    position: relative;
    overflow: hidden;
}
.equipments_wrapper .room-items img{
    width:100%;
    -webkit-transition: all 400ms ease-in 0s;
    transition: all 400ms ease-in 0s;

}
.equipments_wrapper .room-items:hover img{
    transform: scale3d(1.05, 1.05, 1.05);
}
.equipments_wrapper .room-items::before{
    content: '';
    position: absolute;
    top:0;
    left:0;
    background:var(--bg-black);
    width:100%;
    height:100%;
    z-index: 1;
    transition:all 400ms ease-in 0s;
    opacity: 0;
}
.equipments_wrapper .room-items:hover::before{
    opacity: 0.6;
}
.equipments_wrapper .room-item-wrap
{
    position: absolute;
    left:1.875rem;
    right:1.875rem;
    top:50%;
    z-index: 1;
    transform: translateY(-50%);
}
.equipments_wrapper .room-items .room-content{
    border:0.125rem solid var(--secondary-color);
    padding:5rem 1.875rem;
    transform: scale3d(1.2, 1.2, 1.2);
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transition: all 500ms ease-in 0ms;
    opacity: 0;
}
.equipments_wrapper .room-items:hover .room-content{
    opacity:1;
    transform: scale3d(1, 1, 1);
}
/* more equipments section */
.service-item-wrap{
    background-color: var(--bg-color);
}
 .service-menu-area ul li a{
    display:block;
    margin-bottom: 2.8125rem;
}
.service-menu-area ul li a .service-icon{
    background-color: var(--secondary-color);
    width:5.625rem;
    height:5.625rem;
    line-height: 5.625rem;
    text-align:center;
    border-radius: 100%;
    float:left;
    transition: all 0.3s ease-in-out;
}
.service-menu-area ul li a .service-icon:hover,
.service-menu-area ul li a.active .service-icon{
    background-color: var(--primary-color);
    color:var(--text-white);
    box-shadow: 5px 5px 2px 2px rgba(99, 96, 96, 0.85)
}
.service-menu-area ul li:nth-child(1){
    margin-left:0.5625rem;
}
.service-menu-area ul li:nth-child(2){
    margin-left:-2.9375rem;

}
.service-menu-area ul li:nth-child(3){
    margin-left:-6.375rem;

}
.service-menu-area ul li:nth-child(4){
    margin-left:-8.8125rem;

}
.service-menu-area ul li a p,
.service-menu-area ul li a h5{
    padding-left:6.875rem;
     text-align: left; 
     display:block; 
}
.service-menu-area ul li a p span{
    color:var(--secondary-color);
}
/* Footer  */
footer{
    width: 100%;
    background:var(--bg-black);
  }
  footer .content{
    max-width: 1350px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  footer .content p,a{
    color: #fff;
  }
  footer .content .box{
    width: 33%;
    transition: all 0.4s ease;
  }
  footer .content .topic{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
  
  }
 .topic.footerLogo img {
    max-width: 260px;
}
  footer .content p{
    text-align: justify;
  }
  footer .content .lower .topic{
    margin: 24px 0 5px 0;
  }

  footer .content .middle{
    padding-left: 80px;
  }
  footer .content .middle a{
    line-height: 32px;
  }
  footer .content .right input[type="text"]{
    height: 45px;
    width: 100%;
    outline: none;
    color: #d9d9d9;
    background: var(--bg-black);
    border-radius: 5px;
    padding-left: 10px;
    font-size: 17px;
    border: 2px solid var(--secondary-color);
  }
  footer .content .right input[type="submit"]{
    height: 42px;
    width: 100%;
    font-size: 18px;
    color: #d9d9d9;
    background:var(--secondary-color);
    outline: none;
    border-radius: 5px;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 12px;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease-in-out;
  }
  .content .right input[type="submit"]:hover{
    background: none;
    color:var(--secondary-color);
  }
  footer .content .media-icons a{
    font-size: 16px;
    height: 45px;
    width: 45px;
    display: inline-block;
    text-align: center;
    line-height: 43px;
    border-radius: 5px;
    border: 2px solid var(--primary-text);
    margin: 30px 5px 0 0;
    transition: all 0.3s ease;
  }
  .content .media-icons a:hover{
    border-color:var(--secondary-color);
  }
  footer .bottom{
    width: 100%;
    text-align: right;
    color: #d9d9d9;
    padding: 0 40px 5px 0;
  }
  footer .bottom a{
    color:var(--secondary-color);
  }
  footer a{
    transition: all 0.3s ease;
  }
  footer a:hover{
    color:var(--secondary-color);
  }
  @media (max-width:1100px) {
    footer .content .middle{
      padding-left: 50px;
    }
  }
  @media (max-width:950px){
    footer .content .box{
      width: 50%;
    }
    .content .right{
      margin-top: 40px;
    }
  }
  @media (max-width:560px){
    footer{
      position: relative;
    }
    footer .content .box{
      width: 100%;
      margin-top: 30px;
    }
    footer .content .middle{
      padding-left: 0;
    }
  }
  /* Quality  */
.equipments_wrapper .quality-items{
    position: relative;
    overflow: hidden;
}
.equipments_wrapper .quality-items img{
    width:100%;
    -webkit-transition: all 400ms ease-in 0s;
    transition: all 400ms ease-in 0s;

}
.equipments_wrapper .quality-items:hover img{
    transform: scale3d(1.05, 1.05, 1.05);
}

/* ============Contact Us CSS========= */
.contactus_wrapper .container{
  width: 85%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.contactus_wrapper .container .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contactus_wrapper .container .content .left-side{
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.contactus_wrapper .content .left-side::before{
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}
.contactus_wrapper .content .left-side .details{
  margin: 14px;
  text-align: center;
}
.contactus_wrapper .content .left-side .details i{
  font-size: 30px;
  color:var(--bg-black);
  margin-bottom: 10px;
}
.contactus_wrapper .content .left-side .details .topic{
  font-size: 18px;
  font-weight: 500;
}
.contactus_wrapper .content .left-side .details .text-one,
.contactus_wrapper .content .left-side .details .text-two{
  font-size: 14px;
  color: #afafb6;
}
.contactus_wrapper .container .content .right-side{
  width: 75%;
  margin-left: 75px;
}
.contactus_wrapper .content .right-side .topic-text{
  font-size: 23px;
  font-weight: 600;
  color:var(--text-black);
}
.contactus_wrapper .right-side .input-box{
  height: 50px;
  width: 100%;
  margin: 12px 0;
}
.contactus_wrapper .right-side .input-box input,
.contactus_wrapper .right-side .input-box textarea{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
.contactus_wrapper .right-side .message-box{
  min-height: 110px;
}
.contactus_wrapper .right-side .input-box textarea{
  padding-top: 6px;
}
.contactus_wrapper .right-side .button{
  display: inline-block;
  margin-top: 12px;
}
.contactus_wrapper .right-side .button input[type="button"]{
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--secondary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}
.contactus_wrapper .button input[type="button"]:hover{
  background: var(--bg-black);
}

@media (max-width: 950px) {
  .contactus_wrapper .container{
    width: 90%;
    padding: 30px 40px 40px 35px ;
  }
  .contactus_wrapper .container .content .right-side{
   width: 75%;
   margin-left: 55px;
}
}
@media (max-width: 820px) {
  .contactus_wrapper .container{
    margin: 40px 0;
    height: 100%;
  }
  .contactus_wrapper .container .content{
    flex-direction: column-reverse;
  }
  .contactus_wrapper .container .content .left-side{
   width: 100%;
   flex-direction: row;
   margin-top: 40px;
   justify-content: center;
   flex-wrap: wrap;
 }
 .contactus_wrapper .container .content .left-side::before{
   display: none;
 }
 .contactus_wrapper .container .content .right-side{
   width: 100%;
   margin-left: 0;
 }
}
/* products css */
 .product-img{
  box-shadow: 10px 10px 94px -22px rgba(103, 100, 100, 0.75);
}
