@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5);
  }
}
/** fadeInLeft **/
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translatex(-10px);
    -moz-transform: translatex(-10px);
    -o-transform: translatex(-10px);
    transform: translatex(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}
@-moz-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translatex(-10px);
    -moz-transform: translatex(-10px);
    -o-transform: translatex(-10px);
    transform: translatex(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translatex(-100px);
    -moz-transform: translatex(-100px);
    -o-transform: translatex(-100px);
    transform: translatex(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}
.in-left {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-duration: 0.5s;
  animation-delay: 0.5s;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Poppins", sans-serif;
}
body {
  overflow-x: hidden;
}

.p {
  font-size: 16px;
  line-height: 26px;
  color: #202020;
  font-weight: 300;
  margin-bottom: 20px;
}
.ptb {
  padding: 100px 0;
}

.nav {
  height: auto;
  width: 100vw;
  display: flex;
  position: fixed;
  z-index: 999;
  padding: 15px 0;
}
.nav_left {
  width: 40%;
  float: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav_right {
  width: 60%;
  float: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/*Styling logo*/
.logo {
  float: left;
}
.logo img {
  width: 200px;
  height: auto;
}
.nav.sticky {
  background: rgb(1, 48, 146);
  background: linear-gradient(
    90deg,
    rgba(1, 48, 146, 1) 0%,
    rgba(13, 165, 240, 1) 100%
  );
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  padding: 6px 0;
  opacity: 95%;
}
.nav_left {
  width: 40%;
  float: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav_right {
  width: 60%;
  float: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/*Styling logo*/
.logo {
  float: left;
}
.logo img {
  width: 200px;
  height: auto;
}

/*Styling Links*/
.nav-links {
  text-align: center;
  list-style: none;
  margin-bottom: 0;
}
.nav-links li {
  display: inline-block;
}
.nav-links li a {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  font-weight: 300;
  position: relative;
  z-index: 1;
  padding: 4px 10px;
}
.nav-links li.dropdown a span {
  font-size: 12px;
}
.nav-links li.dropdown:hover a span {
  font-weight: 600;
}
.nav-links li .dropdown-menu .dropdown-item {
  color: #000000 !important;
  padding: 6px 10px;
}
.nav-links li .dropdown-menu .dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #18a5ed33;
}

.nav-links li a,
.nav-links li a:after,
.nav-links li a:before {
  transition: all 0.4s;
}
.nav-links li a:hover {
  color: #fff;
}
.nav-links li a:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: ".";
  color: transparent;
  background: transparent;
  border: 1px solid #fff;
  visibility: none;
  opacity: 0;
  z-index: -1;
}
.nav-links li a:hover:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.nav-links li a.active:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

/*Styling Hamburger Icon*/
.hamburger div {
  width: 30px;
  height: 3px;
  background: #f2f5f7;
  margin: 5px;
  transition: all 0.3s ease;
}
.hamburger {
  display: none;
}
.nav_no {
  float: left;
}
.nav_no_box {
  position: relative;
  padding-left: 40px;
  padding-top: 2px;
}
.nav_no_box:before {
  position: absolute;
  content: "";
  background: #dedede;
  height: 28px;
  width: 1px;
  left: 30px;
  top: 3px;
}
.nav_no_icon {
  position: absolute;
  left: 0;
  top: 7px;
  transition: all 500ms ease;
  width: 18px;
  height: auto;
}
.nav_no_text {
  position: relative;
  font-size: 12px;
  line-height: 12px;
  color: #fff;
}
.nav_no_box a {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
/*Animating Hamburger Icon on Click*/
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.btn_one {
  display: inline-block;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #ffffff;
  padding: 0 40px;
  font-size: 15px;
  height: 50px;
  line-height: 48px;
  border-radius: 50px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  background-color: #00aeff;
  position: relative;
  overflow: hidden;
  transition: all 500ms ease;
}
.btn_one span {
  height: 30px;
  width: 15px;
  border: 1px solid #ffffff;
  border-right: 0;
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.btn_one:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background: #0d3b98;
  z-index: -1;
  -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s,
    background-color 0.3s;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  z-index: -1;
}
.btn_one:hover {
  color: #ffffff;
  box-shadow: 0 6px 10px rgba(12, 89, 219, 0.3);
  transform: translateY(-4px);
}
.btn_one:hover::before {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg);
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.carousel-caption {
  right: auto;
  bottom: 240px;
  left: auto;
  width: 50%;
  padding: 0;
  text-align: left;
}
.carousel-caption h1 {
  font-size: 48px;
  line-height: 60px;
  color: #fff;
  font-weight: 300;
  font-style: italic;
  font-family: "Yusei Magic", sans-serif;
}
.carousel-caption p {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  font-weight: 300;
}
.carousel-item {
  height: 750px;
}
.carousel-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  background: url(../images/banner-bg.png) top center;
  background-size: cover;
}
.carousel-indicators {
  display: none;
}
.carousel-control-prev {
  width: 42px;
  height: 42px;
  bottom: 59px;
  left: auto;
  right: 136px;
  top: auto;
  background: #ffffff;
  opacity: 1;
  border: 1px solid #0d3b98;
  border-radius: 50px !important;
  z-index: 20;
}

.carousel-control-prev-icon {
  position: absolute;
  background: url(../images/arrow-icon.png);
  width: 13px;
  height: 24px;
  transform: rotate(-180deg);
  background-size: cover;
}
.carousel-control-next {
  width: 58px;
  height: 58px;
  bottom: 50px;
  right: 74px;
  top: auto;
  background: #ffffff;
  opacity: 1;
  border: 1px solid #0d3b98;
  border-radius: 50px !important;
  z-index: 20;
}
.carousel-control-next-icon {
  position: absolute;
  background: url(../images/arrow-icon.png);
  width: 18px;
  height: 32px;
  background-size: cover;
}
.carousel-item img {
  position: absolute;
  right: 0px;
  bottom: 150px;
  width: 620px;
  height: auto;
  background-size: cover;
}

.sub_title h2 {
  font-size: 40px;
  line-height: 50px;
  color: #000000;
  font-family: "Yusei Magic", sans-serif;
  font-style: italic;
  margin-bottom: 20px;
}
.sub_title h5,
.h5 {
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  line-height: 28px;
}
.sub_head {
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  color: #303030;
  font-weight: 500;
  margin-left: 45px;
}
.sub_head::after {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 2px solid #0d3b98;
  width: 40px;
  top: 14px;
  left: -45px;
}
.sub_discription p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 300;
  color: #303030;
  margin-bottom: 0;
}
.sub_icon {
  width: 110px;
  height: 110px;
  border: 1px solid #0d3b98;
  border-radius: 55px;
  padding: 30px;
}
.sub_discription_box {
  padding: 8px 15px;
  margin-bottom: 10px;
  transition: all 500ms ease;
}
.sub_discription_box:hover {
  box-shadow: 0 6px 25px rgba(12, 89, 219, 0.14);
  border-radius: 15px;
  transition: 0.3s;
  background-color: #ffffff;
  transform: translateY(-10px);
}

.company_sec_bg {
  background: rgb(1, 48, 146);
  background: linear-gradient(
    90deg,
    rgba(1, 48, 146, 1) 0%,
    rgba(13, 163, 239, 1) 51%,
    rgba(13, 165, 240, 1) 100%
  );
  width: 100%;
  height: 100%;
  position: relative;
}
.company_sec_bg .sub_head:after {
  border-bottom: 2px solid #00aeff !important;
}
.company_sec_list li {
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 32px;
  font-weight: 300;
  color: #ffffff;
  padding-left: 25px;
}
.company_sec_list li:before {
  position: absolute;
  content: "";
  background: url(../images/tick_mark.png);
  width: 18px;
  height: 16px;
  left: 0;
  top: 6px;
}

.company_sec_row {
  align-items: center;
  justify-content: space-between;
}
.company_sec_right {
  position: inherit;
  z-index: 1;
}
.company_sec_bg::after {
  content: "";
  position: absolute;
  background: url(../images/company_sec_img.png);
  width: 50%;
  background-size: cover;
  z-index: 0;
  top: -20px;
  right: 0;
  bottom: -20px;
}
.company_sec_bg:before {
  transition: all 0.3s ease;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 220px;
  height: 320px;
  position: absolute;
  background: url(../images/company_sec_img-center.png);
  background-size: cover;
  z-index: 2;
}
.company_sec_bg:hover::before {
  top: calc(50% + 10px);
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.video_sec .right_box {
  margin-bottom: 34px;
}
.video_sec .right_box .sub_discription {
  margin-left: 130px;
}
.video_sec .video_pic {
  background: url(../images/video-img.jpg);
  width: 100%;
  height: 500px;
  margin-left: -15px;
  display: flex;
  background-repeat: no-repeat;
}
.video_sec .video_pic .video-btn {
  background: #fff;
  width: 48px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: auto;
  border-radius: 50%;
  -webkit-animation: pulse 3s infinite;
  -o-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
}
.video_sec .video_pic .video-btn a img {
  margin-left: 4px;
}

.footer_bg {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 120px;
}
.footer_bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  background: url(../images/banner-bg.png) top center;
  background-size: cover;
  transform: rotate(180deg);
  z-index: -1;
}
.footer_bg .footer_img img {
  width: 290px;
  height: auto;
  position: absolute;
  z-index: 3;
  bottom: 0;
}
.footer_bg .footer_img {
  position: relative;
  width: 380px;
  height: 100%;
  margin: 0 auto;
}
.footer_bg .footer_img::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 215px;
  height: 179px;
  background: url(../images/footer-img-left.png) top center;
  z-index: 1;
}
.footer_bg .footer_img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 140px;
  background: url(../images/footer-img-right.png) top center;
  z-index: 1;
}
.footer_icon {
  background: #fff;
  width: 60px;
  height: auto;
  line-height: 60px;
  text-align: center;
  margin: auto;
  border-radius: 50%;
  -webkit-animation: pulse 3s infinite;
  -o-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
}
.footer_bg .sub_discription .sub_title h2 {
  margin-bottom: 5px;
}
.footer_bg .sub_discription a,
.footer_bg .sub_discription .address {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  line-height: 28px;
  text-decoration: 0;
}
.footer_bg .footer-bottom-sec {
  background: #fff;
  padding: 15px 10px;
}
.footer_bg .footer-bottom-sec .sub_icon {
  width: 60px;
  height: 60px;
  border: 1px solid #0d3b98;
  border-radius: 55px;
  padding: 15px;
  margin-right: 8px;
}
.footer_bg .footer-bottom-sec .sub_title h2 {
  line-height: 40px;
  margin-bottom: 0;
  color: #00aeff;
}
.footer_bg .footer_patent {
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
}
.footer_bg .footer_patent p,
.footer_bg .footer_patent p a {
  font-size: 12px;
  line-height: 20px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 0;
}
.footer_bg .social_link_sec {
  margin-bottom: 10px;
}
.footer_bg .social_link_sec p {
  float: left;
  line-height: 47px;
  margin-right: 10px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 0;
}
.footer_bg .social_link_sec .social_links {
  display: flex;
  list-style: none;
  margin-bottom: 0;
}
.footer_bg .social_link_sec .social_links li {
  width: 46px;
  height: 46px;
  border: 1px solid #ffffff;
  background: #0d3b9845;
  border-radius: 55px;
  padding: 9px 12px 10px 12px;
  margin-right: 8px;
}
.footer_bg .social_link_sec .social_links li:hover {
  background: #0d3b98;
  transition: all 0.4s ease;
  transform: translateY(-5px);
  box-shadow: 0 3px 20px rgb(2 62 157);
}
/*about*/
.inner_bg {
  width: 100%;
  height: auto;
  background: url(../images/banner-bg.png) top center;
  background-size: cover;
  padding: 140px 0 70px 0;
  background-repeat: no-repeat;
}
.inner_bg .inner_title {
  text-align: center;
}
.inner_bg .inner_title h2 {
  font-size: 48px;
  line-height: 42px;
  color: #fff;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 300;
  margin-bottom: 0;
}
.inner_bg .inner_title p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin: 10px 0;
}
.inner_bg .inner_title p a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
}
.inner_sub_title h2 {
  font-size: 28px;
  line-height: 38px;
  color: #000000;
  font-weight: 300;
  font-style: italic;
  font-family: "Yusei Magic", sans-serif;
  margin-bottom: 10px;
}
.servive_inner_box {
  box-shadow: 0 6px 25px rgba(12, 89, 219, 0.14);
  border-radius: 15px;
  transition: 0.3s;
  background-color: #ffffff;
  transform: translateY(-10px);
}
.zoom-effect-container {
  position: relative;
  width: 100%;
  height: 410px;
  margin: 0 auto;
  overflow: hidden;
}
.image-card {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.zoom-effect-container:hover .image-card img {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.image-card img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  border-radius: 10px;
}
.contact-1-cont .form-control {
  border-radius: 50px;
  padding: 15px 25px;
}

.gallery_main .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}
.gallery_main .card {
  color: #252a32;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.gallery_main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #ffffff;
}
.gallery_main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery_main .card-image p {
  position: absolute;
  opacity: 1;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 12px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 300ms ease;
  transition-delay: 300ms;
  color: #fff;
}

.baguetteBox-button {
  background-color: transparent !important;
}
.servive_list {
  padding-left: 20px;
}
.servive_list li {
  color: #303030;
  list-style: circle;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
  padding-left: 10px;
}
.font_imp {
  font-weight: 500 !important;
  font-size: 16px !important;
  margin: 20px 0 !important;
}

/*Stying for small screens*/
@media screen and (min-width: 1600px) {
  .carousel-caption {
    width: 30%;
  }
  .carousel-item img {
    right: 230px;
  }
  .video_sec .right_box {
    margin-bottom: 55px;
  }
}
@media screen and (min-width: 1200px) {
  .table-bordered {
    border: 0;
  }
}
@media screen and (max-width: 1200px) {
  .nav-links li a {
    font-size: 14px;
  }

  .nav-links li.dropdown a span {
    font-size: 11px;
  }
  .logo img {
    width: 180px;
  }
  .nav_no_box a {
    font-size: 15px;
    font-weight: 300;
  }
  .sub_title h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .servive_inner_box {
    padding: 30px;
  }
  .zoom-effect-container {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 992px) {
  nav {
    position: fixed;
    z-index: 999;
  }
  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 10%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
  }
  .nav-links {
    position: fixed;
    background: rgb(1, 48, 146);
    background: linear-gradient(
      90deg,
      rgba(1, 48, 146, 1) 0%,
      rgba(13, 165, 240, 1) 100%
    );
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    height: 100vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
    top: 0;
    left: 0;
  }
  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
    top: 0;
    left: 0;
  }
  .nav-links li {
    opacity: 0;
  }
  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }
  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }
  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }
  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }
  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }
  .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
  }
  li.fade {
    opacity: 1 !important;
  }

  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links li {
    display: block;
    margin: 2vh 0;
  }
  .nav-links li a {
    padding: 6px 25px;
  }
  .nav_no {
    display: none;
  }
  .nav.sticky {
    padding: 10px 0;
  }

  .company_sec_bg::after {
    width: 100%;
    top: 0;
    left: 0;
    bottom: 55%;
  }
  .company_sec_row .left {
    -ms-flex-order: 2;
    order: 2;
  }
  .company_sec_row .right {
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 100px;
  }
  .company_sec_bg:before {
    bottom: -125px;
    right: 0px;
    left: auto;
    top: auto;
  }
  .footer_bg .sub_discription .sub_title h2 {
    text-align: center;
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
  }
  .footer_bg .sub_discription p a,
  .footer_bg .sub_discription p,
  .footer_bg .sub_discription .address {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
  }
  .footer_bg .footer_icon {
    width: 50px;
    height: 50px;
    line-height: 48px;
  }
  .footer_bg .footer-bottom-sec .right_box {
    display: flex;
    align-items: center;
  }
  .footer_bg .footer-bottom-sec .sub_discription .sub_title h2 {
    text-align: left;
    font-size: 18px;
    line-height: 24px;
  }
  .footer_bg .footer-bottom-sec .sub_discription p {
    font-size: 12px;
  }
  .footer_bg .footer-bottom-sec .sub_icon {
    width: 50px;
    height: 50px;
    padding: 10px;
    margin-right: 4px;
  }

  .sub_icon {
    width: 80px;
    height: 80px;
    padding: 20px;
  }
  .sub_title h5,
  .h5 {
    margin-bottom: 0;
  }
  .sub_discription p {
    line-height: 18px;
  }
  .video_sec .right_box {
    margin-bottom: 20px;
  }
  .video_sec .right_box .sub_discription {
    margin-left: 100px;
  }
  .carousel-item img {
    width: 520px;
    right: -30px;
    bottom: 90px;
  }
  .carousel-caption h1 {
    font-size: 38px;
    line-height: 50px;
  }
  .carousel-caption p {
    line-height: 28px;
  }
  .carousel-item {
    height: 560px;
  }
  .carousel-caption {
    right: auto;
    bottom: 175px;
  }
  .company_sec_bg:hover::before {
    opacity: 50%;
    top: auto;
  }
  .zoom-effect-container {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .carousel-caption {
    text-align: center;
    width: 100%;
    right: 0;
    left: 0;
    padding: 0 10px;
    bottom: 120px;
  }
  .carousel-item img {
    width: 400px;
    right: calc(50% - 200px);
    bottom: 0;
    top: 10%;
  }
  .video_sec .video_pic {
    margin-left: 0;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .footer_bg .footer_img img {
    left: -107px;
  }
  .footer_bg .footer_img:after {
    left: -80px;
  }
  .footer_bg .footer_img::before {
    top: 0;
    right: 60px;
  }
  .footer_bg .sub_discription p a,
  .footer_bg .sub_discription p,
  .footer_bg .sub_discription .address {
    font-size: 14px;
    line-height: 22px;
  }
  .footer_bg .footer_icon img {
    width: 28px;
  }
  .footer_bg .footer_icon {
    width: 40px;
    height: 40px;
    line-height: 38px;
    margin-bottom: 6px;
  }
  .footer_bg .social_link_sec .social_links li {
    padding: 4px 8px 8px 8px;
    margin-right: 4px;
    width: 36px;
    height: 36px;
  }
  .footer_bg .social_link_sec p {
    line-height: 33px;
    font-size: 14px;
  }
  .footer_bg .footer-bottom-sec .sub_discription p {
    text-align: left;
    font-size: 10px;
    line-height: 10px;
  }
  .footer_bg .footer-bottom-sec {
    padding: 10px 0px;
  }
  .footer_bg .footer-bottom-sec .col-4 {
    padding-right: 0;
  }
  .btn_one {
    padding: 0 30px;
    font-size: 13px;
    height: 40px;
    line-height: 38px;
  }
  .btn_one span {
    height: 26px;
    width: 10px;
    top: 50%;
    left: 23px;
  }
  .carousel-item img {
    top: 7%;
  }
  .carousel-caption {
    padding: 0px 30px;
    bottom: 50px;
  }
  .carousel-caption h1 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 0;
  }
  .carousel-caption p,
  .p {
    line-height: 22px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .sub_title h2 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 10px;
  }
  .sub_title h5,
  .h5 {
    font-size: 16px;
    line-height: 24px;
  }
  .sub_head {
    font-size: 14px;
    margin-left: 36px;
  }
  .sub_head::after {
    width: 30px;
    top: 10px;
    left: -36px;
  }
  .ptb {
    padding: 60px 0;
  }
  .footer_bg {
    padding-top: 80px;
  }
  .company_sec_bg:before {
    bottom: -135px;
    right: -97px;
  }
  .hamburger {
    right: 5%;
  }
  .zoom-effect-container {
    height: 320px;
  }
  .servive_inner_box {
    padding: 0 0 30px 0;
  }
}
@media screen and (max-width: 576px) {
  .footer_bg .footer_img img,
  .footer_bg .footer_img::before,
  .footer_bg .footer_img:after {
    display: none;
  }
  .footer_bg .social_link_sec {
    margin: 0 auto 10px auto;
  }
  .company_sec_bg:before {
    bottom: -136px;
    right: -221px;
    display: none;
  }
  .carousel-control-next {
    width: 48px;
    height: 48px;
    bottom: 40px;
    right: 10px;
  }
  .carousel-control-next-icon {
    width: 11px;
    height: 20px;
  }
  .carousel-control-prev-icon {
    width: 6px;
    height: 11px;
  }
  .carousel-control-prev {
    width: 32px;
    height: 32px;
    bottom: 49px;
    right: 65px;
  }
  .company_sec_bg::after {
    bottom: 56%;
  }
  .btn_one {
    padding: 0 20px;
  }
  .btn_one span {
    height: 24px;
    left: 14px;
  }
  .inner_bg .inner_title h2 {
    font-size: 34px;
  }
  .hamburger {
    right: 4%;
  }
  .inner_bg {
    padding: 110px 0 60px 0;
  }
  .logo {
    margin-left: 5px;
  }

  .gallery_main .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    padding: 50px 20px;
  }
}
@media screen and (max-width: 440px) {
  .carousel-item {
    height: 650px;
  }
  .ptb {
    padding: 40px 0;
  }
  .carousel-item img {
    top: 14%;
  }
  .video_sec .right_box .sub_discription {
    margin-left: 90px;
  }
  .zoom-effect-container {
    height: 250px;
  }
}
@media screen and (max-width: 400px) {
  .footer_bg .footer_patent p,
  .footer_bg .footer_patent p a {
    font-size: 9px;
  }
  .carousel-control-prev {
    right: 58px;
  }
  .carousel-control-next {
    right: 8px;
  }
  .carousel-item img {
    top: 14%;
    right: 0%;
  }
  .company_sec_list li {
    line-height: 24px;
  }
  .zoom-effect-container {
    height: 200px;
  }
}
