* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
html {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #141218;
  background-color: #fcfcfc;
  overflow-x: hidden;
  font-family: 'PT Sans', sans-serif;
  position: relative;
  overflow-y: hidden;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#loader img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  -webkit-animation: sk-rotateplane 2s infinite ease-in-out;
          animation: sk-rotateplane 2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: rotatey(0deg);
            transform: rotatey(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    -webkit-transform: rotatey(0deg);
            transform: rotatey(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

.section {
  min-height: 100vh;
}

h1 {
  font-weight: 800;
  line-height: 25px;
  color: #141218;
}

/************************navbar********************/
.navbar {
  background-color: #fff;
  position: relative;
  /*top: 0;
    left: 0;
    right: 0;*/
  border-bottom: 1px solid #cccccc;
}

.navbar a.navbar-brand {
  /*position: absolute;
          left: 50%;
          transform: translateX(-50%);
          top:0;*/
}

.navbar a.navbar-brand img {
  width: 100%;
}

.navbar .dropdown-submenu {
  position: relative;
  /*a::after {
              transform: rotate(-90deg);
              position: absolute;
              right: 6px;
              top: .8em;
          }*/
}

.navbar .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 50%;
  margin-left: 0;
  margin-right: .1rem;
}

.navbar input {
  background-color: transparent;
  color: #050814;
  border-color: #2978B5;
}

.navbar input:hover {
  background-color: transparent;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #050814;
  border-color: #2978B5;
}

.navbar input:focus {
  background-color: transparent;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #050814;
  border-color: #fecc50;
}

.navbar .navbar-form {
  position: relative;
}

.navbar .navbar-form i {
  color: #2978B5;
}

.navbar .navbar-form .ms-n5 {
  margin-top: 10px;
  margin-left: -40px;
}

.navbar .navbar-form #searchResult {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  height: 300px;
  overflow-y: scroll;
  border-radius: 5px;
  opacity: 0;
  z-index: 100;
  -webkit-box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, 0.2), -20px -20px 40px -6px rgba(0, 0, 0, 0.2);
  box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, 0.2), -20px -20px 40px -6px rgba(0, 0, 0, 0.2);
}

.navbar .navbar-form #searchResult a {
  color: #141218;
  padding: 10px 10px;
  display: block;
  text-decoration: none;
}

.navbar .navbar-form #searchResult a:hover {
  background-color: #679bee;
  color: #fff;
}

.active {
  color: #305EA9;
  border-bottom: 1px solid #141218;
}

.scroll {
  background-color: #fff !important;
}

nav .nav-link {
  color: #050814;
  padding: 0;
  margin: 0;
  margin-bottom: 5px;
}

.dropdown-item:hover {
  background-color: rgba(5, 8, 20, 0.1);
  color: #2978B5 !important;
}

nav .nav-link:hover {
  color: #2978B5 !important;
}

nav .nav-link span {
  position: relative;
}

nav .nav-link span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background-color: #050814;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

nav .nav-link span:hover::after {
  width: 100%;
}

.dropdown > :nth-child(2) {
  margin-top: 20px;
}

.dropdown-menu {
  border-top: 3px solid #2978B5 !important;
  width: 15rem;
  background-color: #fff !important;
}

.dropdown-submenu .dropdown-menu {
  border-left: 3px solid #2978B5 !important;
  border-top: 0 transparent !important;
  background-color: #fff !important;
}

.dropdown-menu a {
  color: #050814 !important;
}

.dropdown-menu a:hover {
  background-color: transparent !important;
}

.navbar .navbar-toggler {
  background-color: transparent;
  border: none !important;
  padding: 10px 6px;
}

.navbar .navbar-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #050814;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.navbar .navbar-toggler span:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar .navbar-toggler .top-bar {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}

.navbar .navbar-toggler .middle-bar {
  opacity: 0;
  margin-top: 4px;
}

.navbar .navbar-toggler .bottom-bar {
  margin-top: 4px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}

.navbar .navbar-toggler.collapsed .top-bar {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.navbar .navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.navbar .navbar-toggler.collapsed .bottom-bar {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.navbar .navbar-toggler:active {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/************************End navbar********************/
/**********************Start Home Page******************/
#slider {
  min-height: 85vh;
  position: relative;
}

#slider .swiper-container {
  width: 100%;
  height: 85vh;
}

#slider .swiper-container img {
  width: 100%;
  height: 100%;
}

#slider .swiper-container .video {
  position: relative;
}

#slider .swiper-container video {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#slider .swiper-pagination-bullet {
  opacity: 1;
  background-color: #141218 !important;
}

#slider .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff !important;
}

/*h1,h2,h3,h4,p{
      padding:0;
      margin:0;
  }*/
#Home {
  /*.section4{
          .home-content{
              background-color: #19181f;
             color: #fff;
             border: 13px solid #e2d4c4;
              
              a{
               color: $black;
               &::after{
                   
                   background: $white;
               }
               &:hover span{
                   color: $color3;
               }
              }
          }
      }*/
}

#Home .no-wrapper {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  font-size: 0;
  /*display: flex;
          flex-wrap: nowrap;*/
}

#Home .img-box {
  height: 450px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#Home .one-half {
  height: 450px;
  width: 100%;
  background: url("../images/11-12.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

#Home .one-half img {
  width: 100%;
  height: 100%;
}

#Home .home-wrapper .home-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 16px;
  color: #fff;
}

#Home .home-wrapper .home-content p {
  margin-top: 20px;
}

#Home .home-wrapper .home-content h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: 10px;
  text-transform: uppercase;
}

#Home .home-wrapper .home-content a {
  text-decoration: none;
  color: #fff;
  position: relative;
}

#Home .home-wrapper .home-content a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  width: 65px;
  height: 1px;
  margin: 0 auto;
  left: -3px;
  bottom: -5px;
  background: #141218;
}

#Home .home-wrapper .home-content a:hover .text {
  color: #fecc50;
}

#Home .home-wrapper .home-content .icon {
  margin-left: 5px;
}

#Home .section1 .home-content {
  background-color: #fff;
  color: #141218;
}

#Home .section1 .home-content a {
  color: #141218;
}

#Home .section1 .home-content a::after {
  background: #141218;
}

#Home .section1 .home-content a:hover .text {
  color: #305EA9;
}

#Home .section2 .home-content {
  background-color: #fff;
  color: #141218;
}

#Home .section2 .home-content a {
  color: #141218;
}

#Home .section2 .home-content a::after {
  background: #141218;
}

#Home .section2 .home-content a:hover .text {
  color: #305EA9;
}

#Home .section3 .home-content {
  background-color: #fff;
  color: #141218;
}

#Home .section3 .home-content a {
  color: #141218;
}

#Home .section3 .home-content a::after {
  background: #141218;
}

#Home .section3 .home-content a:hover .text {
  color: #305EA9;
}

/**********************End Home Page******************/
/*************************About Us Page********************/
#about-us {
  min-height: 100vh;
  color: #141218;
  margin-top: 100px;
}

#about-us .page-title,
#about-us .page-body,
#about-us .our-values {
  margin: 25px 0;
  padding: 25px 25px;
}

#about-us .page-title h2,
#about-us .page-body h2,
#about-us .our-values h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 20px;
}

#about-us .page-title p,
#about-us .page-body p,
#about-us .our-values p {
  font-size: 15px;
  font-weight: 300;
  line-height: 23px;
  color: rgba(20, 18, 24, 0.76);
}

#about-us .page-img {
  height: 540px;
}

#about-us .page-img img {
  width: 100%;
}

#about-us .our-values {
  background-color: #F5F5F5;
  text-align: center;
}

#about-us .our-values h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin: 20px 0;
}

/**************************End About Us Page*************************/
/***************************Contact Us Page************************/
#contact-us {
  min-height: 100vh;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 100px auto;
}

#contact-us span {
  color: red;
}

#contact-us .wrapper {
  margin-bottom: 30px;
}

#contact-us .wrapper p {
  font-size: 15px;
  font-weight: 300;
  line-height: 23px;
  color: #141218c2;
}

#contact-us .wrapper .email {
  position: relative;
}

#contact-us .wrapper .email::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 2px;
  width: 45%;
  background-color: #cccccc;
}

#contact-us .wrapper form .form-group .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px;
  border-style: none none solid none;
  border-radius: 0;
  border-color: #cccccc;
  background-color: transparent;
}

#contact-us .wrapper form .form-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 2px 0;
  border-color: #2978B5;
}

#contact-us .wrapper form .contact-btn {
  background-color: #679bee;
  color: #fff;
  width: 30%;
}

#contact-us .wrapper form .contact-btn:hover {
  background-color: #305EA9;
}

/***************************EndContact Us Page************************/
/***************************Start ProductPage************************/
#f_product {
  color: #141218;
  min-height: 100vh;
  width: 70%;
  margin: 0 auto;
}

#f_product h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  display: inline-block;
  margin-right: 28px;
}

#f_product h6 {
  display: none;
}

#f_product .arrow {
  color: #969696;
}

#f_product a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  line-height: 23px;
  color: #141218;
}

#f_product a:hover {
  color: #2978B5;
}

#f_product .main-content {
  text-align: center;
  margin-top: 75px;
}

#f_product .main-content h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 10px;
}

#f_product .main-content .img-wrapper {
  cursor: pointer;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*All Side shadow*/
  -webkit-box-shadow: 0 0 5px #ebe9e9;
          box-shadow: 0 0 5px #ebe9e9;
          
  background-color: #FFF !important;
  width: 354px;
  height: 354px;
}

#f_product .main-content .img-wrapper img {
  width: 100%;
  height: 100%;
  /*width: 50%;
    height: 80%;*/
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

#f_product .main-content .img-wrapper:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

#f_product .main-content p {
  color: #969696;
  font-size: 14px;
  font-weight: 400;
  outline: 24px;
  margin: 0;
}

/***************************EndProduct Page************************/
/*****************************Product-details page*************************************/
#product-details {
  color: #141218;
  min-height: 100vh;
  width: 90%;
  margin: 0 auto;
}

#product-details .links {
  margin-top: 50px;
}

#product-details .links .arrow {
  color: #969696;
}

#product-details .links a {
  text-decoration: none;
}

#product-details .links a:hover {
  color: #2978B5;
}

#product-details .links a,
#product-details .links .product-name {
  font-size: 15px;
  font-weight: 300;
  line-height: 23px;
  color: #141218;
}

#product-details .image-container {
  margin: auto;
}

#product-details .image-container .main-image-wrapper {
  margin-top: 45px;
  border: .2px solid #cccccc;
  /*box-shadow: inset 0 0 5px #fafafa;*/
  width: 600px;
  height: 600px;
  /*width: 90%;
    height: 100%;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

#product-details .image-container .main-image-wrapper .main-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  /*width: 450px;
    height: 450px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  /*margin: 10px 10px;*/
}

#product-details .image-container .main-image-wrapper .main-image img {
  width: 100%;
  /*width: 50%;*/
  height: 100%;
}

/*.slide-in {
    animation: slide-in 0.5s forwards;
}

.slide-out {
    animation: slide-out 0.5s forwards;
}
    
@keyframes slide-in {
    100% { transform: translateX(0%); }
}

@keyframes slide-out {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}*/
#product-details .image-container .product-images {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#product-details .image-container .product-images .img-item {
  width: 100px;
  height: 100px;
  cursor: pointer;
  border: .2px solid #cccccc;
  /*box-shadow: inset 0 0 5px #fafafa;*/
  margin-left: 10px;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#product-details .image-container .product-images .img-item img {
  width: 100%;
  height: 100%;
}

#product-details .product-discription {
  margin: auto;
  margin-top: 45px;
}

#product-details .product-discription .product-content h1 {
  margin-top: 20px;
  font-size: 33px;
  font-weight: 600;
}

#product-details .product-discription .product-content h1 span {
  position: relative;
}

#product-details .product-discription .product-content h1 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  border-bottom: 5px solid #4dbfec;
  width: 100%;
  display: block;
}

#product-details .product-discription .product-content p {
  margin-top: 40px;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
}

#product-details .product-discription .product-content a {
  text-decoration: none;
}

#product-details .product-discription .product-content .pdf-link {
  display: inline-block;
  color: #141218;
  font-size: 13px;
  border-bottom: 1px solid #969696;
}

#product-details .product-discription .product-content .pdf-link:hover {
  color: #2978B5;
}

#product-details .productFeatures h3, #product-details .technichal h3 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 22px;
  margin: 20px 0;
}

#product-details .productFeatures img {
  width: 100%;
  height: 100%;
}

#product-details .technichal {
  margin-top: 50px;
}

#product-details .technichal .tech-images {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#product-details .technichal .tech-images img {
  width: 100%;
}

/*****************************End Product-details Page*********************************/
/**************************Footer*********************/
#footer {
  background: url("../images/footer.jpeg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 250px;
  text-align: left;
}

#footer .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
}

#footer p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 0;
  margin: 0;
}

#footer .links {
  /*.logo{
              width:100%;
          }*/
}

#footer .links ul {
  padding: 0;
}

#footer .links li {
  list-style: none;
  margin-bottom: 10px;
}

#footer .links a {
  text-decoration: none;
  color: #fff;
}

#footer .links a:hover {
  color: #050814 !important;
}

#footer .social-icons {
  margin: 20px 0;
}

#footer .social-icons a {
  text-decoration: none;
  color: #0e1d51;
  border-radius: 50%;
  padding: 8px 8px;
  background-color: #fff;
  margin-right: 10px;
}

#footer .social-icons a:hover {
  color: #fff !important;
  background-color: #0e1d51;
}

#footer .copy-rights {
  text-align: center;
  padding-bottom: 10px;
}

/****************************End Footer*********************************/
/*****************************Responsive*********************************/
@media (min-device-width: 1025px) {
  #product-details .productFeatures {
    width: 80%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #product-details .technichal .tech-images img {
    width: 80%;
  }
}

/* Portrait and Landscape */
@media only screen and (min-device-width: 1025px) {
  .navbar-nav .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
  }
  .navbar-nav .dropdown .dropdown-submenu {
    position: relative;
  }
  .navbar-nav .dropdown .dropdown-submenu a::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    right: 55%;
    top: .8em;
  }
  .navbar-nav .dropdown .dropdown-submenu .dropdown-menu {
    position: absolute;
    top: -10px;
    left: 70%;
    margin-left: 0;
    margin-right: .1rem;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .navbar-nav .dropdown .dropdown-submenu:hover .dropdown-menu {
    opacity: 1;
  }
}

@media only screen and (min-device-width: 992px) and (max-device-width: 1024px) {
  .navbar-nav .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
  }
  .navbar-nav .dropdown .dropdown-submenu {
    position: relative;
  }
  .navbar-nav .dropdown .dropdown-submenu a::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: .8em;
  }
  .navbar-nav .dropdown .dropdown-submenu .dropdown-menu {
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: 0;
    margin-right: .1rem;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .navbar-nav .dropdown .dropdown-submenu:hover .dropdown-menu {
    opacity: 1;
  }
  /*#slider{
          min-height: 99vh !important;
          .swiper-container {
              width: 100%;
              height: 75vh !important;
              img{
                  width: 100%;
                  height: 100%;
              }
          }
      }*/
  #slider {
    min-height: 400px !important;
  }
  #slider .swiper-container {
    width: 100%;
    height: 400px !important;
  }
  #slider .swiper-container img {
    width: 100%;
    height: 100%;
  }
  #Home .img-box {
    height: 350px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #Home .one-half {
    height: 350px !important;
    width: 100%;
  }
  #Home .one-half img {
    width: 100%;
  }
  #Home .home-wrapper .home-content h1 {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 5px;
  }
  #about-us .page-img {
    height: unset;
  }
  #about-us .page-img img {
    width: 100%;
  }
  #footer {
    text-align: center;
    margin-top: 0;
  }
  #footer .links {
    font-size: 13px;
    margin-bottom: 20px;
  }
  #footer .links .logo {
    width: 50%;
  }
  #footer .title {
    font-size: 13px;
    font-weight: 700;
    line-height: 10px;
    margin-bottom: 10px;
  }
  #footer .address {
    margin-bottom: 20px;
    font-size: 11px;
  }
  #footer p {
    font-size: 13px;
  }
  #footer .copy-rights {
    font-size: 13px;
  }
  #f_product {
    width: 90%;
    margin: 0 auto;
  }
  #f_product h3 {
    display: none;
  }
  #f_product h6 {
    display: block;
  }
  #product-details {
    width: 100%;
    margin: 0 auto;
  }
  #product-details .links {
    margin-top: 20px;
  }
  #product-details .links a,
  #product-details .links .product-name {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
  }
  #product-details .product-discription .product-content {
    width: 100%;
  }
  #product-details .technichal h3 {
    font-size: 25px;
  }
  #product-details .technichal table {
    width: 90%;
    margin: 0 auto;
  }
}

@media only screen and (min-device-width: 769px) and (max-device-width: 991px) {
  .navbar {
    position: relative;
  }
  .navbar a.navbar-brand {
    margin-top: 5px;
    vertical-align: top;
    overflow: auto;
  }
  .navbar a.navbar-brand img {
    width: 70%;
    float: right;
  }
  .navbar .dropdown-submenu a::after {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .navbar .navbar-collapse {
    margin: 40px 0;
    min-height: 100vh;
  }
  .navbar .navbar-collapse form {
    margin-top: 30px;
  }
  .dropdown-submenu .dropdown-menu {
    border-left: 0 solid transparent !important;
    border-top: 3px solid #305EA9 !important;
  }
  nav .nav-link {
    padding: 5px 8px;
    margin: 5px 8px;
  }
  nav .nav-link:hover {
    border-bottom: 0px;
  }
  #slider {
    min-height: 370px !important;
  }
  #slider .swiper-container {
    width: 100%;
    height: 370px !important;
  }
  #slider .swiper-container img {
    width: 100%;
    height: 100%;
  }
  #Home .img-box {
    height: 350px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #Home .one-half {
    height: 350px !important;
    width: 100%;
  }
  #Home .one-half img {
    width: 100%;
  }
  #Home .home-wrapper .home-content h1 {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 5px;
  }
  #about-us .page-img {
    height: unset;
  }
  #about-us .page-img img {
    width: 100%;
  }
  #footer {
    text-align: center;
    margin-top: 0;
  }
  #footer .links {
    font-size: 13px;
    margin-bottom: 20px;
  }
  #footer .links .logo {
    width: 50%;
  }
  #footer .title {
    font-size: 13px;
    font-weight: 700;
    line-height: 10px;
    margin-bottom: 10px;
  }
  #footer .address {
    margin-bottom: 20px;
    font-size: 11px;
  }
  #footer p {
    font-size: 13px;
  }
  #footer .copy-rights {
    font-size: 13px;
  }
  #footer .social-icons a {
    font-size: 13px;
  }
  #f_product {
    width: 90%;
    margin: 0 auto;
  }
  #f_product h3 {
    display: none;
  }
  #f_product h6 {
    display: block;
  }
  #product-details {
    width: 100%;
    margin: 0 auto;
  }
  #product-details .image-container .main-image-wrapper {
    width: 100%;
    height: 100%;
  }
  #product-details .links {
    margin-top: 20px;
  }
  #product-details .links a,
  #product-details .links .product-name {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
  }
  #product-details .product-discription {
    width: 100%;
  }
  #product-details .technichal h3 {
    font-size: 25px;
  }
  #product-details .technichal table {
    width: 90%;
    margin: 0 auto;
  }
}

@media only screen and (min-device-width: 451px) and (max-device-width: 768px) {
  .navbar {
    position: relative;
  }
  .navbar a.navbar-brand {
    margin-top: 5px;
    vertical-align: top;
    overflow: auto;
  }
  .navbar a.navbar-brand img {
    width: 70%;
    float: right;
  }
  .navbar .dropdown-submenu a::after {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .navbar .navbar-collapse {
    margin: 40px 0;
    min-height: 100vh;
  }
  .navbar .navbar-collapse form {
    margin-top: 30px;
  }
  .dropdown-submenu .dropdown-menu {
    border-left: 0 solid transparent !important;
    border-top: 3px solid #305EA9 !important;
  }
  nav .nav-link {
    padding: 5px 8px;
    margin: 5px 8px;
  }
  nav .nav-link:hover {
    border-bottom: 0px;
  }
  #slider {
    min-height: 300px !important;
  }
  #slider .swiper-container {
    width: 100%;
    height: 300px !important;
  }
  #slider .swiper-container img {
    width: 100%;
    height: 100%;
  }
  #Home .img-box {
    height: 350px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #Home .one-half {
    height: 350px !important;
    width: 100%;
  }
  #Home .one-half img {
    width: 100%;
  }
  #Home .home-wrapper .home-content h1 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 5px;
  }
  #about-us .page-img {
    height: unset;
  }
  #about-us .page-img img {
    width: 100%;
  }
  #footer {
    text-align: center;
    margin-top: 0;
  }
  #footer .links {
    margin-bottom: 20px;
    font-size: 13px;
  }
  #footer .links .logo {
    width: 30%;
  }
  #footer .title {
    font-size: 13px;
    font-weight: 700;
    line-height: 10px;
    margin-bottom: 10px;
  }
  #footer .address {
    margin-bottom: 20px;
    font-size: 11px;
  }
  #footer p {
    font-size: 13px;
  }
  #footer .copy-rights {
    font-size: 13px;
  }
  #footer .social-icons a {
    font-size: 13px;
  }
  #f_product {
    width: 90%;
    margin: 0 auto;
  }
  #f_product h3 {
    display: none;
  }
  #f_product h6 {
    display: block;
  }
  #product-details {
    width: 100%;
    margin: 0 auto;
    /*.productFeatures{
              .details-image{
                  width: 130px;
                  height: 50px; 
              }
              
         }*/
  }
  #product-details .image-container .main-image-wrapper {
    width: 100%;
    height: 100%;
  }
  #product-details .links {
    margin-top: 20px;
  }
  #product-details .links a,
  #product-details .links .product-name {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
  }
  #product-details .technichal h3 {
    font-size: 25px;
  }
  #product-details .technichal table {
    width: 90%;
    margin: 0 auto;
  }
}

@media only screen and (max-device-width: 450px) {
  /*background-color:$white !important;*/
  .navbar a.navbar-brand {
    margin-top: 5px;
    vertical-align: top;
    overflow: auto;
    /*position: relative !important;
              transform: translateX(-90%) !important;*/
  }
  .navbar a.navbar-brand img {
    width: 70%;
    float: right;
  }
  .navbar .dropdown-submenu a::after {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .navbar .navbar-collapse {
    margin: 40px 0;
    min-height: 100vh;
  }
  .navbar .navbar-collapse form {
    margin-top: 30px;
  }
  .dropdown-submenu .dropdown-menu {
    border-left: 0 solid transparent !important;
    border-top: 3px solid #305EA9 !important;
  }
  nav .nav-link {
    padding: 5px 8px;
    margin: 5px 8px;
  }
  nav .nav-link:hover {
    border-bottom: 0px;
  }
  #slider {
    min-height: 200px !important;
  }
  #slider .swiper-container {
    width: 100%;
    height: 200px !important;
  }
  #Home .img-box {
    height: 300px !important;
  }
  #Home .one-half {
    height: 300px !important;
    width: 100%;
  }
  #Home .one-half img {
    width: 100%;
  }
  #Home .home-wrapper .home-content h1 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 5px;
  }
  #about-us .page-img {
    height: unset;
  }
  #about-us .page-img img {
    width: 100%;
  }
  #footer {
    text-align: center;
    margin-top: 0;
  }
  #footer .links {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 13px;
  }
  #footer .links .logo {
    width: 30%;
  }
  #footer .title {
    font-size: 13px;
    font-weight: 700;
    line-height: 10px;
    margin-bottom: 10px;
  }
  #footer .address {
    margin-bottom: 20px;
    font-size: 11px;
  }
  #footer p {
    font-size: 13px;
  }
  #footer .copy-rights {
    font-size: 13px;
  }
  #footer .social-icons a {
    font-size: 13px;
  }
  #f_product {
    width: 90%;
    margin: 0 auto;
  }
  #f_product h3 {
    display: none;
  }
  #f_product h6 {
    display: block;
  }
  #f_product .main-content .img-wrapper {
    height: 220px !important;
    width: 190px !important;
  }
  #product-details {
    width: 100%;
    margin: 0 auto;
    /*.productFeatures{
               .details-image{
                   width: 150px;
                   height: 50px; 
               }
               
          }*/
  }
  #product-details .links {
    margin-top: 20px;
  }
  #product-details .links a,
  #product-details .links .product-name {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
  }
  #product-details .image-container .main-image-wrapper {
    width: 100%;
    height: 100%;
  }
  #product-details .image-container .main-iamge-wrapper .main-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin: 20px auto;
  }
  #product-details .image-container .product-images {
    max-width: 450px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #product-details .image-container .product-images .img-item {
    width: 80px;
    height: 80px;
  }
  #product-details .image-container .product-images .img-item img {
    width: 100%;
    height: 100%;
  }
  #product-details .technichal h3, #product-details .productFeatures h3 {
    font-size: 25px;
    text-align: left;
  }
  #product-details .technichal table {
    width: 90%;
    margin: 0 auto;
  }
}
/******************Media queru for sliders******************/
/*# sourceMappingURL=style.css.map */