



    :root {
        --typo-primary-font-family: Montserrat;
        --typo-primary-font-weight: 500;
        --typo-secondary-font-family: Montserrat;
        --typo-secondary-font-weight: 500;
        --typo-text-font-family: Montserrat;
        --typo-text-font-weight: 500;
        --typo-accent-font-family: Montserrat;
        --typo-accent-font-weight: 500;

        --bs-primary: #202426;
        --bs-primary-rgb: 2,2,66;
        --bs-secondary: #a9a9a9;
        --bs-secondary-rgb: 169,169,169;
        --bs-success: #31af36;
        --bs-success-rgb: 49,175,54;
        --bs-info: #555555;
        --bs-info-rgb: 85,85,85;
        --bs-warning: #ffc107;
        --bs-warning-rgb: 295,193,7;
        --bs-danger: #dc3545;
        --bs-danger-rgb: 220,53,69;
        --bs-light: #EDEDED;
        --bs-light-rgb: 237,237,237;
        --bs-dark: #050505;
        --bs-dark-rgb: 5,5,5;
    }



    

    @keyframes slideInFromLeft {
        0% {
            transform: translateX(-100%);
        }
        100% {
            transform: translateX(0);
        }
    }
    .slideInFromLeft{
        animation: 1s ease-out 0s 1 slideInFromLeft;
    }

    @keyframes slideInFromRight {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(0);
        }
    }
    .slideInFromRight{
        animation: 1s ease-out 0s 1 slideInFromRight;
    }

    @keyframes slideInFromTop {
        0% {
            transform: translateY(-100%);
        }
        100% {
            transform: translateY(0);
        }
    }
    .slideInFromTop{
        animation: 1s ease-out 0s 1 slideInFromTop;
    }

    @keyframes slideInFromBottom {
        0% {
            transform: translateY(100%);
        }
        100% {
            transform: translateY(0);
        }
    }
    .slideInFromBottom{
        animation: 1s ease-out 0s 1 slideInFromBottom;
    }


    
    html {
        scroll-behavior: smooth;
    }
    body{
        font-family: 'roboto', sans-serif;
        font-size: 16px;
        font-weight: normal;
        padding: 0px;
        margin: 0px;
        /*background-color: #f4f4f4;*/
        background-color: #ffffff;
    }
    a{
        text-decoration: none;
        text-transform: capitalize;
    }

    * {
        box-sizing: border-box;
    }

    *,*::after,*::before {
        /*box-sizing: border-box;*/
        /*outline: solid 2px lime;*/
    }


    button{
        text-transform: capitalize;
    }

    .clear{
        clear: both;
    }

    .unselect{
        -moz-user-select: none;
        -webkit-user-select: none; /* Safari */
        -ms-user-select: none; /* IE 10 and IE 11 */
        user-select: none; /* Standard syntax */
        /*-khtml-user-select: none;*/
    }

    #main{
        padding: 0px;
        margin: 0px;
        min-height: 100vh;
    }



    .hideme{
        display: none !important;
        visibility: hidden; !important;
    }


    .disabel {
        opacity: 0.6 !important;
        cursor: not-allowed !important;
    }



    /*******  DESKTOP ******878*/
    @media only screen and (min-width: 980px) {
        .mobile{
            display: none !important;
            visibility: hidden !important;
        }

        .desktop{
            /*display: block;*/
            visibility: visible !important;
        }

    }

    /*******  MOBILE ******888*/
    @media only screen and (max-width: 992px) {

        .mobile{
            /*display: block;*/
            visibility: visible !important;
        }

        .desktop{
            display: none !important;
            visibility: hidden !important;
        }
        #main{
            padding-top: 0px;
        }


    }



    @keyframes fadein-right {
        from {margin-left: 100px;opacity: 0;}
        to {margin-left: 10px;opacity: 1;}
    }

    @keyframes fadein-left {
        from {margin-left: -100px;opacity: 0;}
        to {margin-left: 10px;opacity: 1;}
    }

    .fadein-left{
        margin-left: 0px !important;
        opacity: 0 !important;
    }


    .xbtn{
        border: solid 2px var(--bs-secondary);
        border-radius: 0px;
        padding: 10px 10px 10px 10px;
        color: var(--bs-secondary);
        text-decoration: none;
        text-align: center;
        transition: all .3s linear;
    }
    .xbtn:hover{
        background-color: var(--bs-secondary);
        color: var(--bs-light);
        padding: 10px 10px 10px 10px;
    }
    .xbtn:hover span{
        padding-right: 20px;
        padding-left: 20px;
    }



    #upBtn {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 30px;
        z-index: 99;
        border: none;
        outline: none;
        background-color: rgba(22,81,105,1);
        color: white;
        cursor: pointer;
        padding: 10px 15px 10px 15px;
        border-radius: 3px;
        font-size: 18px;
        transition: all .3s linear;
    }

    #upBtn:hover {
        background-color: rgba(0,0,0,1);
        box-shadow: rgba(100, 100, 111, 0.9) 0px 7px 29px 0px;
        padding: 7px 15px 13px 15px;
    }


    .fotter{
        background-color: white;
    }
    .fotter .txt{
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .fotter .txtlnk div{
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .fotter h3{
        color: #a9a9a9;
    }
    .fotter .txtlnk a{
        color: black;
        font-size: 1.1rem;
    }
    .fotter .txtlnk i{
        margin-right: 5px;
        margin-left: 10px;
        font-size: 1rem;
    }
    .fotter .txt i{
        font-size: 1.2rem;
    }
    .cr{
        background-color: #204066;
        color: #f8f9fa;
        font-size: 14px;
        text-align: center;
        padding: 20px;
    }



     .thumbnail {
         width: 100px;
         height: 100px;
         cursor: pointer;
     }
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        justify-content: center;
        align-items: center;
    }
    .modal-content {
        max-width: 90%;
        max-height: 90%;
    }
    .close {
        position: absolute;
        top: 10px;
        right: 25px;
        color: #fff;
        font-size: 30px;
        font-weight: bold;
        cursor: pointer;
    }



    .productpage{
        margin-top: 100px;
        margin-bottom: 200px;
        padding: 10px;
    }
    .productimg{
        padding: 10px;
        display: flex;
        justify-content: center;
    }
    .productimg img{
        width: 100%;
        height: auto;
        object-fit: scale-down;
    }
    .productdet{
        padding: 10px;
    }
    .producttit{
        padding: 10px;
        text-align: left;
        font-weight: 900;
        text-transform: uppercase;
        color: #2f9dbe;
        margin-bottom: 10px;
    }
    .producttxt{
        padding: 10px;
    }
    .producttxt h3{
        padding-top: 20px;
    }




    
    a, li, .dropdown-item {
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .sticky {
        position: fixed;
        top: 0;
        width: 100%
    }

    .sticky + .content {
        padding-top: 102px;
    }


    .custom-logo{
        width: auto;
        height: 100px;
    }



    #mobmnubtn{
        padding: 3px 6px 3px 6px !important;
        width: 60px;
    }

    #mobmnubtn div{
        background-color: #2c8aac;
        padding: 2px;
        border-radius: 2px;
        margin: 4px;
        margin-top: 10px;
    }
    #mobmnubtn .l1{
        margin-right: 1%;
    }
    #mobmnubtn .l2{
        margin-right: 30%;
    }
    #mobmnubtn .l3{
        margin-right: 10%;
    }


    #topmnu .nav-link {
        position: relative;
        color: #204066;
        font-size: 1.33rem;
        margin-right: 10px;
        margin-left: 10px;
        text-transform: uppercase;
        animation: nav-link ease-in;
        animation-timeline: scroll();
    }

    #topmnu .mnulnk{
        position: relative;
        color: #204066;
        font-size: 1.33rem;
        text-transform: uppercase;
        font-weight: bold;
        animation: nav-link ease-in;
        animation-timeline: scroll();
    }

    @keyframes nav-link{
        0% { color: #204066; }
        5% { color: #204066; }
        100% { color: #204066; }
    }

    #topmnu{
        padding-top: 0px;
        padding-bottom: 0px;
        padding-right: 0px;
        padding-left: 20px;
        z-index: 1000;
        background-color: #f6f7f5;
        color: #204066;
        overflow: visible;
        animation: topmnu ease-in;
        animation-timeline: scroll();
    }

    @keyframes topmnu{
        0% { background-color: #f6f7f5; }
        5% { background-color: #f6f7f5; }
        100%{ background-color: #f6f7f5;}
    }

/*
    .navbar-brand{
        margin: 20px 20px 20px 40px;
        background-image: url("assets/images/logo.png");
        background-size: contain;
        background-repeat: no-repeat;
        width: 200px;
        height: 100px;
        animation: navbar-brand ease-in;
        animation-timeline: scroll();
    }

    @keyframes navbar-brand{
        0% { background-image: url("assets/images/logo.png"); }
        5% { background-image: url("assets/images/logo.png"); }
        100%{ background-image: url("assets/images/logo.png"); }
    }
*/

    #topmnu .nav-link:hover {
        color: var(--bs-secondary) !important;
    }


    #navbarNavDropdown{
        display: flex;
        justify-content: end;
    }


    .navbar-nav{
        /*background-color: rgba(0,0,0,0.4);
        border-radius: 50px;*/
        padding: 10px 20px 10px 20px;
    }


    #topmnu .isactive{
        border-bottom: solid 4px var(--bs-light) ;
    }

    .custom-logo-link{
        margin: 10px;
    }

    .custom-logo{
        width: auto;
        height: 90px;
    }


    @media (max-width: 992px) {
        #topmnu{
            padding: 0px;
        }
        .mobtop{
            width: 100%;
            margin: 0px;
            padding: 0px;
            background-color: #f6f7f5;
        }
        .navbar-brand{
            width: 100px;
            height: 60px;
        }
        .custom-logo{
            width: auto;
            height: 60px;
        }
        .navbar-collapse {
            position: fixed;
            top: 80px;
            left: -300px;
            padding-left: 15px;
            padding-right: 15px;
            padding-bottom: 15px;
            padding-top: 30px;
            width: 300px;
            height: 100%;
            background-color: #204066;
            text-align: center;
        }

        .navbar-collapse li{
            border-bottom: solid 1px #40484f;
        }


        .navbar-collapse.collapsing {
            left: -300px;
            transition: left 100ms ease-in-out;
        }

        .navbar-collapse.show {
            left: 0;
            transition: left 300ms ease-in-out;
        }

        .navbar-toggler.collapsed  ~.navbar-collapse {
            transition: left 500ms ease-in-out;
        }


        .navbar-toggler:focus,
        .navbar-toggler:active,
        .navbar-toggler-icon:focus {
            outline: none;
            box-shadow: none;
        }
        .navbar-toggler-icon{
            background-image: none;
            color: var(--bs-light) !important;
        }
        .mobbtnicon{
            color: #204066 !important;
            font-size:30px;
        }
        #topmnu .nav-link {
            color: var(--bs-light) !important;
        }

        .navbar-nav {
            margin: 0px;
        }
        .navbar-collapse{
            padding: 0px;
            padding-top: 50px;
        }

        #topmnu li {
            border-color: #484848 !important;
        }

        #navbarNavDropdown{
            display: block;
            padding-right: 0px;
        }
        .navbar-toggler{
            border: none;
        }

        .navbar-nav{
            background-color: #204066;
            padding: 0px;
            border-radius: unset;
        }

        .dropdown-menu{
            background-color: #29578e;
        }
        .dropdown-menu a{
            color: #f6f7f5;
        }



        #mailphon{
            text-align: center;
            display: flex;
            flex-direction: column;
        }
        #mailphon li{
            width: 100%;
            text-align: center;
        }
        #mailphon a{
            text-align: center;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
        }


    }




    .topsocial{
        padding-top: 15px;
        padding-bottom: 15px;
        background-color: #204066;
        padding-right: 15px;
        padding-left: 15px;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    .topsocial i{
        margin-right: 30px;
    }
    .topsocial .elementor-social-icon svg{
        fill: whitesmoke !important;
    }
    .topsocial .elementor-icon{
        font-size: 1.5rem !important;
    }


    .mobsocial{
        padding: 10px;
        padding-top: 6px;
        text-align: center;
    }
    .mobsocial .elementor-social-icon svg{
        fill: whitesmoke !important;
    }
    .mobsocial .elementor-icon{
        font-size: 20px !important;
    }
    .mobsocial a{
        text-align: center !important;
    }
    .mobsocial li{
        border-bottom: none;
    }



    
    .morbtn{
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 200px;
        height: 50px;
        background-color: transparent;
        border: solid 2px var(--bs-secondary);
        padding: 10px 30px 10px 30px;
        font-size: 1.50rem;
        line-height: 1.50rem;
        font-weight: normal;
        color: var(--bs-secondary);
        text-transform: capitalize;
        text-decoration: none;
        transition: all 0.30s;
    }
    .morbtn:hover{
        background-color: var(--bs-secondary);
        color: white;
        transition: all 0.30s;
    }
    .morbtn:hover  .xi{
        background-color: black;
        opacity: 1;
        transform: translateY(-50%) translateX(50%) ;
        transition: all 0.60s;
    }
    .morbtn i{
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%) translateX(50%) ;
        background-color: var(--bs-secondary);
        color: white;
        padding: 7px 10px 7px 10px;
        margin-left: 30px;
        border-radius: 50%;
        font-size: 0.9rem;
        line-height: 0.9rem;
        font-weight: bolder !important;
        transition: all 0.30s;
    }
    .morbtn .xi{
        position: absolute;
        opacity: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%) translateX(-50%) ;
        background-color: var(--bs-secondary);
        color: white;
        padding: 7px 10px 7px 10px;
        margin-left: 30px;
        border-radius: 50%;
        font-size: 0.9rem;
        line-height: 0.9rem;
        font-weight: bolder !important;
        transition: all 0.60s;
    }




    .morbtnli{
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 200px;
        height: 50px;
        background-color: transparent;
        border: solid 2px whitesmoke;
        padding: 10px 30px 10px 30px;
        font-size: 1.50rem;
        line-height: 1.50rem;
        font-weight: normal;
        color: whitesmoke;
        text-transform: capitalize;
        text-decoration: none;
        transition: all 0.30s;
    }
    .morbtnli:hover{
        background-color: whitesmoke;
        color: var(--bs-secondary);
        transition: all 0.30s;
    }
    .morbtnli:hover  .xi{
        background-color: black;
        opacity: 1;
        transform: translateY(-50%) translateX(50%) ;
        transition: all 0.60s;
    }
    .morbtnli i{
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%) translateX(50%) ;
        background-color: whitesmoke;
        color: var(--bs-secondary);
        padding: 7px 10px 7px 10px;
        margin-left: 30px;
        border-radius: 50%;
        font-size: 0.9rem;
        line-height: 0.9rem;
        font-weight: bolder !important;
        transition: all 0.30s;
    }
    .morbtnli .xi{
        position: absolute;
        opacity: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%) translateX(-50%) ;
        background-color: var(--bs-secondary);
        color: white;
        padding: 7px 10px 7px 10px;
        margin-left: 30px;
        border-radius: 50%;
        font-size: 0.9rem;
        line-height: 0.9rem;
        font-weight: bolder !important;
        transition: all 0.60s;
    }


    
    .prodspage{
        padding: 100px 10px 200px 10px;
    }

    .ptit{
        text-align: center;
        font-weight: 900;
        text-transform: uppercase;
        color: #2f9dbe;
        margin-bottom: 50px;
    }

    .prodscont{
        padding: 20px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;

    }
    .prodbox{
        width: 350px;
        margin: 10px;
        border: solid 2px red;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        border: solid 3px #2f9dbe;
        border-top: solid 20px #2f9dbe;
        border-radius: 50px;
        overflow: hidden;
    }
    .prodimg a{
        height: 250px;
        display: flex;
        justify-content: center;
    }
    .prodimg img{
        max-width: 300px;
        object-fit: scale-down;
    }

    .prodtit{
        background-color: #2f9dbe;
        text-align: center;
        display: block;
        width: 100%;
        padding: 6px;
        font-size: 1.3rem;
        font-weight: bold;
        text-transform: uppercase;
        color: #ffffff;
    }
    .prodtit:hover{
        color: lightgrey;
    }


    



