
/*#region Master*/
:root {
    --main-colour: #0297fd;
    --text-black: #1c1c1c;
    --text-gray: #5c5c5c;
    --light-blue-colour: #00cef3;
    --screen-sm-padding: 45px 0;
    --screen-lg-padding: 75px 0;
}

body {
    position: relative;
    padding: 0;
    text-rendering: optimizeSpeed;
    color: var(--text-black);
    font-size: 14px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

a, input {
    outline: 0;
    text-decoration: none;
}

    /* Change Autocomplete styles in Chrome*/
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
        -webkit-text-fill-color: #353535;
        -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
        transition: background-color 5000s ease-in-out 0s;
    }

a {
    color: var(--main-colour);
}

    a:hover {
        text-decoration: none;
        color: var(--main-colour);
    }

ul {
    list-style: none;
    padding: 0;
}

.modal-loading {
    position: fixed;
    z-index: 1056;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    background-color: Black;
    opacity: 0.85;
    -moz-opacity: 0.85;
}


#Progress {
    position: fixed;
    width: 64px;
    height: 64px;
    text-align: center;
    z-index: 1058;
    top: 40%;
    margin: 0 auto;
    display: flex;
    left: 0;
    right: 0;
    color: #fff;
}

#back-top {
    bottom: 1.2rem;
    margin: 0;
    position: fixed;
    right: 1rem;
    z-index: 99999;
}

    #back-top a {
        background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
        height: 40px;
        text-decoration: none;
        width: 40px;
        transition: all 200ms linear 0s;
        border-radius: 10px;
        align-items: center;
        display: grid;
    }

        #back-top a:hover, #back-top a:active {
            background-color: var(--main-colour);
            color: var(--darker-text-gray);
        }

        #back-top a i {
            color: #fff;
            display: block;
            font-size: 24px;
            margin: 0 auto;
            text-align: center;
            height: 25px;
        }

.back-top-captcha {
    bottom: 6.5rem !important;
}

.btn-main {
    background-color: var(--main-colour);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding: 5px 25px;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .btn-main:hover {
        border-color: var(--main-colour);
        background-color: #fff;
        outline: 0;
        color: var(--main-colour) !important;
    }

.cursor-pointer {
    cursor: pointer;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: var(--main-colour);
    opacity: 1;
}

.form-switch .form-check-input {
    margin-top: 2.3px !important;
    width: 2.2em;
    height: 1.2em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(69, 85, 96,1)'/%3e%3c/svg%3e");
}

.form-check-input:checked {
    background-color: var(--main-colour) !important;
    border-color: var(--main-colour) !important;
}

.form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255, 255, 255,1)'/%3e%3c/svg%3e");
}

.input-validation-error {
    border-color: var(--bs-form-invalid-border-color) !important;
    border-width: 1px !important;
    border-style: solid !important;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

    .input-validation-error:focus {
        border-color: var(--bs-form-invalid-border-color) !important;
        box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .15) !important;
    }

/* Override any border utility classes when validation error occurs */
.form-control.border-0.input-validation-error,
.form-select.border-0.input-validation-error {
    border: 1px solid var(--bs-form-invalid-border-color) !important;
}

.form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
    opacity: 1 !important;
}


.section-title {
    margin-bottom: 20px;
}

    .section-title h2 {
        font-size: 12px;
        font-weight: 500;
        padding: 0;
        line-height: 1px;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #aaaaaa;
        margin-bottom: 10px;
    }

        .section-title h2:after {
            content: "";
            width: 120px;
            height: 4px;
            display: inline-block;
            background: var(--main-colour);
            margin: 2px 10px;
        }

    .section-title p {
        margin: unset;
        font-size: 22px !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        color: var(--text-black);
    }

    .section-title span {
        color: var(--main-colour);
    }


.feature-item {
    padding: 16px 18px;
    border: 1px solid #edebfd;
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }

    .feature-item i {
        color: var(--main-colour);
        display: inline-flex;
        align-items: center;
        margin-right: 20px;
        font-size: 30px;
    }

    .feature-item .content h5 {
        color: var(--main-colour);
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

.block-icon {
    width: 56px;
    height: 56px;
    background: var(--main-colour);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    box-shadow: 0 4px 12px rgba(2, 151, 253, 0.25);
}

    .block-icon i {
        font-size: 20px;
    }

/*#endregion*/

/*#region Navbar*/

.navbar {
    background: #fff;
    transition: all 0.5s;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

    .navbar img {
        height: 85px;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 1px;
        padding: 5px 20px;
        color: var(--text-black);
        border-radius: 60px;
        text-transform: capitalize;
    }

/*#endregion*/

/*#region Banner*/

.banner {
    height: 626px;
}

    .banner .carousel-item {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        overflow: hidden;
        background-position: 61%;
        background-size: cover;
        background-image: url(/media/banner.jpg);
    }

        .banner .carousel-item::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 3;
            background-color: #000;
            opacity: 0.4;
        }

    .banner .carousel-caption {
        left: 5%;
        text-align: left;
        z-index: 3;
        top: 15%;
        z-index: 999;
    }

        .banner .carousel-caption label, .banner .carousel-caption p {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 5px;
        }

        .banner .carousel-caption h5 {
            font-size: 33px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }

        .banner .carousel-caption p {
            font-size: 18px;
            margin-bottom: 15px;
        }

    .banner .btn-main:hover {
        border-color: #fff;
        background-color: transparent;
        color: #fff !important;
    }

/*#endregion*/

/*#region About Us*/

.about-us {
    padding: var(--screen-sm-padding);
}

/*#endregion*/

/*#region What We Do*/

.what-we-do {
    padding: var(--screen-sm-padding);
}

    .what-we-do .section-title h2::after {
        content: none;
    }

    .what-we-do h4 {
        color: var(--main-colour);
        font-size: 24px;
    }

    .what-we-do .padding-box {
        padding: 20px 20px;
        border: 1px solid #edebfd;
        margin-right: unset;
    }

        .what-we-do .padding-box ul {
            padding: unset;
            list-style: none;
        }

        .what-we-do .padding-box li {
            margin-bottom: 15px;
        }

            .what-we-do .padding-box li:last-child {
                margin-bottom: 0px;
            }

            .what-we-do .padding-box li a {
                display: flex;
                font-size: 18px;
                font-weight: 600;
                padding: 15px 25px;
                border-radius: 5px;
                align-items: center;
                color: var(--main-colour);
                justify-content: space-between;
                background: #f9fcfe;
            }

                .what-we-do .padding-box li a:hover, .what-we-do .padding-box li a.active {
                    color: white;
                    background: var(--main-colour);
                }

    .what-we-do h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
        color: var(--main-colour);
    }

    .what-we-do .icon-content {
        display: flex;
        margin-bottom: 20px;
        transition: 0.5s;
    }

    .what-we-do .item-icon {
        border: none;
        display: flex;
        align-items: center;
        color: var(--main-colour);
        transition: 0.5s;
        margin-right: 20px;
    }

        .what-we-do .item-icon i {
            width: 20px;
            height: 20px;
        }

    .what-we-do label {
        color: var(--text-gray);
        margin: auto 0;
    }

/*#endregion*/

/*#region Services*/

.services {
    padding: var(--screen-sm-padding);
    background-color: #f9fcfe;
}

    .services .section-title {
        margin-bottom: 50px;
    }

    .services .icon-box {
        padding: 50px 20px 40px 20px;
        text-align: center;
        position: relative;
        background: #fff;
        border-radius: 5px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

        .services .icon-box:hover .icon {
            background: #fff;
            border: 2px solid var(--main-colour);
        }

        .services .icon-box .icon i {
            color: #fff;
        }

        .services .icon-box:hover .icon i {
            color: var(--main-colour);
        }

    .services .icon {
        position: absolute;
        top: -36px;
        left: calc(50% - 36px);
        transition: 0.2s;
        border-radius: 50%;
        border: 6px solid #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        width: 72px;
        height: 72px;
        background: var(--main-colour);
    }

    .services .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
        text-transform: uppercase;
        color: var(--main-colour);
    }

    .services .icon-box p {
        font-size: 14px;
        color: var(--text-gray);
        margin: unset;
    }

    .services .icon-box .icon i {
        font-size: 25px;
    }

/*#endregion*/

/*#region Superkleen Page*/

/*#region Multi-Purpose Degreaser & Cleaner*/

.multi-purpose-degreaser {
    padding: var(--screen-sm-padding);
}

    .multi-purpose-degreaser .block-icon {
        width: 40px;
        height: 40px;
    }

        .multi-purpose-degreaser .block-icon i {
            font-size: 14px;
        }

        .multi-purpose-degreaser a {
            color: var(--text-black);
            font-size: 14px;
        }

         .multi-purpose-degreaser a:hover {
             color: var(--main-colour);
         }

/*#endregion*/

/*#region What is SK7 Superkleen*/

.about-superkleen {
    padding: var(--screen-sm-padding);
    background-color: #f9fcfe;
}

    .about-superkleen h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
        color: var(--main-colour);
    }

/*#endregion*/

/*#region How It Works*/

.how-it-works {
    padding: var(--screen-sm-padding);
}

/*#endregion*/

/*#region Versatile Applications*/

.versatile-applications {
    padding: var(--screen-sm-padding);
    background-color: #f9fcfe;
}

    .versatile-applications h3 {
        font-weight: 500;
        margin-bottom: 20px;
        font-size: 25px;
        color: var(--text-gray);
    }

    .versatile-applications h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
        color: var(--main-colour);
    }

/*#endregion*/

/*#region The Ultimate Water-Based Multi-Purpose Cleaner*/

.multi-purpose-cleaner {
    padding: var(--screen-sm-padding);
}

/*#endregion*/

/*#endregion*/

/*#region Contact us*/

.contact-us {
    padding: var(--screen-sm-padding);
    background-color: #F9FCFE;
}

    .contact-us .info-box {
        color: var(--main-colour);
        text-align: center;
        box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
        padding: 20px 0 30px 0;
        background: #f7f7f7;
    }

        .contact-us .info-box i {
            font-size: 32px;
            color: var(--main-colour);
            padding: 8px;
        }

        .contact-us .info-box h3 {
            font-size: 18px;
            color: var(--text-gray);
            font-weight: 700;
            margin: 10px 0;
        }

        .contact-us .info-box p {
            font-weight: 600;
            margin: unset;
        }

    .contact-us .qualification-block {
        padding: 25px;
    }

    .contact-us .qualification-content {
        text-align: left;
    }

    .contact-us .contact-person-detail {
        padding: 8px;
        position: relative;
        display: table;
    }

        .contact-us .contact-person-detail p {
            color: var(--text-gray);
        }

    .contact-us .form-control:focus {
        box-shadow: unset;
    }

    .contact-us .form-switch label {
        color: var(--text-black) !important;
    }

    .contact-us .message {
        height: 150px;
    }

/*#endregion*/

/*#region Footer*/

.footer {
    padding-top: 25px;
    background-color: #ededed;
}

    .footer .container {
        padding-bottom: 25px;
    }

    .footer .footer-block img {
        width: 145px;
        margin-bottom: 20px;
    }

    .footer .footer-block h2 {
        font-size: 16px;
        font-weight: 700;
        color: var(--main-colour);
    }

    .footer .footer-block p {
        font-size: 13px;
        color: var(--text-black);
    }

    .footer .footer-block .quick-links {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
    }

        .footer .footer-block .quick-links li {
            width: 100%;
            margin-bottom: 10px;
        }

            .footer .footer-block .quick-links li a {
                position: relative;
                color: var(--text-black);
                transition: 0.5s;
                font-size: 14px
            }

                .footer .footer-block .quick-links li a::before {
                    content: "\f061";
                    font-weight: 600;
                    font-size: 14px;
                    left: 0;
                    opacity: 0;
                    transition: 0.5s;
                    position: absolute;
                    font-family: "Font Awesome 7 Free";
                }

                .footer .footer-block .quick-links li a:hover {
                    padding-left: 20px;
                    font-weight: 500;
                    text-decoration: underline;
                    color: var(--main-colour);
                }

                    .footer .footer-block .quick-links li a:hover::before {
                        opacity: 1;
                        color: var(--main-colour);
                    }

    .footer .copyright_area {
        background: #fff;
        color: var(--text-black);
        text-align: center;
        padding: 30px 15px;
        font-size: 12px;
    }

        .footer .copyright_area a {
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            color: var(--main-colour);
        }

/*#endregion*/

/*#region Privacy Policy*/

.privacy {
    padding-top: 45px; /*80px for navbar height*/
    padding-bottom: 50px;
    position: relative;
}

    .privacy h2 {
        font-size: 30px;
        font-weight: bold;
        color: var(--normal-text-gray);
    }

    .privacy p {
        font-size: 16px;
        line-height: 33px;
        color: var(--text-grey);
    }

/*#endregion*/

/*#region Error Page*/

.error-page-1 {
    padding: 50px 0;
}

    .error-page-1 img {
        margin-bottom: 25px;
    }

    .error-page-1 h1 {
        font-size: 45px;
        font-weight: 800;
    }

    .error-page-1 h2 {
        font-size: 35px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .error-page-1 p {
        font-size: 14px;
    }

/*#endregion*/


/*RESPONSIVE STYLES PER BREAK POINT*/

/* SM Screen (600px and up) */
@media (min-width: 600px) {

    .btn-main {
        display: inline-block;
    }
}

/* MD Breakpoint (tablets, 768px and up) */
@media (min-width: 768px) {

    /*#region Banner*/

    .banner p {
        font-size: 25px;
        line-height: 35px !important;
    }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 35px;
    }

    /*#endregion*/

}


/* LG Breakpoint (tablets, 992px and up) */
@media (min-width: 992px) {

    /*#region Navbar*/

    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }

        .navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link.active {
            background-color: var(--main-colour);
            color: #fff !important;
            transition: all 0.3s ease-in-out 0s;
        }

    /*#endregion*/

    /*#region About Us*/

    .about-us {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region What We Do*/

    .what-we-do {
        padding: var(--screen-lg-padding);
    }

        .what-we-do .padding-box {
            margin-right: 50px;
        }

    /*#endregion*/

    /*#region Services*/

    .services {
        padding: var(--screen-lg-padding)
    }

        .services .section-title {
            margin-bottom: 70px;
        }

    /*#endregion*/

    /*#region Superkleen Page*/

    /*#region Multi-Purpose Degreaser & Cleaner*/

    .multi-purpose-degreaser {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region What is SK7 Superkleen*/

    .about-superkleen {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region How It Works*/

    .how-it-works {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Versatile Applications*/

    .versatile-applications {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region The Ultimate Water-Based Multi-Purpose Cleaner*/

    .multi-purpose-cleaner {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#endregion*/

    /*#region Contact Us*/

    .contact-us {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Footer*/

    .footer {
        padding-top: 50px;
    }

        .footer .container {
            padding-bottom: 50px;
        }

        .footer .footer-block {
            margin-bottom: 0px;
        }

            .footer .footer-block p {
                margin: unset;
            }

        .footer .copyright_area, .footer .copyright_area a {
            font-size: 14px;
        }


        .footer .footer-block .quick-links li:last-child {
            margin-bottom: unset;
        }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy {
        padding: var(--screen-lg-padding);
    }

        .privacy h2 {
            font-size: 40px;
        }

    /*#endregion*/

}


/* Normal Screen 18 Inch - 19 Inch ( (Resolution 1366x768 ) 1349px and up) */
@media (min-width: 1349px) {

    .section-title {
        margin-bottom: 40px;
    }

        .section-title p {
            font-size: 34px !important;
        }

        p {
            font-size: 16px;
        }

    /*#region Banner*/

    .banner .carousel-caption {
        top: 10%;
        left: 9%;
        right: 9%;
    }

    .banner .carousel {
        height: 775px;
    }

    .banner .carousel-caption label, .banner .carousel-caption p {
        font-size: 25px;
    }

    .banner .carousel-caption h5 {
        font-size: 65px
    }

    /*#endregion*/

    /*#region What We Do*/

    .what-we-do h4 {
        font-size: 24px;
    }

    /*#endregion*/

    /*#region Services*/

    .services .icon-box h4 {
        font-size: 20px;
    }

    /*#endregion*/

    /*#region Superkleen Page*/

    /*#region Multi-Purpose Degreaser & Cleaner*/

    .multi-purpose-degreaser .block-icon i {
        font-size: 16px;
    }

    .multi-purpose-degreaser a, .multi-purpose-degreaser strong {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region What is SK7 Superkleen*/

    .about-superkleen h4 {
        font-size: 18px;
    }

    /*#endregion*/

    /*#region Versatile Applications*/

    .versatile-applications h3 {
        font-size: 25px;
    }

    .versatile-applications h4 {
        font-size: 18px;
    }

    /*#endregion*/

    /*#endregion*/

    /*#region Contact us*/

    .contact-us .contact-person-detail {
        padding: 25px;
    }

    .contact-us .info-box:hover {
        transition: all ease-in-out 0.3s;
        border-color: #fff;
        box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.4);
        transform: translateY(-10px);
    }

    .contact-us .info-box h3 {
        font-size: 23px;
    }

    /*#endregion*/

    /*#region Footer*/

    .footer {
        padding-top: 50px;
    }

    /*#endregion*/

    /*#region Error Page*/

    .error-page-1 h1 {
        font-size: 85px;
    }

    .error-page-1 h2 {
        font-size: 75px;
        margin-bottom: 30px;
    }

    .error-page-1 p {
        font-size: 18px;
    }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 45px;
    }

    /*#endregion*/

}

/*High Definition Plus (HD+) ( (Resolution 1600x900), 1600px and up) */
@media (min-width: 1600px) {
}

/*Extra Large Screen 23 Inch ( (Resolution 1920x1080 ) 1800px and up) */
@media (min-width: 1800px) {

    /*#region Banner*/

    .banner {
        height: 847px;
    }

    /*#endregion*/

}

/*Extra Large Screen 27 Inch ( (Resolution 2560x1440 ) 2560px and up) */
@media (min-width: 2560px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1620px;
    }
}

/*Extra Large Screen 32 Inch ( (Resolution 3840x2160 ) 3840px and up) */
@media (min-width: 3840px) {

    /*#region Banner*/

    .banner {
        height: 1000px;
    }

    /*#endregion*/

}
