:root {
    --clr-primary: #D10000;
    --clr-black: #000000;
    --clr-white: #ffffff;
    --clr-paragraph: #606060;
    --clr-gradient: linear-gradient(97deg, #D10000, #740000);

    --ff-primary-text: "Titillium Web", sans-serif;
    --ff-body-text: var(--ff-primary-text);
    --ff-heading-text: var(--ff-primary-text);

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semi-bold: 600;
    --fw-bold: 700;

    --fs-14: 14px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-24: 24px;
    --fs-30: 30px;
    --fs-36: 36px;
    --fs-50: 50px;

    --fs-paragraph: var(--fs-16);
    --fs-heading: var(--fs-36);
    --fs-sub-heading: var(--fs-18);
    --fs-secondary-heading: var(--fs-24);
    --fs-banner-heading: var(--fs-50);
    --fs-button: var(--fs-16);

    --section-pad-80: 80px 0;
    --section-pad-40: 40px 0;
    --heading-pad: 15px 0;
    --button-pad: 15px 35px;
    --button-pad-2: 10px 20px;

    --margin-center-image: 0 auto;
    --margin-top: 10px 0 0 0;
    --margin-bottom: 0 0 20px 0;



}

/* Utility Class */
.clr-primary {
    color: var(--clr-primary);
}

.clr-black {
    color: var(--clr-black);
}

.clr-white {
    color: var(--clr-white);
}

.clr-paragraph {
    color: var(--clr-paragraph);
}

.clr-gradient {
    color: var(--clr-gradient);
}


.ff-primary-text {
    font-family: var(--ff-primary-text);
}

.ff-body-text {
    font-family: var(--ff-body-text);
}

.ff-heading-text {
    font-family: var(--ff-heading-text);
}

.fw-regular {
    font-weight: var(--fw-regular);
}

.fw-medium {
    font-weight: var(--fw-medium);
}

.fw-semi-bold {
    font-weight: var(--fw-semi-bold);
}

.fw-bold {
    font-weight: var(--fw-bold);
}

.fs-14 {
    font-size: var(--fs-14);
}

.fs-16 {
    font-size: var(--fs-16);
}

.fs-18 {
    font-size: var(--fs-18);
}

.fs-20 {
    font-size: var(--fs-20);
}

.fs-24 {
    font-size: var(--fs-24);
}

.fs-30 {
    font-size: var(--fs-30);
}

.fs-36 {
    font-size: var(--fs-36);
}

.fs-50 {
    font-size: var(--fs-50);
}


.fs-paragraph {
    font-size: var(--fs-paragraph);
}

.fs-heading {
    font-size: var(--fs-heading);
}

.fs-sub-heading {
    font-size: var(--fs-sub-heading);
}

.fs-secondary-heading {
    font-size: var(--fs-secondary-heading);
}

.fs-banner-heading {
    font-size: var(--fs-banner-heading);
}

.fs-button {
    font-size: var(--fs-button);
}

.section-pad-80 {
    padding: var(--section-pad-80);
}

.section-pad-40{
    padding: var(--section-pad-40);
}
.heading-pad-15 {
    padding: var(--heading-pad);
}


.primary-button {
    color: var(--clr-white);
    background: var(--clr-gradient);
    font-size: var(--fs-16);
    font-weight: var(--fw-regular);
    font-family: var(--ff-primary-text);
    border: none;
    border-radius: 5px;
    padding: var(--button-pad);
    text-decoration: none;
    text-transform: uppercase;
}

.primary-button:hover {
    background: var(--clr-black);
    transition: all ease 0.2s;
}


.primary-heading {
    font-family: var(--ff-primary-text);
    font-size: var(--fs-36);
    font-weight: var(--fw-semi-bold);
    line-height: 50px;
}

.banner-heading {
    font-family: var(--ff-primary-text);
    font-size: var(--fs-50);
    color: var(--clr-white);

}


.text-paragraph {
    font-family: var(--ff-primary-text);
    font-size: var(--fs-16);
    line-height: 30px;
    font-weight: var(--fw-regular);
}

.text-gradient {
    -webkit-text-fill-color: transparent;
    background: var(--clr-gradient);
    -webkit-background-clip: text;
}

.image-center {
    margin: var(--margin-center-image);
}

.margin-top {
    margin: var(--margin-top);
}

.margin-bottom {
    margin: var(--margin-bottom);
}

.text-center {
    text-align: center;
}

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
* {
    margin: 0;
    padding: 0;
    font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

ul li {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;

}

/* Set core body defaults */
body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
    max-width: 100%;
    display: block;
}


/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Custom Css */
.header {
    position: absolute;
    width: 100%;
    z-index: 1;
}

.header .licence ul {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.hero {
    background-image: url(../images/b1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.hero .overlay {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    height: 100vh;
    width: 100%;

}

.hero .slider-content {
    text-align: center;
    margin-top: 150px;

}
.banner-heading h1{
    line-height: 75px;
}



.hero .owl-nav,
.owl-dots {
    display: none;
}

.controlroom{
padding-top: 80px;
}
.controlroom img{
width: 100%;
height: 330px;
object-fit: cover;
border-radius: 10px;
}
.controlroom .control-cnt{
  text-align: center;
    margin-top: 100px;
}
.controlroom .control-cnt h2{
margin-bottom: 20px !important;
}
.about-content {
    padding-left: 30px;
}

.about-button {
    margin-top: 37px;
}

.about-image {
    position: relative;
}

.about-image img {
    float: right;
}


.experience-year {
    display: flex;
    gap: 13px;
    background: var(--clr-gradient);
    padding: 12px 30px;
    position: absolute;
    box-sizing: border-box;
    top: 400px;
    border-radius: 5px;
}

.parent {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.child1 {
    background: transparent;
    border: 1px solid #E0E0E0;
    padding: 17px 20px;
    border-radius: 5px;
}

.child1:hover {
    background: var(--clr-gradient);
    border: 1px solid var(--clr-primary);
    padding: 17px 20px;
    border-radius: 5px;
    color: var(--clr-white);
    transform: all ease 0.2s;
}

.yoursafe-cnt {
    background: url(../images/yoursafe.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    border-radius: 10px;
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
}


.yoursafe-overlay {
    content: "";
    position: absolute;
    background: var(--clr-gradient);
    opacity: 0.8;
    width: 100%;
    height: 200px;
    border-radius: 10px;


}

.yoursafe .yoursafe-cnt h2 {
    z-index: 1;
}

.form .form-style {
    margin: 0 0 20px 0;
    width: 100%;
    display: block;
    padding: 7px 15px;
    border-radius: 3px;
    border: 1px solid #DBDBDB;

}

.form .btn-primary {
    color: var(--clr-white);
    background: var(--clr-gradient);
    font-size: var(--fs-16);
    font-weight: var(--fw-regular);
    font-family: var(--ff-primary-text);
    border: none;
    border-radius: 5px;
    padding: var(--button-pad);
    text-decoration: none;
    text-transform: uppercase;
}

.form .btn-primary:hover {
    background: var(--clr-black);
    transition: all ease 0.2s;
}

.contact .owner ul {
    padding: 0;
}

.tracking-server .tracking-server-cnt {
    background: url(../images/trackingserver-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    border-radius: 10px;
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;

}

.tracking-server-cnt a {
    z-index: 1;
}

.brand {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: space-between;
    align-items: center;
}

.products {
    padding: 0 0 80px 0;
}

.products-cnt .owl-carousel .owl-item img {
    width: inherit;
}

.footer {
    background: var(--clr-black);
}

.footer i {
    color: var(--clr-white);
    margin-right: 20px;
}

.footer ul {
    padding: 0;
}

.bottom-footer {
    background: var(--clr-black);
}

.bottom-footer a {
    color: var(--clr-primary);
    text-decoration: none;
}


.small-banner{
    background: url(../images/yoursafe.png);
     background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    width: 100%;
}
.smalloverlay {
    position: absolute;
    background: var(--clr-black);
    opacity: 0.9;
    width: 100%;
    height: 250px;


}








/* Responsive */

@media only screen and (min-width:320px) and (max-width:768px) {
   
.controlroom{
padding: 0;
}
.controlroom .control-cnt{
margin: 40px 0 40px 0;
}

.primary-button {
    color: var(--clr-white);
    background: var(--clr-gradient);
    font-size: var(--fs-14);
    font-weight: var(--fw-regular);
    font-family: var(--ff-primary-text);
    border: none;
    border-radius: 3px;
    padding: var(--button-pad-2);
    text-decoration: none;
    text-transform: uppercase;
}

.primary-button:hover {
    background: var(--clr-black);
    transition: all ease 0.2s;
}


 .primary-heading {
        font-size: var(--fs-24);
        line-height: 34px;
    }

    .fs-16{
        font-size: var(--fs-14);
    }
    .fs-18{
        font-size: var(--fs-16);
    }
  .fs-20{
        font-size: var(--fs-16);
    }

    .fs-24{
        font-size: var(--fs-20);
    }

    .fs-30{
        font-size: var(--fs-24);
    }

    .banner-heading h1{
    font-size: var(--fs-30);
    line-height: 44px;
    }

    .text-paragraph{
        font-size: var(--fs-14);
        line-height: 26px;
    }

    .header .logo {
        display: block;
    }

    .licence {
        display: none;
    }

    .hero .owl-carousel {
        z-index: 0;
    }

    .about-content {
    padding-left: inherit;
    text-align: center;
    margin-bottom: 30px;
    padding: 0;
}

.about{
    padding: var(--section-pad-40);
}

.experience-year{
    position: inherit;
    top: 0;
}


.services h2{
    margin-bottom: 15px;
}
..services p{
    margin-bottom: 15px;
}
.yoursafe{
    padding: var(--section-pad-40);
}



.contact{
    text-align: center;
}
.contact .owner{
    margin-top: 30px;
}
.contact .owner img{
    margin: 0 auto;
}

.tracking-server{
    padding: var(--section-pad-40);
}
}