* {
    margin: 0px;
    padding: 0px;
}

body {
    color: #e03f44;
    -webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

ul,
ol,
li,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* ===================================
    Start Side Menu
====================================== */

.d-flex {
    display: flex;
}

.d-flex1 {
    display: flex;
}

.menu-main {
    display: -ms-flexbox !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -ms-flex-align: right !important;
    align-items: right !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.top-bar {
    position: relative;
    width: 100%;
    background: #373737;
}

.top-bar.inner-page {
    background: #fff;
}

.top-bar.inner-page .navigation a {
    color: #000;
}

.fixed-hedder.fixed {
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1111;
    background-color: #fff;
    -webkit-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.logo-sticky {
    display: none;
    float: left;
    width: 48px;
    padding: 5px 0px 5px 0px;
}

.logo-sticky img {
    width: 100%;
}

.fixed-hedder.fixed .logo-sticky {
    display: none;
}

.fixed-hedder.fixed .side-menu .navbar-nav {
    float: left;
    padding: 0px 0px;
}

.fixed-hedder.fixed .side-menu .navbar-nav li {
    padding: 19px 24px;
}

.fixed-hedder.fixed .side-menu .navbar-nav li ul li {
    padding: 0px;
}

.fixed-hedder.fixed .logo {
    width: 180px;
    padding: 5px 0px;
}

.fixed-hedder.fixed .logo img {
    width: 100%;
}

.fixed-hedder.fixed .menu-main {
    padding: 0px 0px 0px 0px;
}

.fixed-hedder.fixed .side-menu .navbar-nav li:last-child a {
    padding-right: 0px;
}

.fixed-hedder.fixed .brochure-download-icon {
    display: none;
}

.fixed-hedder.fixed .logo-bar {
    background: #fff;
    padding: 0px 0px 0px 0px;
}

.side-menu .navbar-nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    width: 100%;
    margin-top: 0px;
    text-align: left;
    display: inline-block;
}

.side-menu .navbar-nav li:first-child a i {
    font-size: 17px;
    padding-left: 6px;
}

.side-menu .navbar-nav li:last-child {
    padding-right: 0px;
}

.side-menu .navbar-nav li:not(:last-child):not(.open) {}

.side-menu .navbar-nav li:hover>ul {
    display: block;
}

.side-menu.side-menu-opacity {
    display: inline-block;
}

.side-menu ul ul {
    font-size: 14px;
    display: none;
    position: absolute;
    z-index: 100;
    width: 292px;
    background: #fff;
    border-top: 3px solid #d9261c;
    margin-top: 15px;
}

.side-menu .navbar-nav li ul li {
    display: block;
    text-align: left;
    padding: 0px;
}

.side-menu .navbar-nav li ul li a {
    border-bottom: 1px solid #ccc;
    padding: 12px 20px;
    text-transform: inherit;
}

.side-menu .navbar-nav li ul li a:hover {
    border-bottom: 1px solid #1f1a17;
    background: #1f1a17;
    color: #fff;
}

.side-menu .navbar-nav li {
    float: none;
    display: inline-block;
    position: relative;
    padding: 24px 12px;
}

.side-menu .navbar-nav li a {
    display: block;
    color: #fff;
    font-size: 27px;
    padding: 6px 0px;
    font-weight: 700;
    transition: all 0.3s ease-out;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.side-menu .navbar-nav li a:hover {
    color: #1f1a17;
    text-decoration: none;
    outline: none;
}

.side-menu .navbar-nav li a:focus {
    color: #1f1a17;
    text-decoration: none;
    outline: none;
}

.side-menu .navbar-nav li a.active {
    color: #1f1a17;
}

.side-menu .navbar-nav li a::before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 0;
    height: 3px;
    background: #1f1a17;
    bottom: 0;
    left: 0;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
}

.side-menu .navbar-nav li a:hover::before,
.side-menu .navbar-nav li a.active::before {
    width: 100%;
}

.side-menu .navbar-nav .dflt-btn {
    padding: 24px 0px;
}

.side-menu .navbar-nav .dflt-btn a {
    margin: 0;
    padding: 8px 18px;
    font-size: 14px;
    width: auto;
    height: auto;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    background: #82bc3b;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .15s ease;
    transition: all .15s ease;
    letter-spacing: .2px;
    border-radius: 30px;
}

.side-menu .navbar-nav .dflt-btn a:hover {
    background: #82bc3b;
    color: #fff;
    -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
    box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
    text-decoration: none;
    outline: none;
}

.side-menu .navbar-nav .dflt-btn a:focus {
    background: #82bc3b;
    color: #fff;
    -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
    box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
    text-decoration: none;
    outline: none;
}

.side-menu .navbar-nav li:hover>.mega-dropdown-menu {
    display: block;
}

.side-menu .navbar-nav .mega-dropdown-menu ul {
    background: #f8f8f8;
    border-top: 1px solid #00213a;
}

.side-menu .navbar-nav .mega-dropdown-menu li .mega-dropdown-menu li a::before {
    height: 2px;
    background: #483a6d;
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
    z-index: 100;
}

.side-menu .navbar-nav .mega-dropdown-menu li ul li:hover a::before {
    width: 100%;
    left: 0;
}

.side-menu .navbar-nav .mega-dropdown-menu {
    width: 100%;
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    min-width: 160px;
    padding: 0px 0 0px;
    margin: 0 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.side-menu .navbar-nav .mega-dropdown-menu li {
    position: static;
    vertical-align: bottom;
    display: table-cell;
    width: 1%;
    float: none;
    text-align: center;
    line-height: 20px;
    box-shadow: none !important;
}

.side-menu .navbar-nav .mega-dropdown-menu li a {
    position: relative;
    min-height: 140px;
    display: block;
    color: #483a6d;
    padding: 6px 1px;
    line-height: 20px;
    font-size: 14px;
}

.side-menu .navbar-nav .mega-dropdown-menu li a:hover {
    background: transparent;
    color: #012549;
}

.side-menu .navbar-nav .mega-dropdown-menu li a:focus {
    background: transparent;
    color: #012549;
}

.side-menu .navbar-nav .mega-dropdown-menu li a::before {
    height: 2px;
    background: #483a6d;
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
    z-index: 100;
}

.side-menu .navbar-nav .mega-dropdown-menu li:hover a::before {
    width: 100%;
    left: 0;
}

.side-menu .navbar-nav .mega-dropdown-menu .icon {
    width: 70px;
    height: 70px;
    display: inline-block;
}

.side-menu .navbar-nav .mega-dropdown-menu .icon1 {
    width: 90px;
    height: 90px;
    display: inline-block;
}

.side-menu .navbar-nav .mega-dropdown-menu p {
    display: block;
    margin: 0px;
}

.side-menu .navbar-nav li span {
    display: none;
    cursor: pointer;
}

.side-menu .navbar-nav .simple-dropdown {
    display: none;
    position: absolute;
    z-index: 100;
    width: 199px;
    background: #fff;
    list-style: none;
}

.side-menu .navbar-nav .simple-dropdown ul {
    font-size: 14px;
    display: none;
    position: absolute;
    z-index: 100;
    width: 225px;
    top: 0;
    left: -225px;
    background: #fff;
    list-style: none;
}

.side-menu .navbar-nav .simple-dropdown ul ul {
    font-size: 14px;
    display: none;
    position: absolute;
    z-index: 100;
    width: 225px;
    top: 0;
    left: -225px;
    background: #fff;
    list-style: none;
}

.side-menu .navbar-nav li:hover>.simple-dropdown {
    display: block;
}

.side-menu .navbar-nav li .simple-dropdown li:hover>ul {
    display: block;
}

.side-menu .navbar-nav .simple-dropdown li {
    position: relative;
    width: 100%;
    box-shadow: none !important;
}

.side-menu .navbar-nav .simple-dropdown li a {
    color: #483a6d;
    padding: 8px 12px 8px 12px;
    border-bottom: 1px solid;
    font-size: 13px;
    text-align: center;
}

.side-menu .navbar-nav .simple-dropdown li a:hover {
    color: #fff;
    padding: 8px 12px 8px 12px;
    border-bottom: 1px solid;
    font-size: 13px;
    background: #ff480c;
}

.fixed-hedder.fixed .simple-dropdown li a {
    padding: 6px 12px 6px 12px !important;
}

.nav-contact-info {
    display: none;
}

/* ===================================
    End Side Menu
====================================== */

.logo-bar {
    padding: 4px 0px 5px 0px;
    width: 100%;
    position: relative;
}

.logo {
    padding: 0px 0px 0px 0px;
    display: inline-block;
    width: 248px;
    float: left;
}

.logo img {
    width: 100%;
}

.logo a {
    text-decoration: none;
    outline: none;
    display: inline-block;
}

.logo a:hover {
    text-decoration: none;
    outline: none;
}

.logo a:focus {
    text-decoration: none;
    outline: none;
}

.d-flex1 {
    display: flex;
    align-items: center;
}

.logo p {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    margin: 12px 0px 10px 12px;
    border-left: 1px solid #ff480c;
    padding: 5px 0px 5px 12px;
    vertical-align: top;
    font-size: 18px;
    font-weight: 500;
}

.top {
    position: relative;
    padding: 5px 0px;
    background: #d9261c;
}

.top:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    content: "";
    border-top: 78px solid rgb(31 26 23);
    border-right: 40px solid transparent;
}

.top-left ul {
    list-style: none;
    margin-bottom: 0px;
}

.top-left ul li {
    display: inline-block;
    padding: 0px 15px 0px 0px;
    font-family: 'Poppins', sans-serif;
}

.top-left ul li a {
    color: #fff;
    text-decoration: none;
}

.top-right {
    display: inline-block;
    float: right;
    vertical-align: middle;
}

.top-right ul {
    list-style: none;
    text-align: right;
    margin-bottom: 0px;
}

.top-right ul li {
    text-align: right;
    display: inline-block;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.top-right ul li a {
    color: #d9261c;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 25px;
}

.home-slider {
    position: relative;
    overflow: hidden;
}

/*.home-slider:before{
	position: absolute;
    top: 0px;
    left: 0px;
    width: 65%;
    height: 100%;
    content: "";
    z-index: 1;
    border-top: 500px solid rgb(31 26 23 / 79%);
    border-right: 150px solid transparent;
}*/

.slide-text {
    position: absolute;
    left: 10%;
    top: 30%;
    width: 50%;
    z-index: 9;
}

.slide-text h6 {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    padding: 4px 5px 4px 5px;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    background: #d9261c;
}

.carousel-item img {
    width: 100%;
}

/*.slide-text-inner{
    border-left: 5px #8e2519 solid;
    padding-left: 20px;
    padding-bottom: 10px;
}*/

.carousel-control-next,
.carousel-control-prev {
    z-index: 96 !important;
    opacity: 1 !important;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    border: none !important;
}

.slide-text-inner h2 {
    color: #fff;
    font-size: 36px;
}

.slide-text-inner p {
    color: #fff;
    font-size: 18px;
}

.carousel-control-next,
.carousel-control-prev {
    opacity: 1;
    z-index: 9;
}

.carousel-control-prev {
    right: 28px;
    left: inherit;
    z-index: 9;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 30px;
    height: 30px;
    background-size: 80% 80%;
    border: 1px #fff solid;
    padding: 10px;
}

.slide-text-inner h4 a {
    border: 1px #fff solid;
    color: #fff;
    padding: 5px 12px;
    font-weight: 400;
    font-size: 16px;
    transition-duration: 0.2s;
}

.slide-text-inner h4 a:hover {
    background-color: #8e2519;
    transition-duration: 0.2s;
}

.footer {
    position: relative;
    width: 100%;
    padding: 45px 0px 15px;
    background: url(../image/footer-bg.png) no-repeat center top;
    background-size: cover;
}

.footer:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: rgb(255 255 255 / 92%);
}

.footer-section img {
    padding-bottom: 15px;
}

.footer-section p {
    font-size: 15px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-left: 35px;
}

.footer-section p a {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.footer-section p .fa {
    position: absolute;
    top: 4px;
    left: 0px;
    border: 1px #fff solid;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.footer-section h4 span {
    color: #00bc61;
}

.footer-section hr {
    color: #fff;
    margin: 0px;
    height: 1px;
    width: 50px;
    background: #00bc61;
    position: relative;
}

/*.footer-section hr:before {
    content: "";
    width: 10px;
    height: 10px;
    background: #d9261c;
    z-index: 9;
    left: -1px;
    top: -4px;
    position: absolute;
    border-radius: 50%;
}*/

.footer-section ul {
    list-style: none;
    margin-top: 25px;
}

.footer-section ul li {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 15px;
    padding-left: 20px;
    line-height: 30px;
    position: relative;
    transition: 0.4s;
    font-weight: 500;
}

.footer-section ul li a {
    text-decoration: none;
    color: #000;
    transition: 0.4s;
}

.footer-section ul li .fa {
    position: absolute;
    left: 0px;
    top: 6px;
}

.footer-section ul li:hover {
    color: #00bc61;
    transition: 0.4s;
}

.footer-section ul li a:hover {
    color: #00bc61;
    transition: 0.4s;
}

.img-years {
    width: 100%;
    max-width: 195px;
}

.footer-socialmedia ul li {
    display: inline-block;
    padding: 8px 15px 8px 0px;
    margin-right: 18px;
    font-size: 14px;
    font-weight: 700;
}

.footer-socialmedia ul li a .facebook {
    background: #4267b2;
    font-size: 18px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    color: #fff;
}

.footer-socialmedia ul li a .twitter {
    background: #1da1f2;
    font-size: 18px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    color: #fff;
}

.footer-socialmedia ul li a .linkedin {
    background: #0077b5;
    font-size: 18px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    color: #fff;
}

.footer-socialmedia ul li a .instagram {
    background: #e60023;
    font-size: 18px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    color: #fff;
}

.footer-info-wrapper {
    background-color: #fff;
    padding: 35px 30px 30px;
    margin-top: 50px;
    border-radius: 8px;
    box-shadow: 0 0 10px 5px #000;
    width: 100%;
}

.footer-address p {
    position: relative;
    padding-left: 45px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.footer-address p span {
    font-size: 18px;
    color: #fe0000;
    font-weight: 700;
}

.footer-address p .fa {
    position: absolute;
    left: 0px;
    font-size: 30px;
    top: 4px;
    color: #fe0000;
}

.secondary-footer {
    position: relative;
    background: #000;
    padding: 15px 0px;
}

.copyright {
    margin: 25px 0px 0px;
    display: block;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 500;
}

.copyright span {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

marquee a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

marquee a:hover {
    text-decoration: none;
}

.copyright a {
    color: #00bc61;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.copyright a:hover {
    color: #00bc61;
    text-decoration: none;
    font-size: 16px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

/*  scroll css section here*/

.scrollup {
    width: 40px;
    height: 40px;
    opacity: 1;
    position: fixed;
    bottom: 50px;
    right: 40px;
    display: none;
    text-indent: -9999px;
    background: url(../image/icon_top.png) no-repeat;
    z-index: 9999999;
}

/*--------------------------------------------------------------
# Side Enquiry
--------------------------------------------------------------*/

.contact-btn {
    cursor: pointer;
    display: inline-block;
    position: fixed;
    left: -43px;
    top: 40%;
    z-index: 99;
    transform: translateY(-50%) rotate(270deg);
    -webkit-transform: translateY(-50%) rotate(270deg);
    -o-transform: translateY(-50%) rotate(270deg);
    -ms-transform: translateY(-50%) rotate(270deg);
    -moz-transform: translateY(-50%) rotate(270deg);
}

.contact-btn:hover {
    text-decoration: none;
}

.contact-bg {
    background: #d9261c;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: block;
    padding: 10px 15px 10px 15px;
    font-weight: 500;
    z-index: 10;
    -webkit-box-shadow: 0 0 13px 3px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 13px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 13px 3px rgb(0 0 0 / 10%);
}

.contact-form {
    background: #ffffff;
    height: 80%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
    padding: 80px 30px 30px;
    width: 450px;
    position: fixed;
    left: -600px;
    top: 0;
    z-index: 9999999999;
}

.close-btn {
    background: #d9261c;
    color: #fff !important;
    cursor: pointer;
    font-weight: bold;
    padding: 7px 15px;
    position: absolute;
    right: 20px;
    top: 10px;
}

.contact-bg.active .contact-form {
    display: block;
    left: 0px;
}

.about-left h3 {
    font-family: 'Poppins', sans-serif;
    color: #222;
    font-size: 36px;
    font-weight: 600;
}

.about-left h3 span {
    font-family: 'Poppins', sans-serif;
    color: #d9261c;
}

.contact-form input {
    width: 100%;
    border: 1px #d9261c solid;
    margin: 0px 0px 15px 0px;
    padding: 5px 5px;
}

.contact-form input,
.contact-form textarea:focus-visible {
    outline: none;
}

.contact-form textarea {
    width: 100%;
    border: 1px #d9261c solid;
    margin: 0px 0px 35px 0px;
    padding: 5px 5px;
}

.btn2 {
    background: #d9261c;
    padding: 5px 12px;
    color: #fff;
    border: none;
    transition: 0.4s;
}

.btn2:hover {
    background: #1f1a17;
    padding: 5px 12px;
    color: #fff;
    border: none;
    transition: 0.4s;
}

/* Social Media */

.sticky1-container {
    padding: 0;
    margin: 0;
    position: fixed;
    right: -160px;
    top: 50%;
    width: 200px;
    z-index: 99;
    transform: translateY(-50%)
}

.sticky1 li {
    list-style-type: none;
    background-color: #333;
    color: #efefef;
    height: 43px;
    padding: 0;
    margin: 0 0 1px 0;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    cursor: pointer font-family: 'Poppins', sans-serif;
}

.sticky1 li:hover {
    margin-left: -115px;
    filter: url("data:image/svg+xml;utf8,<svgxmlns=\'http://www.w3.org/2000/svg\'><filterid=\'grayscale\'><feColorMatrixtype=\'matrix\'values=\'10000,01000,00100,00010\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0)
}

.sticky1 li img {
    float: left;
    margin: 5px 5px;
    margin-right: 10px
}

.sticky1 li a {
    text-decoration: none;
}

.sticky1 li p {
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    line-height: 43px
}

.sticky1 a {
    display: flex;
    font-family: 'Poppins', sans-serif;
}

.gallery-section {
    position: relative;
    padding: 45px 0px;
    background: #f7f7f7;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: ;
    left: 0;
    width: 100%;
}

.swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 1) !important;
}

.clients-slider .swiper-slide img {
    width: 100%;
    transition: 0.5s;
    position: relative;
}

.clients-slider .swiper-slide:after {
    content: "Udaan E Rickshaw ";
    position: absolute;
    left: -120px;
    top: 120px;
    width: 100%;
    z-index: 999;
    transform: rotate(-90deg);
    display: flex;
    justify-content: center;
    background: #00bc61;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 4px 0px 5px 0px;
}

.clients-slider.swiper-pointer-events {
    padding: 15px 0px;
}

.clients-slider .swiper-slide {
    position: relative;
    border: 1px #00bc61 solid;
    padding: 5px;
    overflow: hidden;
}

.clients-slider .swiper-slide img:hover {
    opacity: 0.8;
    transform: scale(1.0);
    transition: 0.5s;
}

.top-section {
    background: #373737;
    border-bottom: 1px #fff solid;
}

.top-left-content ul {
    list-style: none;
    margin-bottom: 0px;
}

.top-left-content ul li {
    display: inline-block;
    padding: 8px 15px 9px 0px;
    border-right: 1px #fff solid;
    margin-right: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.top-left-content ul li:last-child {
    border: none;
}

.top-left-content ul li a {
    color: #fff;
}

.top-left-content ul li a:hover {
    text-decoration: none;
}

.top-right-content ul {
    list-style: none;
    margin-bottom: 0px;
    text-align: right;
}

.top-right-content ul li {
    display: inline-block;
    padding: 8px 15px 8px 0px;
    margin-right: 6px;
    font-size: 14px;
    font-weight: 700;
}

.top-right-content ul li.opening {
    border-right: 1px #fff solid;
}

.top-right-content ul li a {
    color: #fff;
}

.top-right-content ul li a:hover {
    text-decoration: none;
}

.top-right-content ul li a .facebook {
    background: #4267b2;
    font-size: 14px;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    border-radius: 50%;
}

.top-right-content ul li a .twitter {
    background: #1da1f2;
    font-size: 14px;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    border-radius: 50%;
}

.top-right-content ul li a .linkedin {
    background: #0077b5;
    font-size: 14px;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    border-radius: 50%;
}

.top-right-content ul li a .instagram {
    background: #e60023;
    font-size: 14px;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    border-radius: 50%;
}

.top-right-content ul li a .whatsapp {
    background: #25D366;
    font-size: 14px;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    border-radius: 50%;
}

.sidebarform {
    position: fixed;
    background-color: #fff;
    top: 100px;
    right: -100px;
    height: 100vh;
    width: 0rem;
    transition: 0.2s;
    margin: -100px 0 0 0;
    z-index: 999;
    overflow: scroll;
}

.toggle {
    right: 0;
    box-shadow: 1px 0 15px 2px rgb(0 0 0 / 40%);
    width: 25rem;
}

.toggle-menu {
    position: fixed;
    top: 82px;
    right: 6.8rem;
    width: auto;
    height: auto;
    border-radius: 0.5rem;
    z-index: 9999;
    float: left;
    max-width: 54px;
    display: flex !important;
    margin: -5px;
    flex-wrap: wrap;
    cursor: pointer;
}

.line {
    width: 4px;
    height: 4px;
    border-radius: 5px;
    background-color: #00a0e3;
    transition: 0.2s ease-out;
    float: left;
    display: block;
    margin: 4px 5px;
}

.line1 {
    background: #000;
}

.line2 {
    background: #00bc61;
}

.line3 {
    background: #000;
}

.line4 {
    background: #00bc61;
}

.line5 {
    background: #000;
}

.line6 {
    background: #00bc61;
}

.line7 {
    background: #000;
}

.line8 {
    background: #00bc61;
}

.line9 {
    background: #000;
}

.fixed-hedder.fixed .toggle-menu {
    top: 36px;
}

/*.toggle .toggle-menu {
  background-color: white;
}*/

.sideform {
    padding: 35px;
}

.sidebarform.toggle .toggle-menu {
    top: 50px;
    right: 3rem;
}

.sideform a img {
    max-width: 250px;
    margin-top: 60px;
}

.sideform ul {
    list-style: none;
}

.sideform ul li .fa {
    font-size: 18px;
    color: #fe0000;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 4px;
    width: 30px;
    height: 30px;
    border: 1px #fe0000 solid;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}

.sideform ul li {
    position: relative;
    padding-left: 35px;
    font-size: 14px;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}

.sideform ul li span {
    font-size: 18px;
    color: #fe0000;
    font-weight: 600;
}

.sidescialmedia ul li {
    display: inline-block;
    padding-left: 15px;
}

.sidescialmedia ul li .fa {
    position: relative;
    border: none;
    background: #fe0000;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    transition: 0.4s;
}

.sidescialmedia {
    margin-top: 35px;
}

.sidescialmedia ul li .fa:hover {
    background: #000;
    transition: 0.4s;
}

.features-section {
    position: relative;
    padding: 45px 0px;
    width: 100%;
}

.abt-img img {
    width: 100%;
}

.heading-pro {
    margin-bottom: 25px;
}

.heading-pro hr {
    width: 45px;
    margin: 0 auto;
    background: #00bc61;
    height: 2px;
}

.heading-pro.about-head hr {
    margin: inherit;
}

.about-content {
    padding-right: 45px;
}

.about-padding {
    padding-left: 26px;
}

.policy-block {
    position: relative;
    padding: 20px 15px;
    background-color: #fff;
    border: 1px solid #00bc61;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 15px;
    border-bottom: 5px #00bc61 solid;
    margin-bottom: 30px;
}

.policy-block a {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.policy-block a:hover {
    text-decoration: none;
}

.policy-icon {
    color: #fff;
    font-size: 40px;
    width: 80px;
    height: 80px;
    margin: auto;
    line-height: 80px;
    border-radius: 50%;
    display: block;
    text-align: center;
    background-color: #00bc61;
    position: relative;
}

.policy-icon:after {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    content: "";
    position: absolute;
    border: 2px dashed #00bc61;
    top: -5px;
    left: -5px;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 1;
    visibility: visible;
    -webkit-animation: spin 10s infinite linear;
    animation: spin 10s infinite linear;
}

.policy-block:hover {
    background: #000;
    transition: 0.4s;
    cursor: pointer;
}

.policy-text {
    margin-top: 42px;
}

.policy-text .policy-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
}

.policy-text .policy-desc {
    font-size: 16px;
    line-height: 1.2;
    color: #777777;
}

.policy-block:hover .policy-text h4 {
    color: #fff;
}

.policy-block:hover .policy-text p {
    color: #fff;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.product-section {
    position: relative;
    padding: 45px 0px 45px;
    width: 100%;
}

.product-main {
    border: 1px #ddd solid;
    margin-bottom: 25px;
}

.product-main .pro-content img {
    width: 100%;
}

.pro-content {
    position: relative;
}

.product-name {
    position: absolute;
    top: 15px;
    right: 15px;
}

.product-name h3 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.product-description {
    padding: 0px 15px 0px 15px;
}

.product-description h4 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 15px 0px;
}

.product-description h4 a {
    color: #000;
    text-decoration: none;
}

.product-description p {
    font-size: 15px;
    color: #000;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.chairman-section {
    background: #f9ecec;
    width: 100%;
    position: relative;
    padding: 45px 0px;
    overflow: hidden;
    /*background: url(../image/bg-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;*/
}

.chairman-section:before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    background: #00bc61d6;
}

.chairman-section .row {
    /*align-items: center;*/
}

.chairman-content {
    padding: 35px;
    background: #fff;
    position: relative;
    margin-bottom: 20px;
}

.chairman-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.chairman-content h3 span {
    color: #00bc61;
}

.chairman-content hr {
    width: 45px;
    background: #00bc61;
    height: 2px;
    margin-top: 0px;
}

.chairman-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.chairman-content h6 {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    font-style: italic;
}

.chairman-content p strong {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.chairman-content p {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
}

.chairman-content.md-content1 {
    background: #fff;
    padding: 35px;
    background: #fff;
}

.chairman-content::after {
    content: "";
    width: 30px;
    height: 60px;
    border-right: solid 30px #00bc61d6;
    border-bottom: solid 30px transparent;
    border-top: solid 30px transparent;
    right: 0px;
    top: 45%;
    position: absolute;
}

.chairman-content button {
    padding: 0 25px;
    border-radius: 4px;
    /*min-width: 140px;*/
    height: 42px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    border: none;
    font-family: 'Poppins', sans-serif;
    background: #000;
}

.chairman-content button:after,
.chairman-content button:before {
    width: 0%;
    height: 0%;
    content: "";
    position: absolute;
    border-radius: 100%;
}

.chairman-content button:after {
    transition: all 0.5s ease;
    background-color: #fe0000;
}

.chairman-content button:before {
    transition: all 0.5s ease-out;
    background: $m-01;
}

.chairman-content button span {
    z-index: 1;
    transition: all 0.3s ease-out;
}

.chairman-content button.cta-01 {
    background: linear-gradient(90deg, $m-02 0%, $m-03 100%);
    color: #fff;
}

.chairman-content button.cta-01 a {
    color: #fff;
    text-decoration: none;
}

.chairman-content button:hover.cta-01 {
    color: #fff;
}

.chairman-content button:hover:before {
    transition: all 0.5s ease-in;
}

.chairman-content button:hover:after {
    transition: all 0.7s ease-in;
}

.chairman-content button:hover:after,
.chairman-content button:hover:before {
    width: 200px;
    height: 200px;
    border-radius: 4px;
}

.message-img img {
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 10px #222222c4;
}

.about-section1 {
    position: relative;
    width: 100%;
    padding: 0px 0px;
    background: #efefef;
}

.about-section1 .row {
    align-items: center;
}

.about-section {
    position: relative;
    width: 100%;
    padding: 0px 0px;
    background: #efefef;
}

.aboutinner {
    background: url(../image/bg-patern-2.jpg);
    background-repeat: repeat;
    padding: 85px 0px 65px;
    background-size: cover;
}

.about-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #000;
    font-weight: 400;
    text-align: justify;
}

.about-content1 p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    text-align: justify;
}

.about-content1 p strong {
    margin-bottom: 20px;
}

.about-content1 h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #000;
    font-weight: 600;
}

.about-content1 h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
}

.about-content1 .sub-title:before {
    content: '';
    width: 50px;
    height: 3px;
    position: absolute;
    top: 6.5%;
    left: 20px;
    background-color: #e31e24;
    -webkit-transform: translate(0, -50%);
}

.about-content1 h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-content1 h2 span {
    color: #00bc61;
}

.about-content1 .sub-title.primary {
    color: #e31e24;
}

.about-content1 .sub-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: -14px;
    padding-left: 65px;
    line-height: 77px;
    /* font-size: 28px; */
}

.about-content a {
    border: 1px #000 solid;
    color: #000;
    padding: 5px 12px;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    transition: 0.4s;
}

.about-content a:hover {
    background: #000;
    color: #fff;
    transition: 0.4s;
    text-decoration: none;
}

.about-img {
    position: relative;
    padding-left: 7px;
    margin-bottom: 35px;
}

.about-img img {
    width: 100%;
    z-index: 99;
    position: relative;
    margin-left: 33px;
}

.about-img:before {
    content: '';
    width: 226px;
    height: 135px;
    background-image: url(../image/dots.png);
    background-position: 50%;
    background-repeat: no-repeat;
    position: absolute;
    top: -35px;
    left: 0;
    z-index: 1;
}

.about-img .ct-banner-title {
    position: absolute;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 0;
    padding: 12px 20px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fa433b), to(#fa433b));
    background-image: -webkit-linear-gradient(bottom, #00bc61, #00bc61);
    background-image: -moz-linear-gradient(bottom, #00bc61, #00bc61);
    background-image: -ms-linear-gradient(bottom, #00bc61, #00bc61);
    background-image: -o-linear-gradient(bottom, #00bc61, #00bc61);
    background-image: linear-gradient(bottom, #00bc61, #00bc61);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorStr='#00bc61', endColorStr='#00bc61');
    color: #fff;
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -webkit-transform: translateX(45px)rotate( -90deg);
    -khtml-transform: translateX(45px)rotate(-90deg);
    -moz-transform: translateX(45px)rotate(-90deg);
    -ms-transform: translateX(45px)rotate(-90deg);
    -o-transform: translateX(45px)rotate(-90deg);
    transform: translateX(45px)rotate( -90deg);
    bottom: 47px;
    left: -29px;
    z-index: 9;
}

.about-content1.career-text h2 {
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.about-content1.career-text p {
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.about-content1.career-text p a {
    text-decoration: none;
    color: #e31e24;
}

.career-text ul {
    list-style: none;
}

.career-text ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.career-text ul li .fa {
    position: absolute;
    left: 0;
    top: 4px;
    color: #00bc61;
    font-size: 18px;
}

.common-features {
    position: relative;
    padding: 45px 0px;
    width: 100%;
}

.fixd-btn {
    animation: MoveUpDown 1s linear infinite;
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 9999;
}

.heading-pro h2 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.heading-pro h2 span {
    color: #00bc61;
}

@keyframes MoveUpDown {
    0%,
    100% {
        bottom: 0;
    }
    50% {
        bottom: 20px;
    }
}

.chairman-section .row {
    align-items: center;
}

.md-section {
    position: relative;
    width: 100%;
    padding: 45px 0px 45px;
    background: #fff;
    overflow: hidden;
}

/*.md-section:before{
        content: "";
    display: block;
    width: 200%;
    height: 200%;
    position: absolute;
    border-radius: 50%;
    bottom: 0;
    left: 0;
    box-shadow: -50px 50px 0 0 red;
}*/

.md-content:after {
    display: none;
}

.md-content.chairman-content {
    padding: 0px;
    margin-bottom: 0px;
}

.message-img1 img {
    width: 100%;
}

.about-overlay {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: #ff0006;
    background-image: url(../image/test-bg3.png);
    background-position: top left;
    background-repeat: no-repeat;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 30px 30px 30px 30px;
}

.about-overlay h6 {
    font-size: 20px;
    color: #fff;
    line-height: 38px;
    font-weight: 600;
}

.brand-section img {
    width: 100%;
}

.breadcrumb-section img {
    width: 100%;
}

.why-us {
    background: #ededed8c;
    padding: 45px 0px 45px;
    background-image: url(../image/bg-business.png);
}

.why-list ul {
    list-style: none;
}

.why-list ul li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    font-family: 'Poppins', sans-serif;
    padding-left: 40px;
    line-height: 34px;
}

.why-list ul li .fa {
    position: absolute;
    left: 0px;
    width: 25px;
    height: 25px;
    background: #00bc61;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    color: #fff;
    top: 6px;
}

.why-list h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.why-list h3 span {
    color: #00bc61;
}

.why-list hr {
    width: 45px;
    background: #00bc61;
    height: 2px;
    margin-top: 0px;
}

.chairman-content {
    background: transparent;
    margin: 0x;
    padding: 0px;
}

.chairman-content:after {
    display: none;
}

.contact-form-page {
    position: relative;
    padding: 60px 0px 45px;
    width: 100%;
    /* background: url(../image/cont-bg.png);
    background-repeat: repeat;*/
}

.form-section h4 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.form-section label {
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.form-section input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 25px;
    border: 1px #a5a5a5 solid;
    border-bottom: 3px #00bc61 solid;
    margin-bottom: 25px;
    height: 48px;
}

.form-section textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 25px;
    border: 1px #a5a5a5 solid;
    border-bottom: 3px #00bc61 solid;
    margin-bottom: 25px;
    height: 60px !important;
}

.btn3 {
    background: #00bc61;
    padding: 9px 32px;
    color: #fff;
    border: none !important;
    transition: 0.4s;
    border-radius: 0 !important;
    transition: 0.4s;
    width: 10% !important;
}

.btn3.btn4 {
    width: 20% !important;
}

.btn3:hover {
    background: #000;
    transition: 0.4s;
}

.contact-section {
    position: relative;
    width: 100%;
    padding: 65px 0px 45px;
    background: url(../image/cont-bg.png);
    background-size: cover;
    margin-top: 45px;
}

.contact-head {
    position: relative;
    margin-top: -40px;
    margin-bottom: 35px;
}

.contact-head h2 {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    background: #fff;
    display: inline-block;
    z-index: 99;
    position: relative;
    padding: 0px 30px 0px 30px;
}

.contact-head h2 span {
    color: #00bc61;
}

.location-section {
    position: relative;
    padding-left: 120px;
    margin-bottom: 40px;
}

.location-section:before {
    width: 23px;
    height: 32px;
    background: url(../image/pointer.png) no-repeat 0 0 #fff0;
    content: '';
    position: absolute;
    top: 0px;
    left: 120px;
    background-color: #fff;
}

.location-section-inner {
    border-left: solid 1px #ed4544;
    margin: 0 0 0 11px;
    padding-left: 30px;
}

.location-section-inner h2 {
    font-weight: 600;
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    color: #000;
}

.location-section-inner p {
    color: #000;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0px;
}

.form-section {
    background-color: #fff;
    padding: 50px;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 22%);
    border-radius: 8px;
    border-top: 4px solid #00bc61;
}

.career-form {
    background: url(../image/career-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    padding: 20px;
}

.career-form p {
    position: relative;
    padding-left: 60px;
    font-family: 'Poppins', sans-serif;
    color: #e31e24;
}

.career-form h3 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.career-form p:before {
    content: '';
    width: 50px;
    height: 3px;
    position: absolute;
    top: 10px;
    left: 0px;
    background-color: #e31e24;
    -webkit-transform: translate(0, -50%);
}

.career-form label {
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.career-form input {
    background-color: rgb(255 255 255);
    width: 100%;
    padding: 20px;
    border: none;
    outline: none;
    border-radius: 0;
    color: #222;
    font-size: 16px;
    margin-bottom: 25px;
}

.career-form textarea {
    background-color: rgb(255 255 255);
    width: 100%;
    padding: 20px;
    border: none;
    outline: none;
    border-radius: 0;
    color: #000;
    font-size: 16px;
    margin-bottom: 25px;
}

.career-form .btn3:hover {
    background: #fff;
    color: #000;
    transition: 0.4s;
}

/*.contact-head::after {
    display: block;
    content: "";
    -ms-flex-positive: 1;
    border-top: 1px solid #00bc61;
    width: 330px;
    margin-top: -19px;
    position: absolute;
    right: 91px;
}*/

.contact-head::before {
    display: block;
    content: "";
    -ms-flex-positive: 1;
    border-top: 1px solid #00bc61;
    width: 100%;
    margin-top: 19px;
    position: absolute;
}

.contact-section-inner {
    text-align: center;
    position: relative;
    padding: 15px;
    min-height: 212px;
    background: #fff;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    cursor: pointer;
    transition-duration: 2s;
    background-image: url(../image/call-to-shape-2.png);
    background-repeat: no-repeat;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: 0.4s;
}

.contact-section-inner:hover {
    background-color: #00bc61;
    transition: 0.4s;
}

.contact-section-inner:hover .contact-icon .fa {
    background: #fff;
    color: #00bc61;
    transition: 0.4s;
}

.contact-section-inner:hover h4 {
    color: #fff;
}

.contact-section-inner:hover p {
    color: #fff;
}

.contact-icon {
    position: relative;
}

.contact-icon .fa {
    background: #00bc61;
    color: #fbfbfb;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 25px;
    transition: 0.4s;
}

.contact-section-inner h4 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
}

.contact-section-inner p {
    color: #000;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    ;
}

.infrastructure {
    position: relative;
    padding: 45px 0px 45px;
    overflow: hidden;
    background: url(../image/infrastructure-bg.jpg);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

/*.fixed-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    text-align: right;
}*/

.space-border {
    height: 40px;
    width: 100%;
}

.infrastructure .row {
    align-items: center;
}

.infrastructure-left {
    position: relative;
}

.infrastructure-left img {
    width: 100%;
    position: relative;
    z-index: 9;
}

.infrastructure-right h4 {
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.infrastructure-right h4:after {
    content: "";
    width: 50px;
    position: absolute;
    height: 2px;
    background: #00bc61;
    left: 0;
    bottom: 0;
}

.infrastructure-right p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #333;
    text-align: justify
}

.infrastructure-overlay {
    position: absolute;
    bottom: -20px;
    width: 100%;
    height: 65%;
    background: #00bc61;
    left: -20px;
}

.product-section-inner {
    position: relative;
    padding: 45px 0px 45px;
    width: 100%;
}

.product-img img {
    width: 100%;
}

.product-img-inner ul {
    list-style: none;
    margin-top: 35px;
}

.product-img-inner ul li {
    display: inline-block;
    background: #f00;
    text-align: center;
    padding: 5px 10px 5px 10px;
    margin: 0px 5px 20px 0px;
}

.product-img-inner ul li h2 {
    color: #fff;
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: 700;
}

.product-img-inner ul li p {
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: 700;
    margin: 0;
}

.product-table h1 {
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.product-table h2 {
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.product-table .wht-btn-schedule-call:hover {
    background-position: 100%;
    color: #fff;
    background-image: -webkit-linear-gradient(30deg, transparent 50%, #000 50%);
    background-image: linear-gradient(30deg, transparent 50%, #000 50%);
}

.product-table .wht-btn-schedule-call {
    font-size: 16px;
    font-weight: 500;
    padding: 13px 50px;
    text-transform: uppercase;
    background: #fff;
    position: relative;
    color: #fff;
    border: 2px solid #00bc61;
    display: inline-block;
    background-image: -webkit-linear-gradient(30deg, #00bc61 50%, transparent 50%);
    background-image: linear-gradient(30deg, #00bc61 50%, transparent 50%);
    background-size: 600px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    margin-top: 15px;
}

.product-table table {
    width: 100%;
}

.product-table table th {
    background: #00bc61;
    color: #fff;
    padding: 5px 15px;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.product-table table td {
    border: 1px #ddd solid;
    font-size: 14px;
    color: #222;
    padding: 5px 15px;
    font-family: 'Poppins', sans-serif;
}

.product-img-inner img {
    width: 100%;
}

.product-features {
    position: relative;
    width: 100%;
    padding: 45px 0px;
    background: url(../image/bg.png);
}

.product-features:before {
    content: "";
    position: absolute;
    width: 100%;
    background: linear-gradient(to bottom, rgba(129, 184, 62, 0) 0%, rgba(129, 184, 62, 0.14) 7%, rgba(129, 184, 62, 0.16) 8%, rgba(129, 184, 62, 0.16) 50%, rgba(129, 184, 62, 0.16) 91%, rgba(0, 178, 227, 0) 100%);
    height: 100%;
    top: 0;
    left: 0;
}

.product-features .carousel-indicators li {
    background-color: #000;
}

.product-features .row {
    align-items: center;
}

.features-image {
    text-align: center;
    padding-bottom: 50px;
}

.product-feature-table table {
    width: 100%;
}

.product-feature-table table th {
    background: #222;
    color: #fff;
    padding: 8px 15px;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.product-feature-table table td {
    border: 1px #ddd solid;
    font-size: 16px;
    color: #222;
    padding: 15px 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

.product-feature-table table tr:nth-child(even) {
    background: #fceaea;
}

.product-feature-table table tr:nth-child(odd) {
    background: #fff;
}

.features-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.features-content {
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 25px 20px 15px 20px;
    border-radius: 5px;
    border-left: 2px #f00 solid;
}

.features-content h2 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.features-content ul {
    list-style: none;
}

.features-content ul li {
    background: #00bc61;
    display: inline-block;
    padding: 35px 10px 35px 10px;
    color: #fff;
    margin: 0px 10px 5px 0px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    width: 23%;
    text-align: center;
    min-height: 110px;
    vertical-align: bottom;
}

.contact-mapimg img {
    width: 100%;
}

.contact-mapimg {
    background: #fff;
    padding: 7px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px #00bc61 solid;
    border-radius: 5px;
    margin-bottom: 15px;
}

.form-section.career-form input {
    margin-bottom: 20px;
}

.event-section {
    width: 100%;
    position: relative;
    padding: 45px 0px 45px;
}

.event-section .heading-pro {
    margin-bottom: 45px;
}

.product-img {
    position: relative;
    background: #000;
    /* float: left; */
    /* margin: 15px; */
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 2px 6px rgb(0 0 0 / 38%);
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.product-img:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    transition: 0.5s;
    transform: scaleX(0);
    opacity: 0;
}

.product-img:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    box-sizing: border-box;
    transition: 0.5s;
    transform: scaleY(0);
    opacity: 0;
}

.product-img-section {
    z-index: 99;
    position: relative;
    display: block;
}

.product-img .product-img-section img {
    width: 100%;
    transition: 0.5s;
}

.product-img .product-img-content {
    position: absolute;
    /* transform: translateY(-50%); */
    z-index: 2;
    /* padding: 20px; */
    box-sizing: border-box;
    text-align: center;
}

.product-img .product-img-content h2 {
    font-size: 26px;
    color: #fff;
    z-index: 99999;
    position: relative;
}

.product-img .product-img-content h4 {
    font-size: 20px;
    color: #fff;
    z-index: 99999;
    position: relative;
}

.product-img .product-img-content .far {
    font-size: 60px;
    font-style: inherit;
    color: #fff;
    font-weight: 100;
}

.product-img:hover:before {
    transform: scaleX(1);
    opacity: 1;
}

.product-img:hover .product-img-section img {
    opacity: .2;
    transform: scale(1.2);
}

.product-img:hover:after {
    transform: scaleY(1);
    opacity: 1;
}

.video-features {
    position: relative;
    width: 100%;
    padding: 45px 0px 45px;
    background: #f9f9f9;
}

.video-inner {
    padding: 5px 5px 0px 5px;
    border: 1px #f00 solid;
}

.thankyou {
    position: relative;
    padding: 55px 0px 55px;
    background-color: #f2f2f2;
}

.thankyou-text-wrap h1 {
    font-size: 22px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .clients-slider .swiper-slide:after {
        left: 0;
        bottom: 0px;
        padding: 4px 0px 7px 0px;
        height: 14%;
        top: auto;
        transform: rotate(360deg);
    }
    .policy-block {
        min-height: 470px;
    }
    .features-image img {
        max-width: 256px;
    }
    .about-content1 p {
        font-size: 13px;
    }
    .about-content1 h2 {
        font-size: 30px;
        margin-bottom: 5px;
    }
    .navigation ul {
        margin: 0px 0px 0px 10px;
    }
    .logo {
        width: 210px !important;
    }
    .about-content p {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .side-menu .navbar-nav li a {
        font-size: 12px;
    }
    .side-menu .navbar-nav li {
        padding: 24px 13px;
    }
    .top-section {
        display: none;
    }
    .toggle-menu {
        display: none !important;
    }
    .logo {
        width: 220px !important;
    }
    .navigation a {
        padding: 47px 4px !important;
        font-size: 9px !important;
    }
    .clients-slider .swiper-slide:after {
        left: 0;
        bottom: 0px;
        padding: 4px 0px 7px 0px;
        height: 10%;
        top: auto;
        transform: rotate(360deg);
    }
    .product-img ul li {
        padding: 5px 7px 5px 3px;
        margin: 0px 5px 8px 0px;
    }
    .features-content ul li {
        padding: 25px 15px 25px 15px;
        margin: 0px 15px 12px 0px;
    }
    .policy-block {
        min-height: auto;
    }
    .about-img {
        margin-top: 40px;
    }
    .abt-img img {
        margin-bottom: 20px;
    }
    .about-content {
        padding-bottom: 25px;
        padding-right: 0px;
    }
}

@media (max-width: 767px) {
    /* ===================================
    Start Side Menu
====================================== */
    .side-menu .bg-overlay {
        background: rgb(2 1 1 / 96%);
    }
    .side-menu .bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .side-menu {
        width: 100%;
        position: fixed;
        right: 0;
        top: 0px;
        bottom: 0;
        background-image: url(../images/side-menu-bg.jpg);
        /*background:#ff480c;*/
        background-size: cover;
        background-position: center;
        z-index: 9999999;
        height: 100vh;
        -webkit-transform: translate3d(100%, 0%, 0);
        transform: translate3d(100%, 0%, 0);
        -webkit-transition: -webkit-transform .5s ease;
        transition: -webkit-transform .5s ease;
        -o-transition: -o-transform .5s ease;
        -o-transition: transform .5s ease;
        transition: transform .5s ease;
        -webkit-transition: transform .5s ease;
        overflow: hidden;
    }
    .fixed-hedder.fixed .side-menu .navbar-nav li a {
        padding: 14px 16px;
    }
    .side-menu.side-menu-active,
    .side-menu.before-side {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    /*Side overlay*/
    #close_side_menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        -webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
        -o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
        transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
        display: none;
        z-index: 1031;
        opacity: 0.4;
    }
    /*side clode btn*/
    .side-menu .btn-close {
        height: 33px;
        width: 33px;
        display: inline-block;
        text-align: center;
        position: absolute;
        top: 15px;
        right: 15px;
        cursor: pointer;
    }
    .header-appear~.side-menu .btn-close {
        top: 50px;
    }
    .side-menu.before-side .btn-close {
        display: none;
    }
    .side-menu .btn-close::before,
    .side-menu .btn-close::after {
        position: absolute;
        left: 16px;
        content: ' ';
        height: 24px;
        width: 2px;
        background: #fff;
        top: 5px;
    }
    .side-menu .btn-close:before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .side-menu .btn-close:after {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    /*side open btn*/
    .sidemenu_btn {
        -webkit-transition: all .3s linear;
        -o-transition: all .3s linear;
        transition: all .3s linear;
        width: 36px;
        padding: 6px;
        margin-right: 0px;
        margin-top: -20px;
        display: inline-block;
        position: absolute;
        right: 10px;
    }
    .download-brouchure a {
        padding: 6px 4px;
    }
    .download-brouchure a:hover {
        background: transparent;
        color: #fff;
        text-decoration: none;
        outline: none;
        transition-duration: 0.3s;
        transition: all 0.3s !important;
        transition-timing-function: ease-in-out;
        border-color: #fff;
    }
    .sidemenu_btn:hover {
        text-decoration: none;
        outline: none;
    }
    .sidemenu_btn:focus {
        text-decoration: none;
        outline: none;
    }
    .sidemenu_btn span {
        height: 2px;
        width: 100%;
        background: #d9261c;
        display: block;
        margin: auto;
        transition: .5s ease;
    }
    .sidemenu_btn:hover span {
        background: #d9261c;
    }
    .sidemenu_btn:hover span:first-child,
    .sidemenu_btn:hover span:last-child {
        width: 70%;
    }
    .menu-main {
        padding-top: 17px;
    }
    .sidemenu_btn span:nth-child(2) {
        margin: 4px 0;
    }
    .side-menu .navbar-nav {
        margin: 0px;
        width: 100%;
        text-align: left;
        display: block;
    }
    .side-menu .navbar-nav li:first-child a {
        padding-left: 16px;
    }
    .side-menu .inner-wrapper {
        /*padding: 44px 15px 0px 15px;
    height: 100%;
    position: relative;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;*/
        padding: 44px 15px 0px 15px;
        height: 100%;
        position: relative;
        overflow-y: auto;
        text-align: left;
    }
    .pul-menu.pushwrap .side-menu .inner-wrapper {
        padding: 3.5rem 2.5rem;
    }
    .side-menu .side-nav {
        margin-bottom: 30px;
        display: block;
    }
    .side-nav .navbar-nav li a {
        display: block;
        margin: 0px 0px;
        padding: 14px 16px;
        opacity: 0;
        -webkit-transition: all 0.8s ease 500ms;
        -o-transition: all 0.8s ease 500ms;
        transition: all 0.8s ease 500ms;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
        border-bottom: 1px solid #f2f2f2ba;
    }
    .side-nav .navbar-nav li a:hover {
        color: #fff;
    }
    .side-nav .navbar-nav li a:focus {
        color: #fff;
    }
    .side-menu .navbar-nav li ul li a {
        color: #000 !important;
    }
    .side-nav .navbar-nav li a:first-child {
        -webkit-transition-delay: .1s;
        -o-transition-delay: .1s;
        transition-delay: .1s;
    }
    .side-nav .navbar-nav li a:nth-child(2) {
        -webkit-transition-delay: .2s;
        -o-transition-delay: .2s;
        transition-delay: .2s;
    }
    .side-nav .navbar-nav li a:nth-child(3) {
        -webkit-transition-delay: .3s;
        -o-transition-delay: .3s;
        transition-delay: .3s;
    }
    .side-nav .navbar-nav li a:nth-child(4) {
        -webkit-transition-delay: .4s;
        -o-transition-delay: .4s;
        transition-delay: .4s;
    }
    .side-nav .navbar-nav li a:nth-child(5) {
        -webkit-transition-delay: .5s;
        -o-transition-delay: .5s;
        transition-delay: .5s;
    }
    .side-nav .navbar-nav li a:nth-child(6) {
        -webkit-transition-delay: .6s;
        -o-transition-delay: .6s;
        transition-delay: .6s;
    }
    .side-nav .navbar-nav li a:nth-child(7) {
        -webkit-transition-delay: .7s;
        -o-transition-delay: .7s;
        transition-delay: .7s;
    }
    .side-nav .navbar-nav li a:nth-child(8) {
        -webkit-transition-delay: .8s;
        -o-transition-delay: .8s;
        transition-delay: .8s;
    }
    .side-nav .navbar-nav li a:nth-child(9) {
        -webkit-transition-delay: .9s;
        -o-transition-delay: .9s;
        transition-delay: .9s;
    }
    .side-menu.side-menu-active .side-nav .navbar-nav li a {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        color: #fff;
    }
    .side-nav .navbar-nav li {
        display: block;
        color: #fff;
        padding: 0px 0px;
        position: relative;
        border-radius: 0;
        font-family: 'Poppins', sans-serif;
        box-shadow: none !important;
    }
    @-webkit-keyframes animationFade {
        from {
            opacity: 0;
            -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
        }
        to {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }
    @keyframes animationFade {
        from {
            opacity: 0;
            -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
        }
        to {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }
    .side-menu .navbar-nav li span {
        display: block;
        color: #000;
        padding: 9px 16px;
        font-size: 21px;
        z-index: 1;
        margin: 0px 0px 0px 0px;
        position: absolute;
        width: 100%;
        text-align: right;
    }
    .side-menu .navbar-nav li span:before {
        content: "";
        background: #f9f9f9;
        width: 50px;
        height: 46px;
        display: inline-block;
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: -1;
    }
    .side-menu .navbar-nav li span .fa {
        line-height: 42px;
    }
    .side-menu ul ul {
        width: 100%;
    }
    .side-menu .navbar-nav li a .fa {
        display: none;
    }
    .side-menu .navbar-nav li:hover>.mega-dropdown-menu {
        display: none;
    }
    .side-menu .navbar-nav li:hover>ul {
        display: none;
    }
    .side-menu .navbar-nav .simple-dropdown {
        right: 0;
        left: auto;
        width: 100%;
        overflow: scroll;
    }
    .side-menu .navbar-nav .simple-dropdown li a {
        /*padding:15px 12px 15px 12px;*/
    }
    .side-menu .navbar-nav .simple-dropdown li a:focus {
        color: #000;
    }
    .side-menu .navbar-nav .mega-dropdown-menu {
        right: 0;
        left: auto;
        width: 100%;
        overflow: scroll;
    }
    .side-menu .navbar-nav .mega-dropdown-menu li {
        position: relative;
        width: 100%;
        display: block;
        text-align: left;
    }
    .side-menu .navbar-nav .mega-dropdown-menu li a {
        min-height: auto;
        background: #fff;
        padding: 3px 5px;
    }
    .side-menu .navbar-nav .mega-dropdown-menu .icon {
        display: inline-block;
        vertical-align: top;
        width: 50px;
        height: 50px;
        background-position: center center;
        background-size: cover;
    }
    .side-menu .navbar-nav .mega-dropdown-menu li:hover .icon {
        width: 50px;
        height: 50px;
        background-position: center center;
        background-size: cover;
    }
    .side-menu .navbar-nav .mega-dropdown-menu p {
        display: inline-block;
        vertical-align: top;
        margin: 19px 0px 0px 15px;
        font-size: 14px;
    }
    .fixed-hedder.fixed .sidemenu_btn {
        margin-top: -15px;
    }
    .logo p {
        margin: 0px 0px 0px 15px;
        padding: 1px 0px 0px 0px;
        font-size: 14px;
        border-left: 0px solid #ff480c;
        width: 200px;
    }
    .logo img {
        width: 130px;
    }
    .track-toggle-track-ship li:first-child {
        width: 69%;
    }
    .track-toggle-track-ship li:nth-child(2) {
        width: 18%;
    }
    .track-toggle-track-ship li .trackfeild {
        font-size: 11px;
        padding: 0px 0px 0px 44px;
        height: 36px;
    }
    .track-toggle-track-ship li .mybtn {
        height: 36px;
        font-size: 14px;
    }
    .track-toggle-form .btn-close {
        right: 14px;
    }
    .top-right {
        display: none;
        float: right;
        vertical-align: middle;
    }
    .slide-text {
        position: absolute;
        top: 4%;
        width: 65%;
        z-index: 1;
    }
    .slide-text h6 {
        font-size: 14px;
    }
    .slide-text-inner p {
        color: #fff;
        font-size: 14px;
        margin-bottom: 0px;
    }
    .slide-text-inner h4 a {
        font-size: 12px;
    }
    .home-slider:before {
        width: 85%;
    }
    .top-left {
        text-align: center;
    }
    .top-right ul {
        text-align: center;
    }
    .carousel-control-next,
    .carousel-control-prev {
        z-index: 1 !important;
        opacity: 1 !important;
    }
    .top {
        display: none;
    }
    .carousel-indicators {
        z-index: 1 !important;
    }
    .fixed-hedder.fixed .logo-bar {
        background: #fff;
        padding: 11px 0px 0px 0px;
    }
    .fixed-hedder.fixed .side-menu .navbar-nav li {
        padding: 3px 0px;
    }
    .fixed-hedder.fixed .side-menu .navbar-nav li span:before {
        width: 50px;
        height: 52px;
        top: -6px;
    }
    .contact-form {
        width: 288px;
        height: 80%;
    }
    .about-left h3 {
        font-size: 26px;
    }
    .top-section {
        display: none;
    }
    .sidebarform {
        display: none;
    }
    .mega-item {
        position: unset !important;
    }
    .mega-item:before {
        display: none;
    }
    .chairman-content::after {
        display: none;
    }
    .clients-slider.swiper {
        margin: 15px;
    }
    .video-slider.swiper {
        margin: 15px;
    }
    .heading-pro h2 {
        font-size: 24px;
    }
    .chairman-content {
        padding: 15px;
        margin-bottom: 20px;
    }
    .chairman-content h3 {
        font-size: 21px;
    }
    .chairman-content h4 {
        font-size: 16px;
    }
    .chairman-content h6 {
        font-size: 12px;
    }
    .chairman-content p strong {
        font-size: 14px;
    }
    .footer-section ul {
        margin-top: 10px;
        padding-bottom: 28px;
    }
    .img-years {
        width: 100%;
        max-width: 130px;
    }
    .why-content {
        margin: 0px;
        padding: 0px;
    }
    .why-list h3 {
        font-size: 21px;
    }
    .infrastructure-left {
        position: relative;
        margin-bottom: 25px;
    }
    .space-border {
        height: 0px;
    }
    .infrastructure .row {
        align-items: center;
        flex-direction: row;
    }
    .infrastructure .manufacturing {
        order: 2;
    }
    .infrastructure .painting {
        order: 2;
    }
    .infrastructure .quality-control {
        order: 2;
    }
    .infrastructure .administrative {
        order: 2;
    }
    .features-content ul li {
        padding: 35px 15px 35px 15px;
        margin: 20px 0px 0px 0px;
        width: 46%;
    }
    .features-content {
        margin-bottom: 40px;
    }
    .about-overlay {
        padding: 30px 12px 6px 15px;
    }
    .features-image img {
        max-width: 260px;
    }
    .product-table table td {
        font-size: 13px;
    }
    .product-table table th {
        font-size: 18px;
    }
    .product-table h2 {
        font-size: 22px;
        margin-top: 15px;
    }
    .aboutinner {
        padding: 30px 0px 30px;
    }
    .about-img img {
        margin-left: 0px;
    }
    .about-img .ct-banner-title {
        display: none;
    }
    .location-section {
        padding-left: 0px;
    }
    .location-section:before {
        left: 0px;
    }
    .form-section h4 {
        font-size: 20px;
    }
    .contact-head::before {
        margin-top: 12px;
    }
    .contact-head h2 {
        font-size: 20px;
    }
    .form-section {
        padding: 15px;
    }
    .contact-form-page {
        padding: 20px 0px 45px;
    }
    .product-feature-table {
        margin-bottom: 25px;
    }
    .product-feature-table table td {
        font-size: 12px;
    }
    .about-content {
        padding-right: 0px;
        padding-bottom: 25px;
    }
    .abt-img img {
        margin-bottom: 20px;
    }
    .about-padding {
        padding-left: 0px;
    }
    .btn3 {
        width: 30% !important;
    }
}

@media (max-width: 576px) {
    .slide-text-inner p {
        font-size: 11px;
        line-height: 15px;
    }
    .slide-text h6 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    .footer-section ul {
        margin-top: 10px;
        padding-bottom: 28px;
        border-bottom: 1px #ddd solid;
    }
    .infrastructure-overlay {
        display: none;
    }
    .features-content ul li {
        padding: 35px 15px 35px 15px;
        margin: 20px 0px 0px 0px;
        width: 100%;
    }
}

.ff-layout-2column .ff-item-noprd.ff-part-width .ff-widget-control {
    width: 100%;
    padding: 10px 12px;
    border-radius: 25px;
    border: 1px #a5a5a5 solid;
    border-bottom: 3px #00bc61 solid;
    margin-bottom: 25px;
    height: 48px;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}