@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&family=Teko:wght@300;600&display=swap");

figure {
  margin: 0em 0px !important;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
}

.header-part-bg {
  position: sticky;
  top: 0;
  z-index: 999999;
  background-color: #fff;
}

@media (min-width: 992px) {
  .slider,
  .slide {
    height: 80vh;
  }
}

.slide {
  position: relative;
  transition: 1s;
}
.slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.slide .slide__img img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
}
.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide .slide__content.slide__content__left {
  left: 15%;
  transform: translate(-15%, -50%);
}
.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}
.slide .slide__content--headings {
  color: #fff;
}
.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
}
.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.slide .slide__content--headings .top-title {
  font-family: "Playball", cursive;
  font-size: 2.5rem;
}
.slide .slide__content--headings .title {
  font-size: 3.5rem;
}
.slide .slide__content--headings .button-custom {
  text-decoration: none;
  color: #333;
  padding: 1.2rem 2.5rem;
  font-size: 1.5rem;
}

.slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
  transition: 1s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
  opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}
.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}
.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
  opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
  animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}
.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
  animation-name: zoomOutImage;
  transition: 1s;
}

.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}
.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}
.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}
.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.slick-nav i:before,
.slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.slick-nav i:before {
  transform: rotate(-40deg);
}
.slick-nav i:after {
  transform: rotate(40deg);
}
.slick-nav:before,
.slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
  animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
  animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
  animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
  animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@-webkit-keyframes arrow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@keyframes arrow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@-webkit-keyframes arrowUp {
  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowUp {
  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@-webkit-keyframes arrowDown {
  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif !important;
  font-size: 17px;
  color: #000;
}
.header {
  background-color: #ffffff;
}
.nop {
  padding: 0px;
}
.logo-image {
  text-align: right;
  padding-top: 5px;
  padding-bottom: 4px;
}

.logo-image img {
  width: 100%;
  height: auto;
  padding-top: 30px;
}
.logo-Interior img {
  width: 265px;
  height: auto;
  padding: 10px 0;
}
a {
  text-decoration: none !important;
}
.social-media {
  padding-top: 10px;
}
.social-media ul {
  overflow: auto;
  padding: 0px;
  margin: 0px;
  color: #434e6e;
}
.social-media ul li {
  list-style-type: none;
  float: left;
  list-style: none;
}
.social-media ul li a {
  color: #434e6e;
}

.social-media ul li a i {
  background: #0f2a67;
  color: #ffffff;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  text-align: center;
  margin-right: 10px;
}

.social-media ul li a i:hover {
  color: #ffffff;
}
.carousel-control.left {
  background-image: none;
  background-image: none;
  background-image: none;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
  z-index: 9;
}
.carousel-control.right {
  background-image: none;
  background-image: none;
  background-image: none;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
  z-index: 9;
}
.carousel-indicators li {
  background-color: #373435;
  width: 23px;
  height: 15px;
  border: 3px solid #fff;
}
.carousel-indicators .active {
  background-color: #022c54;
  width: 23px;
  height: 15px;
}
.padding-top {
  padding-top: 20px !important;
}
.mt-30 {
  margin-top: 100px;
}
.mt-50 {
  margin-top: 50px;
}
.padding-top {
  padding-top: 20px;
}

.welcome-home-bg {
  padding-top: 70px !important;
  padding-bottom: 60px !important;
  background-color: #fff;
}
.tf-title {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 3.3px;
  color: #333333;
  margin: 15px 0px 0px 0px;
}
.servece-0111 {
  position: relative;
  height: 5px;
  width: 65px;
  background-color: #e3cca1;
  display: block;
  margin: 18px auto 20px auto;
}
.home-welcome h1 {
  font-size: 42px;
  font-weight: 700;
  color: #0f2a67;
  margin: 0px;
}
.home-welcome span {
  font-size: 40px;
  color: #e3cca1;
  text-transform: none;
}
.tagline {
  font-size: 19px !important;
  font-style: italic;
  color: #000000 !important;
  font-weight: 600;
  line-height: 32px !important;
  text-align: left !important;
}
.home-welcome p {
  font-size: 17px;
  color: #333333;
  line-height: 30px;
  text-align: justify;
}
.home-welcome b,
strong {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.about-company img {
  width: 100%;
  height: auto;
  padding: 20px;
}
.read-more {
  color: #333;
  border: 2px solid #0f2a67;
  font-size: 18px;
  font-weight: 400;
  padding: 8px 15px;
  border-radius: 8px;
}
.read-more:hover {
  color: #fff;
  background-color: #0f2a67;
  text-decoration: none;
  border: 2px solid #0f2a67;
}

.widget-image img {
  width: 100%;
  height: auto;
}
.elementor-counter:hover,
.home img:hover,
.read-more:hover {
  transform: translateY(10px);
  transition: 0.5s;
}

.quality-box-home-bg {
  background-color: #b47d3a;
  position: absolute;
  z-index: 9;
  padding: 13px;
  top: 180px;
  width: 280px;
  border-radius: 8px;
}
.quality-box-home {
  background-color: #b47d3a;
  border: 1px solid #fff;
  padding: 15px;
}
.quality-box-home h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-top: 25px;
}
.quality-box-home p {
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  text-align: left;
  margin: 0 !important;
  padding: 0;
}

.position-relative {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  z-index: 99;
}

.elementor-counter {
  padding: 40px 30px;
  background-color: #0f2a67;
  -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgb(43 52 59 / 10%);
  transition: 0.5s ease;
  text-align: center;
  border-radius: 10px;
  color: #fff;
}
.elementor-icon {
  font-size: 50px !important;
  margin-bottom: 20px;
  transition: all 1s ease;
}
.elementor-icon:hover {
  transform: rotateY(360deg);
}
.feature-box-title {
  font-size: 22px;
  font-weight: 600;
}
.elementor-counter p {
  text-align: center;
  font-size: 16px;
  padding-top: 8px;
  line-height: 26px;
}
.servece-0111 {
  position: relative;
  height: 4px;
  width: 65px;
  border-radius: 10px;
  background-color: #022c54;
  display: block;
  margin: 18px auto 20px auto;
}
.box-color2 {
  background-color: #e61114;
  color: #ffffff;
}

.we-industry-bg {
  background-color: #ffeecb;
  padding: 60px 0 40px;
  background-size: cover;
}
.we-industry-heading h3 {
  font-size: 60px;
  color: #022c54;
  font-weight: 800;
  margin: 15px 0 0;
  font-family: Teko, sans-serif !important;
  text-transform: uppercase;
}
.we-industry-bg img {
  width: 100%;
  height: auto;
}

.we-industry-heading h3 {
  font-size: 50px;
  color: #e3cca1;
  font-weight: 800;
  margin: 15px 0 0;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
  z-index: 9999;
}

.we-industry-heading h3::before {
  content: "";
  display: inline-flex;
  background: #042e55;
  width: 4.5rem;
  height: 5rem;
  position: relative;
  z-index: -9;
  top: 8px;
  left: 38px;
}

.we-industry-heading h4 {
  text-align: center;
  padding: 10px 0;
}

.bg-section-03 {
  padding: 60px 0px 80px 0px;
  background-color: #77c1fc;
}
.section-03-heading {
  text-align: center;
}

.section-03-heading h3 {
  font-size: 50px;
  color: #0f2a67;
  font-weight: 800;
  margin: 15px 0 0;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
  z-index: 9999;
}

.section-03-heading p {
  font-size: 18px;
  color: #523317;
  margin-top: 5px;
}

.box2-pro {
  background-color: #fff;
  padding-bottom: 25px;
}
.box2-pro2 {
  background-color: #fff;
  padding-bottom: 25px;
}
.box2-pro img {
  width: 100%;
  height: auto;
}
.box2-pro2 img {
  width: 100%;
  height: auto;
}

/* Shine */
.hover02 figure img {
  width: 100;
  height: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.6s ease-in-out;
}
.hover02 figure:hover img {
  transform: translate3d(-30px, 0, 0) scale(1.2);
  transition: 0.6s ease-in-out;
}

.hover14 figure {
  position: relative;
  overflow: hidden;
}
.hover14 figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.hover14 figure:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.box2-top {
  margin-top: -70px;
}
.box2-top2 {
  margin-top: -70px;
}
.box2-pro a {
  color: #000;
}
.box2-pro2 a {
  color: #000;
}
.box2-pro a:hover {
  color: #fff;
}
.box2-pro2 a:hover {
  color: #fff;
}
.mortise-bg {
  margin: 0px 15px;
}
.box2-pro h3 {
  margin: -34px 0px 16px 0px;
  box-shadow: 0px 10px 30px rgb(0 0 0 / 7%);
  padding: 13px 10px;
  font-size: 20px;
  text-align: center;
  background-color: #2c3089;
  position: relative;
  z-index: 9;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 0px;
  color: #ffffff;
}
.box2-pro2 h3 {
  margin: -34px 0px 16px 0px;
  box-shadow: 0px 10px 30px rgb(0 0 0 / 7%);
  padding: 13px 10px;
  font-size: 20px;
  text-align: center;
  background-color: #2c3089;
  position: relative;
  z-index: 9;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 0px;
  color: #ffffff;
}
.box2-pro p {
  font-family: "Rubik", Sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  color: #565872;
  padding: 0px 20px;
  text-align: center;
}
.box2-pro2 p {
  font-family: "Rubik", Sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  color: #565872;
  padding: 0px 20px;
  text-align: center;
}
.box2-pro:hover {
  color: #fff;
  background-color: #ed1f23;
}

.manufacturere-bg {
  padding: 40px 0 60px;
}
.manufacturer-01 {
  background-color: #fff;
  padding: 20px;
}
.manufacturer-01 h4 {
  color: #022c54;
  font-size: 30px;
  position: relative;
  z-index: 9999;
  padding-bottom: 10px;
}

.manufacturer-01 h4::before {
  content: "";
  display: inline-flex;
  background: #b47d3a;
  width: 4rem;
  height: 4rem;
  position: relative;
  z-index: -9;
  top: 5px;
  left: 20px;
}

.manufacturer-01 p {
  color: #333;
  font-size: 18px;
  font-weight: bold;
}
.benefits-info {
  position: relative;
  box-shadow: -1px 3px 51px 0 rgba(8, 9, 9, 0.15);
  margin: 15px 0;
  background-color: #fff;
  background-image: url(../images/bulb-idea.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}
.benefits-info:before {
  content: " ";
  background: #d4d9df;
  display: inline-block;
  position: absolute;
  left: 40px;
  width: 2px;
  height: 86%;
  z-index: 400;
}
.benefits-info li {
  padding-left: 40px;
  position: relative;
  padding-bottom: 2px;
  font-size: 18px;
  line-height: 36px;
}
.benefits-info > li:before {
  content: " ";
  background: #fff;
  display: inline-block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 15px;
  z-index: 444;
  background-image: url(../images/arrow-icon.png);
  background-repeat: no-repeat;
  margin-left: 7px;
  margin-top: 12px;
}
.list-unstyled {
  padding: 30px;
}
.benefits-info .name-01 {
  font-size: 17px;
  color: #fb7101;
  font-weight: 500;
}

.feature-products-bg {
  background-color: #fff;
  margin-top: 30px;
  padding-bottom: 50px;
  text-align: center;
}

.feature-products-bg h3 {
  font-size: 50px;
  color: #0f2a67;
  font-weight: 800;
  margin: 15px 0 0;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
  z-index: 9999;
}

.pro-img {
  overflow: hidden;
}
.pro-img:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pro-img img {
  width: 100%;
  height: auto;
}
.pro-overlay {
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
}

.pro-img:hover .pro-overlay {
  height: 50%;
  text-align: center;
}
.overlay-text {
  color: #fff;
  position: absolute;
  text-align: center;
  line-height: 26px;
  padding: 20px 5px;
  margin-left: 20px;
}
.overlay-text h4 {
  font-size: 20px;
}

.owl-theme .owl-dots {
  display: none;
}

/*footer sec*/
footer {
}
.footer-main {
  padding: 50px 0 25px;
  background: #434e6e;
  margin-top: -30px;
  background-image: url(../images/footer-main-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%z;
}
.footer-content img {
  margin-bottom: 15px;
}
.footer-content a {
  color: #ffffff;
}
.footer-content h4 {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 25px;
  margin-top: 0;
  font-weight: 600;
}
.footer-content ul {
  padding: 0px;
  margin: 0px;
}
.footer-content ul li {
  margin-bottom: 7px;
  list-style: none;
  background-image: url(../images/footer-main-icon.png);
  background-repeat: no-repeat;
  background-position: 5px 8px;
  padding-left: 30px;
}
.footer-content ul li a {
  color: #ededed;
  font-size: 16px;
  line-height: 30px;
}
.footer-content ul li a:hover {
  color: #6e9bff;
  font-weight: 600;
}
.footer-content p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
}
.footer-content p a:hover {
  color: #6e9bff;
  font-weight: 600;
}

footer i {
  padding: 0 10px 0 0;
}

.copyright {
  padding: 20px 0;
  position: relative;
  background: #0f2a67;
  text-align: center;
}
.copyright p {
  display: inline-block;
  margin: 0;
  color: #ffffff;
}

.page_title_section {
  float: left;
  width: 100%;
  background: url(../images/header-bg.png) no-repeat center;
  background-size: cover;
  position: relative;
  padding-top: 80px;
}
.page_title_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.3;
}
.page_header {
  padding-bottom: 0;
  border-bottom: 0;
}
.page_header .sub_title {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  margin-top: 5px;
}
.page_header .sub_title li {
  float: left;
  font-size: 16px;
  line-height: 35px;
  text-transform: capitalize;
}
.page_header .sub_title li a {
  color: #ed1f23;
}
.page_header .sub_title li:last-child {
  color: #ffffff;
}
.page_header .sub_title a:hover {
  color: #ffffff;
}
.icon_breamcum {
  color: #ffffff;
  font-size: 16px;
  margin-left: 3px;
  margin-right: 3px;
}
.page_header_bottom {
  text-align: center;
  width: 100%;
  background: rgba(0, 4, 26, 0.6);
}
.page_header_line {
  float: left;
  width: 100%;
  padding: 20px 0px;
}
.page_header_line h1 {
  font-size: 40px;
  line-height: 70px;
  color: #fff;
  font-weight: 800;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  padding-bottom: 60px;
}
.page_header_line h1:after {
  content: "";
  border: 1px solid #ffffff;
  height: 20px;
  position: absolute;
  left: -20px;
  top: 25px;
}
.page_header_line h1:before {
  content: "";
  border: 1px solid #ffffff;
  width: 25px;
  position: absolute;
  left: -45px;
  top: 34px;
}
.page_header_line h1 span:after {
  content: "";
  border: 1px solid #ffffff;
  height: 20px;
  position: absolute;
  right: -20px;
  top: 25px;
}
.page_header_line h1 span:before {
  content: "";
  border: 1px solid #ffffff;
  width: 25px;
  position: absolute;
  right: -45px;
  top: 34px;
}

.page-part {
  padding: 30px 0px 0px 0px;
}
.page-part h2 {
  font-size: 36px;
  padding-top: 10px;
  font-weight: bold;
  text-align: center;
  color: #0f2a67;
}
.page-part h6 {
  font-size: 20px;
  padding-top: 10px;
  font-weight: normal;
  text-align: center;
  color: #000000;
}
.page-part li{
  color: #808080;
}
.pro-text {
}
.pro-text p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #808080;
  text-align: justify;
  margin: 5px 0 5px;
}
.door-img img {
  width: 100%;
  height: auto;
  margin-top: 15px;
}
.pro-text h4 {
  font-size: 26px;
  color: #0f2a67;
  font-weight: 700;
  margin: 15px 0px 5px 0px;
}
.door-text h5 {
  text-align: center;
  font-size: 20px;
  padding-top: 15px;
  color: #b47d3a;
  font-weight: bold;
  margin-bottom: 30px;
}

.list-page {
  padding: 5px 0px;
}
.list-page ul {
  padding-left: 5px;
  margin-bottom: 0;
}
.list-page ul li {
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position: 5px 6px;
  list-style: none;
  text-align: left;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  padding-left: 40px;
  color: #808080;
  line-height: 28px;
}

.quote-icon-btn {
  position: fixed;
  top: 38%;
  right: 0px;
  z-index: 9999999;
}
.quote-icon-btn img {
  width: 46px;
  height: auto;
}
.recaptcha-size {
  transform: scale(0.77);
  -webkit-transform: scale(0.77);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}
.whatsapp-btn img {
  position: fixed;
  z-index: 9999999;
  width: 45px;
  height: auto;
  bottom: 90px;
  left: 15px;
}
.contact {
  margin-top: 50px;
  width: 100%;
  border: 2px solid #204fed;
  padding: 30px 0;
  text-align: center;
}
.btnf-call-us img {
  position: fixed;
  bottom: 20px;
  z-index: 999999;
  left: 15px;
  height: auto;
  width: 45px;
}

.contact {
  margin-top: 10px;
  width: 100%;
  border: 2px solid #022c54;
  padding: 10px 0;
}
.icon_box img {
  bottom: 26px;
  position: relative;
}
.contact .icon_box {
  background-color: #fff;
  position: relative;
  height: 70px;
  width: 70px;
  margin: 17px auto 35px;
  line-height: 120px;
  transition: 0.4s ease;
  text-align: center;
  margin-top: -65px;
}
.contact .icon_box::before {
  position: absolute;
  content: "";
  border: 3px solid #022c54;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  transform: rotate(0);
  left: 0;
  transition: 0.5s ease;
  background-color: #fff;
}
.contact:hover {
  border-color: #022c54;
  transition: 0.5s ease;
}
.contact:hover .icon_box::before {
  border-color: #312d2e;
  transition: 0.5s ease;
}
.contact p {
  color: #333;
  font-size: 16px;
  line-height: 29px;
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
}
.contact h2 {
  text-align: center;
  color: #022c54;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.contact h6 {
  padding-left: 15px;
  color: #000;
  font-size: 18px;
  border-bottom: 1px solid #022c54;
  padding-bottom: 7px;
  font-weight: 600;
}
.contact a {
  margin: 0;
  color: #333;
}
.contact a:hover {
  color: #022c54;
  text-decoration: none;
  transition: 0.5s;
}
.input-group .form-control:last-child,
.input-group-addon:last-child {
  font-size: 14px !important;
  line-height: 24px;
}
.input-group .form-control:last-child,
.input-group-addon:last-child {
  font-size: 14px !important;
  line-height: 24px;
  border-radius: 5px;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  margin: 20px 0;
  width: 100%;
}
.Submit-box {
  background-image: linear-gradient(90deg, #022c54, #022c54);
  color: #fff;
  padding: 10px 15px;
  font-size: 17px;
  border-radius: 5px;
}
.form-control:focus {
  box-shadow: none !important;
}
.input-group .form-control:last-child,
.input-group-addon:last-child {
  font-size: 14px !important;
  line-height: 24px;
  border-radius: 5px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .header {
    position: relative;
    padding: 0px;
  }
  .social-media {
    display: none;
  }

  .navigation-bg {
    padding-top: 00px;
  }
  .header-part-bg .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 100%;
  }

  .header-part-bg .col-sm-7 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 100%;
  }

  .logo-Interior {
    text-align: left;
  }
  .logo-image img {
    width: 120px;
    height: auto;
    padding-top: 20px;
    position: absolute;
    top: -124px;
    z-index: 99;
    right: -1px;
  }
  .logo-Interior img {
    width: 156px;
    height: auto;
  }
  .navigation-bg {
    background-color: #0f2a67;
  }
  .navigation-portrait {
    height: 48px;
    position: relative;
    top: 0;
    right: 15px;
    width: 100%;
  }
}
