@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
.outfit {
font-family: "Outfit", sans-serif;
font-optical-sizing: auto;
font-weight: 500;
font-style: normal;
}
/* Global Colors */
:root {
--background-color: #ffffff;
--background-color-rgb: 255, 255, 255;
--default-color: #212529;
--default-color-rgb: 33, 37, 41;
--accent-color: #e84545;
--accent-color-rgb: 232, 69, 69;
--heading-color: #32353a;
--heading-color-rgb: 50, 53, 58;
--contrast-color: #ffffff;
--contrast-color-rgb: 255, 255, 255;
}
/* Nav Menu Colors */
:root {
--nav-color: #3a3939;
--nav-hover-color: #e84545;
--nav-dropdown-color: #3a3939;
--nav-dropdown-hover-color: #e84545;
--nav-dropdown-background-color: #ffffff;
}
/* Smooth scroll */
:root {
scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
font-family: "DM Sans", sans-serif; font-size:18px;
}
a {color:#fff;text-decoration: none;transition: 0.3s;}
a:hover {color:#;text-decoration: none;}

h1, h2, h3, h4, h5, h6 {
color:#181d4e; font-family:"Outfit", sans-serif; font-weight:400; margin:0; padding:0;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
--background-color: #ffffff;
color: var(--default-color);
background-color: var(--background-color);
padding:0;
transition: all 0.5s;
z-index: 997;
}
.header .logo img {
}
.header .logo h1 {
font-size: 24px;
margin: 0;
font-weight: 600;
color: var(--heading-color);
}
.header .logo span {
color: #fa4729;
font-size: 24px;
font-weight: 600;
padding-left: 3px;
}
.header .btn-getstarted, .header .btn-getstarted:focus {
color: var(--contrast-color);
background: #fa4729;
font-size: 14px;
padding: 8px 26px;
margin: 0;
border-radius: 4px;
transition: 0.3s;
}
.header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {
color: var(--contrast-color);
background: rgba(var(--accent-color-rgb), 0.85);
}
@media (max-width: 1200px) {
.header .logo {
order: 1;
}
.header .btn-getstarted {
order: 2;
margin: 0 15px 0 0;
padding: 6px 20px;
}
.header .navmenu {
order: 3;
}
}
/* Global Header on page scroll
------------------------------*/
.scrolled .header {
--background-color: #ffffff;
--heading-color: #444444;
--nav-color: #444444;
--nav-hover-color: #e84545;
box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}
/* Global Scroll Margin Top
------------------------------*/
section {
scroll-margin-top: 90px;
}
@media (max-width: 1199px) {
section {
scroll-margin-top: 66px;
}
}
/* Home Page Custom Header
------------------------------*/
.index-page .header {
--background-color: rgba(255, 255, 255, 0);
--heading-color: #ffffff;
--nav-color: rgba(255, 255, 255, 1);
--nav-hover-color: #ffffff;
}
/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
--background-color: #ffffff;
--heading-color: #444444;
--nav-color: #444444;
--nav-hover-color: #fa4729;
}

.index-page.scrolled .header a {color:#000}

.index-page.scrolled .header .active {color:#fa4729}
.index-page.scrolled .header .active:before { background:#fa4729}

.index-page.scrolled .header  .active span:before {background:#fa4729;}


.index-page.scrolled .header .dropdown ul a {
color: #fff;
}
.index-page.scrolled .header .dropdown ul a:hover, .index-page.scrolled .header .dropdown ul .active:hover,  
.index-page.scrolled .header .dropdown ul li:hover>a {
color: #c4e8ff;
}


.homepage-slider .swiper-pagination-bullet-active {
background:#fa4729;
width:15px!important;
height:37px!important;
border-radius:30px;
background:#fa4729!important; transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, width 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}
.homepage-slider .swiper-pagination-bullet {
width:15px;
height:15px;
border-radius:100px;
border:solid 2px #fa4729;
opacity: var(--swiper-pagination-bullet-opacity, 1);
background:none; transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, width 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.bg-css {
background:rgba(0, 0, 0, 0.8);
padding:35px 50px 50px 50px;
max-width:520px;
width:100%;
float:right;
text-align:left;
}

.bg-css h1 {
font-size:48px
}

html,
body {
position: relative;
height: 100%;
}

.homepage-slider {
width: 100%;
height: 100%;
}

.homepage-slider .swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
}

.homepage-slider .swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
.navmenu {
padding: 0;
}
.navmenu ul {
margin: 0;
padding: 0;
display: flex;
list-style: none;
align-items: center;
}
.navmenu li {
position: relative;
}
.navmenu a,  .navmenu a:focus {
padding: 18px 22px;
font-size: 16px;
 
font-weight: 400;
display: flex;
align-items: center;
justify-content: space-between;
white-space: nowrap;
transition: 0.3s; font-family:"Outfit", sans-serif; 
}
.navmenu a i,  .navmenu a:focus i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
transition: 0.3s;
}
 
.navmenu li:hover>a,  .navmenu .active,  .navmenu .active:focus {
color: var(--nav-hover-color);  
}

.navmenu .active span{ position:relative}
.navmenu .active span:before { position:absolute; width:100%; content:""; height:1px; background:#fff; bottom:-4px; left:0; right:0; margin:0 auto}

.navmenu .dropdown ul {
margin: 0;
padding: 5px 10px;
background: #1d8deb;
display: block;
position: absolute;
visibility: hidden;
left: 14px;
top: 130%;
opacity: 0;
transition: 0.3s;
border-radius: 4px;
z-index: 99;
}
.navmenu .dropdown ul li {
min-width: 150px;
border-bottom:#fff 1px solid;
}
.navmenu .dropdown ul li:last-child {
border-bottom:transparent 0px solid;
}
.navmenu .dropdown ul a {
padding: 10px 0px;
font-size: 15px;
text-transform: none;
color: #fff;
text-transform:uppercase;

}
.navmenu .dropdown ul a i {
font-size: 12px;
}
.navmenu .dropdown ul a:hover,  .navmenu .dropdown ul .active:hover,  .navmenu .dropdown ul li:hover>a {
color: #c4e8ff;
}
.navmenu .dropdown:hover>ul {
opacity: 1;
top: 100%;
visibility: visible;
}
.navmenu .dropdown .dropdown ul {
top: 0;
left: -90%;
visibility: hidden;
}
.navmenu .dropdown .dropdown:hover>ul {
opacity: 1;
top: 0;
left: -100%;
visibility: visible;
}
.navmenu .megamenu {
position: static;
}
.navmenu .megamenu ul {
margin: 0;
padding: 10px;
background: var(--nav-dropdown-background-color);
box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
display: block;
position: absolute;
top: 130%;
left: 0;
right: 0;
visibility: hidden;
opacity: 0;
display: flex;
transition: 0.3s;
border-radius: 4px;
z-index: 99;
}
.navmenu .megamenu ul li {
flex: 1;
}
.navmenu .megamenu ul li a,  .navmenu .megamenu ul li:hover>a {
padding: 10px 20px;
font-size: 15px;
color: var(--nav-dropdown-color);
}
.navmenu .megamenu ul li a:hover,  .navmenu .megamenu ul li .active,  .navmenu .megamenu ul li .active:hover {
color: var(--nav-dropdown-hover-color);
}
.navmenu .megamenu:hover>ul {
opacity: 1;
top: 100%;
visibility: visible;
}
.navmenu .dd-box-shadow {
box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
}
}

/* Mobile Navigation */
@media (max-width: 1199px) {
.mobile-nav-toggle {
color: var(--nav-color);
font-size: 28px;
line-height: 0;
margin-right: 10px;
cursor: pointer;
transition: color 0.3s;
}
.navmenu {
padding: 0;
z-index: 9997;
}
.navmenu ul {
display: none;
position: absolute;
inset: 60px 20px 20px 20px;
padding: 10px 0;
margin: 0;
border-radius: 0px;
background-color: var(--nav-dropdown-background-color);
overflow-y: auto;
transition: 0.3s;
z-index: 9998;
border:0;
}
.navmenu a,  .navmenu a:focus {
color: var(--nav-dropdown-color);
padding: 10px 20px;
font-family: var(--nav-font);
font-size: 17px;
font-weight: 500;
display: flex;
align-items: center;
justify-content: space-between;
white-space: nowrap;
transition: 0.3s;
}
.navmenu a i,  .navmenu a:focus i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: 0.3s;
background-color:#fa4729; color:#fff
}
.navmenu a i:hover,  .navmenu a:focus i:hover {
background-color: #fa4729;
color: var(--contrast-color);
}
.navmenu a:hover,  .navmenu .active,  .navmenu .active:focus {
color: var(--nav-dropdown-hover-color);
}
.navmenu .active i,  .navmenu .active:focus i {
background-color: #fa4729;
color: var(--contrast-color);
transform: rotate(180deg);
}
.navmenu .dropdown ul,  .navmenu .megamenu ul {
position: static;
display: none;
z-index: 99;
padding: 10px 0;
margin: 10px 20px;
background-color: var(--nav-dropdown-background-color);
transition: all 0.5s ease-in-out;
}
.navmenu .dropdown ul ul,  .navmenu .megamenu ul ul {
background-color: rgba(33, 37, 41, 0.1);
}
.navmenu .dropdown>.dropdown-active,  .navmenu .megamenu>.dropdown-active {
display: block;
background-color:#1d8deb; color:#fff
}
.mobile-nav-active {
overflow: hidden;
}
.mobile-nav-active .mobile-nav-toggle {
color: #fff;
position: absolute;
font-size: 32px;
top: 15px;
right: 15px;
margin-right: 0;
z-index: 9999;
}
.mobile-nav-active .navmenu {
position: fixed;
overflow: hidden;
inset: 0;
background: rgba(33, 37, 41, 0.8);
transition: 0.3s;
}
.mobile-nav-active .navmenu>ul {
display: block;
}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
 background-color: #0b0d26;
color:#fff;
}
.footer .footer-top {
padding-top: 50px;
}
.footer .footer-about .logo {
line-height: 0;
margin-bottom: 25px;
}
 
.footer .footer-about .logo span {
color: var(--heading-color);
font-size: 30px;
font-weight: 700;
letter-spacing: 1px;
font-family: var(--heading-font);
}
.footer .footer-about p {color:#9ba2ad}
.footer .social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
border: 1px solid rgba(var(--default-color-rgb), 0.5);
font-size: 16px;
color:#fff;
margin-right: 10px;
transition: 0.3s;
}
.footer .social-links a:hover {
color: #fa4729;
border-color: #fa4729;
}
.footer h4 {
color:#fff;
font-size:22px;
position: relative;
padding-bottom:38px;
}
.footer .footer-links {
margin-bottom: 30px;
}
.footer .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer .footer-links ul i {
padding-right: 2px;
font-size: 12px;
line-height: 0;
}
.footer .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
.footer .footer-links ul li:first-child {
padding-top: 0;
}
.footer .footer-links ul a {
color:#9ba2ad;
display: inline-block;
line-height: 1;
}
.footer .footer-links ul a:hover {
color: #fa4729;
}
.footer .footer-contact p {
margin-bottom: 5px; color:#9ba2ad
}


.footer .footer-contact p a {color:#9ba2ad; text-decoration:underline}
.footer .footer-contact p a:hover {color:#fa4729;}


.footer .copyright {
padding-top: 25px;
padding-bottom: 25px; border-top: solid 1px #35394b
}
.footer .copyright p {
margin-bottom: 0; color:#9ba2ad
}
.footer .credits {
margin-top: 6px;
font-size: 13px;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
position: fixed;
visibility: hidden;
opacity: 0;
right: 15px;
bottom: 15px;
z-index: 99999;
background-color: #fa4729;
width: 40px;
height: 40px;
border-radius: 4px;
transition: all 0.4s;
}
.scroll-top i {
font-size: 24px;
color: #ffffff;
line-height: 0;
}
.scroll-top:hover {
background-color: rgba(var(--accent-color-rgb), 0.8);
color: #ffffff;
}
.scroll-top.active {
visibility: visible;
opacity: 1;
}
 
 

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
[data-aos-delay] {
transition-delay: 0 !important;
}
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section, .section {
padding:100px 0;
 
}
/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
padding-bottom:40px;
}
.section-title h2 {
font-size: 57px;
position: relative; font-family: "Outfit", sans-serif;
}
 
.section-title h2:before {
margin: 0 15px 10px 0;
}
.section-title h2:after {
margin: 0 0 10px 15px;
}
.section-title p {
margin-bottom: 0; text-transform:uppercase; font-weight:500; font-size:18px; letter-spacing:1px;
}
/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
color: var(--default-color);
background-color: var(--background-color);
}
.page-title .heading {
padding: 80px 0;
border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}
.page-title .heading h1 {
font-size: 38px;
font-weight: 700;
color: var(--heading-color);
}
.page-title nav {
background-color: rgba(var(--default-color-rgb), 0.05);
padding: 20px 0;
}
.page-title nav ol {
display: flex;
flex-wrap: wrap;
list-style: none;
margin: 0;
font-size: 16px;
font-weight: 600;
}
.page-title nav ol li+li {
padding-left: 10px;
}
.page-title nav ol li+li::before {
content: "/";
display: inline-block;
padding-right: 10px;
color: rgba(var(--default-color-rgb), 0.3);
}
/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.hero {
--default-color: #ffffff;
--default-color-rgb: 255, 255, 255;
--background-color: #000000;
--background-color-rgb: 0, 0, 0;
width: 100%;
min-height: 100vh;
position: relative;
padding: 160px 0 80px 0;
display: flex;
align-items: center;
justify-content: center;
}
.hero img {
position: absolute;
inset: 0;
display: block;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
z-index: 1;
}
.hero:before {
content: "";
background: rgba(var(--background-color-rgb), 0.5);
position: absolute;
inset: 0;
z-index: 2;
}
.hero .container {
position: relative;
z-index: 3;
}
.hero h2 {
color: var(--contrast-color);
margin: 0;
font-size: 44px;
font-weight: 700;
}
.hero p {
color: rgba(var(--default-color-rgb), 0.8);
margin: 5px 0 0 0;
font-size: 20px;
}
.hero .sign-up-form {
margin-top: 20px;
padding: 10px;
border-radius: 7px;
background: #fff;
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}
.hero .sign-up-form .form-control {
border: none;
}
.hero .sign-up-form .form-control:active, .hero .sign-up-form .form-control:focus {
outline: none;
box-shadow: none;
}
.hero .sign-up-form input[type=submit] {
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
background-color: #fa4729;
border-color: #fa4729;
padding: 8px 20px 10px 20px;
border-radius: 7px;
color: var(--contrast-color);
}
.hero .sign-up-form input[type=submit]:hover {
background-color: rgba(var(--accent-color-rgb), 0.9);
}
@media (max-width: 768px) {
.hero h2 {
font-size: 32px;
}
.hero p {
font-size: 18px;
}
}
 
/* About Section - Home Page
------------------------------*/
.about { background:url(../img/bg-about.png) no-repeat bottom right; min-height:1041px; 
padding:128px 0 132px 0}
.about .content h3 {
font-size:18px;
display: inline-block; margin-bottom:15px
}
.about .content h2 { font-size:57px;}
.about .content p:last-child {
margin-bottom: 0;
}
 
.read-more {
background:#fa4729;

font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
padding:18px 46px;
border-radius:0;
transition: 0.3s;
display: inline-flex;
align-items: center;
justify-content: center;
}
.read-more i {
font-size: 18px;
margin-left: 5px;
line-height: 0;
transition: 0.3s;
}

.read-more:hover {
background:#102549
}
 
.row-flex {
  display: flex;
  flex-wrap: wrap;
}
.content {
  height: 100%;
} 



/*why choose us*/
.why-choose-us { background:#0b0d26} 
.why-choose-us .read-more:hover { background:#fff; color:#fa4729} 

.why-choose-us .icon-box {
padding:40px 40px 40px 40px;
box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
border-radius:0;
transition: all 0.3s ease-out 0s;
background-color: #fff; cursor:pointer;
}

.why-choose-us .icon-box .icon-css {display: inline-flex;align-items: center; margin-bottom:5px;line-height: 0;transition: all 0.4s ease-out 0s; width:98px; height:98px; border-radius:100%; padding:0}

.why-choose-us .icon-box i {color:#181d4e}
.why-choose-us .icon-box svg {width:75px;height:75px;}
.why-choose-us .icon-box svg {fill:#fa4729;}
.why-choose-us .icon-box:hover svg {fill:#fff;}



.why-choose-us .icon-box h3 {
margin-bottom: 10px;
font-size:27px;}
.why-choose-us .icon-box p {margin-bottom:0; padding-right:90px}
.why-choose-us .icon-box:hover i {color:#fff}
.why-choose-us .icon-box:hover h3 {color:#fff} 
.why-choose-us .icon-box:hover  {background-color:#fa4729;color:#fff;}
/*why choose us*/


/*Products*/
.products {  background: url(../img/product-bg.jpg) no-repeat left top; 
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover; padding-bottom:120px}

.products-box {background:#f4f0f0;   padding-top:22px;}  


.products-box  h2 { background:#181d4e; color:#fff; font-size: 22px; height:70px; line-height:70px; font-family: "Outfit", sans-serif; font-weight:400; border-left:solid 4px #fa4729; margin-right:22px; overflow:hidden; }
.products-box  h2 { text-align:left; padding-left:30px;}
 
.products-box img {margin-top:20px; margin-bottom:20px}   
.product-slider .swiper-pagination-bullet-active {
border:solid 2px #fa4729!important;
width:19px;
height:19px;
border-radius:30px;
background:#fa4729!important;
}
.product-slider .swiper-pagination-bullet {
width:15px;
height:15px;
border-radius:100px;
border:solid 2px #181d4e;
opacity: var(--swiper-pagination-bullet-opacity, 1);
background:none;
}
.product-slider  {padding-bottom:60px}
.icon-css .bxl-facebook { font-size:30px; display:inline-block; margin-top:2px; float:left}
.icon-css .bi-twitter-x { font-size:25px; display:inline-block}
/*Products*/

/*Request a Quote*/
.request-a-quote 
 {background: url(../img/bg-1.jpg) no-repeat left top; 
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover; padding-bottom:80px ; padding-top:80px;}

.request-a-quote input{background:#3a407b; color:#fff!important}
.request-a-quote input:focus {background:#3a407b; color:#fff!important}
.request-a-quote h2 {font-size:54px}
.request-a-quote .bg-css {background:#02062f; margin-top:-150px; margin-right:0!important}

.form2 ::-ms-input-placeholder {color:#fff!important;}
.form2 ::placeholder {color:#fff!important;}
/*Request a Quote*/

/*blog*/
.blog-bg {background: url(../img/blog.png) no-repeat left bottom; padding-bottom:80px!important;}
 
.blog-box h5 { font-size:23px; margin:0}
.blog-box .tag {color:#8a8b8f; font-size:16px}
.blog-box a {color:#181d4e}
.blog-box a:hover {color:#fa4729}
/*blog*/ 



/*contact*/ 
.contact-box {background:#e0effb; padding:70px 60px 60px 60px}
.contact-box input[type=text], .contact-box input[type=email], .contact-box textarea {
font-size:18px;padding:14px 0;box-shadow: none;border-radius:0;color:#0b0d26;border:0; font-family: "DM Sans", sans-serif; background:#e0effb; border-bottom:solid 1px #94bad9}

.form-2 ::-ms-input-placeholder {color:#000!important;}
.form-2 ::placeholder {color:#000!important;}

.contact-box textarea {
font-size:18px;padding:0;box-shadow: none;border-radius:0;color:#0b0d26;border:0; font-family: "DM Sans", sans-serif; background:#e0effb; border-bottom:solid 1px #94bad9}

.icon-text { background:url(../img/icon-1.png) no-repeat left center #e0effb!important; border-bottom:solid 1px #94bad9; padding:14px 0 14px 45px!important}

.icon-text-2 { background:url(../img/icon-2.png) no-repeat left center #e0effb!important; border-bottom:solid 1px #94bad9; padding:14px 0 14px 45px!important}

.icon-text-3 { background:url(../img/icon-3.png) no-repeat left center #e0effb!important; border-bottom:solid 1px #94bad9; padding:14px 0 14px 45px!important}

.icon-text-4 { background:url(../img/icon-4.png) no-repeat left center #e0effb!important; border-bottom:solid 1px #94bad9; padding:14px 0 14px 45px!important}

.icon-text-5 { background:url(../img/icon-5.png) no-repeat left 15px #e0effb!important; border-bottom:solid 1px #94bad9; padding:14px 0 14px 45px!important}


.contact-page {  background: url(../img/bg-about.png) no-repeat bottom 28px right -184px; min-height:500px; 
padding:0 0 50px 0}


.contact-box input[type=text]:focus, .contact-box input[type=email]:focus, .contact-box textarea:focus {
border-color: #fa4729;}
.contact-box input[type=text]::-moz-placeholder, .contact-box input[type=email]::-moz-placeholder, .contact-box textarea::-moz-placeholder {
color: rgba(var(--default-color-rgb), 0.3);}
.contact-box input[type=text]::placeholder, .contact-box input[type=email]::placeholder, .contact-box textarea::placeholder {color: rgba(var(--default-color-rgb), 0.3);}
.contact-box button[type=submit] {background:#fa4729;color:#fff;border:0;padding: 15px 30px;transition: 0.4s;border-radius:0;}
.contact-box button[type=submit] i { font-size:21px; margin:0 7px 0 0}
.contact-box button[type=submit]:hover {background:#006dc4;color:#fff;}
.plain-arrow { background:url(../img/plain-arrow.png) no-repeat center right 120px;}

.contact-us ul { margin:0; padding:0;}
.contact-us li { margin:0; padding:20px 0; border-bottom:solid 1px #e5e5e5; list-style:none; color:#5a5a67; position:relative}
.contact-us li a {color:#5a5a67}
.contact-us li a:hover {color:#fa4729}
.contact-us li { padding-left:50px; padding-right:90px}
.contact-us li i { position:absolute; left:0; top:17px; font-size:25px; color:#181d4e}
/*contact*/ 



/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
/* Blog-details Section - Blog Details Page
------------------------------*/
 

.blog-details .title {font-size:30px;padding:0;margin:20px 0;}
.blog-details .content {margin-top: 20px;}
.blog-details .content h3 {font-size:30px;margin-top: 30px;}

 
 

.blog-details .meta-top {
  margin-top: 20px;
  color: rgba(var(--default-color-rgb), 0.6); font-size:14px;
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {}

.blog-details .meta-top i {
  font-size:14px;
  margin-right: 8px;
  line-height: 0;
 
}

.blog-details .meta-top a {
  color: rgba(var(--default-color-rgb), 0.6);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.blog-details .meta-bottom i {
  color: rgba(var(--default-color-rgb), 0.6);
  display: inline;
}

.blog-details .meta-bottom a {
  color: rgba(var(--default-color-rgb), 0.6);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}
 	

.blog-details .meta-bottom .share {font-size: 16px;}
.blog-details .meta-bottom .share i {padding-left: 5px;}
 
.blog-details .sidebar .sidebar-title {font-size:23px;padding: 0;margin: 0;}
.blog-details .sidebar .sidebar-title { position:relative; display:inline-block}
.blog-details .sidebar .sidebar-title:before { width: 66px;height:2px;background:#000;position:absolute;right:-82px;z-index: 10;content: "";top:20px;}



.blog-details .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog-details .sidebar .search-form form {
  background: var(--background-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog-details .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.blog-details .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog-details .sidebar .search-form form button {
  background: var(--accent-color);
  color: var(--background-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog-details .sidebar .search-form form button i {
  line-height: 0;
}

.blog-details .sidebar .search-form form button:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

.blog-details .sidebar .categories ul {
  list-style: none;
  padding: 0; font-size:18px; font-family: "Outfit", sans-serif;
}

.blog-details .sidebar .categories ul li+li {
  padding-top: 10px; 
}

.blog-details .sidebar .categories ul li:last-child { border-bottom:0; padding-bottom:0;}

.blog-details .sidebar .categories ul a {
  color:#181d4e;
  transition: 0.3s; 
}

.blog-details .sidebar .categories ul a:hover {
  color:#fa4729; 
}

.blog-details .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
}

.blog-details .sidebar .recent-posts .post-item {
  display: flex;
  margin-top: 15px;
}

.blog-details .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog-details .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-post {border:solid 1px #e6e6eb; padding:30px;}
.recent-post li { border-bottom:solid 1px #d3d3d7; padding:0 0 13px 0}





/* Contact Section - Home Page
------------------------------*/
.php-email-form {
background: rgba(var(--default-color-rgb), 0.03);
height: 100%;
}
.php-email-form .error-message {
display: none;
background: #df1529;
color: #ffffff;
text-align: left;
padding: 15px;
margin-bottom: 24px;
font-weight: 600;
}
.php-email-form .sent-message {
display: none;
color: #ffffff;
background: #059652;
text-align: center;
padding: 15px;
margin-bottom: 24px;
font-weight: 600;
}
 
.php-email-form .loading:before {
content: "";
display: inline-block;
border-radius: 50%;
width: 24px;
height: 24px;
margin: 0 10px -6px 0;
border: 3px solid #fa4729;
border-top-color: var(--background-color);
animation: animate-loading 1s linear infinite;
}
.php-email-form input[type=text], .php-email-form input[type=email], .php-email-form textarea {
font-size:18px;
padding:14px 26px;
box-shadow: none;
border-radius: 0;
color:#0b0d26;
border:0; font-family: "DM Sans", sans-serif;
}

.php-email-form textarea  { height:160px;}


.form1 ::-ms-input-placeholder { /* Edge 12-18 */
color:#000!important;
}

.form1 ::placeholder {
color:#000!important;
}
.php-email-form input[type=text]:focus, .php-email-form input[type=email]:focus, .php-email-form textarea:focus {
border-color: #fa4729;
}
.php-email-form input[type=text]::-moz-placeholder, .php-email-form input[type=email]::-moz-placeholder, .php-email-form textarea::-moz-placeholder {
color: rgba(var(--default-color-rgb), 0.3);
}
.php-email-form input[type=text]::placeholder, .php-email-form input[type=email]::placeholder, .php-email-form textarea::placeholder {
color: rgba(var(--default-color-rgb), 0.3);
}
.php-email-form button[type=submit] {
background:#fa4729;
color:#fff;
border: 0;
padding: 15px 55px;
transition: 0.4s;
border-radius:0;
}
.php-email-form button[type=submit]:hover {
background:#006dc4;
color:#fff;
}
 
 

/*About start */
.inner-header{background:url(../img/header-bluebg.jpg) no-repeat center top; background-size:cover; position:relative; z-index:0; display:block; min-height:396px;}
.inner-header h2{ color:#fff; font-size:3.563rem; font-weight:500; text-align:center;}
.left-motor{ position:absolute; z-index:1; left:96px; bottom:-74px;}
.right-motor{ position:absolute; z-index:1; right:120px; bottom:-102px;}
.arrow-down{  top:80px; left:0px; right:0px; margin:0 auto;}
.about-inner-bg {
    background: url(../img/bg-about.png) no-repeat bottom 28px right -184px;
    padding: 128px 0 120px 0;
}
.about-inner-bg .content h3 {
font-size:18px;
display: inline-block; margin-bottom:15px
}
.about-inner-bg .content h2 { font-size:57px;}
.about-inner-bg .content p:last-child {
margin-bottom: 0;
}
.about-bg{ background:#f4f0f0; padding:28px;}
.about-bordr{ border:#d6d7e5 2px solid; padding:50px 15px;}

.mission-bx{ background:#0b0d26; color:#fff;}

.quality-area {background: url(../img/product-bg.jpg) no-repeat left top; -webkit-background-size: cover;
-moz-background-size: cover; -o-background-size: cover; background-size: cover; padding:90px 0 70px 0;}

.customer-area {background: url(../img/abt-botm-bg.png) no-repeat left top; -webkit-background-size: cover;
-moz-background-size: cover; -o-background-size: cover; background-size: cover; padding:80px 0 70px 0;}

/*About end */

/*Authorisation start */
.authorisation-certify-bg {
    background: url(../img/bg-about.png) no-repeat bottom 28px right -184px;
    padding: 128px 0 100px 0;
}
.authorisation-certify img{ border:#f4f0f0 12px solid;}

/*Marathon start */
.marathon-bg {
    background: url(../img/product-list-bg.jpg) no-repeat bottom left;
    padding: 128px 0 100px 0;
}
.pagination-bottom { margin:0 auto; list-style:none; padding:0;}
.pagination-bottom li{ display:inline-block; margin:0 3px;}
.pagination-bottom li a{ width:42px; height:42px; color:#000; font-size:18px; background:#fff; border:#000 1px solid; border-radius:50%; display:block; line-height:42px; text-align:center;}
.pagination-bottom li a:hover, .pagination-bottom li a.active{ width:42px; height:42px; color:#fff; font-size:18px; background:#000000; border:#000 1px solid; border-radius:50%; display:block; line-height:42px; text-align:center;}
.pagination-bottom li a i.bx{ font-size:28px; line-height:42px;}
.section-title h4 {
    font-size: 40px;
    position: relative;
    font-family: "Outfit", sans-serif;
}
.pro-detail-img{ min-height:700px;}
.download-btn button[type=submit] {background:#0b0d26;color:#fff;border:0;padding: 15px 30px;transition: 0.4s;border-radius:0;}
.download-btn button[type=submit] i { font-size:21px; margin:0 7px 0 0}
.download-btn button[type=submit]:hover {background:#fa4729;color:#fff;}

.enquiry-btn button[type=submit] {background:#fa4729;color:#fff;border:0;padding: 15px 30px;transition: 0.4s;border-radius:0;}
.enquiry-btn button[type=submit] i { font-size:21px; margin:0 7px 0 0}
.enquiry-btn button[type=submit]:hover {background:#0b0d26;color:#fff;}
/*Marathon end */

/*Industry start */
.industry-row{ margin-bottom:40px;}
.indus-img{margin-bottom:26px;}
.industry-row h4 {
    font-size: 30px;
    position: relative;
    font-family: "Outfit", sans-serif;
	font-weight:500;
	margin-bottom:15px;
}
.industry .section-title h3 {
    font-size: 36px;
    font-family: "Outfit", sans-serif;
	font-weight:500;
	text-align:center;
} 


.blog-ul-li ul { margin:10px 0 0 0; padding:0}
.blog-ul-li li { margin:0 0 10px 0 ; padding:0 0 0 20px; position:relative; list-style:none}
.blog-ul-li li:before { margin:0; padding:0; position:absolute; display: inline-block;
font-family: bootstrap-icons !important;
line-height: 1;
-webkit-font-smoothing: antialiased; left:0; top:1px;
-moz-osx-font-smoothing: grayscale; content: "\F135"; font-size:22px}