*{
    margin: 0%;
    padding: 0%;
    font-family: IRANYekan;

    box-sizing: border-box;
}
:root{
    --Rich-Black:#000814;
    --dark-blue:#001d3d;
    --blue:#003566;
    --orange:#ffc300;
    --yellow:#ffd60a;
    --light-blue:#1A79D3;
}
body{
  width: 100%;
  overflow-x: hidden;
  font-family: IRANYekan;
}
a{
  text-decoration: none;
  color: inherit;
  font-family: IRANYekan;
}
.main_navbar{
    height: 73px;
    padding-top: 20px;
}
.navbar_frame{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.logo_directions{
    display: flex;
    align-items: center;
}
.nav_logo{
z-index: 2;
color:#013565 ;

}
.nav_logo img{
    width: 100px;
    height: auto;
}
.nav_logo-title {
    margin: 0 10px;
}
.nav_logo-title h4{
    font-weight: bolder;
padding: 0%;
margin: 0%;
text-transform: uppercase;
font-family: Rubik;
font-size: 26px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
}
.nav_logo-title p{
    text-align: right;
font-family: Rubik;
font-size: 10px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: uppercase;
}
.nav_directions{
    list-style: none;
    display: flex;
    margin: 0 5rem;
    z-index: 2;
    align-items: center;
    padding: 0%;

}
.nav_directions li{
    padding: 0 15px;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
transition: .2s;
cursor: pointer;
z-index: 2;
}

.nav_directions li:hover{
color: var(--light-blue);
}
.nav_button{
    display: flex;
width: 152px;
height: 100%;
justify-content: center;
align-items: center;
border-radius: 14px;
color: white;
border: none;
background: #001D3D;
} 
.mobile_nav--button{
    display: none;
}
.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: #000814de;
  backdrop-filter: blur(10px);
  overflow-y: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: var(--yellow);
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}






.vector{
    width: 69px;
    height: 100px;
    background-color: white;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px 40px 0 0;
    padding-top: 10px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.vector_left{
    width: 40px;
    height: 40px;
    position: absolute;
    left: -32px;
    bottom: -20px;
 border-right: 8px solid white;
    border-bottom: 20px solid white;
    border-radius:  0 0 80px 0px;
}


.vector_right{
    width: 40px;
    height: 40px;
    position: absolute;
    right: -32px;
    bottom: -20px;
    border-left: 8px solid #f6fbff;
    border-bottom: 20px solid #f6fbff;
    border-radius:  0 0 0px 80px;
z-index: 0;
}


.vector_button{
    width: 46px;
    height: 88px;
border-radius: 38px;
background: #013565;
border: none;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 20px 0;
transition: .4s;
}
.vector_button:hover{
    background-color: var(--light-blue);
    height: 100px;
}









.switch {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 100%;
  
}

.current {
  height: 48px;
  width: 60px;
  position: relative;
  z-index: 1;
  font-size: 1rem;
  text-align: center;
  display: flex;
  background-color:var(--dark-blue);
  color: white;
  transition: all 0.2s ease-out;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10PX;
}

.current span {
  display: inline-block;
  line-height: 1;
}

.current .arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.current:hover {
  background-color: var(--light-blue);
}

.options {
  position: absolute;
  right: 0;
  top: 3.6em;
  z-index: 0;
  opacity: 0;
  transition: all 0.36s ease-out;
  display: none;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.switch.show-options .options {
  display: block;
  z-index: 5;
}

.switch.anim-options .options {
  opacity: 1;

}

.switch.show-shadow .options {
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.4);
}

.options-list {
  color: #313436;
  margin: 0;
  padding: 0.4rem 0.8em;
  position: relative;
  z-index: 5;
}

.options-list li {
  list-style: none;
  padding: 0.75em;
  border-bottom: 1px solid #e1e4e6;
  transform: translateX(10px);
  transition: all 0.24s ease-out;
  opacity: 0;
  font-size: 1rem;
  line-height: 1.3;
  white-space: nowrap;
}

.options-list li:last-child {
  border-bottom: none;
}

.options-list li.selected {
  color: var(--light-blue);
}

.switch.anim-options .options-list li {
  transform: translateX(0);
  opacity: 1;
}

#trans-circle {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -80px;
  right: -80px;
  z-index: 1;
  transition: all 0.4s ease-out;
  transform: scale(0.5);
  overflow: hidden;
}

#trans-circle svg {
  max-width: 100%;
  max-height: 100%;
}

.switch.anim-options #trans-circle {
  transform: scale(9);
}





















.service{
    width:49% ;
    max-width:442px;
    border-radius: 16px;
border: 1px solid #D9D9D9;
background: #FFF;
 padding: 10px 16px;
 display: flex;
 margin-top: 54px;
transition: .3s;
}
.service:hover{
  transform: translateY(-10px);
}

.service .service_image{
  width: 106px;
  height: 77px;
position: relative;
min-width: 106px;
}

.service_image img{
  width: 100%;
  height: 106px;
  position: absolute;
box-shadow: 0px 16px 30px -14px rgba(1, 53, 101, 0.49);
  bottom: 0;
border-radius: 12px;

}
.service_title{
padding: 0 10px;
  display: flex;
  flex-direction: column;
position: relative;
}
.service_title h6{
  text-align: justify;
font-size: 16px;
font-style: normal;
font-weight: 600;

}
.service_title p{
  color: #525252;
margin: 0%;
padding: 0%;
text-align: justify;
font-size: 10px;
font-style: normal;
font-weight: 200;


}


/* 
@media (min-width:1400px) {
  .container, .container-md {
    max-width: unset !important;
    width: 95% !important;
  }
} */
.about_us{
display: flex;
margin-top: 60px;
justify-content: space-between;
}
.about_us_images{
background-image: url(../images/aboutbg.png);
background-repeat: no-repeat;
background-position: 80% 100%;
width: 40%;
display: flex;
align-items: end;
padding-top: 30px;
flex-direction: column;
position: relative;
}
.about_us_images-title{
  padding: 0 5%;
  padding-left: 0%;
}
[dir='ltr'] .about_us_images-title{
padding-left: 5%;
padding-right: 0%;
}
.about_us_images-title h5{
  color: #EDC217;

text-align: right;
font-size: 15px;
font-style: normal;
font-weight: 600;
}
[dir="ltr"]  .about_us_images-title h5{
 color: #000814; 
}

.about_us_images-title p{
  color: #013565;
padding: 0 5px;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
}
.about_us_images img{
  border-radius: 32px;
border: 12px solid #FFF;
background: #D9D9D9;
width: 55%;
z-index: 1;
max-height: 80%;
}
.bg_image{
  position: absolute;
  top: 0;
  z-index: 0 !important;
  right: 0;
}
[dir="ltr"] .bg_image{
  right: unset;
  left: 0;
}
.about_us_title{
  width:60%;
  padding:0 30px;
  padding-top:40px;
  display:flex;
  flex-direction:column;
}
.about_us_title h1{color: #393939;

font-size: 40px;
font-style: normal;
font-weight: 700;
}
.about_us_title p{
  color: #525252;
text-align: justify;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height:2rem;
}
.about_us_title a{
 border-radius: 8px;
background-color: #013565;
display: flex;
width: 153px;
border:none;
color:white;
height: 46px;
justify-content: center;
align-items: center;
transition:.4s;
text-decoration: none;
}
.about_us_title a:hover{
  background-color:var(--light-blue)
}

.projects{
  width: 100%;
padding-bottom: 85px;
  background-color: var(--dark-blue);
  margin-top: 100px;
  position: relative;
}
.projects .vector{
  left: unset;
  bottom: unset;
  top: 0;
  transform: rotate(180deg);
  height: 159px;
border-radius: 15px 15px 0 0 ;

}
.projects .vector_right{
  border-color: white;
}
.projects .vector_bg{
  width: 80%;
  height: 100%;
  border-radius: 10px;
background: linear-gradient(0deg, #FFF 0%, #EDC217 100%);
}
[dir="ltr"] .projects .vector{
right: unset;
left: 0px;
} 
[dir="ltr"] .projects .vector_bg{
background: linear-gradient(0deg, #FFF 0%, #013565 100%);

}
.projects_header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
position: relative;
padding: 30px 0;
padding-right:80px ;
}
[dir="ltr"] .projects_header{
padding-right:unset ;
padding-left: 80px;

}
.projects_header h4{
  color: #FFF;

font-size: 36px;
font-style: normal;
font-weight: 700;
}
.projects_header p{
  color: #FFF;

font-size: 20px;
font-style: normal;
font-weight: 400;
}
.project_swiper_navigaitions{
  width: 120px;
  display: flex;
  justify-content: space-between;
  direction: rtl;
}
.project_swiper_navigaitions span{display: flex;
width: 54px;
height: 54px;
justify-content: center;
align-items: center;
border-radius: 8px;
background: #013565;
display: flex;
}
.project_swiper_navigaitions .swiper-button-disabled{
  filter: brightness(.75);
}
.project{
  width: 32% !important;
}
.project img{
  width: 100%;
  border-radius: 20px;
  max-height: 260px;
  height: 260px;
  object-fit: cover;
  
}
.project--title{
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: white;
  padding: 0 10px;
}
.project--title h6{
color: #FFF;

font-size: 18px;
font-style: normal;
font-weight: 500;
}
.project--title p{
  color: #c5c5c5;

font-size: 12px;
font-style: normal;
font-weight: 200;
}
.project--title span{
  display: flex;
width: 51px;
height: 57px;
justify-content: center;
align-items: center;
border-radius: 0px 0px 10px 10px;
background: #EDC217;
margin: 0 17px;
}
.projects_swiper{
  margin-top: 40px;
}
[dir="ltr"] .projects_swiper{
  direction: rtl;
}
[dir="ltr"] .project{
  direction: ltr;
}
[dir="ltr"] .project span {
  background: #013565;
}
[dir="ltr"] .project span svg{
  transform: rotate(180deg);
}

.blog{
    width: 33% !important;
    height: 452px;
    display: flex;
    padding:12px ;
    border-radius: 28px;
border: 1px solid #000;
background: #001D3D;
flex-direction: column;
transition: .3s;
}

.blog img{
    width: 100%;
    height: 319px;
    border-radius: 28px;
    object-fit: cover;
}
.blog_tools{
    color: rgba(255, 255, 255, 0.80);

font-size: 12px;
font-style: normal;
font-weight: 400;
}
.blog_titles h5{
color: #FFF;

font-size: 15px;
font-style: normal;
font-weight: 300;
}
.blog_titles p{
    color: #aaaaaa;

font-size: 12px;
font-style: normal;
font-weight: 200;
margin: 0%;
    }
    .blog_titles span{
        display: flex;
width: 44px;
height: 44px;
justify-content: center;
align-items: center;
border-radius: 14px;
background: #FFF;
transition: .3s;
    }
[dir="ltr"] .blog_titles span svg{
        transform: rotate(180deg);
        stroke: var(--dark-blue);
    }

footer{
  min-height: 350px;
  background-color: #000813;
  border-radius:20px ;
  position: relative;
  padding: 150px 50px 100px 50px !important;
  justify-content: space-between;
color: white;
display: flex;
justify-content: space-between;
margin: 90px 0;
flex-wrap: wrap;
}
footer h5{

font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
position: relative;
}
footer h5::after{
  content: '';
  position: absolute;
  right: -16px;
width: 24px;
height: 24px;
border-radius: 100%;
background: linear-gradient(217deg, #013565 -32.14%, rgba(235, 235, 235, 0.60) 86.9%);}
[dir="ltr"] footer h5::after{
  right:unset ;
  left: -10px;
}
footer .vector{
  bottom: unset;
  top: 0%;
  transform: rotate(180deg);
}
footer .vector_right{
  border-color: white;
}
footer .vector_button{
  background-color: var(--yellow);
}
[dir='ltr'] 
footer .vector_button{
  background-color: var(--dark-blue);

}
[dir='ltr'] 
footer .vector_button:hover{
  background-color: var(--blue);

}
footer .nav_logo{
  margin: 0%;
}
footer .nav_logo-title {
  color: white;
}

.footer_about{
  width: 28%;
}
.footer_about p{
  text-align: justify;
}
.footer_sochials{
  width: 100%;
  height: 50px;
  background-color: white;
  border-radius: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}
.footer_sochials svg{
  transition: .3s;
}
.footer_sochials svg:hover{
  fill: black;
}
.footer_acsses li{
text-align: justify;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 36px;
color: #A9A9A9;


}
.footer_contactUs{
  max-width: 20%;
}
.footer_contactUs span{
  width: 34px;
  height: 34px;
     min-width: 34px;
  min-height: 34px;
  border-radius: 100%;
  background-color: #114476;
  outline: 5px solid rgba(255, 255, 255, 0.10);

display: flex;
align-items: center;
justify-content: center;
}
.footer_contactUs p{
  font-size: 12px;
color: #CFCFCF;

margin: 0%;
}
footer .nav_logo {
  padding: 0% !important;
}
.footer_lisenses{
}
.lisense{
  width: 165px;
  height: 54px;
  background-color: white;
  margin-top: 25px;
  border-radius: 40px 20px 20px 40px ;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.lisense img{
  width: 44px;
  height: 44px;
}
.lisense p{
  color: #808080;
font-size: 10px;
font-style: normal;
font-weight: 300;
margin: 0%;
}

.tabbar{
    display: flex;
        align-items: center;
    justify-content: center;
    padding: 0%;
}
.decstop_filter{
      display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    max-width: 700px;
}
.tabbar ul .active{
 background-color: #013565;
    color: white;}
.tabbar ul li{
width: 190px;
    height:56px ;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
background-color: #EFF8FF;
transition: .3s;
cursor: pointer;
}
.tabbar ul li:hover{
    background-color: #013565;
    color: white;
}

.mobile_filter{
    display: none;
    width: 100%;
    height: 62px;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
    border-radius: 14px;
background: #EFF8FF;
position: relative;
}
.mobile_filter p{
color: #414141;
font-size: 11px;
font-style: normal;
font-weight: 700;
}
.filters{
    width: 100%;
    top: 62px;
    background-color: white;
    position: absolute;
    z-index: 1;
    display:none;
    left: 0;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.23);
    padding: 10px 0;
}
.filters ul{
   padding: 0%;
   margin: 0%; 
}
.filters li{
    width: 100% !important;
    margin-top: 5px;
}






.persons{
    width: 100%;
    display: none;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap:0.5rem
}

.person{
    width: 18%;
    height:400px ;
    position: relative;
    display: flex;
    justify-content: start;
    transition: .3s;
    margin-top: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
   
}

.person img{
    width: 100%;
    height: 100%;
    object-fit:  cover;
    border-radius: 24px;
    filter: brightness(.7);
transition: .3s;
 animation-name: image ;
animation-duration: .5s;

}
@keyframes image {
    from{
        width: 0;
    }
    to{
        width: 100%;

    }
    
}
.person_title{
    position: absolute;
    border-radius: 24px;
   
    transition: .3s;
    width: 100%;
    height: 100%;
opacity: 0;
display: flex;
align-items: start;
padding: 20px;
flex-direction: column;
justify-content: end;
background: linear-gradient(0deg, rgba(0, 29, 61, 0.66) 13.43%, rgba(0, 29, 61, 0.00) 100%);
}

.person_title p{
    color: #FFF;

font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.person_title h6{
    color: #FFF;


font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.person:hover{
    width: 24%;
}
.person:hover .person_title{
    opacity: 1;
}
.person:hover .person_image{
    filter: brightness(1);
}
















@media (max-width:1200px) {
  .about_us_images{
    width: 44%;
  }
  .about_us_images{
      background-position: 80% 73%;
  }
  .blog{
    height: 370px;
  }
  .footer_sochials{
    padding: 0 20px;
  }
  .person{
    width: 19%;
}
.person:hover{
    width: 23.5%;
}
}
@media (max-width:992px) {
    .nav_directions{
        display: none;
    }
    .nav_logo{
      color: white;
    }
    .main_navbar{
        padding-top: 6px;
    }
    .navbar_frame{
        background-color: var(--dark-blue);
border-radius: 14px;
    }
   
   .mobile_nav--button{
    width: 48px;
    height: 48px;
    border-radius: 14px;
border: 1px solid #EDC217;
background: #FFF;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
   }
   .nav_button{
    display: none;
   }
.current{background-color: white;
color: #000814;

}
.current .arrow  svg g{
fill: black;
}
.about_us {
  flex-direction: column;
}
.about_us_images{
  width: 100%;
}
.about_us_title{
  width: 100%;
  padding: 0%;
  
}
.about_us_title--button{
  width: 100%;
  display: flex;
  justify-content: end;
}
.about_us_images-title {
  padding: 0 57px;
  padding-left: 0;
}
[dir='ltr'] .about_us_images-title{
padding-left: 57px;
padding-right: 0%;
}
  .about_us_images {
    background-position: 80% 90%;
  }
.project{
  min-width: 340px;
}
  .blog{
    height: 390px;
    width:49% !important;
  
  }
.footer_about{
  width: 100%;
}
.footer_acsses, .footer_contactUs{
  width: 45%;
  max-width: unset;
  margin-top: 90PX;
}
.footer_lisenses{
  width: 100%;
  margin-top: 30px;

}
.lisenses_frame{
  width: 100%;
  display: flex;
  justify-content: space-between;
 flex-wrap:wrap;		
}
.tabbar ul{
    max-width:unset;
    width:100%;
    
}
  .person{
        width: 30%;
    }
    .person:hover{
        width: 39%;
    }
}

@media (max-width:768px) {
  
    .navbar_frame{
        width: 95%;
    }
    .about_us_images-title {
  padding: 0 6%;
  padding-left: 0;
}
[dir="ltr"] .about_us_images-title {
  padding-left: 6%;
  padding-right: 0%;
}

 .project{
    width: 100% !important;
    min-width: unset;
  }.project img{
min-height: 230px;
max-height: 300px;
  object-fit: cover;
  height: 50vw;
  min-width:300px ;
}

  
  .projects .vector{
    width: 51px;
    height: 121px;
  }
  .project_swiper_navigaitions{
    margin: 0 20px;
    flex-direction: column;
    width: fit-content;
  }
  .project_swiper_navigaitions span:nth-child(1){
    margin-top: 0;
  }
  .project_swiper_navigaitions span{
    margin-top: 10px;
    width: 52px;
    height: 32px;
  }
  .projects_header h4{
    font-size: 24px;
  }
  .projects_header p{
  font-size: 14px;
  }
  .blog{
  width: 100% !important;
  }
  .blog img{
    height: 70%;
  }
  .lisense:nth-child(2){
border-radius: 10px 28px 28px 10px;
  }

    .decstop_filter{
        display: none;
    }
    .mobile_filter{
        display: flex;
    }
        .person{
        width: 49%;
    }
    .person:hover{
        width: 49%;
        transform:translateY(-10px);
    }
}

@media (max-width:576px) {
  .about_us_images-title p{
    font-size: 10px;
    line-height: 16px;
    
  }
   .about_us_images-title {
    padding: 0 5%;
  }
  .about_us_images-title h5{
    font-size: 13px;
  }
 .blog_tools{
  font-size: 10px;
 }
  .blog_titles h5{
    font-size:14px ;
  }
  .blog_titles {
  font-size: 9px;
  }
 .footer_about p{
  font-size: 10px;
color: #C5C5C5;


 }

 footer h5{
  font-size: 16px;

 }
 .footer_contactUs p{
  font-size: 10px;
 }
 footer{
  padding: 140px 40px 50px 20px !important;
 }
 
 .lisense{
  width: 47%;
 }
}

@media (max-width:496px) {
        .person{
        width: 100%;
    }
    .person_title{
        opacity: .5;
    }
    .person:hover{
        width: 100%;
        transform:translateY(-10px);
    }
}



@media (max-width:350px) {
  .about_us_images-title {
    padding: 0 4.7%;
    padding-left: 0%;
  }
  [dir="ltr"] .about_us_images-title {
  padding-left: 4.7%;
  padding-right: 0%;
}
   .projects_header h4 {
    font-size: 20px;
  }
   .projects_header p {
    font-size: 12px;
   }
   .project_swiper_navigaitions{
    margin: 0 5px;
   }
 
}
@media screen and (max-height: 450px) {
  .overlay {overflow-y: auto;}
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}