
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

@font-face{
    font-family: lino;
    src:url('../linux_biolinum/LinBiolinum_aS.ttf');
    font-weight: 300;
}

*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li{
    list-style: none;
}

a{
    color: inherit;
    text-decoration: none;
}

img{
    height: auto;
}

button{
    background: none;
    border: none;
    font: inherit;
}

button{
    cursor: pointer;
}

address{
    font-style: normal;
}


html{
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
    /* font-family: 'Lora', serif; */
    font-family: lino;
}

input,
select{
    /* font-family: 'Lora', serif; */
    font-family: lino;
    color: #1e2f4b;
}



/********************************* WHOLE MAIN MENU **************************************************/
/************************* Header  ******************************/

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
    z-index: 11;
}

.header.active{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}


.top-header{
    background-color: #1e2f4b;
    position: relative;
    z-index: 1000;
}

.top-header ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    max-width: 1484px;
    margin: 0 auto;
    padding: 0 22px;
    transform: translateX(100px);
    transition: all 0.3s ease-in-out;
}

.top-header.active ul{
    transform: translateX(0);
}

.top-header ul li{
    padding: 8px 16px;
    transition: all 0.3s ease-in-out;
    
}

.top-header ul li a{
    position: relative;
    transition: opacity 0.3s ease-in-out;
    display: inline-block;
}

.top-header ul li a.active-menu{
    color: #78a7f3;
}

.top-header ul li a::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  color: #fff;
  opacity: 0;
}

.top-header ul li:hover a::before{
    opacity: 1;
}


.top-header ul li a{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}


.top-header ul li i{
    color: #fff;
    font-size: 12px;
    margin-left: 5px;
    margin-right: 5px;
}


@media screen and (max-width: 500px) {
    .top-header ul{
        width: 100%;
        transform: translateX(70px);
    }

    .top-header ul li a{
        font-size: 6px;
    }

    .top-header ul li:nth-child(6){
        display: none!important;
    }

}


/*************************** side menu close btn in top header  *********************/
.side-top-close{
 transform: translateX(300%);
}

.side-top-close.active{
    transform: translateX(0);
}



/**************************** search bar styles  *************************/


.search-bar{
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 24px 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.2s linear;
}

.search-bar.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.4);
}

.search-form{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.search-form input{
    padding: 16px;
    width: 70%;
    border-radius: 10px;
    outline: none;
    border: none;
    border: 1px solid #c1c3c5
}


.search-form .fa-search{
    position: absolute;
    right: 28%;
    top: 40%;
}

.search-form i{
    color: #1e2f4b;
    font-size: 22px;
    cursor: pointer;
}

.search-btn {
    cursor: pointer;
}



/****************************** bottom header styles  ***************************/

.bottom-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 22px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.6s ease-in-out;
}

.bottom-header.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.header-left{
    flex: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-center{
    flex: 2;
}
.header-right{
    flex: 0.3;
    display: flex;
    justify-content: flex-end;
    padding-right: 22px;
}

.header-left img{
    width: 90%;
}

.bottom-header .header-center ul{
    display: flex;
    justify-content: flex-start;
    padding-bottom: 10px;
}

.bottom-header .header-center ul li{
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.bottom-header .header-center ul li i{
    font-size: 12px;
    color: #fff;
    background-color: #1e2f4b;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 3px;
    transition: all 0.3s ease-in-out;
}

.bottom-header .header-center ul li a{
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.bottom-header .header-center ul li:hover i{
    background-color: transparent;
    color: #1e2f4b;
}

.bottom-header .header-center ul li:hover a{
    color: #1e2f4b;
}

.header-center-border{
    border-bottom: 1px solid #ccc;
    width: 95%;
}

.header-center-brand{
    font-size: 12px;
    display: block;
    padding-top: 10px;
    color: #5a5d60;
    font-weight: 400;
}

.header-right a{
    color: #fff;
    background-color: #1e2f4b;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.header-right a:hover{
    background-color: #1e2f4b;
}

.header-right i{
    font-size: 14px;
    font-weight: 700;
}

.menu-btn-small{
    display: none;
}

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10;
    display: none;
}

.overlay.active{
    display: block;
}



@media screen and (max-width: 1000px){

    .bottom-header{
        padding: 8px 22px;
    }
    
    .header-left img{
        width: 130px
    }

    .header-right a{
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
    }
    
    .header-right i{
        font-size: 12px;
        font-weight: 700;
    }
}

@media screen and (max-width: 500px) {
    .header-center-border{
        display: none;
    }
    .header-center-brand{
        display: none;
    }
}


/********************** sidebar  ***********************/
 .sidebar{
    position: fixed;
    left: 0;
    top: 35px;
    width: 348px;
    height: 100%;
    background-color: #fff;
    z-index: 20;
    box-shadow: 0 0 10px #0d0d0d;
    transform: translateX(-348px);
    display: flex;
    transition: all 0.2s linear;
 }

 .sidebar.active{
    transform: translateX(0);
 }

 .sidebar-content{
    flex: 85%;
 }

 .sidebar-close{
    background-color: rgb(83, 83, 83);
    flex: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    cursor: pointer;
 }

 .sidebar-close span{
     writing-mode: vertical-rl; 
     transform: rotate(180deg);
     color: #fff;
     font-weight: 700;
     font-size: 18px;
     letter-spacing: 2px;
     margin-top: 10px;
 }

 .sidebar-close i{
    color: #fff;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
 }

 .sidebar-content{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 44px 10px 44px 40px;
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
    clip-path: inset(0px -15px 0px 0px);
 }

 .side-logo a img{
    width: 90%;
 }

 .side-center ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    padding-right: 8px;
    padding-top: 8px;
    border-bottom: 2px solid #fff;
 }

 .side-center ul li a{
    color: #0d0d0d;
    font-size: 18px;
    font-weight: 600;
    padding: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
    width: 100%;
 }

 /* .side-center ul li:focus-within{
    border-color: #1e2f4b;
    background-color: #daedf4;
 } */

 .side-center ul li.focus_active{
    border-color: #1e2f4b;
    background-color: #daedf4;
 }

 .side-center ul li:hover a{
    color: #1e2f4b;
 }

 .side-bottom ul li{
    transition: all 0.3s ease-in-out;
    cursor: pointer;
 }

 .side-bottom ul li a{
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 400;
    display: block;
    padding: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
 }

 .side-bottom ul li:hover a{
    color: #1e2f4b;
 }


 /******************** small screen sidebar  ********************/
 .small_sidebare{
    position: fixed;
    top: 35px;
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: all 0.4s ease-in-out;
    padding: 30px;
 }

 .small_sidebare.active_small{
    transform: translateX(0);
 }

 .small_sidebare_up{
    display: flex;
    align-items: center;
    justify-content: space-between;
 }

 .small_sidebar_logo img{
    width: 200px;
 }

 .small_sidebare_up .small-close-btn{
    display: inline-block;
    padding: 12px;
    border-radius: 20px;
    width: 100px;
    text-align: center;
    color: #fff;
    background-color: #5a5d60;
 }

 .small_sidebar_content{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
 }

 .small_sidebar_content_up ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    border-bottom: 2px solid #0078a1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
 }

 .small_sidebar_content_up ul li:last-child{
    border-bottom: none;
 }

 .small_sidebar_content_up ul li:hover{
    border-color: #1e2f4b;
    background-color: #daedf4;
 }

 .small_sidebar_content_down ul li {
    padding: 16px;
 } 

 .small_sidebar_content_down ul li a:hover{
    color: #0078a1;
 }

 @media screen and (max-width: 1210px) {
    .menu-btn{
        display: none;
     }

     .menu-btn-small{
        display: block;
     }
 }

 @media screen and (max-width: 400px) {

    .small_sidebar_logo img{
        width: 150px;
    }

    .small_sidebare_up .small-close-btn{
         padding: 6px;
         font-size: 12px;
    }
 }


 /*************** small About   **********/

 .small_about_first_layer,
 .small_about_second_layer,
 .small_partner_first_layer,
 .small_partner_second_layer,
 .small_client_first_layer,
 .small_client_second_layer,
 .small_pro_first_layer,
 .pro-sub-one-small,
 .pro-sub-two-small,
 .pro-sub-three-small{
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: all 0.4s ease-in-out;
    padding: 30px;
    overflow-y: scroll;
 }

 .small_about_first_layer.small_active,
 .small_about_second_layer.small_active,
 .small_partner_first_layer.small_active,
 .small_partner_second_layer.small_active,
 .small_client_first_layer.small_active,
 .small_client_second_layer.small_active,
 .small_pro_first_layer.small_active,
 .pro-sub-one-small.small_active,
 .pro-sub-two-small.small_active,
 .pro-sub-three-small.small_active{
    transform: translateX(0);
 }


 .small_about_first_layer_back_btn,
 .small_partner_first_layer_back_btn,
 .small_about_second_layer,
 .small_partner_second_layer_back_btn,
 .small_client_first_layer_back_btn,
 .small_client_back_layer_back_btn,
 .small_pro_first_layer_back_btn,
 .menu-back-pro-sub-one-small,
 .menu-back-pro-sub-two-small,
 .menu-back-pro-sub-three-small {
    font-size: 14px;
 }


 .small_about_first_layer_back_btn i,
 .small_partner_first_layer_back_btn i,
 .small_about_second_layer i,
 .small_partner_second_layer_back_btn i,
 .small_client_first_layer_back_btn i,
 .small_client_back_layer_back_btn i,
 .small_pro_first_layer_back_btn i,
 .menu-back-pro-sub-one-small i,
 .menu-back-pro-sub-two-small i,
 .menu-back-pro-sub-three-small i{
   border: 1px solid #000;
   border-radius: 50%;
   font-size: 8px;
   padding: 4px;
 }

 
 .small_about_first_layer h2,
 .small_partner_first_layer h2,
 .small_client_first_layer h2{
    cursor: pointer;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid transparent;
    padding: 16px;
    transition: all 0.3s ease-in-out;
 }

 .small_about_first_layer h2:hover,
 .small_partner_first_layer h2:hover,
 .small_client_first_layer h2:hover{
    border-color: #1e2f4b;
    background-color: #daedf4;
 }

 .small_about_first_layer ul li,
 .small_client_first_layer ul li{
    padding: 16px;
 }

 .small_about_first_layer ul li:hover a,
 .small_client_first_layer ul li:hover a{
    color: #0078a1;
 }

 .small_about_img_container,
 .small_client_img_container,
 .small_sub_one_img_container,
 .small_sub_two_img_container,
 .small_sub_three_img_container{
    background-color: #d0eaf3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 38px;
    margin-top: 50px;
 }
 .small_about_img_container img,
 .small_client_img_container img,
 .small_sub_one_img_container img,
 .small_sub_two_img_container img,
 .small_sub_three_img_container img{
    width: 49%;
 }

 @media screen and (max-width: 400px) {
    
    .small_about_img_container,
    .small_client_img_container,
    .small_sub_one_img_container,
    .small_sub_two_img_container,
    .small_sub_three_img_container{
        padding: 10px;
    }
 }

 /**** small about second layer *****/

 .small_about_second_layer img,
 .small_client_second_layer img{
    width: 90%;
 }

  .small_about_second_layer img,
  .small_partner_second_layer img,
  .small_client_second_layer img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  @media screen and (max-width: 400px){
    .small_about_second_layer img,
    .small_partner_second_layer img,
    .small_client_second_layer img{
        height: 250px;
    }
  }

  .small_about_second_layer h2,
  .small_partner_second_layer h2,
  .small_client_second_layer h2{
    margin-bottom: 10px;
  }

/********* small partner style  **********/
 .small_partner_first_layer ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding-bottom: 20px;
 }

 .small_partner_first_layer ul li{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
 }

 .small_partner_first_layer ul li img{
    width: 30px;
    height: 30px;
 }

 @media screen and (max-width: 500px){
    .small_partner_first_layer ul{
        grid-template-columns: 1fr 1fr;
    } 
 }

 .small_partner_first_layer ul li:hover a{
    color: #0078a1;
 }

 .small_btn{
    display: inline-block;
    margin-top: 40px;
    color: #fff;
    background-color: #1e2f4b;
    font-size: 18px;
    padding: 13px 16px;
    border-radius: 3px;
    width: 200px;
    text-align: center;
    transition: all 0.3s ease-in-out;
 }

 .small_btn:hover{
   background-color: #0078a1;
}


/*********** small pro layers  *********/

.small_pro_first_layer h2{
    margin-top: 30px;
    margin-bottom: 30px;
}

.small_pro_first_layer ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    border-bottom: 2px solid #0078a1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.small_pro_first_layer ul li:last-child{
    border-bottom: none;
 }

.small_pro_first_layer ul li:hover{
    border-color: #1e2f4b;
    background-color: #daedf4;
 }

.small_pro_first_layer_img_container{
    background-color: #d0eaf3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px;
    margin-top: 50px;
}

.small_pro_first_layer_img_container img{
    width: 90%;
    object-fit: cover;
}

.pro-sub-one-small ul,
.pro-sub-two-small ul,
.pro-sub-three-small ul{
    margin-top: 50px;
}

.pro-sub-one-small ul li,
.pro-sub-two-small ul li,
.pro-sub-three-small ul li{
    padding: 12px;
}


/****************************** About sub menus *****************************/

.about-first-layer-one,
.about-first-layer-two{
    flex: 80%;
    max-width: 288px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 44px 10px 44px 40px;
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
    clip-path: inset(0px -15px 0px 0px);
    z-index: 19;
    display: none; 
    transform: translateX(-288px);
    transition: all 0.6s ease-in-out;
}

.about-first-layer-one a.sub-menu-back{
    color: #000;
    display: flex;
    align-items: center;
}

.about-first-layer-one a.sub-menu-back i{
    font-size: 8px;
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.about-first-layer-one h2{
    padding-top: 50px;
    font-size: 18px;
    color: #1e2f4b;
    text-decoration: underline;
    font-weight: 700;
    margin-bottom: 40px;
}

.about-first-layer-one ul li a{
   color: #1e2f4b;
   display: block;
   padding: 10px 10px 10px 0;
   transition: all 0.4s;
} 

.about-first-layer-one ul li a:hover{
    color: #0078a1;
}

.about-first-layer-two{
   padding-right: 20px;
}

.about-first-layer-two img{
    width: 95%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 30px;
}

.about-first-layer-two h2{
    font-size: 18px;
    margin-bottom: 10px;
}

.about-first-layer-two p{
    font-size: 14px;
}

.about-first-layer-two a{
    display: inline-block;
    margin-top: 40px;
    color: #fff;
    background-color: #1e2f4b;
    font-size: 16px;
    padding: 13px 16px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.about-first-layer-two a:hover{
   background-color: #0078a1;
}


/********************* partner sub menus ***************/

.partner-first-layer-one,
.partner-first-layer-two{
    flex: 80%;
    max-width: 288px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 44px 10px 44px 40px;
    transition: all 0.6s ease-in-out;
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
    clip-path: inset(0px -15px 0px 0px);
    z-index: 19;
    display: none; 
    transform: translateX(-288px);
    overflow-y: scroll;
}

.partner-first-layer-one ul li{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.partner-first-layer-one ul li img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.partner-first-layer-two{
    overflow-y:hidden;
}

.partner-first-layer-one a.sub-menu-back-partner{
    color: #000;
    display: flex;
    align-items: center;
}

.partner-first-layer-one a.sub-menu-back-partner i{
    font-size: 8px;
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.partner-first-layer-one h2{
    padding-top: 50px;
    font-size: 18px;
    color: #1e2f4b;
    text-decoration: underline;
    font-weight: 700;
    margin-bottom: 40px;
}

.partner-first-layer-one ul li a{
    color: #1e2f4b;
    display: block;
    padding: 10px 10px 10px 0;
    transition: all 0.4s;
}

.partner-first-layer-one ul li a:hover{
    color: #0078a1;
}

.partner-first-layer-two{
    padding-right: 20px;
 }
 
 .partner-first-layer-two img{
     width: 95%;
     height: 150px;
     object-fit: cover;
     margin-bottom: 30px;
 }
 
 .partner-first-layer-two h2{
     font-size: 18px;
     margin-bottom: 10px;
 }

 .partner-first-layer-two p{
    font-size: 14px;
 }
 
 .partner-first-layer-two a{
     display: inline-block;
     margin-top: 40px;
     color: #fff;
     background-color: #1e2f4b;
     font-size: 16px;
     padding: 13px 16px;
     border-radius: 3px;
     transition: all 0.3s ease-in-out;
 }
 
 .partner-first-layer-two a:hover{
    background-color: #0078a1;
 }

/********************* clients sub menus ***************/

.client-first-layer-one,
.client-first-layer-two{
    flex: 80%;
    max-width: 288px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 44px 10px 44px 40px;
    transition: all 0.6s ease-in-out;
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
    clip-path: inset(0px -15px 0px 0px);
    z-index: 19;
    display: none; 
    transform: translateX(-288px);
}

.client-first-layer-one a.sub-menu-back-client{
    color: #000;
    display: flex;
    align-items: center;
}

.client-first-layer-one a.sub-menu-back-client i{
    font-size: 8px;
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.client-first-layer-one h2{
    padding-top: 50px;
    font-size: 18px;
    color: #1e2f4b;
    text-decoration: underline;
    font-weight: 700;
    margin-bottom: 40px;
}

.client-first-layer-one ul li a{
    color: #1e2f4b;
    display: block;
    padding: 10px 10px 10px 0;
    transition: all 0.4s;
}

.client-first-layer-one ul li a:hover{
    color: #0078a1;
}

.client-first-layer-two{
    padding-right: 20px;
 }
 
 .client-first-layer-two img{
     width: 95%;
     height: 150px;
     object-fit: cover;
     margin-bottom: 30px;
 }
 
 .client-first-layer-two h2{
     font-size: 18px;
     margin-bottom: 10px;
 }
 
 .client-first-layer-two p{
     font-size: 14px;
 }
 
 .client-first-layer-two a{
     display: inline-block;
     margin-top: 40px;
     color: #fff;
     background-color: #1e2f4b;
     font-size: 16px;
     padding: 13px 16px;
     border-radius: 3px;
     transition: all 0.3s ease-in-out;
 }
 
 .client-first-layer-two a:hover{
    background-color: #0078a1;
 }


/********************* Products sub menus ***************/

.pro-first-layer-one,
.pro-first-layer-two{
    flex: 80%;
    max-width: 288px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 44px 10px 44px 40px;
    transition: all 0.6s ease-in-out;
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
    clip-path: inset(0px -15px 0px 0px);
    z-index: 19;
    display: none; 
    transform: translateX(-288px);
}

.pro-first-layer-one a.sub-menu-back-pro{
    color: #000;
    display: flex;
    align-items: center;
}

.pro-first-layer-one a.sub-menu-back-pro i{
    font-size: 8px;
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.pro-first-layer-one h2{
    padding-top: 50px;
    font-size: 18px;
    color: #1e2f4b;
    text-decoration: underline;
    font-weight: 700;
    margin-bottom: 40px;
}

.pro-first-layer-one ul li a{
    color: #1e2f4b;
    display: block;
    padding: 10px 20px 10px 0;
    font-size: 14px;
    transition: all 0.4s;
}

.pro-first-layer-one ul li a:hover{
    color: #0078a1;
}

.pro-first-layer-two{
    padding-right: 20px;
 }
 
 .pro-first-layer-two img{
     width: 95%;
     height: 150px;
     object-fit: cover;
     margin-bottom: 30px;
 }
 
 .pro-first-layer-two h2{
     font-size: 18px;
     margin-bottom: 10px;
 }

 .pro-first-layer-two p{
    font-size: 14px;
 }
 
 .pro-first-layer-two a{
     display: inline-block;
     margin-top: 40px;
     color: #fff;
     background-color: #1e2f4b;
     font-size: 16px;
     padding: 13px 16px;
     border-radius: 3px;
     transition: all 0.3s ease-in-out;
 }
 
 .pro-first-layer-two a:hover{
    background-color: #0078a1;
 }


/*********** sub one, two, three  **********/

.pro-sub-one,
.pro-sub-two,
.pro-sub-three{
    flex: 80%;
    max-width: 288px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 44px 10px 44px 40px;
    transition: all 0.6s ease-in-out;
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
    clip-path: inset(0px -15px 0px 0px);
    z-index: 18;
    display: none; 
    transform: translateX(-288px);
}

.pro-sub-one a.sub-menu-back-pro-sub,
.pro-sub-two a.sub-menu-back-pro-sub-two,
.pro-sub-three a.sub-menu-back-pro-sub-three{
    color: #000;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.pro-sub-one a.sub-menu-back-pro-sub i,
.pro-sub-two a.sub-menu-back-pro-sub-two i,
.pro-sub-three a.sub-menu-back-pro-sub-three i{
    font-size: 8px;
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.pro-sub-one ul li a,
.pro-sub-two ul li a,
.pro-sub-three ul li a{
    color: #1e2f4b;
    display: block;
    padding: 10px 10px 10px 0;
    transition: all 0.4s;
}

.pro-sub-one ul li a:hover,
.pro-sub-two ul li a:hover,
.pro-sub-three ul li a:hover{
    color: #0078a1;
}



 /******************* menu query  ******************************/
  
 @media screen and (max-width: 1210px){
    
    .top-header ul li a{ 
        font-size: 12px;
    }
    
    .top-header ul li i{
        font-size: 10px;
    }

    .header-left{
        font-size: 24px;
    }

    .bottom-header .header-center ul li i{
        font-size: 10px;
        width: 13px;
        height: 13px;
    }
    
    .bottom-header .header-center ul li a{
        font-size: 14px;
    }

    .header-right a{
        padding: 6px 14px;
    }
      
    .header-right i{
        font-size: 12px;
        font-weight: 700;
    }

    .bottom-header .header-center ul{
        display: none;
    }
 }



 @media screen and (max-width: 1000px){

    .header-left{
        font-size: 20px;
        justify-content: start;
    }

    .bottom-header{
        flex-wrap: wrap;
    }

    .bottom-header .header-left{
        flex: 50%;
        order: 1;
    }

    .bottom-header .header-right{
        flex: 50%;
        order: 2;
    }

    .bottom-header .header-center{
        flex: 0 0 100%;
        order: 3;
        margin-top: 20px;
    }

    .top-header ul li:nth-child(3){
        display: none;
    }

    .top-header ul li:nth-child(4){
        display: none;
    }

    .top-header ul li i{
        display: none;
    }

    .top-header ul{
        padding-left: 40px;
    }
 }


 @media screen and (max-width: 768px){

    .top-header ul li a{
        font-size: 10px;
    }
 }


 @media screen and (max-width: 690px){

    .top-header ul li:nth-child(7){
        display: none;
    }

 }


/******** min width  ***********/
 @media screen and (min-width: 2050px) {

    .side-top-close{
        transform: translateX(500%);
    }

    .top-header ul{
        transform: translateX(370px);
    }

 }