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

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
}

:root {
  --primary-color: #113D72;
  --secondary-color: #E6AF5D;
  --color-text: #3E3E3E;
  --color-grey: #444;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--color-grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

hr {
  margin: 0;
  opacity: 1;
  background-color: #ddd;
}

a,
a:hover {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0;
  padding: 0;
  letter-spacing: 0px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-grey);
  font-weight: 500;
  margin-bottom: 10px
}

section {
  padding: 80px 0;
  position: relative;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading .title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.section-heading .heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 5px;
}

.button-theme {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  padding: 8px 25px;
  border-radius: 5px;
  gap: 10px;
}

.button-theme:after {
  content: "\e9b4";
  color: inherit;
  font-size: 20px;
  font-family: "boxicons";
  font-weight: 400;
  rotate: 180deg;
}

.button-theme:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.owl-theme .owl-dots {
  margin-top: 20px !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
  background-color: var(--secondary-color);
}
.owl-theme .owl-dots .owl-dot.active span{
  width: 25px;
}
.header-main {
  position: relative;
  background-image: url(../images/header-bg.png);
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center;
  box-shadow: 0px 0px 16px 7px #00000024;
  border-bottom: 1px solid #FFFFFF;
}
.mobile-header{
  display: none;
}
.fixed-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  transform:translateY(0%);
 animation: header 0.3s ease-in-out forwards;
}
@keyframes header {
    0%{
        transform: translateY(-20px);
        opacity: 0;
    }
    100%{
        transform:translateY(0%);
        opacity: 1;
    }
}
.header-main .logo-box{
  display: flex;
  align-items: center;
  height: 100%;
}
.header-main .logo-box a {
  display: inline-block;
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
  padding: 5px;
  background-color: #fff;
}

.header-main .logo-box a img {
  width: 100%;
  height: 100%;
}

.header-main .nav-outer {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}

.header-main .nav-outer .button-header a {
  background-color: #29A71A;
  border: 2px solid #fff;
  color: #fff;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 100px;
}

.header-main .nav-outer .nav {
  margin-right: 40px;
}

.header-main .nav-outer .main-menu>ul {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  gap: 15px;
}
.header-main .nav-outer ul li.menu-item-has-children{
  position: relative;
}
.header-main .nav-outer .main-menu>ul>li>a {
  color: #fff;
  padding:40px 10px;
  font-weight: 500;
  line-height: 1.5;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
  position: relative;
}
.header-main .nav-outer ul li.menu-item-has-children>a{
  padding-right: 30px;
}
.header-main .nav-outer ul li.menu-item-has-children>a::after{
    content: "\ea4a";
    font-family: "boxicons";
    color: #fff;
    position: absolute;
    right: 0;
    font-size: 26px;
    line-height: 1;
    font-weight: 400;
}
.header-main .nav-outer ul li.menu-item-has-children .sub-menu{
      position: absolute;
    background-color: #fff;
    border: 5px;
    z-index: 999;
    width: 100%;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
}
.header-main .nav-outer ul li.menu-item-has-children:hover .sub-menu{
  opacity: 1;
  visibility: visible;
}
.header-main .nav-outer ul li.menu-item-has-children .sub-menu li a{
    padding: 10px;
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    border-bottom: 1px solid #ddd;
}
.header-main .nav-outer ul li.menu-item-has-children .sub-menu li a:hover{
  background-color: var(--primary-color);
  color: #fff;
}
.footer-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.footer-section .footer-middle {
  padding: 60px 0;
}

.footer-section .footer-about a {
  width: 100%;
  max-width: 180px;
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 25px;
}

.footer-section .footer-about a img {
  width: 100%;
}

.footer-section .footer-about p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

.footer-section .footer-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}
.footer-section ul.menu li{
 margin-bottom: 10px;
}
.footer-section ul.menu li a {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  display: block; 
}
.footer-section ul.menu li a:hover{
  color: var(--secondary-color);
}
.footer-section .contact-info li {
  padding-left: 30px;
  position: relative;
  color: #fff;
  margin-bottom: 15px;
}

.footer-section .contact-info li i {
  position: absolute;
  left: 0;
  color: #fff;
  top: 2px;
  font-size: 20px;
}

.footer-section .contact-info li a {
  color: #fff;
  font-size: 16px;
}

.footer-section .social-links {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.footer-section .social-links li a {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text);
}

.footer-section .footer-copyright {
  border-top: 1px solid #FFFFFF1A;
}

.footer-section .footer-copyright p {
  margin: 0;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.home-banner {
  padding: 0;
  background-color: var(--primary-color);
}

.home-banner video {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.home-banner .banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 61, 114, 0.2759) 0%, rgba(17, 61, 114, 0.712) 40%, rgba(17, 61, 114, 0.89) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-banner .banner-content span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.home-banner .banner-content span::before,
.home-banner .banner-content span::after {
  content: "";
  width: 80px;
  height: 2px;
  display: block;
  background-color: #fff;
}

.home-banner .banner-content h1 {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.home-banner .banner-content p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.home-banner .banner-content .btn-group {
  gap: 15px;
  margin-top: 25px;
}

.home-banner .banner-content .btn-group .btn-banner {
  background-color: #fff;
  border: 2px solid #fff;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  font-size: 16px;
  color: var(--color-text);
  font-weight: 700;
}

.home-banner .banner-content .btn-group .btn-banner:last-child {
  background-color: transparent;
  color: #fff;
}

.home-banner .banner-content .btn-group .btn-banner:last-child:hover {
  background-color: #fff;
  color: var(--color-text);
}

.section-inner-content .title {
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  gap: 10px;
}

.section-inner-content .title::before {
  content: "";
  width: 50px;
  height: 2px;
  display: block;
  background-color: var(--primary-color);
}

.section-inner-content .heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 10px;
}

.home-overview,
.our-advantage {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-overview .section-inner-content hr,
.about-overview .section-inner-content hr {
  margin: 30px 0;
  border-color: #0000001A;
}

.home-overview .section-inner-content ul,
.about-overview .section-inner-content ul {
  padding-left: 30px;
  list-style: disc;
}

.home-overview .section-inner-content ul li,
.about-overview .section-inner-content ul li {
  list-style: disc;
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 12px;
  font-weight: 500;
}

.home-overview .image {
  width: 100%;
  height: 100%;
}

.home-overview .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-overview .image {
  width: 100%;
  height: 500px;
}

.about-overview .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.our-advantage .items-advantage {
  box-shadow: 0px 8px 24px 0px #959DA533;
  border: 1px solid #DDDDDD;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  max-width: 450px;
}

.our-advantage .items-advantage:nth-child(2) {
  margin-left: auto;
}

.our-advantage .items-advantage:last-child {
  margin: 0;
}

.our-advantage .items-advantage .icon {
  width: 55px;
  height: 55px;
}

.our-advantage .items-advantage .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.our-advantage .items-advantage .content {
  width: calc(100% - 55px);
  padding-left: 15px;
}

.our-advantage .items-advantage .content h4 {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1.5;
}

.our-advantage .items-advantage .content p {
  margin: 0;
  font-size: 15px;
}

.faq-section .accordion-item {
  margin-bottom: 20px;
  border: 0;
}

.faq-section .accordion-item .accordion-button {
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  font-weight: 600;
  color: var(--color-text);
}

.faq-section .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: #fff;
}

.faq-section .accordion-item .accordion-button::after {
  content: "\ebc0";
  font-family: "boxicons" !important;
  background-image: none;
}

.faq-section .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\eb8b";
}

.faq-section .accordion-item .accordion-button:focus {
  box-shadow: none;
}

.blogs {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.blogs .items {
  padding-top: 15px;
}

.blogs .blog-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 12px;
  position: relative;
  box-shadow: 0 0 16px -4px #0000003b;
}

.blogs .blog-card .image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.blogs .blog-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogs .blog-card .date {
  position: absolute;
  top: -10px;
  left: 15px;
  background-color: #FBB101;
  border-radius: 10px;
  padding: 10px 15px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}

.blogs .blog-card .date br {
  line-height: 1;
}

.blogs .blog-card .conent-blog {
  padding-top: 10px;
}

.blogs .blog-card .conent-blog h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
}

.blogs .blog-card .conent-blog h4 a {
  color: var(--color-text);
}

.blogs .blog-card .conent-blog h4 a:hover {
  color: var(--primary-color);
}

.latest-work {
  padding: 50px 0 0;
}

.latest-work .latest-work-box {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
}

.latest-work .latest-work-box .work-items {
  width: 25%;
  height: 400px;
  position: relative;
}

.latest-work .latest-work-box .work-items .image {
  width: 100%;
  height: 100%;
}

.latest-work .latest-work-box .work-items .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-work .latest-work-box .work-items .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: rgb(17 61 114 / 80%);
  opacity: 0.5;
  visibility: hidden;
}

.latest-work .latest-work-box .work-items .content span {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.5;
  display: block;
  margin-bottom: 10px;
}

.latest-work .latest-work-box .work-items .content h4 {
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 10px;
}

.latest-work .latest-work-box .work-items .content p {
  color: #fff;
}

.latest-work .latest-work-box .work-items:hover .content {
  opacity: 1;
  visibility: visible;
}

.testimonials {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonials .items {
  padding-top: 20px;
}

.testimonials .items .card-testimonials {
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 30px 20px 60px;
  position: relative;
}

.testimonials .items .card-testimonials::before {
  content: "";
  background-image: url(../images/top-star.svg);
  width: 200px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -20px;
  right: 15px;
}

.testimonials .items .card-testimonials h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.testimonials .items .card-testimonials p {
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
  display: block;
}

.testimonials .items .card-testimonials h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  position: absolute;
  bottom: 20px;
}

.testimonials .items .morecontent span {
  display: none;
}

.testimonials .items .morelink-2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
}

.contact-area::before {
  content: "";
  background-image: url(../images/contact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
  position: absolute;
  top: 0;
}

.contact-area .container {
  position: relative;
}

.contact-area .contact-info ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.contact-area .contact-info ul li {
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.contact-area .contact-info ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-area .contact-info ul li i {
  color: #fff;
  font-size: 22px;
  margin-right: 8px;
  font-weight: 400;
}

.contact-area .contact-box {
  box-shadow: 0px 8px 24px 0px #959DA533;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.contact-area .contact-box .heading {
  background-color: #333;
  padding: 20px 40px;
  text-align: center;
}

.contact-area .contact-box .heading h4 {
  color: #fff;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
}

.contact-area .contact-box .heading p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.contact-area .contact-box form {
  padding: 20px 30px 30px;
}

.contact-area .contact-box .form-label {
  color: #000;
  font-size: 15px;
  line-height: 1.5;
}

.contact-area .contact-box .input-group {
  position: relative;
}

.contact-area .contact-box .input-group-text {
  border: 0;
  position: absolute;
  left: 0;
  z-index: 1;
  background: transparent;
  height: 45px;
  font-size: 20px;
  color: #1B2336;
}

.contact-area .contact-box .form-control {
  height: 45px;
  border: 1px solid #DDDDDD;
  background: #F8FAFB;
  border-radius: 5px !important;
  padding-left: 50px;
}

.contact-area .contact-box .button-form {
  border-radius: 100px;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  margin-top: 15px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease-in;
}

.contact-area .contact-box .button-form:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.contact-area .contact-outer {
  border: 6px solid #FFFFFF;
  box-shadow: 0px 8px 24px 0px #959DA533;
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  gap: 20px;
  padding: 20px;
}

.contact-area .contact-outer .map {
  width: 48%;
  border-radius: 15px;
  overflow: hidden;
}

.contact-area .contact-outer .map iframe {
  width: 100%;
  height: 100%;
}

.contact-area .contact-outer .showroom-image {
  width: 48%;
}

.contact-area .contact-outer .showroom-image img {
  width: 100%;
  height: 100%;
}

.our-process {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.process-slider .owl-stage{
  display: flex;
  align-items: stretch;
}
.our-process .items{
  height: 100%;
}
.our-process .process-card {
  background-color: #fff;
  box-shadow: 0px 5.13px 29.47px 0px #02093F29;
  border-radius: 12px;
  position: relative;
  height: 100%;
}

.our-process .process-card::after {
  content: "";
  background-image: url(../images/process-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 160px;
  height: 160px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.our-process .process-card .content-area {
  padding: 50px 15px 50px 40px;
}

.our-process .process-card .content-area h4 {
  color: var(--primary-color);
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 15px;
}

.our-process .process-card .content-area p {
  display: block;
}

.our-process .process-card .content-area ul {
  margin-top: 20px;
}

.our-process .process-card .content-area ul li {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.our-process .process-card .content-area ul li::before {
  content: "\ebe6";
  font-family: 'boxicons';
  font-weight: 400;
  color: var(--primary-color);
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -1px;
}

.our-process .process-card .btn-process {
  background-color: var(--primary-color);
  padding: 5px 5px 5px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  display: inline-flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.our-process .process-card .btn-process i {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  rotate: 140deg;
}

.our-process .process-card .image-outer {
  padding: 20px 60px 0 15px;
  position: relative;
  z-index: 1;
}

.our-process .process-card .image-outer .image-one {
  width: 75%;
  margin-left: auto;
  height: 220px;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px #00000040;
  overflow: hidden;
}

.our-process .process-card .image-outer .image-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-process .process-card .image-outer .image-two {
  width: 75%;
  margin-right: auto;
  height: 220px;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px #00000040;
  overflow: hidden;
  position: relative;
  bottom: 30px;
}

.our-process .process-card .image-outer .image-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.google-map {
  width: 100%;
  padding: 0;
}

.google-map iframe {
  width: 100%;
  height: 500px;
}

.contact-page-form .content-inner h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 5px;
}

.contact-page-form .content-inner ul {
  margin-top: 25px;
}

.contact-page-form .content-inner ul li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 25px;
}

.contact-page-form .content-inner ul li:last-child {
  margin: 0;
}

.contact-page-form .content-inner ul li i {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px;
  border-radius: 5px;
  position: absolute;
  left: 0;
}

.contact-page-form .content-inner ul li span {
  display: block;
  color: #333;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-page-form .content-inner ul li a {
  color: var(--color-grey);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-page-form .content-inner ul li a:hover {
  color: var(--primary-color);
}

.contact-page-form .form-contact {
  background-color: var(--primary-color);
  border-radius: 5px;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  height: 100%;
}

.contact-page-form .form-contact .form-label {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.contact-page-form .form-contact .form-control {
  height: 50px;
  border-radius: 5px;
}

.contact-page-form .form-contact textarea.form-control {
  height: 100px;
}

.contact-page-form .form-contact .form-control::placeholder {
  color: #3f3f3f;
  font-size: 14px;
  font-weight: 600;
}

.contact-page-form .form-contact .button-contact {
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  color: #000;
  border-radius: 5px;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 700;
}

.section-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-banner .title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.section-banner h1 {
  color: #fff;
  font-size: 44px;
  line-height: 1.5;
  font-weight: 600
}

.section-banner .breadcrumb {
  justify-content: center;
}

.section-banner .breadcrumb .breadcrumb-item {
  color: var(--secondary-color);
}

.section-banner .breadcrumb .breadcrumb-item::before {
  color: var(--secondary-color);
}

.section-banner .breadcrumb .breadcrumb-item a {
  color: #fff;
}

/* blogs details */
.blog-details {
  padding: 60px 0
}

.blog-single-post {
  position: relative;
  margin-bottom: 40px
}

.blog-single-post.blog-salah .image img {
  width: auto;
  height: 500px
}

.blog-single-post .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px
}

.blog-single-post .image img {
  width: 100%;
}

.blog-single-post .lower-content {
  position: relative;
  padding: 30px;
  border: 1px solid #ebf2f3;
  border-top: 0;
  border-radius: 5px
}

.blog-single-post ul.post-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 13px
}

.blog-single-post .post-meta li {
  margin-right: 15px;
  padding-right: 15px;
  font-weight: 600;
  border-right: 1px solid #ddd
}

.blog-single-post .post-meta li i {
  margin-right: 8px;
  color: var(--primary-color)
}

.blog-single-post .post-meta li:last-child {
  border-right: 0
}


.blog-single-post h1 {
  font-size: 30px;
  line-height: 44px;
  color: #3f3f3f;
  font-weight: 600;
}

.blog-single-post h3 {
  font-size: 28px;
  line-height: 42px;
  color: #3f3f3f
}

.blog-single-post .text {
  margin-bottom: 40px
}

.blog-single-post .text ul {
  padding-left: 0
}

.blog-single-post .text ul li {
  list-style: none;
  margin-bottom: 10px;
  color: #3f3f3f;
  position: relative;
  padding-left: 30px
}

.blog-single-post .text ul li:before {
  color: var(--primary-color);
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0
}

.blog-single-post .text ol {
  list-style: auto
}

.blog-single-post .text ol li {
  list-style: inherit;
  margin-bottom: 15px;
  color: #3f3f3f;
  font-size: 16px
}

.blog-single-post .text b,
.blog-single-post .text strong {
  font-weight: 600;
  color: var(--color-black)
}

.blog-single-post .text h2 {
  position: relative;
  font-size: 28px;
  line-height: 44px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text h3,
.blog-single-post .text h4,
.blog-single-post .text h5 {
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  font-family: inherit
}

.blog-single-post .text h3 {
  font-size: 24px
}

.blog-single-post .text h4 {
  font-size: 22px
}

.blog-single-post .text h5 {
  font-size: 20px
}

.blog-single-post .text h6 {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text table tr td,
.blog-single-post .text table tr th {
  border: 2px solid #ddd;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500
}

.blog-single-post blockquote {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #565872;
  margin-bottom: 30px
}

.blog-single-post blockquote:before {
  position: absolute;
  content: '';
  top: 0;
  width: 8px;
  bottom: 0;
  background: var(--primary-color);
  left: 0;
  border-radius: 5px
}

.widget {
  position: relative;
  margin-bottom: 50px
}

.widget_popular_post {
  position: relative;
  max-width: 350px;
  margin-left: auto
}

.widget .widget-title {
  position: relative;
  font-size: 20px;
  color: #3f3f3f;
  margin-bottom: 20px;
  font-weight: 600
}

.widget_popular_post .post-thumb {
  position: relative;
  margin-right: 15px;
  margin-bottom: 0;
  overflow: hidden
}

.widget_popular_post .post-thumb:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgb(16 34 53/59%);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: .3s ease-in
}

.widget_popular_post .post-thumb:hover:before {
  opacity: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-animation: .75s circle;
  animation: .75s circle
}

.widget_popular_post .post-thumb img {
  border-radius: 5px;
  float: left;
  height: 60px;
  width: 60px;
  object-fit: cover
}

.widget_popular_post .post {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
  padding: 14px;
  border-radius: 5px
}

.widget_popular_post .content {
  position: relative;
  width: calc(100% - 75px)
}

.widget_popular_post .content h5 {
  position: relative;
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 600;
  font-family: inherit
}

.widget_popular_post .content h5 a {
  color: #3f3f3f;
  transition: .5s
}

.widget_popular_post .content .post-info {
  font-size: 14px;
  color: #3f3f3f
}

.widget_popular_post .content .post-info i {
  margin-right: 4px;
  color: var(--primary-color)
}

.image-gallery .image-card {
  width: 100%;
  position: relative;
}

.image-gallery .image-card img {
  width: 100%;
}

.image-gallery .image-card a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgb(17 61 114 / 73%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  visibility: hidden;
}

.image-gallery .image-card a i {
  font-size: 40px;
  color: #fff;
}

.image-gallery .image-card:hover a {
  opacity: 1;
  visibility: visible;
}

.our-porduct {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.our-porduct .card-product {
  position: relative;
  height: 100%;
  padding-top: 200px;
}

.our-porduct .card-product .image {
  position: absolute;
  z-index: 2;
  top: 0;
  padding: 0 25px;
  width: 100%;
  height: 300px;
  border-radius: 5px;
  overflow: hidden;
}

.our-porduct .card-product .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-porduct .card-product .content {
  background-color: #fff;
  box-shadow: 0 0 16px -4px rgb(0 0 0 / 29%);
  border-radius: 10px;
  padding: 120px 15px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.our-porduct .card-product .content h4 {
  color: #30373F;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
}

.our-porduct .card-product .content a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 600;
  gap: 8px;
  margin-top: 10px;
}

.our-porduct .card-product .content a i {
  font-size: 20px;
}

.call-action {
  background-color: var(--primary-color);
  padding: 50px 0;
}

.call-action h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}

.call-action p {
  color: #fff;
  margin-bottom: 20px;
}

.call-action ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.call-action ul li {
  padding: 0 20px 0 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  border-right: 2px solid #fff;
}

.call-action ul li:last-child {
  border: 0;
}

.call-action ul li::before {
  content: "\ea46";
  color: #fff;
  font-size: 18px;
  position: absolute;
  left: 10px;
  font-family: "boxicons";
}

.call-action .btn-group {
  gap: 20px;
}

.call-action .btn-group .btn-action {
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.call-action .btn-group .btn-action:last-child {
  background-color: transparent;
  color: #fff;
}

.call-action .btn-group .btn-action:hover {
  background-color: #fff;
  color: var(--primary-color);
}
.what-make{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.what-make .card-what {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  position: relative;
  padding: 48px 15px 20px;
  height: 100%;
}

.what-make .card-what h4 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

.what-make .card-what .icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 100px;
  padding: 15px;
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  margin: auto;
}

.what-make .card-what .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.our-mission {
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.our-mission .bg-mission {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 600px;
}

.our-mission .bg-mission img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.our-mission .section-heading {
  text-align: start;
  margin-bottom: 0;
}

.our-mission .section-heading h3,
.our-mission .section-heading p {
  color: #fff;
}

.our-mission .section-heading .card-mission {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 30px;
}

.our-mission .section-heading .card-mission .icon {
  width: 90px;
  height: 90px;
  background-color: var(--primary-color);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.our-mission .section-heading .card-mission .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(0) brightness(10);
}

.our-mission .section-heading .card-mission .content {
  width: calc(100% - 90px);
  padding-left: 20px;
}

.our-mission .section-heading .card-mission h4 {
  color: var(--primary-color);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
}

.our-mission .section-heading .card-mission p {
  margin-bottom: 0;
  color: var(--color-text);
}
.infrastructure .section-heading{
  text-align: start;
}
.infrastructure .section-heading ul {
  counter-reset: section;
  margin: 20px 0;
}
.infrastructure .section-heading ul li{
 padding-left: 55px;
    position: relative;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.5;
    padding-bottom: 40px;  
}
.infrastructure .section-heading ul li::before{
  content:"";
   counter-increment: section;
  content:counter(section);
  background-color: var(--primary-color);
  width: 40px;
  height:40px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: -6px;
  z-index: 1;
  color: #fff;
}
.infrastructure .section-heading ul li::after{
  content: "";
  width: 2px;
  height: 100%;
  border-left: 1px dashed var(--primary-color);
  position: absolute;
  top: 0;
  left: 20px;
}
.infrastructure .section-heading ul li:last-child{
  padding-bottom: 0;
}
.infrastructure .image{
  width: 100%;
  height: 100%;
}
.infrastructure .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.factory{
  background-color: var(--primary-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.factory .section-heading .heading,
.factory .section-heading p{
  color: #fff;
}
.factory .card-factory{
  width: 100%;
  height: 300px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #fff;
  position: relative;
}
.factory .card-factory .image{
  width: 100%;
  height:100%;
}
.factory .card-factory .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.factory .card-factory .heading{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  width: 90%;
  margin: auto;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.factory .card-factory .heading h4{
  color: var(--primary-color);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}
.meet-team .card-meet{
  width: 100%;
  height: 100%;
}
.meet-team .card-meet .image{
  width: 100%;
  height: 350px;
}
.meet-team .card-meet .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.meet-team .card-meet .content{
  text-align: center;
  padding: 20px;
}
.meet-team .card-meet .content h4{
  color: var(--color-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
.meet-team .card-meet .content p{
  margin: 0;
  color: var(--secondary-color);  
}
.product-banner{
  padding: 60px 0;
  text-align: center;
}
.product-banner h1{
  font-size: 30px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600  ;
}
.product-banner p{
  color: #fff;
}
.product-banner .btn-group {
  gap: 15px;
  margin-top: 25px;
}

.product-banner .btn-group .btn-banner {
  background-color: #fff;
  border: 2px solid #fff;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  font-size: 16px;
  color: var(--color-text);
  font-weight: 700;
}

.product-banner .btn-group .btn-banner:last-child {
  background-color: transparent;
  color: #fff;
}

.product-banner .btn-group .btn-banner:last-child:hover {
  background-color: #fff;
  color: var(--color-text);
}
.product-overview .section-inner-content h3{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black);
  margin-bottom: 10px;
}
.product-overview .section-inner-content ul li{
  padding: 10px 15px 10px 30px;
  display: flex;
  justify-content: start;
  align-items: start;
  border-bottom: 1px solid #e5e5e5;
  font-weight: 600;
  font-size: 16px;
  gap: 15px;
  position: relative;
}
.product-overview .section-inner-content ul li::before {
    content: "\ea55";
    font-family: 'boxicons';
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 24px;
    z-index: 1;
    color: var(--primary-color);
}
.product-overview .section-inner-content ul li strong{
  color: var(--primary-color);
}
.product-overview .section-inner-content ul li span{
  color: var(--color-grey);
}
.product-overview .image{
  width: 100%;
  height: 100%;
}
.product-overview .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-image{
  background-color: var(--primary-color);
}
.product-image .image-card {
     border-radius: 10px;
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border: 1px solid #fff
}

.product-image .image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-image .image-card a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgb(17 61 114 / 73%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  visibility: hidden;
}

.product-image .image-card a i {
  font-size: 40px;
  color: #fff;
}

.product-image .image-card:hover a {
  opacity: 1;
  visibility: visible;
}
.product-whychoose{
background-color: var(--primary-color);
}
.product-whychoose .section-heading{
  margin: 0;
}
.product-whychoose .section-heading ul{
  margin-top: 30px;
}
.product-whychoose .section-heading ul li{
  margin-bottom: 20px;
  color: #fff;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
.product-whychoose .section-heading ul li:last-child{
  margin: 0;
}
.product-whychoose .section-heading ul li::before{
  content: "\ea49";
  font-family: "boxicons";
  position: absolute;
  left: 0;
  top: -9px;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
}
.product-whychoose .image-why{
      width: 45%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: block;
}
.product-whychoose .image-why img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.application{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.application .card-application{
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.application .card-application .icon{
 background-color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: auto;
    border-radius: 10px;
}
.application .card-application .icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.application .card-application h4{
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 15px;
}
.technical-sepecification table{
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0px 8px 24px 0px #959DA533;
}
.technical-sepecification table tr th{
  background-color: var(--primary-color);
  color: #fff;
}
.technical-sepecification table tr th,
.technical-sepecification table tr td{
  padding: 10px 20px;
  border: 1px solid #ddd;
}