@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    font-family: "Archivo", serif !important;
}

  
    /* Header */
    .logo-header {
        width: 100%;
    }
  
    .logo-dpp {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
  
    .logo-dpp img {
        width: 20%;
        padding: 20px 20px;
    }
  
  
    nav {
        /* position: fixed; */
        top: 0;
        left: 0;
        height: 60px;
        width: 100%;
        font-family: 'Archivo', sans-serif;
        z-index: 100;
        max-width: 100%;
        background-color: rgb(0, 84, 166);
    }
    
    nav .nav-bar .sidebarOpen {
        color: #fff;
        font-size: 25px;
        padding: 5px;
        cursor: pointer;
        display: none;
    }
    
    nav .nav-bar img {
        width: 20%;
    }
    
    nav .nav-bar {
        position: relative;
        height: 100%;
        max-width: 1000px;
        width: 100%;
        /* background-color: rgb(1, 119, 191); */
        margin: 0 auto;
        padding: 0 0px;
        display: flex;
        align-items: center;
        justify-content: center;
  
    }
    
    .menu-header .logo-toggle {
        display: none;
    }
    
    .nav-bar .nav-links {
        display: flex;
        align-items: center;
    }
    
    .nav-bar .nav-links li {
        margin: 0 10px;
        list-style: none;
        /* transform: translateX(20px); */
    }
    
    .nav-bar .nav-links li a:hover {
        color: #111;
        /* border-bottom: 1px solid #111; */
    }
    
    .nav-links li a{
        position: relative;
        font-size: 16px;
        font-weight: bold;
        text-align: none;
        font-family: 'Archivo', sans-serif;
        color: #fafafa;
        margin: 0 10px;
    }
    
    .nav-bar .darklight-searchBox {
        display: flex;
        align-items: center;
    }
    
    .darklight-searchBox .searchToggle {
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 5px;
    }
    
    
    .searchToggle i {
        position: absolute;
        color: #fafafa;
        font-size: 22px;
        cursor: pointer;
    }
  
    .searchToggle i:hover {
        color: #111;
    }
    
    .searchToggle i.cancel {
        opacity: 0;
        pointer-events: none;
    }
    
    .searchToggle.active i.cancel {
        opacity: 1;
        pointer-events: auto;
    }
    
    .searchToggle.active i.search {
        opacity: 0;
        pointer-events: none;
    }
    
    .searchBox {
        position: relative;
    }
    
    .searchBox .search-field {
        position: absolute;
        top: -5px;
        left: 40px;
        height: 50px;
        width: 350px;
        display: flex;
        align-items: center;
        background-color: transparent;
        padding: 3px;
        border-radius: 6px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .searchToggle.active ~ .search-field {
        opacity: 1;
        pointer-events: auto;
        left: 40px;
    }
    
    
    
    .search-field input {
        height: 100%;
        width: 100%;
        padding: 0 45px 0 15px;
        outline: none;
        border: 1px solid rgb(0, 84, 166);
        border-radius: 4px;
        font-size: 14px;
        font-weight: 400;
        color: #111;
    }
    
    .search-field i {
        position: absolute;
        color: #000;
        right: 15px;
        font-size: 22px;
        cursor: pointer;
    }
  
    .search-field .search_bx2 {
      position: absolute;
      width: 350px;
      height: 300px;
      border: 1px solid #fff;
      top: 56px;
      background: rgba(184, 184, 184, 0.3);
      border-radius: 10px;
      overflow: auto;
      visibility: hidden;
      opacity: 0;
    }
  
    .search-field .search_bx2::-webkit-scrollbar {
      width: 7px;
      background: rgba(184, 184, 184, 0.3);
      border-radius: 20px;
    }
  
    .search-field .search_bx2 a {
      text-decoration: none;
      color: #000;
      width: 100%;
      height: 100px; 
      /* border: 1px solid #000; */
      display: flex;
      align-items: center;
      transition: 0.3s linear;
      margin: 3px 0;
    }
  
    .search-field .search_bx2 a:hover {
      background-color: rgba(184, 184, 184, 0.6);
    }
  
    .search-field .search_bx2 a img {
      width: 40%;
      height: 100%;
    }
  
    .search-field .search_bx2 a .content2 {
      font-family: 'Archivo', serif;
      display: flex;
      padding: 5px 20px;
      display: flex;
      flex-direction: column;
    }
  


/* Main */

/* Guide lines */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 50px ;
  }
  
  .flex-item-left {
    padding: 10px 20px;
    flex: 100%;
  }

  .flex-item-left img {
    width: 18%;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 5px 5px 5px 5px rgba(143, 142, 142, 0.3);
    border-radius: 10px;
  }
  
  .flex-item-right {
    padding: 40px 0;
    flex: 100%;
    text-align: left;
  }

  .flex-item-right h3 {
    font-family: 'Poppins', sans-serif;
    color: rgb(1, 119, 191);
    padding: 5px 390px;
  }

  .flex-item-right p {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    padding: 10px 390px;
    justify-content: left;
    line-height: 25px;
    text-justify: inter-word;
    text-align: justify;
  }


/* Modal */

.gallery-image:hover {
    transform: scale(1.05);
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.9); 
}

.modal-content {
    margin: auto;
    display: block;
    width: 40%;
}

.caption {
    margin: auto;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

.close {
    position: absolute; 
    top: 15px; 
    right: 35px; 
    color: white; 
    font-size: 40px; 
    font-weight: bold; 
    cursor: pointer; 
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

    /* Section1 */

.section1 {
    width: 100%;
    margin: 0px 0;
}    

.img-about {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.img-about img {
    width: 100%;
}


    /* Section3 */

.section3 {
    width: 100%;
    margin: 0px 0;
}

.naz-trading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.naz {
    width: 60%;
}

.logo-naz {
    display: flex;
    padding: 30px 30px;
}

.logo-naz img {
    width: 30%;
}

.title-naz {
    display: flex;
    background-color: rgb(255, 194, 15);
    width: 100%;
}

.title-naz h3 {
    padding: 5px 30px;
    font-family: 'Poppins', sans-serif;
}

.about-naz {
    display: flex;
    text-align: left;
}

.about-naz p {
    padding: 20px 30px;
    font-family: 'Poppins', sans-serif;
    line-height: 25px;
    text-justify: inter-word;
    text-align: justify;
}



    /* Section4 */
.section4 {
    width: 100%;
}

.year-container {
    display: flex;
    flex-wrap: wrap;
}

.year-left {
    padding: 10px;
    flex: 25%;
}

.year-left img,
.year-midleft img,
.year-midright img,
.year-right img {
    width: 100%;
    outline: none;
}

.year-left p,
.year-midleft p,
.year-midright p,
.year-right p {
    font-size: 15px;
    font-weight: bold;
    font-family: 'Archivo', sans-serif;
    padding: 0 30px;
    transform: translateY(-100px);
    text-justify: inter-word;
    text-align: justify;
}

.year-midleft {
    padding: 10px;
    flex: 25%;
}

.year-midright {
    padding: 10px;
    flex: 25%;
}

.year-right {
    padding: 10px;
    flex: 25%;
}

.history {
    margin: 30px 0;
}

.history span {
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 30px 30px;
    display: flex;
    text-align: center;
}

    /* Section5 */

.section5 {
    width: 100%;
    margin: 50px 0;
}    

.fac-container {
    display: flex;
    flex-wrap: wrap;
    margin: 75px 0  ;
}


.fac-left {
    flex: 100%;
}

.fac-left a {
    color: #202225;
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 10px 0px;
}

.fac-left a:hover {
    color: rgb(0, 84, 166);
}

.fac-left h1 {
    font-family: 'Poppins', sans-serif;
    color: rgb(1, 119, 191);
    padding: 5px 390px;
}

.fac-left p {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    padding: 0 390px;
    justify-content: left;
    line-height: 30px;
    text-justify: inter-word;
    text-align: justify;
}

.fac-right {
    flex: 100%;
}

.fac-right img {
    width: 100%;
    padding: 10px 375px;
    border: none;
    height: 100%;
}

.qu {
    width: 100%;
    height: 280px;
}


  /* Footer */
  .container{
    max-width: 1170px;
    margin:auto;
  }
  .row{
    display: flex;
    flex-wrap: wrap;
  }
  ul{
    list-style: none;
  }
  .footer{
    background-color: #24262b;
      padding: 70px 0;
  }
  .footer-col{
     width: 25%;
     padding: 0 15px;
  }

  .footer-col img {
    width: 50%;
  }

  .footer-col h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
  }

  .footer-col h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: rgb(0, 84, 166);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }

  .footer-col p {
    color: #bbbbbb;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-col i {
    color: #bbbbbb;
    margin-right: 10px;
  }

  .footer-col a {
    color: #bbbbbb;
  }

  .footer-col ul li:not(:last-child){
    margin-bottom: 10px;
  }
  .footer-col ul li a{
    font-size: 13px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
  }
  .footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
  }
  .footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
  }
  

/* Button */
.button-naz {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: right;
}


.button-naz a button{
    padding: 10px 20px;
    cursor: pointer;
    margin: 0 30px;
    background-color: rgb(255, 194, 15);
    color: #202225;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;

}

.button-naz a button:hover {
    transform: translateY(-3px);
}

  /* Scroll Top */

  .to-top {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    transition: all 0.6s ease;
    float: right;
    padding: 10px 50px;
  }
  
  .to-top i {
    color: rgb(0, 84, 166);
    font-size: 35px;
    cursor: pointer;
  }
  
  .to-top i:hover {
    color: #111;
  }


/* MediaQuery */


@media (max-width: 600px) {
   /* Header */
   nav .nav-bar .sidebarOpen {
    display: block;
}

nav .nav-bar {
    justify-content: left;
}

.logo-dpp img {
    width: 55%;
    padding-top: 10px;
}

.menu-header {
    position: fixed;
    height: 100%;
    width: 100%;
    left: -100%;
    top: 0;
    padding: 20px;
    background-color: rgb(0, 84, 166);
    z-index: 100;
    transition: all 0.8s ease;
}

nav.active .menu-header {
    left: 0%;
}

.menu-header .logo-toggle {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-header .logo-toggle img {
    width: 20%;
}

.logo-toggle .siderbarClose {
    color: #fafafa;
    font-size: 24px;
    cursor: pointer;
}

nav .nav-bar img {
    width: 60%;
    padding: 0;
}

.nav-bar .nav-links li {
    transform: translateX(0);
    padding: 20px 0;
}

.nav-bar .nav-links {
    flex-direction: column;
    padding-top: 50px;
}

.nav-links li a {
    display: block;
    margin-top: 20px;
}

.searchBox {
    position: relative;
    width: 100%;
}

.searchBox .search-field {
    width: 300px; /* Make it 90% of the container */

}


.search-field .search_bx2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid #fff;
    top: 56px;
    right: 0;
    background: rgba(184, 184, 184, 0.3);
    border-radius: 10px;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
  }

  /* Corporate guide */
    /*  Main */

    .flex-item-right, .flex-item-left {
        flex: 100%;
      }

      .flex-item-left img {
        width: 45% !important;
      }

      .flex-item-right h3 {
        text-align: left;
      }

      .flex-item-right {
        display: flex;
        flex-direction: column;
        text-align: left;
        align-items: left;
        justify-content: left;
      }

      .modal-content {
        width: 100%;
      }

      .flex-item-right h3 {
        padding: 10px 10px;
        font-size: 17px;
      }

      .flex-item-right p {
        font-size: 13px;
        font-weight: 400;
        font-family: 'Poppins', sans-serif;
        padding: 10px 10px;
        justify-content: left;
        line-height: 20px;
        text-justify: inter-word;
        text-align: justify;
      }
    

    /* Main */
    .naz {
        width: 100%;
    }

    .img-about img {
        width: 100%;
        background-size: contain;
        height: 100%;
    }

    .flex-item-left img {
        width: 100%;
    }


    .icon-cert {
        margin: 20px 0;
    }

    .icon-cert img {
        width: 20%;
    }

    .flex-item-right, .flex-item-left {
        flex: 100%;
    }

    .flex-item-right img {
        width: 100%;
    }

    .first-logo img {
        width: 40%;
    }

    .year-left, 
    .year-midleft , 
    .year-midright , 
    .year-right {
        flex: 100%;
    }
    .flex-item-right,
    .flex-item-left , 
    .flex-item-midleft, 
    .flex-item-midright {
        flex: 100%;
    }

    .fac-right img {
        padding: 0;
        width: 100%;
    }

    .fac-left h1,
    .fac-left p {
        padding: 10px 10px;
    }


      .flex-emp-right,
      .flex-emp-left , 
      .flex-emp-midleft, 
      .flex-emp-midright {
          flex: 100%;
          padding: 40px 0;
    }

    .our-cert {
        display: flex;
        flex-direction: column;
    }

    .our-cert h1 {
        font-size: 24px;
    }

    .our-cert button a{
        padding: 10px 10px;
        font-size: 13px;
    } 

    .fac-right, 
    .fac-left {
        flex: 100%;
    }

    .persian-container {
        width: 100%;
    }

    .logo-naz {
        padding: 0;
        margin: 0;
    }

    .logo-naz img {
        width: 50%;
    }

    .about-dpp h3 {
        padding: 5px 0;
        width: 80%;
        margin-bottom: 3px;
    }

    .title-naz h3 {
        font-size: 14px;
        padding: 5px 10px;
    }

    .about-naz p {
        font-size: 13px;
        padding: 10px 10px;
        margin: 0;
        line-height: 20px;
    }

    .fac-left h1 {
        font-size: 17px;
    }

    .fac-left p {
        font-size: 14px;
        line-height: 25px;
    }

    .fac-right img {
        width: 100%;

    }

    .qu {
        height: 150px;
    }


    /* Footer */      
    .footer-col{
        width: 100%;
        margin: 20px 0;
    }

    .footer .container {
        background: transparent;
    }

    .footer-col img {
        width: 25%;
        margin: 0px 0;
    }
}



@media only screen and (min-width: 601px) and (max-width: 960px) {
     /* Header */
  .logo-header {
    width: 100%;
}

.logo-dpp {
    display: flex;
    align-items: left;
    text-align: left;
    justify-content: left;
}

.logo-dpp img {
    width: 40%;
    padding: 20px 20px;
}

nav {
  /* position: fixed; */
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  font-family: 'Archivo', sans-serif;
  z-index: 100;
  max-width: 100%;
  background-color: rgb(0, 84, 166);
}



nav .nav-bar {
  position: relative;
  height: 100%;
  max-width: 1000px;
  width: 100%;
  /* background-color: rgb(1, 119, 191); */
  margin: 0 auto;
  padding: 0 0px;
  display: flex;
  align-items: left;
  justify-content: left;

}

.menu-header .logo-toggle {
  display: none;
}

.nav-bar .nav-links {
  display: flex;
  align-items: left;
}

.nav-bar .nav-links li {
  margin: 0 3px;
  list-style: none;
  /* transform: translateX(20px); */
}

.nav-bar .nav-links li a:hover {
  color: #111;
  /* border-bottom: 1px solid #111; */
}

.nav-links li a{
  position: relative;
  font-size: 12px;
  font-weight: bold;
  text-align: none;
  font-family: 'Archivo', sans-serif;
  color: #fafafa;
  margin: 0 10px;
}

.nav-bar .darklight-searchBox {
  display: flex;
  align-items: center;
}

.darklight-searchBox .searchToggle {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}


.searchToggle i {
  position: absolute;
  color: #fafafa;
  font-size: 22px;
  cursor: pointer;
}

.searchToggle i:hover {
  color: #111;
}

.searchToggle i.cancel {
  opacity: 0;
  pointer-events: none;
}

.searchToggle.active i.cancel {
  opacity: 1;
  pointer-events: auto;
}

.searchToggle.active i.search {
  opacity: 0;
  pointer-events: none;
}

.searchBox {
  position: relative;
}

.searchBox .search-field {
  position: absolute;
  top: -5px;
  left: 40px;
  height: 50px;
  width: 240px;
  display: flex;
  align-items: center;
  background-color: transparent;
  padding: 3px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.searchToggle.active ~ .search-field {
  opacity: 1;
  pointer-events: auto;
  left: 40px;
}



.search-field input {
  height: 100%;
  width: 100%;
  padding: 0 45px 0 15px;
  outline: none;
  border: 1px solid rgb(0, 84, 166);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: #111;
}

.search-field i {
  position: absolute;
  color: #000;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.search-field .search_bx2 {
position: absolute;
width: 240px;
height: 240px;
border: 1px solid #fff;
top: 56px;
background: rgba(184, 184, 184, 0.3);
border-radius: 10px;
overflow: auto;
visibility: hidden;
opacity: 0;
}

.search-field .search_bx2::-webkit-scrollbar {
width: 7px;
background: rgba(184, 184, 184, 0.3);
border-radius: 20px;
}

.search-field .search_bx2 a {
text-decoration: none;
color: #000;
width: 100%;
height: 100px; 
/* border: 1px solid #000; */
display: flex;
align-items: center;
transition: 0.3s linear;
margin: 3px 0;
}

.search-field .search_bx2 a:hover {
background-color: rgba(184, 184, 184, 0.6);
}

.search-field .search_bx2 a img {
width: 50%;
height: 100%;
}

.search-field .search_bx2 a p {
  font-size: 14px;
}

.search-field .search_bx2 a .content2 {
font-family: 'Archivo', serif;
display: flex;
padding: 5px 20px;
display: flex;
flex-direction: column;
}



  /* Main */
    /* Corporate guide */
    /*  Main */

    .flex-item-right, .flex-item-left {
        flex: 100%;
      }

      .flex-item-left img {
        width: 35% !important;
      }

      .flex-item-right h3 {
        text-align: left;
      }

      .flex-item-right {
        display: flex;
        flex-direction: column;
        text-align: left;
        align-items: left;
        justify-content: left;
      }

      .modal-content {
        width: 100% !important;
      }

      .flex-item-right h3 {
        padding: 10px 10px;
        font-size: 17px;
      }

      .flex-item-right p {
        font-size: 13px;
        font-weight: 400;
        font-family: 'Poppins', sans-serif;
        padding: 10px 10px;
        justify-content: left;
        line-height: 20px;
        text-justify: inter-word;
        text-align: justify;
      }
     /* Main */
     .naz {
      width: 100%;
  }

  .img-about img {
      width: 100%;
      background-size: contain;
      height: 100%;
  }

  .flex-item-left img {
      width: 100%;
  }


  .icon-cert {
      margin: 20px 0;
  }

  .icon-cert img {
      width: 20%;
  }

  .flex-item-right, .flex-item-left {
      flex: 100%;
  }

  .flex-item-right img {
      width: 100%;
  }

  .first-logo img {
      width: 40%;
  }

  .year-left, 
  .year-midleft , 
  .year-midright , 
  .year-right {
      flex: 100%;
  }
  .flex-item-right,
  .flex-item-left , 
  .flex-item-midleft, 
  .flex-item-midright {
      flex: 100%;
  }

  .fac-right img {
      padding: 0;
      width: 100%;
  }

  .fac-left h1,
  .fac-left p {
      padding: 10px 10px;
  }


    .flex-emp-right,
    .flex-emp-left , 
    .flex-emp-midleft, 
    .flex-emp-midright {
        flex: 100%;
        padding: 40px 0;
  }

  .our-cert {
      display: flex;
      flex-direction: column;
  }

  .our-cert h1 {
      font-size: 24px;
  }

  .our-cert button a{
      padding: 10px 10px;
      font-size: 13px;
  } 

  .fac-right, 
  .fac-left {
      flex: 100%;
  }

  .persian-container {
      width: 100%;
  }

  .logo-naz {
      padding: 0;
      margin: 0;
  }

  .logo-naz img {
      width: 40%;
  }

  .about-dpp h3 {
      padding: 5px 0;
      width: 80%;
      margin-bottom: 3px;
  }

  .title-naz h3 {
      font-size: 17px;
      padding: 5px 10px;
  }

  .about-naz p {
      font-size: 12px !important;
      padding: 10px 10px;
      margin: 0;
      line-height: 20px;
  }

  .fac-left h1 {
      font-size: 17px;
  }

  .fac-left p {
      font-size: 14px;
      line-height: 25px;
  }

  .fac-right img {
      width: 100%;

  }

  .qu {
      height: 150px;
  }


  /* Footer */      
  .footer-col{
      width: 50%;
      margin: 20px 0;
  }

  .footer .container {
      background: transparent;
  }

  .footer-col img {
      width: 25%;
      margin: 0px 0;
  }
}

@media only screen and (min-width: 961px) and (max-width: 1250px) {
      /* Header */
  .logo-header {
    width: 100%;
}

.logo-dpp {
    display: flex;
    align-items: left;
    text-align: left;
    justify-content: left;
}

.logo-dpp img {
    width: 30%;
    padding: 20px 20px;
}

nav {
  /* position: fixed; */
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  font-family: 'Archivo', sans-serif;
  z-index: 100;
  max-width: 100%;
  background-color: rgb(0, 84, 166);
}



nav .nav-bar {
  position: relative;
  height: 100%;
  max-width: 1000px;
  width: 100%;
  /* background-color: rgb(1, 119, 191); */
  margin: 0 auto;
  padding: 0 0px;
  display: flex;
  align-items: left;
  justify-content: left;

}

.menu-header .logo-toggle {
  display: none;
}

.nav-bar .nav-links {
  display: flex;
  align-items: left;
}

.nav-bar .nav-links li {
  margin: 0 3px;
  list-style: none;
  /* transform: translateX(20px); */
}

.nav-bar .nav-links li a:hover {
  color: #111;
  /* border-bottom: 1px solid #111; */
}

.nav-links li a{
  position: relative;
  font-size: 12px;
  font-weight: bold;
  text-align: none;
  font-family: 'Archivo', sans-serif;
  color: #fafafa;
  margin: 0 10px;
}

.nav-bar .darklight-searchBox {
  display: flex;
  align-items: center;
}

.darklight-searchBox .searchToggle {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}


.searchToggle i {
  position: absolute;
  color: #fafafa;
  font-size: 22px;
  cursor: pointer;
}

.searchToggle i:hover {
  color: #111;
}

.searchToggle i.cancel {
  opacity: 0;
  pointer-events: none;
}

.searchToggle.active i.cancel {
  opacity: 1;
  pointer-events: auto;
}

.searchToggle.active i.search {
  opacity: 0;
  pointer-events: none;
}

.searchBox {
  position: relative;
}

.searchBox .search-field {
  position: absolute;
  top: -5px;
  left: 40px;
  height: 50px;
  width: 280px;
  display: flex;
  align-items: center;
  background-color: transparent;
  padding: 3px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.searchToggle.active ~ .search-field {
  opacity: 1;
  pointer-events: auto;
  left: 40px;
}



.search-field input {
  height: 100%;
  width: 100%;
  padding: 0 45px 0 15px;
  outline: none;
  border: 1px solid rgb(0, 84, 166);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: #111;
}

.search-field i {
  position: absolute;
  color: #000;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.search-field .search_bx2 {
position: absolute;
width: 280px;
height: 280px;
border: 1px solid #fff;
top: 56px;
background: rgba(184, 184, 184, 0.3);
border-radius: 10px;
overflow: auto;
visibility: hidden;
opacity: 0;
}

.search-field .search_bx2::-webkit-scrollbar {
width: 7px;
background: rgba(184, 184, 184, 0.3);
border-radius: 20px;
}

.search-field .search_bx2 a {
text-decoration: none;
color: #000;
width: 100%;
height: 100px; 
/* border: 1px solid #000; */
display: flex;
align-items: center;
transition: 0.3s linear;
margin: 3px 0;
}

.search-field .search_bx2 a:hover {
background-color: rgba(184, 184, 184, 0.6);
}

.search-field .search_bx2 a img {
width: 50%;
height: 100%;
}

.search-field .search_bx2 a p {
  font-size: 14px;
}

.search-field .search_bx2 a .content2 {
font-family: 'Archivo', serif;
display: flex;
padding: 5px 20px;
display: flex;
flex-direction: column;
}

/* Main */
    /* Corporate guide */
    /*  Main */

    .flex-item-right, .flex-item-left {
        flex: 100%;
      }

      .flex-item-left img {
        width: 35% !important;
      }

      .flex-item-right h3 {
        text-align: left;
      }

      .flex-item-right {
        display: flex;
        flex-direction: column;
        text-align: left;
        align-items: left;
        justify-content: left;
      }

      .modal-content {
        width: 100% !important;
      }

      .flex-item-right h3 {
        padding: 10px 10px;
        font-size: 17px;
      }

      .flex-item-right p {
        font-size: 13px;
        font-weight: 400;
        font-family: 'Poppins', sans-serif;
        padding: 10px 10px;
        justify-content: left;
        line-height: 20px;
        text-justify: inter-word;
        text-align: justify;
      }
    /* Main */
    .naz {
      width: 100%;
  }

  .img-about img {
      width: 100%;
      background-size: contain;
      height: 100%;
  }

  .flex-item-left img {
      width: 100%;
  }


  .icon-cert {
      margin: 20px 0;
  }

  .icon-cert img {
      width: 20%;
  }

  .flex-item-right, .flex-item-left {
      flex: 100%;
  }

  .flex-item-right img {
      width: 100%;
  }

  .first-logo img {
      width: 40%;
  }

  .year-left, 
  .year-midleft , 
  .year-midright , 
  .year-right {
      flex: 100%;
  }
  .flex-item-right,
  .flex-item-left , 
  .flex-item-midleft, 
  .flex-item-midright {
      flex: 100%;
  }

  .fac-right img {
      padding: 0;
      width: 100%;
  }

  .fac-left h1,
  .fac-left p {
      padding: 10px 10px;
  }


    .flex-emp-right,
    .flex-emp-left , 
    .flex-emp-midleft, 
    .flex-emp-midright {
        flex: 100%;
        padding: 40px 0;
  }

  .our-cert {
      display: flex;
      flex-direction: column;
  }

  .our-cert h1 {
      font-size: 24px;
  }

  .our-cert button a{
      padding: 10px 10px;
      font-size: 13px;
  } 

  .fac-right, 
  .fac-left {
      flex: 100%;
  }

  .persian-container {
      width: 100%;
  }

  .logo-naz {
      padding: 0;
      margin: 0;
  }

  .logo-naz img {
      width: 25%;
  }

  .about-dpp h3 {
      padding: 5px 0;
      width: 80%;
      margin-bottom: 3px;
  }

  .title-naz h3 {
      font-size: 14px;
      padding: 5px 10px;
  }

  .about-naz p {
      font-size: 13px;
      padding: 10px 10px;
      margin: 0;
      line-height: 20px;
  }

  .fac-left h1 {
      font-size: 17px;
  }

  .fac-left p {
      font-size: 14px;
      line-height: 25px;
  }

  .fac-right img {
      width: 100%;

  }

  .qu {
      height: 150px;
  }


  /* Footer */      
  .footer-col{
      width: 50%;
      margin: 20px 0;
  }

  .footer .container {
      background: transparent;
  }

  .footer-col img {
      width: 25%;
      margin: 0px 0;
  }

}