

:root{

    --gradient-1: linear-gradient(90deg, #0ea5ea, #0bd1d1 51%);
    --gradient-3: linear-gradient(0deg, #000d1a, transparent);

    /* Transition */
    --transition-1: 250ms ease;
    --transition-2: 500ms ease;
    --transition-3: 1000ms ease;
}


/***************** golobal styling  ************************/

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-track{
    background-color: #b0a9a9;
}

::-webkit-scrollbar-thumb{
    background-color: #1e2f4b;
}

[data-reveal]{
  transform: translateY(50px);
  opacity: 0;
  transition: var(--transition-3);
}

[data-reveal="left"]{
  transform: translate(-50px,0);
}

[data-reveal="right"]{
  transform: translate(50px,0);
}

[data-reveal].revealed{
  transform: translate(0,0);
  opacity: 1;
}


.section{
    position: relative;
    padding-block: 60px;
    overflow: hidden;
    z-index: 1;
}

.container{
    padding-inline: 16px;
    max-width: 1440px;
    margin: 0 auto;
}

.text-center{
    text-align: center;
}

.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.btn{
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: max-content;
    border: 2px solid #fff;
    padding: 12px 45px;
    overflow: hidden;
    z-index: 1;
 }
 
 .btn::before{
     content: '';
     position: absolute;
     bottom: 100%;
     left: 50%;
     transform: translateX(-50%);
     width: 200%;
     height: 200%;
     border-radius: 50%;
     background-color: #1e2f4b;
     transition: var(--transition-2);
     z-index: -1;
 }
 
 .btn .text{
     transition: var(--transition-1);
 }
 
 .btn .text-1{
     position: absolute;
     top: 100%;
     left: 50%;
     transform: translateX(-50%);
     min-width: max-content;
     color: #fff;
 }

 .btn:is(:hover, :focus-visible){
    border-color: #1e2f4b;
 }
 
 .btn:is(:hover, :focus-visible)::before {
     bottom: -50%;
 }
 
 .btn:is(:hover, :focus-visible) .text-2{
     transform: translateY(-40px);
     color: #fff;
 } 
 
 .btn-secondary{
    background-color: #1e2f4b;
    color: #000;
}

.btn-secondary::before{
    background-color: #1e2f4b;
}

.btn-secondary .text-2{
    color: #fff;
}

.btn-secondary .text-1{
    color: #fff;
}

.has-after,
.has-before{
   position: relative;
   z-index: 1;
}

.has-after::after,
.has-before::before{
    content: '';
    position: absolute;
}

.btn-custom{
    color: #fff;
    border: 1px solid #1e2f4b;
    background-image: linear-gradient(45deg, #1e2f4b, #34517f);
    display: inline-block;
    width: 200px;
    text-align: center;
    padding: 8px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-custom:hover{
    border-radius: 30px;
}

.btn-custom i {
    margin-right: 10px!important;
    transition: all 0.4s ease-in-out;
}

.btn-custom:hover i{
   margin-right: 15px!important;
}

.btn-custom.en{
    padding: 16px!important;
}

.btn-custom.en i{
    margin-left: 5px!important;
}

.btn-custom.en:hover{
    border-radius: 30px;
}

.btn-custom.en:hover i{
    margin-left: 10px!important;
}


.has-before{
  position: relative;
  z-index: 1;
}

.has-before::before{
  content: "";
  position: absolute;
}

.has-underline{
  position: relative;
  margin-block-end: 60px;
}


.has-underline .has-before::before{
  width: 18px;
  height: 18px;
  top: 2px; 
  left: 45%;
  transform: translateY(-50%) rotate(45deg);
  background-color: #1e2f4b;
  box-shadow: 7px -7px #1e2f4b;
}

.has-underline .span{
  display: block;
  height: 2px;
  background-color: #1e2f4b;
  width: 300px;
  margin-inline: auto;
  margin-block-start: 30px;
}

.section-home-title{
  text-align: center;
}

/********************* hero slider  ************************/
.hero{
    position: relative;
    padding-block: 120px;
    min-height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.hero .slider-item{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding-block-start: 100px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-3);
    z-index: 1;
}

.hero .slider-item.active{
    opacity: 1;
    visibility: visible;
}

.hero .slider-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.15);
    pointer-events: none;
    user-select: none;
    z-index: -1;
}

.hero-title{
    color: #fff;
    font-size: 40px;
}

.slider-subtitle{
    color: #fff;
    font-size: 18px;
    width: 60%;
}

.hero .btn{
    color: #fff;
}

.hero .slider-item.active .slider-bg{
    animation: smoothScale 7s linear forwards;
}

@keyframes smoothScale {
    
     0%{
        transform: scale(1);
     }
     100% {
        transform: scale(1.15);
     }
}

.hero .btn{
    margin-inline: auto;
}

.slider-reveal{
    transform: translateY(30px);
    opacity: 0;
}

.hero .slider-item.active .slider-reveal{
    animation: sliderReveal 1s ease forwards;
}

@keyframes sliderReveal {
    
    0%{
        transform: translateY(30px);
        opacity: 0;
    }

    100%{
        transform: translateY(0);
        opacity: 1;
    }
}


.hero .slider-item.active .slider-subtitle {
    animation-delay: 500ms;
}

.hero .slider-item.active .hero-title {
    animation-delay: 1000ms;
}

.hero .slider-item.active .btn {
    animation-delay: 2s;
}

.hero .slider-btn{
    display: grid;
    position: absolute;
    z-index: 1;
    color: #fff;
    font-size: 2.4rem;
    border: 1px solid #fff;
    width: 45px;
    height: 45px;
    place-items: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition-1);
 }

 .hero .slider-btn ion-icon{
    transform: rotate(-45deg);
 }

 .hero .slider-btn.prev{
    left: 30px;
 }

 .hero .slider-btn.next{
    right: 30px;
 }

 .hero .slider-btn:is(:hover, :focus-visible){
    background-color: #1e2f4b;
    color: #fff;
    border-color: #1e2f4b;
 }


 @media screen and (max-width: 700px) {

  .hero-title{
    font-size: 25px;
  }

  .slider-subtitle{
      font-size: 14px;
  }

 }

 @media screen and (max-width: 500px){

  .hero-title{
    font-size: 20px;
  }
  
  .slider-btn {
      display: none!important;
   }
}

 /********************* history part  ************************/

 .history-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 600px;
 }

 .history-left{
    flex: 25%;
    height: 100%;
 }

 .history-center{
      flex: 50%;
      height: 100%;
 }

 .history-right{
    flex: 25%;
    height: 100%;
 }


 /**** history center *****/

 .history-center{
    position: relative;
    overflow: hidden;
 }


 .history-center_img{
    max-width: 100%;
    height: 100%;
 }

 .history-center_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 2.1s ease;
 }

 .history-center:hover img{
    transform: scale(1.2);
 }

 .history-center_content{
    position: absolute;
    top: 0;
    padding: 28px;
    transition: all 0.8s ease-in-out;
 }

 .history-center_content h2{
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
 }

 .history-center_content p{
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.5;
 }


  /**** history left *****/

  .history-left{
      display: flex;
      flex-direction: column;
  }

  .history-left_up{
    flex: 70%;
    position: relative;
    background-image: linear-gradient(75deg, #1e2f4b 45%, #34517f);
  }

  .history-left_down{
    flex: 30%;
    position: relative;
    /* border-bottom: 2px solid #1e2f4b; */
  }

  .counter{
      position: absolute;
      top: 0;
      right: 0;
      padding: 16px;
      color: #fff;
  }

  .counter.en{
    left: 0!important;
  }

  .counter-1{
     font-size: 35px;
  }
  .counter-1 span{
    font-size: 35px;
  }


  .counter-2{
    font-size: 25px;
    color: #1e2f4b;
  }

  .counter-2 span{
      font-size: 28px;
  }


/**** history right *****/

.history-right{
    display: flex;
    flex-direction: column;
}

.history-right_up{
    flex: 70%;
    position: relative;
    /* border-top: 2px solid #1e2f4b; */
}

.history-right_down{
    flex: 30%;
    position: relative;
    background-image: linear-gradient(75deg, #1e2f4b 45%, #34517f);
}

@media screen and (max-width: 1100px){
  
  .counter-1{
    font-size: 16px;
 }
 .counter-1 span{
   font-size: 22px;
 }


 .counter-2{
   font-size: 25px;
 }

 .counter-2 span{
    font-size: 25px;
 }

 .history-center_content h2{
  font-size: 30px;
}
      
}

@media screen and (max-width: 791px){

 .counter-1{
  font-size: 12px;
}
.counter-1 span{
 font-size: 18px;
}


.counter-2{
 font-size: 20px;
}

.counter-2 span{
  font-size: 20px;
}

.history-center_content h2{
font-size: 25px;
}

}

@media screen and (max-width: 562px){

  .history .container{
    width: 100%;
    max-width: 100%;
  }

  .history-container{
    height: 700px;
    display: grid;
 }

 .history-left{
    flex-direction: row;
 }

 .history-right{
  flex-direction: row;
 }

  .history-center .btn-custom{
     padding: 4px;
     width: 150px;
     font-size: 10px;
  } 

  .history-center_content h2{
    font-size: 20px;
  }

  .history-center_content p{
    font-size: 12px;
  }

  .section.history{
    padding-bottom: 40px;
  }
}


/******************************* partner slider  *************************/

.swiper{
 background-image: linear-gradient(45deg, #1e2f4b, #34517f);;
  padding: 64px;
  border-radius: 10px;
}

.swiper-pagination{
  display: none;
}

.partner_header_content{
  margin-bottom: 60px;
  color: #fff;
}

.partner_header_content h2{
  font-size: 28px;
  margin-bottom: 10px;
}

.partner_header_content a{
    display: inline-block;
    margin-top: 20px;
    border: 1px solid #fff;
    padding: 12px;
    width: 150px;
    text-align: center;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

.partner_header_content a:hover{
  background-color: #fff;
  color: #1e2f4b;
}

.slide-container {
  margin: 0 30px;
  overflow: hidden;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
}
.card .image-box {
  height: 400px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.partner_overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  left: 0;
  border-radius: 8px;
  transition: all 0.5s ease-in-out;
}

.card .image-box:hover .partner_overlay{
  height: 0;
}

.card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.card .image-box .partner_card_content{
   position: absolute;
   bottom: 10px; 
   left: 10px;
   padding: 16px;
   color: #1e2f4b;
}

.card .image-box .partner_card_content .home_partner_btn{
   border: 1px solid #1e2f4b;
   padding: 8px;
   border-radius: 20px;
   display: block;
   text-align: center;
   width: 150px;
   font-size: 14px;
}

.card .profile-details {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding: 15px;
}
.card .profile-details img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.profile-details .name {
  font-size: 15px;
  font-weight: 500;
}
.profile-details .job {
  font-size: 12px;
  font-weight: 500;
  color: #4d4d4d;
}

.swiper-navBtn {
  color: #000;
  height: 50px;
  width: 50px;
  transform: translateY(-40%);
  background: #fff;
  border-radius: 50%;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 24px;
}

.swiper-pagination-bullet {
  background-color: #333;
}

.swiper-wrapper{
  height: auto;
}

@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: none;
  }


}

@media screen and (max-width: 450px){

  .swiper {
    width: 300px;
  }

  .image-box{
      height: 300px!important;
  }

  .slide-container {
    margin: 0!important;
    overflow: visible!important;
  }

  .partner_header_content h2{
    font-size: 14px;
  }

  .partner_header_content p{
    font-size: 12px;
  }

  .partner_card_content{
    font-size: 12px;
  }

}



 /*********************** industrial part  ************************/


 .tab-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-card{
  position: relative;
  height: 60px;
  background-color: #1e2f4b;
  border-radius: 10px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3), 0 -4px 5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-2);
}

.tab-card.active::before{
  content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.4);
   transition: all 0.5s ease-in-out;
   z-index: 2;
} 

.tab-card:hover::before{
  height: 0;
}

.industrial_content{
  position: absolute;
  bottom: 10px;
  right: 10px;
  left: 10px;
  width: 95%;
  padding: 16px;
  color: #fff;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  background-color: rgba(30, 47, 75, 0.5);
  border-radius: 4px;
}

.industrial_content_title{
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #1e2f4b;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.industrial_content_title.en{
  left: 20px !important;
  width: 200px;
  text-align: center;
}

.industrial_content.en{
   left: 20px !important;
   width: 95%;
}

.industrial_content p{
   font-size: 14px;
   line-height: 1.5;
}

.tab-card.active .industrial_content{
  opacity: 1;
  visibility: visible;
}

.tab-card.active .industrial_content_title{
  opacity: 1;
  visibility: visible;
} 

.tab-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-card .w-100{
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-2);
}

.tab-card.active .w-100{
  opacity: 1;
}

.tab-card.active {
  height: 40vh; 
  box-shadow: none;
}

.tab-text{
  font-size: 20px;
  font-weight: 400;
  color: #ccc;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}


.tab-card.active .tab-text{
  display: none;
}

@media screen and (max-width: 450px){
  .tab-text{
    font-size: 14px;
  }

  .industrial_content p{
     font-size: 12px;
  }
}

@media screen and (min-width: 575px) {
  .tab-card.active{
    height: 50vh;
  }
}

@media screen and (min-width: 768px) {
  .tab-card.active{
    height: 70vh;
  }
}


@media screen and (min-width: 992px) {
  .tab-list{
    flex-direction: row;
    gap: 20px;
  }

  .tab-text{
    /* text-orientation: upright; */
    white-space: nowrap;
    writing-mode: vertical-lr;
  }

  .tab-card{
    height: 70vh;
    max-width: 60px;
  }

  .tab-card.active{
    max-width: 650px;
  }

}

@media screen and (min-width: 1200px) {
  .tab-card{
    max-width: 75px;
  }

  .tab-card.active{
    max-width: 750px;
  }
}
 

/******************************* logo customers part  *************************/

section.logo-customers{
  padding-block: 50px;
}

.wrapper {
  padding: 35px;
  position: relative;
  overflow-x: hidden;
  max-width: 1440px;
  background-image: linear-gradient(75deg, #1e2f4b 45%, #34517f);
  border-radius: 13px;
}

.wrapper .icon {
  position: absolute;
  top: 0;
  height: 100%;
  width: 120px;
  display: flex;
  align-items: center;
}

.icon:first-child {
  left: 0;
  display: none;
  background: linear-gradient(90deg, #1e2f4b 30%, transparent);
}

.icon:last-child {
  right: 0;
  justify-content: flex-end;
  background: linear-gradient(-90deg, #385480 30%, transparent);
}

.icon i {
  width: 55px;
  height: 55px;
  cursor: pointer;
  font-size: 1.2rem;
  text-align: center;
  line-height: 55px;
  border-radius: 50%;
}

.icon i:hover {
  background: #efedfb;
}

.icon:first-child i {
  margin-left: 15px;
} 

.icon:last-child i {
  margin-right: 15px;
} 

.wrapper .tabs-box {
  display: flex;
  gap: 12px;
  list-style: none;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.tabs-box.dragging {
  scroll-behavior: auto;
  cursor: grab;
}

.tabs-box .tab {
  cursor: pointer;
  font-size: 1.18rem;
  white-space: nowrap;
  background: #f5f4fd;
  padding: 13px 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #d8d5f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs-box .tab img{
  width: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.tabs-box .tab:hover{
  background: #efedfb;
}

.tabs-box.dragging .tab {
  user-select: none;
  pointer-events: none;
}

.tabs-box .tab.active{
  border-color: transparent;
}

@media screen and (max-width: 500px){
  .tabs-box .tab{
    width: 80px;
    height: 80px;
  }

  .wrapper .icon{
    width: 50px;
  }

  .icon i{
     width: 35px;
     height: 35px;
     line-height: 35px;
  }
}



/*************************** Footer part   ******************************/

.footer{
    margin-top: 100px;
    background-color: #f5f3f2;
    padding: 36px 16px;
    padding-bottom: 0;
}

.footer-up{
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 5px;
}

.foot-up{
  flex: 25%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.foot-up img{
  width: 60%;
}

.foot-up h2{
  font-size: 16px;
  margin-top: 20px;
}

.foot-up h3{
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 400;
}

.foot-up ul li{
  padding-bottom: 10px;
}

.foot-up ul li a{
  color: #316f8c;
  transition: all 0.4s ease-in-out;
}

.foot-up ul li a:hover{
  color: #0ea5ea;
}

.foot-up:last-child{
  background-color: #1e2f4b;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.foot-up:last-child h3{
  color: #fff;
}

.foot-up:last-child ul li a{
  color: #fff;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}

.foot-up:last-child ul li a:hover{
  color: #0ea5ea;
}

.footer-btn{
   padding: 12px 16px;
   background-color: #0ea5ea;
   display: inline-block;
   width: 150px;
   text-align: center;
   transition: all 0.4s ease-in-out;
}

.footer-btn:hover{
    border-radius: 10px; 
    color: #fff!important;
}

.socila_media{
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 80px;
  color: #fff;
}

.socila_media div:last-child{
  display: flex;
  align-items: center;
}

.socila_media div:last-child ul{
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.socila_media div:last-child ul li{
   margin: 0 10px;
}



/***** footer down ************/

.footer-down{
  background-color: #1e2f4b;
  padding: 16px;
}

.foot-down-one{
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.foot-down-one .footer-btn{
   flex: 25%;
   color: #fff;
   font-size: 14px;
}

.foot-down-one p{
  color: #fff;
  font-size: 14px;
}

.socila_media{
  font-weight: 200;
  font-size: 14px;
  color: #c6c6c6;
}

@media screen and (max-width: 1090px){
    
  .footer-up{
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 595px){
    .socila_media{
      font-size: 14px;
      gap: 30px;
    }
}


@media screen and (max-width: 500px){
  
     .foot-up{
       flex: 50%;
     }

     .footer-down .foot-down-one{
        flex-wrap: wrap;
        flex-direction: column-reverse;
     }

     .socila_media{
       flex-direction: column;
    }
}



/**********************************  About PAGE   ******************************/

.tab_container{
  width: 90%;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: 0 auto;
  margin-top: 130px;
}

.tab_box{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 2px solid rgba(229, 229, 229);
  position: relative;
  color: #000;
}

.tab_box .tab_btn{
  font-size: 18px;
  font-weight: 600;
  color: #919191;
  background: none;
  border: none;
  padding: 18px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 860px){
  .tab_box .tab_btn{
    font-size: 14px;
  }
}

@media screen and (max-width: 720px){
  .tab_box .tab_btn{
    font-size: 10px;
  }

  .tab_box{
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}



.tab_box .tab_btn.active{
    color: #fff;
    background-color: #1e2f4b;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.content_box{
    padding: 20px;
}

.content_box .content{
    display: none;
    animation: moving 0.5s ease;
}

@keyframes moving {

    from{
        transform: translateX(50px);
        opacity: 0;
    }

    to{
        transform: translateX(0px);
        opacity: 1;
    } 
}

.content_box .content.active{
    display: block;
    opacity: 1;
}

.content_box .content h2{
   margin-bottom: 10px;
}



/***** first tab styles *******/
.tab-company-img-container{
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.tab-company-img-container img{
   width: 100%;
   height: 300px;
   object-fit: cover;
   border-radius: 10px;
   transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 980px){
  .tab-company-img-container{
    grid-template-columns: repeat(2,1fr);
  }

  .tab-company-img-container img{
    height: 200px;
  }
}

@media screen and (max-width: 720px){
  .tab-company-img-container img{
    height: 100px;
  }
}


.tab-company-img-container img:hover{
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4),
                0 -5px 5px rgba(0, 0, 0, 0.4);
}

.tab-company h1{
   margin-top: 30px;
   margin-bottom: 10px;
   font-size: 40px;
   font-weight: 400;
   color: #34517f;
}

.tab-company p{
  font-size: 18px;
  font-weight: 200;
  line-height: 1.5;
  color: #919191;
}

.tab_company_video{
  margin-top: 100px;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 50px;
}

.tab_company_video video{
  width: 100%;
  height: 300px;
}

@media screen and (max-width: 950px){
  .tab_company_video{
    grid-template-columns: none;
  }
}

@media screen and (max-width: 650px){
  .tab-company h1{
    font-size: 30px;
 }

 .tab-company p{
  font-size: 16px;
}
}

@media screen and (max-width: 500px){
  .tab-company h1{
    font-size: 20px;
 }

 .tab-company p{
  font-size: 14px;
}
}

/**** our company 3-d flip card  */

.tab_company_business_card{
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.business_card{
  width: 100%;
  height: 250px;
  perspective: 1000px;
}

@media screen and (max-width: 1200px){
  .tab_company_business_card{
    grid-template-columns: repeat(2,1fr);
  }
  
}

@media screen and (max-width: 830px){
  .tab_company_business_card{
    grid-template-columns: none;
  }
  
}

.business_card-inner{
 width: 100%;
 height: 100%;
 position: relative;
 transition: transform 1s;
 transform-style: preserve-3d;
}

.front,
.back{
 width: 100%;
 height: 100%;
 border-radius: 15px;
 position: absolute;
 backface-visibility: hidden;
}

.front{
 background-image: url(../images/logo-card.jpg);
 background-size: cover;
 background-position: center;
 padding: 60px 40px;
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
 color: #fff;
}

.front h3{
   margin-bottom: -50px;
}

.back{
 display: flex;
 flex-direction: column;
  justify-content: space-between;
 background-color: #e8eeef;
 color: #1e2f4b;
 padding: 20px 40px;
 transform: rotateY(180deg);
}

.back a{
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

.back .back-up,
.back-down{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.back .back-up p,
.back-down-right p{
  color: #1e2f4b;
  font-size: 13px;
}


.business_card:hover .business_card-inner{
 transform: rotateY(180deg);
}


/********* About => mission and vision style  ********/
.mission-head{
  width: 100%;
  height: 400px;
  position: relative;
  margin-block: 60px;
}

.mission-head img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-head-title{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.mission-head-title h1{
  color: #fff;
  font-size: 38px;
  font-weight: 400;
  width: 100%;
}

.mission-head-para{
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  color: #5a5a5a;
}

.mission-container{
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}

.mission-single{
  background-color: #f9f9f9;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

.mission-single img{
    width: 100%;
    height: 50%;
    object-fit: cover;
}

.mission-single div{
  padding: 16px;
}

.mission-single div h1{
  font-size: 28px;
  margin-bottom: 15px;
  color: #316f8c;
  font-weight: 400;
}

.mission-single div p{
  line-height: 1.5;
}

@media screen and (max-width: 920px){
  .mission-container{
    grid-template-columns: none;
  }
}

@media screen and (max-width: 860px){
  .mission-head-title h1{
    font-size: 28px;
  }
  
  .mission-head-para{
    font-size: 14px;
  }
  
}

@media screen and (max-width: 860px){
  .mission-head-title h1{
    font-size: 20px;
  }
  
}

@media screen and (max-width: 500px){
  .mission-single div h1{
    font-size: 16px;
  }

  .mission-single div p{
    font-size: 12px;
  }

  .mission-head-title h1{
    font-size: 16px;
  }
  
  .mission-head-para{
    font-size: 12px;
  }

  .mission-head{
    height: 200px;
  }
}

/********* About => cultural - ethics  ********/

.single_ethic{
  margin-top: 60px;
}

.single_ethic h1{
  margin-bottom: 15px;
  color: #1e2f4b;
  font-size: 30px;
}

.single_ethic{
  line-height: 1.5;
  margin-bottom: 10px;
  color: #4d4d4d;
}

.single_ethic ul li{
   margin-bottom: 15px;
   position: relative;
   padding-left: 15px;
   padding-right: 25px;
}

.single_ethic ul li::before,
.responsibility div ul li::before{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #838383;
  right: 0;
  top: 9px;
  margin-right: 10px;
}

.single_ethic.en ul li::before,
.responsibility.en div ul li::before{
  left: 0;
  top: 9px;
}

/********* About => responsibilities  ********/
.responsibility{
   margin-top: 60px;
}

.responsibility h1{
  color: #1e2f4b;
  font-size: 38px;
  font-size: 500;
  margin-bottom: 60px;
}

.responsibility div{
  margin-bottom: 30px;
}

.responsibility div h2{
  color: #1e2f4b;
  font-weight: 400;
  margin-bottom: 15px;
}

.responsibility div p{
  line-height: 1.5;
  color: #4d4d4d;
}

.responsibility div ul li{
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
  padding-right: 25px;
}




/**********************************  CONTACT PAGE   ******************************/

.section.contact{
  padding-top: 150px;
  padding-bottom: 0;
}

.contact_container{
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  padding: 16px;
  gap: 100px;
}

.contact_left{
  flex: 55%;
}

.contact_right{
   flex: 40%;
}

.contact_part_container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cont_parts{
  flex: 48%;
  background-color: #f1efed;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-radius: 3px;
  padding: 16px;
  gap: 15px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}

.contact_left h1{
   font-size: 30px;
   font-weight: 400;
   color: #1e2f4b;
   margin-bottom: 30px;
}

.cont_parts .contact_btn{
  color: #fff;
  background-color: #1e2f4b;
  display: inline-block;
  width: 90px;
  text-align: center;
  padding: 8px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.cont_parts .contact_btn:hover{
  background-color: #0ea5ea;
}

.cont_parts h2{
  font-weight: 400;
  font-size: 23px;
  color: #5a5a5a;
}


.contact_right h2:first-child{
   margin-top: 70px;
}

.contact_right h2{
    font-weight: 400;
    font-size: 23px;
    margin-bottom: 10px;
}

.contact_right p{
  font-size: 16px;
  margin-block: 20px;
}


@media screen and (max-width: 600px){
  
  .contact_container{
      flex-wrap: wrap;
  }
}


/**********************************  QOUTE - SERVICE - ENQUIRIES - DOCUMENTS ==> PAGE   ******************************/

.section.quote{
  padding-bottom: 0;
}

.quote_container{
  margin-top: 80px;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  padding: 16px;
  gap: 100px;
}

.quote_container.en{
  flex-direction: row;
}

.quotes{
  padding: 16px;
}

.quote_1{
   flex: 45%;
}

.quote_2{
  flex: 50%;
}

@media screen and (max-width: 700px){
  .quote_container{
    flex-wrap: wrap;
  }
}

.quote_1 .quote_back_btn{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #1e2f4b;
    display: flex;
    justify-items: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.quote_1 .quote_back_btn:hover{
  background-color: #0ea5ea;
}

.quote_1 .quote_back_btn i{
  margin: 0 auto;
}

.quote_1 h1{
  font-size: 30px;
  font-weight: 400;
  color: #1e2f4b;
  margin-bottom: 30px;
}

textarea,
select{
  width: 100%;
}

.quote_2 h2{
  font-weight: 400;
  color: #5a5a5a;
  margin-bottom: 30px;
}

.quote_2 h2:not(:first-child){
  margin-top: 30px;
}

.form-group{
  margin-block: 30px;
}

.form-group label{
  font-size: 14px;
  font-weight: 500;
  color: #5a5a5a;
  margin-bottom: 5px;
}

.quote_2 input,
.quote_2 select{
  width: 100%;
  border: none;
  outline: none;
  border-radius: 3px;
  border: 1px solid #333;
  padding: 8px;
}

.quote_2 input:focus{
  outline: 1px solid #316f8c;
}


/* upload file design */
input[type="file"]{
  display: none;
}

label.upload_label{
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  background: #1e2f4b;
  text-align: center;
  padding: 15px 35px;
  font-size: 18px;
  letter-spacing: 1.5px;
  user-select: none;
  cursor: pointer;
  border-radius: 3px;
}

label.upload_label i{
  font-size: 20px;
  margin-right: 10px;
}

label.upload_label:active{
  transform: scale(0.9);
}

.form-group.file-group p{
   font-size: 12px;
   color: #5a5a5a;
}

input[type="submit"]{
   display: inline-block;
   font-family: inherit;
   width: 150px;
   padding: 12px;
   cursor: pointer;
   background: none;
   border: none;
   background-color: #1e2f4b;
   color: #fff;
   font-size: 18px;
   transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover{
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.form_error{
  color: red;
}

.alert-success{
   color: #fff;
   padding: 16px;
   background-color: rgb(114, 193, 114);
   border-right: 6px solid rgb(37, 144, 37);
   border-left: 6px solid rgb(37, 144, 37);
   text-align: center;
}

.alert-success i{
    font-size: 16px;
    margin-inline: 10px;
    color: #fff;
    cursor: pointer;
}

.alert-error{
  color: #fff;
  padding: 16px;
  background-color: rgb(247, 131, 99);
  border-right: 6px solid rgb(203, 65, 2);
  border-left: 6px solid rgb(203, 65, 2);
  text-align: center;
}

.show_file{
  color: rgb(37, 144, 37)!important;
  padding: 8px!important;
  font-size: 14px!important;
}


/*** Radio button styles  *****/
.filter-redios{
  position: relative;
  background: #1e2f4b;
  padding: 15px;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 100%;
}

.filter-redios input{
  display: none;
}

.filter-redios label{
  position: relative;
  margin: 0 10px;
  user-select: none;
  cursor: pointer;
  z-index: 10;
  color: #fff;
  font-size: 16px;
  width: 100%;
}


.filter-redios input:checked + label,
.filter-redios label:hover{
  color: #fff;
}

input ~ .checked-radio-bg{
  --width: 50%;
  --right: 50%;

  background: #0ea5ea;
  position: absolute;
  top: 5px;
  left: var(--right);
  bottom: 5px;
  width: var(--width);
  border-radius: 25px;
  transition: all 0.4s ease-in-out;
}


#featured:checked ~ .checked-radio-bg{
  --width: 50%;
  --right: 48%;
}

#popular:checked ~ .checked-radio-bg{
  --width: 50%;
  --right: 1%;
}


/* for en */

input.en ~ .checked-radio-bg{
  --left: 50%;
  left: var(--left);
}
#featured.en:checked ~ .checked-radio-bg{
  --width: 50%;
  --left: 1%;
}

#popular.en:checked ~ .checked-radio-bg{
  --width: 50%;
  --left: 48%;
}

.popular_content p{
  font-size: 14px;
  color: #5a5a5a;
}

.hidden{
  display: none;
}




/**********************************  instrument page   ******************************/

.section.instrument_container{
  padding-left: 0;
  padding-right: 0;
}

.instrument_container{
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
  padding-left: 38px;
  padding-right: 38px;
  height: 700px;
}

.instrument-left{
  width: 90%;
  /* background: linear-gradient(90deg, #5285d8 0%, #3f649f 40%); */
  background-color: #e8eeef;
  display: grid;
  place-items: center;
  position: relative;
}

.instrument-left .pro_next,
.instrument-left .pro_prev{
   position: absolute;
   top: 55%;
   color: #fff;
   border-radius: 50%;
   color: #1e2f4b;
   background-color: #fff;
   width: 50px;
   height: 50px;
   padding: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease-in-out;
}

.instrument-left .pro_next:hover,
.instrument-left .pro_prev:hover{
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
}

.instrument-left .pro_next{
  right: 10px;
}

.instrument-left .pro_prev{
  left: 10px;
}


.instrument-left img{
   width: 100%;
   height: 100%;
   object-fit: contain;
   border-radius: 8px;
   transition: all 0.3s ease-in-out;
}

.instrument-right{
  display: flex;
  flex-direction: column;
  padding-right: 16px;
  padding-left: 16px;
  transition: all 0.3s ease-in-out;
}

.instrument-right-content{
  flex-grow: 1;
  margin-top: 80px;
}

.instrument-right-content h1{
  color: #0c80b6;
  margin-bottom: 20px;
  font-size: 30px;
}

.instrument-right-content p{
  color: #4d4d4d;
  line-height: 1.5;
  font-size: 14px;
}

.instrument-right-container{
   display: grid;
   grid-template-columns: repeat(4,1fr);
   gap: 20px;
}

.instrument-right-container div{
  /* background: linear-gradient(90deg, #5285d8 0%, #3f649f 40%); */
  background-color: #e8eeef;
  cursor: pointer;
  border-radius: 8px;
}

.instrument-right-container img{
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}



@media screen and (max-width: 830px){
  .instrument_container{
    height: 500px;
  }

  .instrument-right-container div{
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
  }

  .instrument-right-content h1{
    font-size: 25px;
  }
  
  .instrument-right-content p{
    color: #4d4d4d;
    line-height: 1.5;
    font-size: 14px;
  }
}


@media screen and (max-width: 695px){
  .instrument-right-content h1{
    font-size: 20px;
  }

  .instrument-right-container{
    gap: 10px;
 }
}

@media screen and (max-width: 595px){

  .instrument-right-content h1{
    font-size: 16px;
  }

  .instrument-right-content p{
    font-size: 12px;
  }

  .instrument-right-content{
    margin-top: 30px;
  }

  .instrument-right-container{
      grid-template-columns: repeat(2,1fr);
   }
}

@media screen and (max-width: 500px){

  .instrument-left{
    margin-left: 20px;
     padding-left: 16px;
  }
   
  .instrument_container{
    grid-template-columns: none;
    height: 800px;
  }

.instrument-left .pro_next,
.instrument-left .pro_prev{
   width: 30px;
   height: 30px;
   padding: 10px;
   font-size: 14px;
}
}

/**** instrument content  *******/
.section.instrument_content{
  padding: 20px;
  margin-top: 100px;
}

.instrument_content{
   display: grid;
   grid-template-columns: 300px 1fr;
   gap: 20px;
}

.whole_apps{
  background-color: #e8eeef;
  padding: 10px 32px 32px 32px;
}

.whole_apps h3{
  margin-bottom: 20px;
}

.app_last_content{
  margin-top: 20px;
}

.app_last_content ul li{
  border-top: 1px solid #ccc;
  padding-block: 10px;
}

.whole_insta_app{
  background-color: #e8eeef;
  padding: 10px 32px 32px 32px;
}

.whole_insta_app h3{
  margin-bottom: 20px;
}

.instru_app_last_content{
  margin-top: 10px;
}

.instru_app_last_content ul li{
  padding-block: 10px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.instrument_content_apps{
  display: grid;
  grid-template-columns: repeat(3,1fr);
}

.instru_app_img_container{
  width: 40px;
  height: 40px;
  background-color: #fff;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.app_indicatora{
  position: absolute;
  top: -30px;
  left: -25px;
  width: max-content;
  height: 20px;
  background-color: #1e2f4b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  color: #fff;
  font-size: 12px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.instru_app_img_container:hover .app_indicatora{
  opacity: 1;
  visibility: visible;
}


.instru_app_img_container img{
  width: 90%;
  height: 90%;
  object-fit: cover;
}

.instrument_content_exp h1{
   margin-bottom: 20px;
}

.instrument_content_exp p{
  margin-bottom: 10px;
  line-height: 1.5;
  color: #4d4d4d;
}

@media screen and (max-width: 810px){

  .instrument_content{
    grid-template-columns: 200px 1fr;
 }

  .instrument_content_apps{
    grid-template-columns: repeat(2,1fr);
  }
}


@media screen and (max-width: 580px){
  .instrument_content{
    grid-template-columns: none;
 }

 .instru_app_img_container{
  width: 40px;
  height: 40px;
}

.instrument_content_apps{
  gap: 10px;
  grid-template-columns: repeat(4,1fr);
}
}


/****** instrument icons  *****/
.instrument_icons{
  width: 70%;
  margin: 0 auto;
  margin-top: 70px;
}

.instrument_icons_container{
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  place-items: center;
  gap: 40px;
}

.instrument_icon_box{
  text-align: center;
  width: 23%;
}

.instrument_icon_box img{
  width: 50px;
  height: 50px;
}

.instrument_icon_box h3{
  font-size: 14px;
  color: #0c80b6;
  width: max-content;
}

@media screen and (max-width: 920px){
  .instrument_icons{
    width: 70%;
  }
}

@media screen and (max-width: 730px){
  .instrument_icons{
    width: 90%;
  }
}

@media screen and (max-width: 550px){
  .instrument_icons_container{
    grid-template-columns: repeat(3,1fr);
  }
}

@media screen and (max-width: 430px){
  .instrument_icons_container{
    grid-template-columns: repeat(2,1fr);
  }

  .instrument_icons{
    margin-top: 40px;
  }
}


/****** instrument last content  *****/

.section.instrument_order{
  padding-bottom: 10px;
}

.instrument_order_container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.instrument_order_text P{
  color: #4d4d4d;
  line-height: 1.5;
}

.instrument_order_box{
  background-color: #1e2f4b;
  padding: 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.instrument_order_box i{
  font-size: 20px;
}

.instrument_order_box span{
  display: block;
  margin-top: 10px;
}

.instru_btns{
  margin-top: 50px;
}

.instru_btns a{
  display: block;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.instru_btns a:first-child{
    background-color: #6e81a0;
    padding: 16px;
}

.instru_btns a:last-child{
  background-color: #fff;
  padding: 16px;
  color: #1e2f4b;
}

.instru_btns a:hover{
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 640px){
  .instrument_order_container{
    grid-template-columns: none;
  }
}

/********** quote for instru page  **********/
.quote_for_instru_page{
  background-color: #e8eeef;
}

.seperator{
  background-color: #e8eeef;
  padding: 32px;
  color: #1e2f4b;
}

.quote_1.quote_instru{
  background-color: #e8eeef;
  padding: 32px;
}

.quote_1.quote_instru p{
  line-height: 1.5;
  color: #0c80b6;
}

.quote_for_instru{
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.5s linear;
}

.quote_for_instru.active{
  position: static;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 0.5s linear;
}


/**********************************  partners whole page   ******************************/

.section.whole_partners{
  padding-bottom: 40px;
}

.single_customer_header{
  margin-top: 100px;
}

.single_customer_header p{
  font-weight: 400;
  font-size: 16px!important;
}

.partner_spot_light{
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  text-align: center;
}

.partner_spot_light h2{
  color: #316f8c;
  font-size: 30px;
  margin-bottom: 15px;
}

.partner_spot_light p{
  line-height: 1.5;
  color: #4d4d4d;
}

.partner_lists_container{
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 60px;
  text-align: center;
}

.single_partner_item{
  overflow: hidden;
  margin-bottom: 20px;
}

.single_partner_item .partner_main_img{
  width: 80%;
  height: 100px;
  object-fit: contain;
  margin-block: 15px;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
}

.single_partner_item .partner_main_img:hover{
  transform: scale(1.1);
}

.single_partner_item h2{
  color: #316f8c;
}

.single_partner_item p{
  line-height: 1.5;
  color: #4d4d4d;
}

.single_partner_item a{
  display: block;
  margin-top: 10px;
  border: 1px solid #316f8c;
  padding: 8px;
  transition: all 0.3s ease-in-out;
}

.single_partner_item a:hover{
  color: #fff;
  background-color: #316f8c;
}


@media screen and (max-width: 1120px){
  .partner_spot_light p{
     font-size: 14px;
  }

  .partner_spot_light h2{
    font-size: 25px;
  }
}

@media screen and (max-width: 1050px){
  .partner_spot_light{
    grid-template-columns: none;
  }

  .partner_spot_light video{
    width: 90%;
  }

  .partner_lists_container{
    grid-template-columns: repeat(2,1fr);
  }
  
}

@media screen and (max-width: 700px){
  .partner_lists_container{
    grid-template-columns: none;
  }
}




/**********************************  partner single page   ******************************/

.whole_single_partner{
  margin-top: 100px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  padding-right: 16px;
  padding-left: 16px;
}

.partner_single{
   padding: 16px;
}

.side_partner{
  padding: 16px;
}

.app_instruments{
  background-color: #e8eeef;
  padding: 10px 32px 32px 32px;
  margin-top: 20px;
}

.app_instruments h3{
  margin-bottom: 10px;
}

.app_instruments ul li{
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding-block: 10px;
}

.partner_single_exp h1{
  margin-bottom: 20px;
}

.partner_single_exp p{
  margin-bottom: 10px;
  line-height: 1.5;
  color: #4d4d4d;
}

.products_container{
   display: grid;
   grid-template-columns: repeat(4,1fr);
   gap: 50px;
   margin-top: 60px;
   margin-bottom: 80px;
}

.single_product{
  text-align: center;
  height: 250px;
  margin-bottom: 80px;
}

.single_product h2{
  font-size: 18px;
  color: #1e2f4b;
  margin-top: 10px;
}

.single_product h2:hover{
  text-decoration: underline;
}

.single_product_img{
  background-color: #e8eeef;
}

.single_product_img img{
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.partner_details{
  background-color: #e8eeef;
  padding: 16px;
  margin-top: 20px;
}

.partner_details .partner_logo{
  width: 100px;
}


.partner_details ul{
  margin-top: 15px;
}

.partner_details ul li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding-block: 10px;
  font-size: 14px;
}

.partner_details ul li img{
  width: 40px;
}

.rep_letter{
  display: block;
  text-align: center;
  margin-top: 20px;
  background-color: #1e2f4b;
  color: #fff;
  padding: 16px;
}

.letter_container img{
  margin-top: 20px;
  width: 90%;
  display: none;
}

.letter_container.active img{
  display: block;
}


@media screen and (max-width: 1230px){
  .whole_single_partner{
    grid-template-columns: 200px 1fr;
  }

  .partner_details ul li{
     flex-direction: column;
  }

  .rep_letter{
    font-size: 12px;
  }

  .whole_single_partner .instrument_content_apps{
    grid-template-columns: repeat(2,1fr);
  }
}

@media screen and (max-width: 1010px){
  .products_container{
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
 }
 
 .single_product h2{
   font-size: 16px;
 }
}

@media screen and (max-width: 980px){
  .whole_single_partner{
    grid-template-columns: none;
  }

  .whole_single_partner .instrument_content_apps{
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
  }
}

/**********************************  Blogs page   ******************************/

.section.blog{
   padding-bottom: 50px;
}

.blogs_header{
   margin-top: 150px;
   width: 100%;
   height: 250px;
   background-color: #1e2f4b;
   padding: 16px 42px;
   color: #fff;
   display: flex;
   align-items: center;
}

.blogs_header_content h1{
  font-size: 30px;
  margin-bottom: 20px;
  color: #fff;
}

.blogs_header_content p{
  font-size: 20px;
}

.blogs_container{
   padding: 32px;
   width: 90%;
   margin: 0 auto;
}

.blog-box{
  display: flex;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.blog-box:last-child{
  border-bottom: none;
}

.blog-box-img img{
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.blog-box-content h2{
   color: #0078a1;
   font-size: 20px;
   margin-bottom: 10px;
   transition: all 0.3s ease-in-out;
}

.blog-box-content h2:hover{
  text-decoration: underline;
}

.blog-box-content span{
  color: #5a5a5a;
  font-style: italic;
}

.blog-box-content p{
  margin-top: 20px;
  line-height: 1.5;
  color: #4d4d4d;
  font-weight: 200;
}


@media screen and (max-width: 730px){
  .blog-box-content h2{
    font-size: 16px;
 }

 .blog-box-content span{
   font-size: 14px;
 }

 .blog-box-content p{
  font-size: 14px;
 }
}

@media screen and (max-width: 650px){
  .blog-box{
     flex-direction: column;
  }

  .blog-box-img img{
     width: 100%;
  }
}




/**********************************  single blog page   ******************************/

.section.single_blog{
  margin-top: 200px;
}

.section.single_blog{
  padding-block: 0;
}

 h1{
  font-size: 30px;
  color: #0c80b6;
  width: 80%;
}

.single_blog_container{
  margin-top: 50px;
  padding: 32px;
  width: 100%;
  margin: 0 auto;
}

.single_blog_container span{
  color: #4d4d4d;
  font-style: italic;
  display: block;
  margin-bottom: 80px;
}

.single_blog_container p{
  line-height: 1.5;
  color: #5a5a5a;
  margin-block: 20px;
}

.single_blog_img_container{
   text-align: center;
}

.single_blog_container img{
  margin: 0 auto;
  width: 70%;
  height: 500px;
  object-fit: cover;
}

.single_blog_container h2{
  margin-top: 20px;
  color: #0c80b6;
}

@media screen and (max-width: 750px){
   h1{
    font-size: 25px;
    width: 80%;
  }

  .single_blog_container h2{
   font-size: 20px;
  }
}

@media screen and (max-width: 530px){
  h1{
    font-size: 20px;
    width: 80%;
  }

  .single_blog_container h2{
   font-size: 20px;
  }

  .single_blog_container img{
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 300px){
   h1{
    font-size: 14px;
    width: 100%;
  }

  .single_blog_container h2{
   font-size: 14px;
  }
  .single_blog_container p{
    font-size: 12px;
  }

}


/**********************************  customers page   ******************************/

.customers_container{
  margin-top: 100px;
}

.customers_header h1{
   font-size: 38px;
   color: #316f8c;
   margin-bottom: 30px;
}

.customers_header p{
  font-size: 20px;
  line-height: 1.5;
  color: #5a5a5a;
}

.customers_content{
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 100px;
  text-align: center;
  overflow: hidden;
}

.customers_content img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.customers_content h2{
   font-size: 28px;
   color: #316f8c;
   font-weight: 400;
   margin-bottom: 10px;
}

.customers_content p{
  color: #4d4d4d;
  line-height: 1.5;
  margin-bottom: 10px;
}

.customers_content a{
   display: inline-block;
   margin-top: 10px;
   text-decoration: underline;
   font-size: 20px;
   color: #0ea5ea;
   transition: all 0.3s ease-in-out;
}

.customers_content a:hover{
  text-decoration: none;
  color: #316f8c;
}


@media screen and (max-width: 870px){
  
  .customers_content{
     grid-template-columns: none;
  }

}


/**********************************  single customer page   ******************************/

.single_customer_container{
  margin-top: 0px;
}

.single_customer_header{
  background-color: #1e2f4b;
  padding: 48px 32px;
}

.single_customer_header h1{
  color: #fff;
  font-size: 38px;
  margin-bottom: 20px;
}

.single_customer_header p{
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px;
  width: 90%;
}

.single_customer_header a{
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  padding: 16px;
  border-radius: 8px;
  width: 200px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.single_customer_header a:hover{
   background-color: #fff;
   color: #1e2f4b;
}

.customer_industry_container{
   margin-top: 100px;
}

.all_customer_rel_industry{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 50px; 
  gap: 10px;
}

.single_customer_item{
  box-shadow: 0 2px 3px #6e81a0, 0 -2px 3px #6e81a0;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.single_customer_item div{
  background-color: #1e2f4b;
  color: #fff;
  height: 100px;
}

.single_customer_item img{
  width: 100%;
  height:80%;
  object-fit: contain;
  transition: all 0.4s ease-in-out;
}

.single_customer_item:hover img{
   transform: scale(1.1);
}

.single_customer_item div{
  padding: 16px;
}


@media screen and (max-width: 1250px){


  .all_customer_rel_industry{
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
  }
  
  .single_customer_header p{
    width: 90%;
  }

  .single_customer_header h1{
    font-size: 30px;
  }
}

@media screen and (max-width: 950px){
  .all_customer_rel_industry{
    grid-template-columns: repeat(2,1fr);
  }
}

@media screen and (max-width: 660px){
  .all_customer_rel_industry{
    grid-template-columns: 1fr;
  }
}




/**********************************  career page   ******************************/

.career_container{
  margin-top: 120px;
}

.career_banner{
  width: 100%;
  height: 450px;
  position: relative;
}

.career_banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career_banner div{
  position: absolute;
  top: 50px;
  left: 200px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 42px 32px;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 16px;
  width: 400px;
}

.career_banner.en div{
  padding: 42px 32px;
  top: 100px;
  left: 200px;
}


@media screen and (max-width: 1220px) {
  .career_banner div{
    left: 100px;
  }
}

@media screen and (max-width: 999px) {
  .career_banner div{
    left: 80px;
    width: 300px;
  }
}

@media screen and (max-width: 720px) {
  .career_banner div{
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }

}

.career_banner div h1{
  font-size: 40px;
  font-weight: 200;
  color: #4d4d4d;
}

@media screen and (max-width: 999px) {
  .career_banner div h1{
    font-size: 30px;;
  }
}

.career_banner div a,
.career_curious_part a{
  display: inline-block;
  margin-top: 20px;
  background-color: #1e2f4b;
  color: #fff;
  padding: 16px;
  transition: all 0.3s ease-in-out;
}

.career_banner div a:hover,
.career_curious_part a:hover{
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
}

.career_curious_part{
   margin-top: 80px;
   margin-bottom: 80px;
   display: grid;
   grid-template-columns: repeat(2,1fr);
   gap: 50px;
}

.career_curious_part video{
  width: 100%;
}

@media screen and (max-width: 1150px){
  .career_curious_part{
    display: flex;
    flex-direction: column;
  }

  .career_curious_part div:first-child video{
     width: 100%;
  }

  .career_curious_part div{
    width: 100%;
    text-align: center;
  }
}

.career_curious_part h2{
  color: #1e2f4b;
  font-size: 28px;
  margin-bottom: 15px;
}

.career_curious_part p{
  color: #5a5a5a;
  line-height: 1.5;
  margin-bottom: 15px;
}

.navare_apply{
   margin-top: 100px;
   position: relative;
   margin-bottom: 60px;
}

.navare_apply h2{
   color: #1e2f4b;
}

.navare_apply::after{
   content: '';
   position: absolute;
   width: 100%;
   height: 2px;
   background-color: #1e2f4b;
   top: 120%;
}

.apply_group_container{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.apply_group label{
  display: block;
  width: 100%;
}

.apply_group input{
  width: 60%;
}

.apply_group input,
.apply_group textarea{
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  outline: none;
  border: 1px solid #4d4d4d;
  transition: all 0.3s ease-in-out;
}

.apply_group input:focus,
.apply_group textarea:focus{
   border-color: #0ea5ea;
}

@media screen and (max-width: 950px){
  .apply_group input{
    width: 90%;
  }
}

@media screen and (max-width: 650px){
  .apply_group_container{
     grid-template-columns: none;
  }
}



/**********************************  catalog page   ******************************/

.downloads_header{
  margin-top: 140px;
  height: 400px;
  background-image: url('../images/catalog-1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 60px;
}

.downloads_header_content{
    background-color: rgba(255, 255, 255, 0.4);
    width: 35%;
    padding: 32px;
    color: #fff;
    border-radius: 10px;
}

.downloads_header_content h1{
  font-size: 35px;
  margin-bottom: 20px;
}

.download_item_container{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.download_item_container img{
  width: 90%;
  height: 150px;
  object-fit: contain;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.download_item{
  border: 1px solid #43659d;
  border-radius: 20px;
}

.download_item h2{
  color: #43659d;
  margin-block: 10px;
  font-weight: 400;
}

.download_item div{
  padding: 16px;
  text-align: center;
}

.download_item a{
  display: block;
  background-color: #1e2f4b;
  padding: 16px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
}

.download_item a:hover{
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 1070px){
  
  .downloads_header_content{
     width: 45%;
  }
}

@media screen and (max-width: 880px){
  .downloads_header_content{
    width: 60%;
 }
}

@media screen and (max-width: 810px){
  .download_item_container{
    grid-template-columns: repeat(2,1fr);
  }
}

@media screen and (max-width: 650px){
  .downloads_header_content{
    width: 80%;
 }
 .downloads_header_content h1{
  font-size: 25px;
 }
 .downloads_header_content p{
   font-size: 14px;
 }
}


@media screen and (max-width: 500px){
  .download_item_container{
    grid-template-columns: none;
  }

  .downloads_header_content{
    width: 100%;
 }

 .downloads_header_content h1{
  font-size: 20px;
 }

 .downloads_header_content p{
  font-size: 12px;
}

.downloads_header_content{
  padding-top: 10px;
}
}



/**********************************  Back to top btn   ******************************/

.back-top-btn{
  position: fixed;
  bottom: 30px;
  right: -70px;
  width: 70px;
  height: 70px;
  border: 1px dashed currentColor;
  color: #0c80b6;
  font-size: 1.2rem;
  border-radius:50%;
  display: grid;
  place-items: center;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 3;
}

.back-top-btn.show{
  transform: translateX(-100px);
  visibility: visible;
}

.back-top-btn:hover{
  color: #f16f6f;
}


/**********************************  404 page   ******************************/

.section.error_page{
  padding-bottom: 10px;
  padding-top: 10px;
}

.error_page_container{
  margin-top: 100px;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  place-items: center;
}

.error_page_container img{
  width: 100%;
}


.error_page_container h1{
  color: #43659d;
  font-size: 35px;
  margin-bottom: 20px;
}

.error_page_container p{
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: #5a5a5a;
  font-size: 18px;
}

.error_page_container a{
   display: inline-block;
   background-color: #43659d;
   color: #fff;
   padding: 16px;
   width: 200px;
   text-align: center;
   transition: all 0.3s ease-in-out;
}

.error_page_container a:hover{
  border-radius: 10px;
}

@media screen and (max-width: 700px){
  
  .error_page_container h1{
    font-size: 25px;
  }
  
  .error_page_container p{
    font-size: 14px;
  }
  
  .error_page_container a{
     padding: 10px;
     width: 200px;
  }

  .section.error_page{
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

@media screen and (max-width: 450px){
 
  .error_page_container{
    grid-template-columns: none;
  }

  .section.error_page{
    padding-bottom: 70px;
    padding-top: 70px;
  }
  
}


/**********************************  maintenance page   ******************************/

.section.maintenance{
  padding-bottom: 0;
}

.maintenance-p1,
.maintenance-p2{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}

.maintenance-p1 img{
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.maintenance-p1 a{
  display: inline-block;
  margin-top: 100px;
  color: #fff;
  background-color: #1e2f4b;
  width: 200px;
  text-align: center;
  padding: 16px;
  transition: var(--transition-2);
}

.maintenance-p1 a:hover{
  border-radius: 10px;
}

.maintenance-p1 h1{
  font-size: 38px;
  color: #43659d;
  font-weight: 400;
  margin-bottom: 20px;
}

.maintenance-p1 p,
.maintenance-p2 p{
  line-height: 1.5;
}

.maintenance-p2{
  margin-top: 80px;
}

.maintenance-p2 h2{
  color: #43659d;
  font-size: 28;
  margin-bottom: 20px;
}

@media screen and (max-width: 900px){
   
     
.maintenance-p1 h1{
  font-size: 28px;
}

.maintenance-p1 p,
.maintenance-p2 p{
 font-size: 14px;
}

}

@media screen and (max-width: 870px){
  .maintenance-p1,
  .maintenance-p2{
     grid-template-columns: none;
    }
}


/**********************************  search page   ******************************/
.search-box-container{
  width: 80%;
  margin: 0 auto;
  margin-top: 180px;
}

.search-box-container h1{
  color: #1e2f4b;
  margin-bottom: 30px;
}

.search-box{
  box-shadow: 0 0px 2px 3px rgba(0, 0, 0, 0.05);
  padding: 16px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.search-box h3{
  margin-bottom: 10px;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.search-box p{
  font-size: 14px;
}

.search-box h3:hover{
  color: #0ea5ea;
}

textarea{
  padding: 16px;
}


/* loader */

#loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.75) url(loading.gif) no-repeat center center;
  z-index: 1000000;
}