/*CSS*/


/**************************************** FONTS */
    /* cormorant-sc-regular - latin */
    @font-face {
        font-family: 'Cormorant SC';
        font-style: normal;
        font-weight: 400;
        src: url('../fonts/cormorant-sc-v11-latin-regular.eot'); /* IE9 Compat Modes */
        src: local(''),
            url('../fonts/cormorant-sc-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
            url('../fonts/cormorant-sc-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
            url('../fonts/cormorant-sc-v11-latin-regular.woff') format('woff'), /* Modern Browsers */
            url('../fonts/cormorant-sc-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
            url('../fonts/cormorant-sc-v11-latin-regular.svg#CormorantSC') format('svg'); /* Legacy iOS */
    }
    /* cormorant-sc-700 - latin */
    @font-face {
        font-family: 'Cormorant SC';
        font-style: normal;
        font-weight: 700;
        src: url('../fonts/cormorant-sc-v11-latin-700.eot'); /* IE9 Compat Modes */
        src: local(''),
            url('../fonts/cormorant-sc-v11-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
            url('../fonts/cormorant-sc-v11-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
            url('../fonts/cormorant-sc-v11-latin-700.woff') format('woff'), /* Modern Browsers */
            url('../fonts/cormorant-sc-v11-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
            url('../fonts/cormorant-sc-v11-latin-700.svg#CormorantSC') format('svg'); /* Legacy iOS */
    }
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');
/**************************************** /FONTS */

.select-wrap {
    position: relative;
}
.select-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}
.select-wrap::after {
    content: '\f0d7';
    font-family: fontawesome!important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: 700;
    z-index: 11;
}


/**************************************** ICONS */
    @font-face {
        font-family: 'icomoon';
        src:  url('../fonts/icomoon.eot?cy2wxt');
        src:  url('../fonts/icomoon.eot?cy2wxt#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?cy2wxt') format('truetype'),
        url('../fonts/icomoon.woff?cy2wxt') format('woff'),
        url('../fonts/icomoon.svg?cy2wxt#icomoon') format('svg');
        font-weight: normal;
        font-style: normal;
        font-display: block;
    }
    
    .icon {
        /* use !important to prevent issues with browser extensions that change fonts */
        font-family: 'icomoon' !important;
        speak: never;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
    
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /*03112021*/
    .icon-print:before {
        content: "\e914";
    }

    .icon-email:before {
        content: "\e901";
    }
    .icon-play:before {
        content: "\e900";
    }
    .icon-up-arrow:before {
        content: "\e90d";
    }
    .icon-down-arrow:before {
        content: "\e90c";
    }
    .icon-search:before {
        content: "\e903";
    }
    .icon-chevron-right:before {
        content: "\e925";
    }
    .icon-chevron-left:before {
        content: "\e924";
    }
    .icon-menu1:before {
        content: "\e923";
    }
    .icon-segment:before {
        content: "\e922";
    }
    .icon-align-left:before {
        content: "\e920";
    }
    .icon-align-right:before {
        content: "\e91f";
    }
    .icon-clearclose:before {
        content: "\e928";
    }
    .icon-done:before {
        content: "\e929";
    }
    .icon-done_all:before {
        content: "\e92a";
    }
    .icon-check:before {
        content: "\e921";
    }
    .icon-arrow-thin-down:before {
        content: "\e926";
    }
    .icon-chevron-thin-left1:before {
        content: "\e92b";
    }
    .icon-chevron-thin-right1:before {
        content: "\e92c";
    }
    .icon-arrow-thin-left:before {
        content: "\e92d";
    }
    .icon-arrow-thin-right:before {
        content: "\e92e";
    }
  
    
    
  
  
  
/**************************************** /ICONS */






/**************************************** GLOBAL */
    :root {
        --default: #093c67;
        --dark-default: #033056;
        --secondary: #0068ba;
        --highlight: #8dcaff;
        --light: #dcefff;

        --font-primary: 'Cormorant SC', serif;
        /* --font-secondary: 'Work Sans', sans-serif;; */
    }



    /************* AJAX LOADER */
        .ajax_loader.hideloader { 
            opacity: 0;
            visibility: hidden;
        }
        .ajax_loader { 
            position: fixed;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            background: rgba(255,255,255,0.99);
            z-index: 99999999;
            -webkit-transition: all .6s ease 0s;
            transition: all .6s ease 0s;
        }
        .ajax_loader img { 
            position: absolute;
            max-width: 150px;
            width: auto;
            height: auto;
            left: 50%;
            top: 50%;
            -webkit-transform: translate3d(-50%,-50%,0);
            transform: translate3d(-50%,-50%,0);
        }
    /************* /AJAX LOADER */



    .font-primary { font-family: 'Cormorant SC', serif; font-family: var(--font-primary); }
    /* .font-secondary { font-family: var(--font-secondary); } */

    

    .bg-light { background-color: #fff!important; }
    .bg-clr-light { background-color: #dcefff; background-color: var(--light); }


    .big {
        font-size: 18px;
        color:#3e3e3e;
        line-height: 27px;
        font-weight:300;
    }



    body {
        font-family: 'Cormorant SC', serif;
        background-color: #ffffff;
    }
    p, h4, li
    {
        font-family: 'Inter', sans-serif;
    }
    




    .section-heading {
        position: relative;
        display: inline-block;
        font-family: 'Inter', sans-serif;
    }
    .section-heading::after {
        content: '';
        height: 2px;
        width: 100px;
        background-color: #093c67;
        background-color: var(--default);
        position: absolute;
        right: -120px;
        top: 50%;
        transform: translateY(-50%);
    }

    .section-subheading {
        font-size: 4rem;
        line-height: 3rem;
        font-weight: bold;
        color: #093c67;
        color: var(--default);
    }

    .section-title {
        font-size: 3rem;
        font-weight: bold;
        color: #093c67;
        color: var(--default);
    }






    .circleeffect {
        position: relative;
        /* overflow: hidden; */
    }
    .circleeffect:before { 
        content: "";
        width: 124px; 
        height: 124px;
        border-radius: 50%;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -62px;
        margin-left: -62px;
        display: none;
    }
    .circleeffect:hover:before {
        -webkit-animation: circleIn 0.9s linear;
        animation: circleIn 0.9s linear infinite;
        display: block;
        animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
        pointer-events: none;
    }
    @-webkit-keyframes circleIn {
        0% { -webkit-transform: scale(0); opacity: .4; }
        60%, 100% { -webkit-transform: scale(1); opacity: 0; }
    }
    @keyframes circleIn { 
        0% { 
            transform: scale(0);
            opacity: .4
        }
        60%, 100% { 
            transform: scale(1);
            opacity: 0;
        }
    }






    /******* BUTTONS */
        .btn {
            background-color: transparent;
            border: 0;
            color: inherit;
            border-radius: 100px;
            position: relative;
            padding: 10px;
            padding-right: 60px;
            padding-left: 20px;
            transition: 0.2s;
            /* overflow: visible; */
        }
        .btn:hover {
            box-shadow: 0 0 100px rgb(0,0,0,0.3);
        }
        .btn i {
            margin-left: 10px;
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background-color: #0068ba;
            background-color: var(--secondary);
            padding: 10px;
            border-radius: 100%;
            transition: 0.2s;
            font-size: 13px;
        }
        .btn:hover i {
            padding: 20px;
            right: -11px; 
        }
        .btn.btn-primary {
            background-color: #093c67;
            background-color: var(--default);
            color: #fff;
        }
    /******* /BUTTONS */
    
    
    
    
    

    /*03112021*/
    /******* PAGE HEADING */
        .page-heading {
            text-align: center;
            font-weight: bold;
            color: var(--secondary);
            font-size: 72px;
            position: relative;
            margin-bottom: 20px;
            padding-bottom: 5px;
        }
        .page-heading::after {
            content: '';
            height: 1px;
            width: 100px;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--secondary);
        }
    /******* /PAGE HEADING */
    

    .content:not(#home) {
        margin: 40px 0;
    }

/**************************************** /GLOBAL */





/****************** SCROLL UP */
    .scrollup {
        bottom: 20px;
        right: 20px;
        display: none;
        height: 40px;
        line-height: 38px;
        text-align: center;
        position: fixed;
        width: 40px;
        z-index: 5;
        color: #fff;
        background: #093c67;
        background: var(--default);
        -webkit-border-radius: 50%;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.4);
        box-shadow: 0 0 15px 0 rgb(0 0 0 / 15%);
        display: none;
    }
    .scrollup:hover {
        background-color: #0068ba;
        background-color: var(--secondary);
        color: #fff;
    }
    .scrollup:after,
    .scrollup:before {
        border: 1px solid #093c67;
        border: 1px solid var(--default);
        position: absolute;
        content: "";
        left: -8px;
        top: -8px;
        right: -8px;
        bottom: -8px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
    }
    .scrollup:before {
        -webkit-animation: flickerAnimation 1.2s infinite;
        -moz-animation: flickerAnimation 1.2s infinite;
        -o-animation: flickerAnimation 1.2s infinite;
        animation: flickerAnimation 1.2s infinite;
    }
    .scrollup:after {
        left: -15px;
        top: -15px;
        right: -15px;
        bottom: -15px;
        -webkit-animation: flickerAnimation 1s infinite;
        -moz-animation: flickerAnimation 1s infinite;
        -o-animation: flickerAnimation 1s infinite;
        animation: flickerAnimation 1s infinite;
    }

    @keyframes flickerAnimation {
        0% { opacity: 1 }
        50% { opacity: 0 }
        100% { opacity:1 }
    }
    @-o-keyframes flickerAnimation {
        0% { opacity: 1 }
        50% { opacity: 0 }
        100% { opacity: 1 }
    }
    @-moz-keyframes flickerAnimation { 
        0% { opacity: 1 }
        50% { opacity: 0 }
        100% { opacity: 1 }
    }
    @-webkit-keyframes flickerAnimation {
        0% { opacity: 1 }
        50% { opacity: 0 }
        100% { opacity: 1 }
    }

/****************** /SCROLL UP */







/**************************************** HEADER */
    header {
        background-color: #fff;
        padding: 10px 0;
        box-shadow: 0 0 10px rgb(0,0,0,0.2);
        transition: 1s;
        top: -20%;
    }
    header .logo {
        max-width: 300px;
        width: 100%;
        transition: 0.2s;
    }


    .sticky header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 99999;
    }
    .sticky header .right_top {
        display: none;
    }
    .sticky header .right_bottom {
        padding: 0;
    }
    .sticky header .logo {
        max-width: 200px;
        width: 100%;
    }
    .sticky body {
        padding-top: 110px;
    }    
    .sticky header #menu-toggle span {
        display: none;
    }
    .sticky header #menu-toggle i {
        margin: 0;
    }






    header .right_top {
        border-bottom: 1px solid #e2e2e2;
        padding: 10px 0 15px;
    }
    header .right_top a {
        color: inherit;
        display: inline-block;
        text-decoration: none;
        position: relative;
        font-weight:300;
        font-family: 'Inter', sans-serif;
    }
    header .right_top a:first-child {
        margin-right: 10px;
        padding-right: 15px;
    }
    header .right_top a:first-child::after {
        content: '';
        width: 1px;
        height: 70%;
        background-color: #d0d0d0;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    header .right_top a i {
        color: #315b7f;
        border: 1px solid;
        border-radius: 100%;
        width: 30px;
        height: 30px;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
        transition: 0.3s;
    }
    header .right_top a:hover i {
        transform: rotate(360deg);
        background-color: #315b7f;
        color: #fff;
    }



    header .right_bottom {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 10px 0 5px;
    }



    
    header .nav-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
    }
    header .nav-menu-wrapper {
        position: relative;
        /* padding-right: 10px; */
        /* margin-right: 20px; */
    }
    /* header .nav-menu-wrapper::after {
        content: '';
        width: 1px;
        height: 70%;
        background-color: #d0d0d0;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    } */
    header .nav-menu li {
        display: inline-block;
    }
    header .nav-menu li a {
        display: block;
        color: inherit;
        text-decoration: none;
        font-size: 20px;
        font-weight:300;
        /* padding: 0 15px; */
        opacity: 0.6;
        position: relative;
        padding-left: 40px;
        font-family: 'Inter', sans-serif;
    }
    header .nav-menu li a::before {
        content: "\e900";
        font-family: icomoon;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        transition: 0.2s;
        font-size: 20px;
    }

    header .nav-menu li a:hover,
    header .nav-menu li.active a {
        color: #093c67;
        color: var(--default);
        opacity: 1;

    }
    header .nav-menu li a:hover::before,
    header .nav-menu li.active a::before {
        opacity: 1;
    }


    .follow-us {
        display: flex;
        align-items: center;
    }
    .follow-us span {
        font-weight: bold;
        position: relative;
        display: flex;
        align-items: center;
    }
    .follow-us span::after {
        content: '';
        height: 1px;
        width: 40px;
        background-color: #d0d0d0;
        display: inline-block;
        margin-left: 10px;
    }
    .follow-us a {
        color: #315b7f;
        text-decoration: none;
        border: 1px solid;
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
        margin-left: 5px;
        font-size: 14px;
    }





    header #menu-toggle {
        background-color: #093c67;
        background-color: var(--default);
        color: #fff;
        padding: 5px 10px;
        position: relative;
        border-radius: 2px;
        margin-right: 15px;
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    header #menu-toggle i {
        font-size: 20px;
        margin-left: 10px;
    }
/**************************************** /HEADER */








/**************************************** HOME PAGE */
    /* banner */
        #home #banner {
            /*background-image: url(../images/banner.jpg);*/  /*28102021*/
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
            position: relative;
        }
        #home #banner::before {
            content: '';
            height: 100%;
            width: 100%;
            background-color: rgb(0,0,0,0.3);
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }
        #home #banner .banner_content {
            background-image: url(../images/banner_content_bg.png);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            padding: 100px 50px;
        }



        #home #banner .banner_subtitle {
            font-size: 4rem;
            line-height: 4rem;
        }
        #home #banner .banner_title {
            font-size: 6rem;
            line-height: 5rem;
        }
    /* /banner */





    /* about */
        #about {
            padding: 100px 0 50px;
            background-image: url(../images/design1.png);
            background-position: right top;
            background-repeat: no-repeat;
            background-size: auto;
        }
        #about .image-wrapper {
            margin: auto;
            width: 400px;
            height: 400px;
            overflow: hidden;
            border-radius: 100%;
            border: 5px solid #fff;
            box-shadow: 0 0 50px rgb(0,0,0,0.15);
            position: relative;
        }
        #about .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        #about .about-image {
            position: relative;
        }
        #about .about-image::before {
            content: '';
            height: 400px;
            width: 400px;
            /* background-color: red; */
            background-image: url(../images/about-design.png);
            position: absolute;
            left: 0;
            top: 0;
            z-index: -1;
            transform: scale(1.1);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: left;
        }
    /* /about */






    /* product categories */
        #prod-cat {
            padding: 50px 0 50px;
        }


        #prod-cat .item .inner-wrapper {
            display: block;
            text-decoration: none;
            color: inherit;
            margin-bottom: 50px;
            transition: 0.2s;
        }

        #prod-cat .item .inner-wrapper .image-wrapper {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        #prod-cat .item .inner-wrapper .image-wrapper::before {
            content: '';
            position: absolute;
            top: 7px;
            right: 7px;
            bottom: 7px;
            left: 7px;
            border: 1px solid #000;
            z-index: 1;
            opacity: 0.4;
        }
        #prod-cat .item .inner-wrapper .image-wrapper img {
            width: 100%;
            height: 100%;
           /* object-fit: cover;*/
        }

        #prod-cat .item .inner-wrapper .details {
            background-color: #fff;
            margin-top: 10px;
            padding: 15px;
            position: relative;
            padding-bottom: 30px;
            transition: 0.2s;
            min-height: 180px;
        }
        #prod-cat .item .inner-wrapper:hover .details {
            background-color: #093c67;
            background-color: var(--default);
            box-shadow: 0 0 50px rgb(0,0,0,0.2);
        }
        #prod-cat .item .inner-wrapper .details .title {
            color: #093c67;
            color: var(--default);
            position: relative;
            margin-bottom: 10px;
            padding-bottom: 5px;
            font-weight: bold;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
        }
        #prod-cat .item .inner-wrapper:hover .title {
            color: #fff;
        }
        #prod-cat .item .inner-wrapper .details .title::before {
            content: '';
            height: 1px;
            width: 50px;
            background-color: #8dcaff;
            background-color: var(--highlight);
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);;
        }
        #prod-cat .item .inner-wrapper:hover .title::before {
            background-color: #fff;
        }
        #prod-cat .item .inner-wrapper .details p {
            margin: 0;
            font-weight:300;
            line-height: 120%;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 5;
            overflow: hidden;
        }
        #prod-cat .item .inner-wrapper:hover .details p {
            color: #fff;
        }
        #prod-cat .item .inner-wrapper .details i.arrow {
            position: absolute;
            background-color: #015394;
            color: rgb(255,255,255,0.7);
            border-radius: 100%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            left: 50%;
            transform: translateX(-50%);
            bottom: -10px;
            font-size: 12px;
            box-shadow: 0 0 50px rgb(255,255,255,0.5);
        }
        #prod-cat .item .inner-wrapper:hover .details i.arrow {
            box-shadow: 0 0 50px rgb(0 0 0 / 100%);
        }
    /* /product categories */






    /* services */
        #services {
            padding: 0 0 50px 0;
            overflow: hidden;
            background-image: linear-gradient(#fff 100px, #dcefff 0%);
            background-image: linear-gradient(#fff 100px, var(--light) 0%)
        }
        #home #services .container {
            /* margin-top: -150px; */
        }
        .servimg {
            position: relative;
            width: 450px;
           /* height: 450px;*/
            height: auto;
            overflow: hidden;
            box-shadow: -25px 25px 0 0 #093c67;
            box-shadow: -25px 25px 0 0 var(--default);
            margin-left: auto;
        }
        .servimg img {
            width: 100%;
            height: 100%;
           /* object-fit: cover;*/
        }

        
        
        #services .service {
            padding: 30px 0;
            position: relative;
        }
        #services .service:nth-child(odd):after {
            content: '';
            height: 300px;
            width: 300px;
            background-image: url(../images/design.png);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            position: absolute;
            right: -100px;
            bottom: -110px;
            pointer-events: none;
        }


        #services .service:nth-child(even):after {
            content: '';
            height: 300px;
            width: 300px;
            background-image: url(../images/design2.png);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            position: absolute;
            left: -100px;
            bottom: -110px;
            pointer-events: none;
        }

        .footer-top .section-heading
        {
            font-family: 'Cormorant SC';
        }
        #home #services .service .section-heading {
            margin-top: 70px;
            font-family: 'Cormorant SC';
        }
        
        #services .service .section-heading {
            font-weight: bold;
            color: #093c67;
            color: var(--default);
            font-size: 3.2rem;
        }
        
        #services .service:nth-child(even) {
            flex-direction: row-reverse;
        }
        #services .service:nth-child(even) .servimg {
            box-shadow: 25px 25px 0 0 #093c67;
            box-shadow: 25px 25px 0 0 var(--default);
            margin-left: unset;
            margin-right: auto;
        }
    /* /services */
        
        
        
        
    
    
    /*03112021*/
    /* form section */
        #formSection {
            background-color: var(--light);
            padding: 0 0 50px 0;
        }


        .form-wrapper {
            background-color: #fff;
            padding: 40px 80px;
        }
        .form-wrapper .form-heading {
            color: var(--secondary);
            line-height: 70%;
            margin-bottom: 40px;
            font-size: 38px;
        }
        .themeform {
            background-color: #fff;
        }
        .themeform label {
            position: relative;
            font-weight: 300;
            font-family: 'Inter', sans-serif;
            /* margin-bottom: 0; */
        }
        .themeform .required label::after {
            content: '*';
            color: red;
            margin-left: 5px;
        }
        .themeform .form-control {
            border-radius: 0;
            border-color: var(--secondary);
            height: auto;
            padding: 5px 10px;
        }
        .themeform .formbtn-wrap {
            position: relative;
            display: inline-block;
        }
        .themeform .formbtn-wrap::after {
            content: "\e92e";
            font-family: icomoon;
            position: absolute;
            color: #fff;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--secondary);
            width: 32px;
            height: 32px;
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            transition: 0.2s;
        }
        .themeform .formbtn-wrap:hover::after {
            width: 50px;
            height: 50px;
            right: -15px;
        }
        .themeform .btn.btn-primary {
            font-size: 20px;
            padding: 7px 65px 7px 30px;
            font-family: 'Inter', sans-serif;
            font-weight: 300;
        }

        .themeform .form-control:focus {
            background-color: var(--light);
        }

        

        .themeform input#fakeInput {
            width: 100%;
            border-radius: 0;
            display:block;
            padding: 5px 10px;
            border: 0;
            height: 100%;
            overflow: hidden;
            font-family: sans-serif;
        }
        .themeform #buttonImage {
            float: right;
            position: absolute;
            right: 0;
            top: 0;
            background: var(--light);
            padding: 0 10px;
            color: #000;
            font-weight: bold;
            border-radius: 0;
            height: 100%;
            border-left: 1px solid var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        .themeform #buttonImage:hover {
            background-color: var(--secondary);
            color: #fff;
        }
        .themeform #uploadDoc {
            width: 100%;
            position: relative;
            display: inline-block;
            border: 1px solid var(--secondary);
            cursor: pointer;
        }
        .themeform #selectedFile {
            opacity:0;
            position:absolute;
            left: 0;
            top: 0;
        }
        

        .cat-slider .owl-stage {
             margin: 0px auto;
        }

    /* /form section */
/**************************************** /HOME PAGE */










/*03112021*/
/**************************************** CONTACT PAGE */
    #contact-us .form-heading {
        font-size: 30px
    }


    #contact-us .map-wrap .image-wrapper {
        width: 100%;
        height: 350px;
        overflow: hidden;
    }
    #contact-us .map-wrap .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #contact-us .map-wrap .contact-details {
        list-style: none;
        margin: 0;
        padding: 0;
        list-style: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    #contact-us .map-wrap .contact-details li {
        margin-bottom: 20px;
    }
    #contact-us .map-wrap .contact-details a {
        display: flex;
        text-decoration: none;
        color: inherit;
    }
    #contact-us .map-wrap .contact-details a i {
        background-color: var(--default);
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
    }
    #contact-us .map-wrap .contact-details a b {
        display: block;
        font-size: 20px;
        color: var(--secondary);
    }
    #contact-us .map-wrap .contact-details a span {
        color: #000;
        font-weight: 300;
        font-family: 'Inter', sans-serif;
    }
    #contact-us h5
    {
        font-weight: 300 !important;
        font-family: 'Inter', sans-serif;
    }



/**************************************** /CONTACT PAGE */





/*04112021*/
/**************************************** ABOUT PAGE */
    #about-us .about-img {
        /*float: right;*/
        max-width: 400px;
        display: block;
        margin: auto;
        margin-bottom: 20px;
        width: 100%;
        /*padding: 0 0 20px 20px;*/
    }
    #about-us .about-content {
        text-align: justify;
    }
/**************************************** /ABOUT PAGE */









/*03112021*/
/**************************************** PRODUCTS PAGE */
    #products {
        background-image: url('../images/design3.png');
        background-size: contain;
        background-position: top;
        background-repeat: no-repeat;
    }
    #products .image-wrapper {
        width: 80%; /*04112021*/
        /*height: 500px;*/ /*04112021*/
        overflow: hidden;
        position: relative;
        margin: auto; /*04112021*/
        z-index: 1 /*04112021*/
    }
    #products .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #products .image-wrapper span {
        background-color: var(--default);
        color: #fff;
        position: absolute;
        bottom: 0;
        right: 0;
        display: inline-block;
        padding: 10px 20px;
        font-size: 20px;
    }
    #products .prod-details {
        margin: 0 30px 30px;
        padding: 50px;
        border: 1px solid var(--secondary);
        /*border-top: 0;*/  /*04112021*/
        position: relative;
        padding-top: 100px;
        margin-top: -50px;
        /*z-index: -1;*/
    }
    #products .prod-details ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #products .prod-details ul li {
        margin-bottom: 20px;
        display: flex;
        font-size: 20px;
    }
    #products .prod-details ul li b {
        flex: 0 0 35%;
        max-width: 35%;
        color: var(--default);
    }
    #products .prod-details .buttons {
        text-align: right;
        position: absolute;
        bottom: -22px;
        right: 50px;
    }
/**************************************** /PRODUCTS PAGE */











/*03112021*/
/**************************************** BREADCRUMB */
    #breadcrumb {
        background-color: var(--default);
        padding: 15px 0;
    }
    #breadcrumb ul {
        margin: 0;
        padding: 0;
        list-style: none;
        font-family: 'Inter', sans-serif;
            font-weight: 300;
    }
    #breadcrumb ul li {
        display: inline-block;
    }
    #breadcrumb ul li a {
        color: #fff;
        text-decoration: none;
        position: relative;
        font-size: 20px
    }
    #breadcrumb ul li:not(:last-child) a::after {
        content: "\e92e";
        font-family: icomoon;
        color: rgb(255,255,255,0.5);
        font-size: 12px;
        margin: 0 10px 0 14px;
    }
/**************************************** /BREADCRUMB */


































/**************************************** FOOTER */
    #footer {
        background-color: #093c67;
        background-color: var(--default);
        padding: 40px 0 0;
    }

    #footer .logo {
        max-width: 350px;
        width: 100%;
    }
    #footer .section-heading::after {
        background-color: rgb(255,255,255,0.2);
    }

    #footer .right .inner-wrapper {
        display: flex;
        color: #fff;
        align-items: center;
        text-decoration: none;
    }
    #footer .right .inner-wrapper i {
        color: #8dcaff;
        color: var(--highlight);
        border: 1px solid;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        transition: 0.2s;
    }
    #footer .right .inner-wrapper:hover i {
        background-color: #8dcaff;
        color: #093c67;
    }
    #footer .right .inner-wrapper span {
        font-size: 16px;
        font-family: 'Inter', sans-serif;
    }




    #footer .right .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #033056;
        background-color: var(--dark-default);
        margin-top: 20px;
        font-family: 'Inter', sans-serif;
    }

    #footer .right .contact-wrap {
        display: flex;
    }
    
    #footer .right .footer-bottom .footer-nav {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #footer .right .footer-bottom .footer-nav li {
        display: inline-block;
    }
    #footer .right .footer-bottom .footer-nav li a {
        display: block;
        color: #fff;
        text-decoration: none;
        padding: 15px;
        margin: 0 5px;
        position: relative;
        transition: 0.2s;
        font-family: 'Inter', sans-serif;
    }
    #footer .right .footer-bottom .footer-nav li a:hover {
        color: #8dcaff;
    }
    #footer .right .footer-bottom .footer-nav li:not(:last-child) a::after {
        content: '';
        width: 20px;
        height: 1px;
        background-color: rgb(255,255,255,0.3);
        position: absolute;
        top: 50%;
        right: -15px;
    }


    #footer .right .footer-bottom .follow-us {
        color: #fff;
        padding-right: 20px;
    }
    #footer .right .footer-bottom .follow-us span::after {
        background-color: rgb(255,255,255,0.3);
    }
    #footer .right .footer-bottom .follow-us a {
        color: #8dcaff;
        color: var(--highlight);
        font-size: 10px;
        width: 25px;
        height: 25px;
    }


    #footer .copyright a {
        color: #8dcaff;
        color: var(--highlight);
        text-decoration: none;
    }
/**************************************** /FOOTER */

/* 10112021 */
.servicedetailscontainer{padding: 40px 0px;}
.servicedetailscontainer h2{font-weight: bold; color: var(--default); font-size: 3rem; margin: 0px 0px 15px 0px;}
.servicedetailscontainer h3{text-align: left; color: var(--default); font-size: 28px; font-weight: 600; margin: 0px 0px 10px 0px; position: relative;}
.servicedetailscontainer h4{text-align: left; color: var(--default); font-size: 24px; font-weight: 600; margin: 0px 0px 10px 0px; position: relative;}
.servicedetailscontainer h5{text-align: left; color: var(--default); font-size: 20px; font-weight: 600; margin: 0px 0px 10px 0px; position: relative;}
.servicedetailscontainer h6{text-align: left; color: var(--default); font-size: 18px; font-weight: 600; margin: 0px 0px 10px 0px; position: relative;}
.servicedetailscontainer p{text-align: left; color: #151a22; font-size: 18px; line-height: 26px; font-weight: 400; margin-bottom: 20px;}
.servicedetailscontainer p a{color: #191919; text-decoration: underline;}
.servicedetailscontainer p a:hover{text-decoration: underline;}
.servicedetailscontainer ul{display: block; margin: 0px 0px 20px 0px; padding: 0px;}
.servicedetailscontainer ul li{display: block; position: relative; margin: 0px 0px 11px 0px; padding: 0px 0px 0px 16px; list-style: none; text-align: left; color: #151a22; font-size: 18px; font-weight: 400; }
.servicedetailscontainer ul li:before{content: ""; position: absolute; left: 0px; top: 10px; background: var(--default); width: 6px; height: 6px; -webkit-border-radius: 50%; border-radius: 50%;}
/*.servicedetailscontainer img{float: right; width: 100%; max-width: 400px; margin: 0px 0px 20px 50px; box-shadow: -15px 15px 0px 0px var(--default);}*/






/*12112021*/
.text-clr-default { color: var(--default); }
.text-clr-dark-default { color: var(--dark-default); }
.text-clr-secondary { color: var(--secondary); }
.text-clr-highlight { color: var(--highlight); }
.text-clr-light { color: var(--light); }

.bg-clr-default { background-color: var(--default); }
.bg-clr-dark-default { background-color: var(--dark-default); }
.bg-clr-secondary { background-color: var(--secondary); }
.bg-clr-highlight { background-color: var(--highlight); }
.bg-clr-light { background-color: var(--light); }



.section-title {
    position: relative;
    padding-bottom: 10px;
}
.title-underline::after {
    content: '';
    height: 2px;
    width: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--default);
}
.title-underline.title-underline-center::after {
    left: 50%;
    transform: translateX(-50%);
}



#legal .point-wrap {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
}
#legal .point-wrap li {
    margin-bottom: 40px;
}
#legal .point-wrap li .point-title {
    color: var(--secondary);
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Cormorant SC';
}
#legal .point-wrap li .point-title span {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
    border-radius: 100%;
    font-weight: bold;
    margin-right: 10px;
}



.c-box-w {
    border: 1px solid var(--default);
    padding: 40px;
}
.c-box-w.c-border-left {
    border-left: 8px solid;
}
.c-box-w.c-border-bottom {
    border-bottom: 8px solid;
}





#certification .cert-section {
    border: 1px solid var(--default);
    border-bottom: 6px solid var(--default);
    padding: 30px;
    margin-top: 120px;
}
#certification .cert-section.first {
    margin-top: 80px;
}
#certification .cert-section .top {
    margin-top: -115px;
    padding-bottom: 30px;
}
#certification .cert-section .middle {
    padding: 0 30px;
}
#certification .cert-section .top .image-wrapper {
    width: 200px;
    height: 200px;
    border: 3px solid var(--default);
    overflow: hidden;
    border-radius: 100%;
    background-color: #fff;
    padding: 15px;
}
#certification .cert-section .top .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



#certification .bluesec .image-wrapper {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 100%;
    margin: auto;
    margin-bottom: 10px;
}
#certification .bluesec .image-wrapper img {
    width: 100%;
    height: 100%;
}
#certification .bluesec .btn {
    border: 1px solid var(--secondary);
}





#breadcrumb.about-bread {
    background-image: url("../images/about-sub-bg.jpg");
    text-align: center;
    padding: 80px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
#breadcrumb.about-bread::after {
    content: '';
    height: 100%;
    width: 100%;
    background-color: rgb(0,0,0,0.3);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}




/*16112021*/
.content:not(#home) {
    margin-top: 24px;
}

.servicedetailscontainer {
    padding: 15px 0;
}

.servicedetailscontainer h2 {
    margin-bottom: 24px;
}

/*19112021*/
#satisfactory-survey .contactInfoItem {
    display: flex;
    /*flex-wrap: wrap;*/
}
#satisfactory-survey .contactInfoItem i {
    background-color: var(--default);
    color: #fff;
    border: 1px solid;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: 0.2s;;
}
#satisfactory-survey .contactInfoItem b {
    color: var(--default);
}
#satisfactory-survey .form-wrap {
    border: 2px solid #083b66;
    padding: 30px;
}

#satisfactory-survey .form-wrap.checkboxes {
    border: 0;
}
#satisfactory-survey .form-wrap.checkboxes .table {
    margin: 0;
    border: 2px solid var(--default);
}
#satisfactory-survey .form-wrap .table thead th {
    background-color: var(--default);
    color: #fff;
    border: 0!important;
    font-size: 22px;
    line-height: 26px;
    font-weight: normal;
    vertical-align: middle;
}
#satisfactory-survey .form-wrap .table thead th:first-child {
    min-width: 300px;
}
#satisfactory-survey .form-wrap .table thead th:not(:first-child),
#satisfactory-survey .form-wrap .table tbody td:not(:first-child) {
    text-align: center;
    vertical-align: middle;
}
#satisfactory-survey .form-wrap .table tbody td {
    /*border: 0;*/
    border-right: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    vertical-align: middle;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}
#satisfactory-survey .form-wrap input[type=checkbox] {
    margin-top: 10px;
}
#satisfactory-survey .form-wrap .form-check {
    padding: 0;
}
#satisfactory-survey .form-wrap .form-check-input {
    margin-top: 0;
    margin-left: 0;
    position: relative;
    width: 30px;
    height: 30px;
}





#satisfactory-survey input[type="checkbox"] {
    width: 0;
    height: 0;
}
#satisfactory-survey input[type="checkbox"]:before {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  content: "";
  background: #FFF;
}

#satisfactory-survey input[type="checkbox"]:after {
  position: relative;
  display: block;
  left: 0;
  top: -100%;
  width: 30px;
  height: 30px;
  border-width: 1px;
  border-style: solid;
  border-color: #000;
  content: "";
  background-image: #fff;
  background-repeat: no-repeat;
  background-position: center;
}

#satisfactory-survey input[type="checkbox"]:checked:after {
  background-image: url('../images/check-light.png');
  background-color: var(--default);
  background-size: contain;
}

#satisfactory-survey input[type="checkbox"]:disabled:after {
  -webkit-filter: opacity(0.4);
}

#satisfactory-survey input[type="checkbox"]:not(:disabled):checked:hover:after {
  background-image: url('../images/check-light.png');
  background-color: var(--default);
  background-size: contain;
}


#satisfactory-survey .dark input[type="checkbox"]:after {
    background-color: var(--default);
    border-color: #fff;
}
#satisfactory-survey .dark input[type="checkbox"]:checked:after,
#satisfactory-survey .dark input[type="checkbox"]:not(:disabled):checked:hover:after {
      background-image: url('../images/check-dark.png');
      background-color: #fff;
}
#satisfactory-survey .table {
    min-width: 900px;
}

.form-control {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400 !important;
    font-size: 15px;
}


.set_design{
    position: relative;
}
    
.set_design::after {
    content: "\e92e";
    font-family: icomoon;
    position: absolute;
    color: #fff;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary);
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.2s;
}

.set_design:hover::after {
    width: 55px;
    height: 55px;
    right: -15px;
} 
.themeform .form-group .dropdown-toggle{
    border-radius: 0;
    border: 1px solid var(--secondary);
    height: auto;
    padding: 5px 10px;
    height: 35px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif !important;
}
.themeform .form-group .dropdown-toggle:hover{box-shadow: none;}
.themeform .form-group .dropdown-toggle:focus{outline: 0px auto -webkit-focus-ring-color!important; outline-offset: 0px;}
.themeform .form-group .dropdown-menu{border: 1px solid #E0E0E0; margin: 0px !important; -webkit-transform: none !important; transform: none !important; -webkit-border-radius: 0px; border-radius: 0px; will-change: initial !important; top: 100% !important; margin-top: 2px !important;}
.themeform .form-group .dropdown-menu.inner{border: none; margin: 0px !important; -webkit-transform: none !important; transform: none !important; -webkit-border-radius: 0px; border-radius: 0px;}
.themeform .form-group .dropdown-menu ul li{margin: 0px; padding: 0px;}
.themeform .form-group .dropdown-menu ul li a{font-size: 14px; font-weight: 400; font-family: 'Roboto', sans-serif !important;}
.themeform .form-group .dropdown-menu ul li a:hover{background: #093c67; color: #fff;}
.themeform .form-group .dropdown-menu ul li .dropdown-item.active{background: #093c67; color: #fff;}
.themeform .form-group .dropdown-menu ul li .dropdown-item:active{background: #093c67; color: #fff;}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width: 100% !important;}

/*.videoBanner{*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*}*/
.videoBanner>video{
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.overlayText {
 position: absolute;
    top: 0;
    z-index: 1;
    /* text-align: center; */
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 100px 0px;
    justify-content: center;
}
/*8march 22*/
/*Kitting Services Section*/
.servimg{
    z-index: 1;
}
#services{
    background-image: url(../images/design.png), linear-gradient(#fff 100px, var(--light) 0%) !important;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right bottom;
}
#services .service:nth-child(2n+1)::after{
    display: none;
/*
    right: -13px;
    bottom: -53px;
*/
}
/*End Kitting Services Section*/
.h3.section-heading{
    color: var(--default);
}
.g-recaptcha div{
    margin: 5px auto;
}