/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
  /* CSS */
}
/* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
@media (min-width: 1025px) and (max-width: 1280px) {
  /* CSS */
}
/* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
@media (min-width: 768px) and (max-width: 1024px) {
  /* CSS */
}
/* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  /* CSS */
}
/* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
@media (min-width: 481px) and (max-width: 767px) {
  /* CSS */
}
/* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
@media (min-width: 320px) and (max-width: 480px) {
  .banner-bg {
    height: 490px;
    background: #f5f5f5;
    background: -moz-linear-gradient(0deg, #f5f5f5 35%, #ffffff 100%);
    background: -webkit-linear-gradient(0deg, #f5f5f5 35%, #ffffff 100%);
    background: linear-gradient(0deg, #f5f5f5 35%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5f5f5", endColorstr="#ffffff", GradientType=1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .banner-bg .banner-txt {
    color: #0e4900;
  }
  .banner-bg .banner-txt h1 {
    font-size: 40px;
    font-weight: 400;
  }
  .banner-bg .banner-txt h1 span {
    font-size: 14px;
    font-weight: bold;
  }
  .banner-bg .banner-txt p {
    font-size: 19px;
    color: #42ab3a;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .banner-bg a {
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
    padding: 15px 25px;
    background-color: #1691d3;
    border-radius: 50px;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s ease all;
  }
  .banner-bg a:hover {
    background: #8dca28;
    background: -moz-linear-gradient(90deg, #8dca28 35%, #22a53d 100%);
    background: -webkit-linear-gradient(90deg, #8dca28 35%, #22a53d 100%);
    background: linear-gradient(90deg, #8dca28 35%, #22a53d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8dca28", endColorstr="#22a53d", GradientType=1);
    transition: 0.3s ease all;
  }
  .main-hd {
    position: relative;
  }
  .main-hd h1 {
    font-size: 28px;
    color: #0e4900;
    font-weight: normal;
  }
  .main-hd h1 span {
    color: 84c92b;
    font-weight: bold;
    color: #84c92b;
  }
  .main-hd::after {
    content: "";
    background-color: #84c92b;
    height: 2px;
    position: absolute;
    bottom: -10px;
    right: 40%;
    left: 40%;
    width: auto;
  }
  .work-flow {
    margin-bottom: 30px;
  }
  .work-flow .img-step {
    width: 30%;
  }
  .work-flow .img-step img {
    min-width: 100%;
    padding: 0px;
  }
  .work-flow .flow-txt {
    width: 70%;
    font-family: 'Mulish', sans-serif;
    font-weight: 500;
  }
  .work-flow .flow-txt .step-num {
    background-color: #1691d3;
    color: #fff;
    border: 8px solid #e2e2e2;
    border-radius: 50px;
    font-size: 40px;
    padding: 28px;
    width: 50px;
    height: 50px;
    line-height: 0px;
    text-align: center;
    margin: 0 auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .work-flow .flow-txt .step-cnt {
    margin: 0px 15px;
  }
  .work-flow .flow-txt .step-cnt h3 {
    color: #1691d3;
  }
  .work-flow .flow-txt .step-cnt p {
    font-size: 16px;
    line-height: 24px;
  }
  .nav-link {
    color: #01121a;
    font-family: 'Mulish', sans-serif;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 15px !important;
    border-top: 1px solid #fff;
    background-color: #f3f3f3;
  }
  .nav-link:last-child {
    border-bottom: 1px solid #ccc;
  }
  .navbar-nav {
    margin-bottom: 30px;
  }
  .navbar-collapse {
    margin-bottom: 50px;
  }
  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none !important;
  }
  .navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    font-size: 1.25rem;
    margin-right: 0px;
    text-decoration: none;
  }
}
