:root {
    --primaryColor: #B00017;
    --blueColor: #2E409A;
    --lightBg: #F8F8F8;
    --textColor: #4E4E4E;
    --darkColor: #1F1F1F;
    --blackColor: #000;
    --textColor: #747474;
    --whiteColor: #fff;
    --smPadding: 2rem 1.5rem;
    --lgPadding: 3rem 0
}

/* @font-face {
    font-family: 'gilroyRegular';
    src: url(../fonts/Gilroy-Regular.eot);
    src: url(../fonts/Gilroy-Regular.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Gilroy-Regular.otf) format('otf'),
        url(../fonts/Gilroy-Regular.svg#Gilroy-Regular) format('svg'),
        url(../fonts/Gilroy-Regular.woff) format('woff'),
        url(../fonts/Gilroy-Regular.ttf) format('truetype'),
        url(../fonts/Gilroy-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'gilroyMedium';
    src: url(../fonts/Gilroy-Medium.eot);
    src: url(../fonts/Gilroy-Medium.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Gilroy-Medium.otf) format('otf'),
        url(../fonts/Gilroy-Medium.svg#Gilroy-Medium) format('svg'),
        url(../fonts/Gilroy-Medium.ttf) format('truetype'),
        url(../fonts/Gilroy-Medium.woff) format('woff'),
        url(../fonts/Gilroy-Medium.woff2) format('woff2');
}

@font-face {
    font-family: 'gilroySemiBold';
    src: url(../fonts/Gilroy-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'gilroyHeavy';
    src: url(../fonts/Gilroy-Heavy.eot);
    src: url(../fonts/Gilroy-Heavy.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Gilroy-Heavy.otf) format('otf'),
        url(../fonts/Gilroy-Heavy.svg#Gilroy-Heavy) format('svg'),
        url(../fonts/Gilroy-Heavy.ttf) format('truetype'),
        url(../fonts/Gilroy-Heavy.woff) format('woff'),
        url(../fonts/Gilroy-Heavy.woff2) format('woff2');
}

@font-face {
    font-family: 'gilroyExtraBold';
    src: url(../fonts/Gilroy-ExtraBold.eot);
    src: url(../fonts/Gilroy-ExtraBold.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Gilroy-ExtraBold.otf) format('otf'),
        url(../fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold) format('svg'),
        url(../fonts/Gilroy-ExtraBold.ttf) format('truetype'),
        url(../fonts/Gilroy-ExtraBold.woff) format('woff'),
        url(../fonts/Gilroy-ExtraBold.woff2) format('woff2');
}

@font-face {
    font-family: 'gilroyBold';
    src: url(../fonts/Gilroy-Bold.eot);
    src: url(../fonts/Gilroy-Bold.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Gilroy-Bold.otf) format('otf'),
        url(../fonts/Gilroy-Bold.svg#Gilroy-Bold) format('svg'),
        url(../fonts/Gilroy-Bold.ttf) format('truetype'),
        url(../fonts/Gilroy-Bold.woff) format('woff'),
        url(../fonts/Gilroy-Bold.woff2) format('woff2');
}

@font-face {
    font-family: 'Gilroy-Black';
    src: url(../fonts/Gilroy-Black.eot);
    src: url(../fonts/Gilroy-Black.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Gilroy-Black.otf) format('otf'),
        url(../fonts/Gilroy-Black.svg#Gilroy-Black) format('svg'),
        url(../fonts/Gilroy-Black.ttf) format('truetype'),
        url(../fonts/Gilroy-Black.woff) format('woff'),
        url(../fonts/Gilroy-Black.woff2) format('woff2');
} */

body {
    font-family: Lato, serif;
}

/* start scroll */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: var(--whiteColor);
}

::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primaryColor);
}

/* end scroll */


@keyframes heading {
    0% {
        width: 150px;
    }

    50% {
        width: 50px;
    }

    100% {
        width: 150px;
    }
}

/* start common css */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

p {
    line-height: 1.6;
    margin-bottom: 0;
}

h1,
h2 {
    /* font-family: gilroyExtraBold; */
    font-family: "Josefin Slab";
    font-weight: 900;
}

h3,
h4,
h5,
h6 {
    /* font-family: gilroyBold; */
}

.text-primary {
    color: var(--primaryColor) !important;
}

.text-blue {
    color: var(--blueColor) !important;
}

.w-fit {
    width: fit-content;
}

section,
footer {
    padding: var(--smPadding);
}

.btn-primary {
    background-color: var(--primaryColor) !important;
    border: 0;
    /* font-family: gilroyBold; */
    width: fit-content;
}

.btn-primary:hover {
    box-shadow: inset 0 1.5em 0em 0em var(--darkColor), inset 0 -1.5em 0em 0em var(--darkColor);
    border-color: var(--darkColor);
    color: #fff;
    transition: .5s ease-out;
}

.heading h2 {
    color: var(--blueColor) !important;
}

.heading h2::before {
    content: '';
    background-color: var(--primaryColor);
    width: 70px;
    height: 2px;
    position: absolute;
    inset: 0 0 -52px 0;
    margin: auto;
    animation: heading 7s linear infinite;
}

.heading-left h2::before {
    inset: 0 0 -25px 15px;
    margin: auto auto auto 0;
}

.inner-heading h2::before, .left-heading h2::before {
    margin: auto auto auto 0;
}

.inner-heading h2 {
    font-size: 25px;
}


.cursor-pointer {
    cursor: pointer;
}

/* main {
    padding-top: 230px;
} */

.owl-carousel .animated {
    animation-duration: 5000ms;
    animation-fill-mode: both;
}

.owl-stage {
    transition: all 1s ease 0s !important;
}

/* end common css */

/* Header css start */
header {
    box-shadow: 0 0 7px #8080804f;
}
header .header-line {
    background-color: var(--darkColor);
}

header .header-menu .logo {
    width: 179px;
    transition: .5s ease-out;
}

header .header-menu .btn-primary {
    font-size: 14px;
}

header .header-menu .menu i {
    font-size: 30px;
}

/* header .header-menu .menu.active {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
} */

header .header-menu ul .links-li {
    padding: 16px 0;
    border-bottom: 1px dotted var(--whiteColor);
    font-family: Lato, sans-serif;
    font-weight: 900;
}

header .header-menu ul .links-li:first-child {
    padding-top: 0;
}

header .header-menu ul .links-li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

header .header-menu ul .links-li .link {
    color: white;
}

header .header-menu .menu-links {
    width: 0;
    transition: all 0.5s;
    height: fit-content;
    position: fixed;
    top: 230px;
    right: 0;
    z-index: 15;
    background-color: var(--darkColor);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

header .header-menu .menu-links .follow-list {
    gap: 10px;
}

header .header-menu .menu-links .follow-list a {
    width: 30px;
    height: 30px;
}

header .header-menu .menu-links .menu-toggle {
    color: #F60707;
}

header .header-menu .menu.active+.menu-links {
    padding: 15px;
    width: 100%;
}

header .header-menu .menu.active+.menu-links .menu-toggle {
    display: flex;
    font-size: 30px;
}

header .btn-light {
    font-size: 12px;
}

/* header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    transition: .5s ease-out;
    background: var(--whiteColor);
} */

header .sticky {
    transition: .5s ease-out;
    box-shadow: 0 0 10px grey;
}

header .sticky .header-menu .logo {
    transition: .5s ease-out;
    width: 80px;
}

header .sticky-up {
    top: -100px;
}

/* header .sticky .header-line {
    display: none !important;
} */

/* Header css end */

/* start banner section */
.banner .carousel-item {
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url('../img/mob-bg-2.png');
    padding: 2rem;
}

.banner .carousel-item .itco-shield {
    width: 90px;
}

.banner .carousel-control-next, .carousel-control-prev {
    height: fit-content;
    bottom: 0;
    top: 0;
    margin: auto;
}

.banner .carousel-item .product-img img {
    width: 145px;
    height: 195px;
}

.banner .carousel .carousel-control-prev-icon {
    background-image: url("../img/left-nav.svg");
}

.banner .carousel .carousel-control-next-icon {
    background-image: url("../img/side-nav.svg");
}



/* end banner section */

/* start about us section */
.about-us h4 {
    font-size: 25px;
}

/* end about us section */


/* start content section */
.content {
    background-color: var(--lightBg);
}

/* end content section */

/* start machine-list section */
.machine-list {
    background-color: var(--lightBg);
}

.machine-list .item {
    background: var(--whiteColor);
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 0 10px #00000026;
    display: block;
}

.machine-list .item h6 {
    background-color: #626262;
    padding: 10px;
    border-radius: 5px;
}

/* end machine-list section */

/* start contact section */
.contact {
    background: url("../img/contact-bg.png") no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* end contact section */

/* start showcase section */
.showcase .product-showcase {
    background-color: #F2F7FF;
    border: 1px solid #C2D0E5;
    padding: 1rem;
    width: 90%;
    margin: auto;
    border-radius: 5px;
}

/* .showcase .product {
    background-color: #F2F7FF;
    border: 1px solid #C2D0E5;
    padding: 1rem;
    width: 90%;
    margin: auto;
    border-radius: 5px;
} */

.showcase .product h1 {
    font-size: 20px;
    /* font-family: gilroyBold; */
}

.showcase .product h3 {
    font-size: 18px;
}

.showcase .product .details-box {
    background-color: #5c5c5c;
    border-radius: 5px;
    padding: 10px;
}

.showcase .product .details-box li {
    border-bottom: 0.01px dashed #f8f8f88a;
    padding: 5px 0;
    color: var(--whiteColor)
}

.showcase .product .details-box li:last-child {
    border: 0;
    padding-bottom: 0;
}

.showcase .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.showcase .owl-dots .owl-dot, .carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    opacity: .5;
}

.showcase .owl-dots .owl-dot.active, .carousel-indicators .active {
    opacity: 1;
}

.showcase .carousel-control-next, .showcase  .carousel-control-prev {
    background-color: #b00017;
    height: fit-content;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    padding: 5px;
    opacity: .7;
    top: 0;
    bottom: 0;
    margin: auto 40px;
}

/* end showcase section */

/* start trail-video section */
.trail-video iframe {
    border-radius: 10px;
    width: 90%;
    margin: auto;
}

.trail-video .owl-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 25px;
}

.trail-video .owl-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    opacity: .5;
}

.trail-video .owl-dot.active {
    opacity: 1;
}

/* end trail-video section */

/* start why-prefer section */
.why-prefer .item .icon {
    border: 1px solid #DDDDDD;
    width: 60px;
    height: 60px;
    display: block;
    text-align: center;
    padding: 18px 14px 14px 14px;
    border-radius: 50px;
}

/* end why-prefer section */

/* start why-prefer section */
.why-prefer .grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 1rem;
}

.why-prefer .grid-container .item {
    width: 75%;
    font-size: 14px;
    margin: auto;
}

/* end why-preder section */


/* Footer css start */
footer {
    background-color: var(--darkColor);
}

footer .footer-info span {
    background-color: var(--primaryColor);
    min-width: 34px;
    height: 30px;
    border-radius: 4px;
    margin-right: 10px;
}

footer .footer-logo {
    max-width: 150px;
}

footer .nav-link {
    gap: 15px;
    display: grid;
    color: var(--whiteColor) !important;
}

footer .nav-link li:hover {
    color: #999;
}

footer .nav-head::before {
    content: '';
    background-color: var(--primaryColor);
    width: 70px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -7px;
    animation: heading 7s linear infinite;
}

footer .follow-us {
    gap: 10px;
}

footer .follow-us a {
    width: 43px;
    height: 37px;
}

.copyright {
    background-color: #14181C;
}

/* Footer css end */

/* start scroll-top-wrapper */

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background-color: var(--primaryColor);
    color: #eeeeee;
    width: 50px;
    height: 48px;
    line-height: 48px;
    right: 30px;
    bottom: 30px;
    padding-top: 2px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.scroll-top-wrapper:hover {
    background-color: var(--darkColor);
}

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1.0;
    z-index: 2;
}

.scroll-top-wrapper i.fa {
    line-height: inherit;
}

/* end scroll-top-wrapper */


/* start inner banner */

.inner-banner {
    /* background-image: url('../img/inner-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 170px;
    color: white; */
    border-bottom: 1px solid var(--primaryColor);
}

/* start detail-nav css */
.detail-nav .machine-list {
    background-color: #F2F7FF;
    border: 1px solid #C2D0E5;
    border-radius: 7px;
    padding: 10px;
}

.detail-nav .machine-list a strong {
    color: var(--primaryColor);
}

.detail-nav .machine-list a.active {
    background-color: #5c5c5c;
    border-radius: 7px;
    padding: 10px;
    color: var(--whiteColor) !important;
}

.detail-nav .machine-list a.active strong {
    color: var(--whiteColor);
}

.detail-nav .machine-img-content .machine-img {
    background: var(--whiteColor);
    border: 1px solid #ddd;
    display: block;
    padding: 10px;
    text-align: center;
}

.detail-nav .tech-head .social-icon li {
    width: 29px;
}

.detail-nav .table {
    border: 1px solid #ddd;
}

/* end detail-nav css */

/* start contact-us page css */

.contact-us .form {
    width: 100%;
    background-color: var(--whiteColor);
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 2;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-form {
    background-color: var(--darkColor);
    position: relative;
}

.contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: var(--darkColor);
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.input-container {
    position: relative;
    margin: 1rem 0;
}

.input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

.input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.input-container span:before,
.input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #1f1f1f;
    top: 50%;
    transform: translateY(-50%);
}

.input-container span:before {
    left: 50%;
}

.input-container span:after {
    right: 50%;
}

.input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}


.social-icons a {
    width: 35px;
    height: 35px;
}

.social-icons a:hover {
    transform: scale(1.05);
}

/* end contact-us page css */

/* start machine-details page css */
.machine-list.owl-carousel {
    background-color: transparent;
    border: 0;
    padding: 0;
}

.machine-list.owl-carousel a {
    background-color: #F2F7FF;
    border: 1px solid #C2D0E5;
    display: block;
    width: 99%;
}

.machine-list.owl-carousel a img {
    width: 190px;
    margin: 5px auto;
}

/* end machine-details page css */




.error {
    color: red !important;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #b00015;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    z-index: 99999 !important;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.loader-div{
    background: rgba(0,0,0,.5);
    position: fixed;
    z-index: 99999 !important;
    width:100%;
    height:100%;
}





