:root {
    --nav-color: rgb(59, 59, 59);
    --link-color: rgb(146, 16, 16);
    --link-gradient: linear-gradient(90deg, rgba(243, 35, 35, 1) 0%, rgba(124, 39, 39, 1) 100%);
    --p-color: rgb(99, 3, 3);
}

body {
    font-family: "Rubik", sans-serif !important;
    background: url(../images/background.jpg);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}


img,
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-image {
    height: 50px;
    width: 100%;
    overflow: hidden;
}

.navbar-links>li>a {
    font-size: 16px;
    color: var(--nav-color) !important;
    font-weight: 600;
}


.navbar-links>li>a#active,
.navbar-links>li>a:hover {
    border-bottom: 2px solid var(--nav-color);
}

.home-first {
    margin-top: 4rem;
}

.home-video,
.home-first {
    height: 500px
}

.home-video {
    width: 100%;
    overflow: hidden;
    position: absolute;
}

.home-first div:nth-child(2) {
    padding-top: 8rem;
    padding-left: 6rem;
}

.home-first h1,
.home-second h1,
.home-third h1,
.home-second h2,
.product h2 {
    background: -webkit-linear-gradient(90deg, rgba(243, 35, 35, 1) 0%, rgba(124, 39, 39, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 55px;
}

.home-first p {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--p-color);
}

.home-second h1,
.home-third h1 {
    font-size: 35px;
}

.home-second hr,
.home-third hr {
    opacity: 0.7;
    width: 25%;
    border: 2px solid var(--p-color);
    border-radius: 10px;
    margin-top: 10px;
}

.home-second p {
    color: var(--p-color);
}

.home-second a {
    font-size: 18px;
    font-weight: 600;
    padding: 3px 18px;
    border: 2px solid var(--link-color);
    border-radius: 30px;
    text-decoration: none;
    color: var(--p-color);
    transition: all 0.2s ease-in-out;
}

.home-second a:hover {
    background: var(--link-gradient);
    color: white !important;
}

.home-third .product-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

.footer {
    background: var(--link-gradient);
    color: white;
}

.footer ul {
    list-style: none;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.application>ul {
    list-style: circle;
}

.footer a {
    text-decoration: none;
    color: white;
}

.footer a:hover {
    color: rgb(194, 78, 78);
}

.about-image {
    width: 300px;
}

.product h2 {
    box-shadow: 0px 0px 18px 0px #747474;
    border-radius: 15px;
    padding: 10px 40px;
}

.product a{
    text-decoration: none;
    color: black;
}

.product #active {
    font-weight: bold;
    color: rgb(48, 48, 48) !important;
}

.product a:hover {
    text-decoration: underline;
}

.technical table td {
    border: 2px solid black;
    width: 300px;
    padding: 5px 20px;
}

.enquiry label {
    width: 250px;
}

.enquiry input,
.enquiry select,
.enquiry textarea {
    outline: none;
    border: 1px solid rgb(139, 139, 139);
    border-radius: 5px;
    padding: 5px 10px;
    width: 100%;
}

.enquiry button {
    padding: 5px 30px;
    color: var(--p-color);
    border-radius: 10px;
    border: 2px solid;
    transition: all 0.2s ease-in-out;
    font-size: 20px;
}

.enquiry button:hover {
    border: 2px solid;
    background: var(--link-gradient);
    color: white;
}

.product-card h5{
    text-align: center;
    color: white;
}   

.loader {
    position: absolute;
    z-index: 999999;
    top: 0;
    height: 100vh;
    width: 100%;
}