:root{
    --dark-color:#19283f;
    --yellow-color:rgb(255, 234, 48);
    --white-color:white;
    --section-color:#eff7fa;
    --green-color:#33d1cc;

}




body{
    font-family: 'Roboto Mono', monospace;
    
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    
}

/* start Navbar */ 
.navbar{
    background-color: var(--dark-color);
}
.navbar .navbar-nav .nav-link{
    color:var(--white-color);
}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover{
    color:var(--yellow-color);
}
.navbar .icons{
    color: var(--white-color);
}
.navbar .navbar-toggler{
    color:var(--white-color);
    font-size: 25px;
    border-color: var(--white-color);
}
.navbar .navbar-toggler:focus{
    box-shadow: none;
}
/* end Navbar */ 
/* discount section */
.discount_section {
    background-color:var(--dark-color);
    color: #ffffff;
  }
  
  .discount_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .discount_section .row .col-lg-7 {
    padding: 0;
  }
  
  .discount_section .detail-box {
    padding: 45px 0;
  }
  
  .discount_section .detail-box h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .discount_section .detail-box h2 span {
    color: #87cefa;
  }
  
  .discount_section .detail-box p {
    margin-top: 25px;
  }
  
  .discount_section .detail-box a {
    display: inline-block;
    text-decoration: none;
    font-weight: bolder;
    padding: 10px 45px;
    background-color: #87cefa;
    border: 1px solid #87cefa;
    color: #ffffff;
    margin-top: 35px;
  }
  
  .discount_section .detail-box a:hover {
    background-color: transparent;
    color: #87cefa;
  }
  
  .discount_section .img-box img {
    width: 100%;
  } 
  /* end of discount section */

  /* start of services section  */
  .main-title::after{
    content: '' ;
    width:120px;
    height: 2px;
    background-color: var(--yellow-color);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .features{
    overflow-x: hidden;
  }


  .features .icon-holder{
    height: 200px;
    
  }
  .features .icon-holder svg{
    left:50%;
    transform: translateX(-50%)
  }
  
  .features .icon-holder .number{
    font-size: 12rem;
    color: var(--section-color);
  }

  .features .icon-holder .icon{
    color: var(--dark-color);

  }
  .features .feat h4{
    color: var(--yellow-color);
    font-weight:bold;
  } 
/* end of service section */

  /* start of products */
  /*.our-work{
    background-color: var(--section-color);
  }
  .our-work .box{
    position: relative;
    padding: 5px;
    overflow: hidden;
    

  }
  .our-work .box::before{
    content: attr(data-work);
    position: absolute;
    background-color: var(--green-color)(51 209 204 / 76%);
    width: calc(100%-10px); /* 5 left and 5 right */ 
    /*height: calc(100%-10px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    transition: 0.3s;
    font-size: 1.5rem;
    transform: translateX(calc(100%-5px));
  }
  .our-work .box:hover::before{
    transform: translateX(0);
  }*/
  .our-work {
    background-color: var(--section-color);
  }
 
  .our-work .box {
    padding: 5px;
    overflow: hidden;
    position: relative;
  }
  .our-work .box::before {
    content: attr(data-work);
    position: absolute;
    background-color: rgb(51 209 204 / 76%);
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
    transition: 0.3s;
    font-size: 1.5rem;
    transform: translateX(calc(-100% - 5px));
  }
  .our-work .box:hover::before {
    transform: translateX(0);
  }
  
 
  
 
  /* end of product section */

  /* subscripe */
  .subscribe {
    background-color: var(--yellow-color);
  }
  .subscribe input[type="text"] {
    border: none;
    border-bottom: 1px solid white;
  }
  .subscribe input[type="text"]:focus {
    outline: none;
  }
  .subscribe ::placeholder {
    color: white;
  }
  .subscribe input[type="submit"] {
    background-color: var(--dark-color);
    color: var(--yellow-color);
  }
  /* end of subscripe */

  /* footer */
  /* Start Footer */
.footer {
  background-color: var(--dark-color);
}
.footer .copyright > span {
  color: var(--green-color);
}
.footer .copyright div span {
  color: var(--yellow-color);
}
.footer .contact ul svg {
  width: 20px;
  height: 20px;
}
.footer .facebook {
  background-color: #1877f2;
}
.footer .twitter {
  background-color: #1da1f2;
}
.footer .linkedin {
  background-color: #0077b5;
}
.footer .youtube {
  background-color: #ff0000;
}
/* End Footer */
  /* end of footer */