* {
  margin: 0;
  padding: 0;
}

body, html {
  font-family: 'Rajdhani', sans-serif;
  font-size: 100%;
  height: 100%;

}

/* ****************************************************
                        CONTENEDOR
******************************************************/
.container {
  background: #fff;
  min-height: 100%;
  overflow: auto;
}
.white-space{
  background: #fff;
  height: 10px;
}
/* ENLACES */
a {
  color: #000;
  cursor: pointer;
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none;
  transition: background-color .16s ease-in;
  z-index: 99;
  overflow: hidden;clear: both;
  
}
a.other{
  padding: 0;
}

a.btn{
  color: #fff;
  cursor: pointer;
  display: block;
  padding: 0px;
  
}
a.subm{
  position: relative;width: 100%;text-decoration: none;padding: 10px;text-align: center;background:#681728; color: #fff;left: 8px;border-radius: 4px;
}
a.btn span{
  font-family: 'Rajdhani', sans-serif;
}

a:hover {
  opacity: 0.7;
}

a.btn:hover{
  opacity: 0.9;
}

a.active{
  color: #681728;
}

p{
  font-size: 16px;
}

.top-banner{
     position: relative;
     width: 100%;
     padding: 0px;
     background: none;
}
ul.navigation {
    position:absolute;
    z-index: 100;
    width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color:none;
}

li.nvg {
  float: right;
  position: relative;
  top: 10px;
}

li.nvg.lft {
  float: left;
  position: relative;
  top: 0px;
  display: inline-block;
}

li.nvg.flg{
    position: relative;
    padding-right: 15px;
}
li.nvg.flg a{
    font-size:10px;
    font-weight: normal;
    padding: 10px 1px;
}

li.nvg a {
  display: block;
  color: #000;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: bold;
}

li.nvg a:hover:not(.active) {
  opacity: 0.7;
}

div.logo {
  
   background-image: url('images/logo2.jpg');
   cursor: pointer;
   position: relative;
   height: 40px;
   width: 160px;
   padding: 0 auto;
   margin: 0 auto;
   top: 5px;
   background-size: contain;
   background-repeat: no-repeat, repeat;
   margin-bottom: 20px;
}
/* **************************************************
        BARRA DE NAVEGACION Y MENU NORMAL
****************************************************/
/* Barra de navegacion (contiene al nav mini menu) */
.navbar-menu {
  background-color: #fff;
  margin: 0 auto;
  max-width: 100%;
  width: calc(100%);
}
/* Menu */
.navbar-menu .menu {
  display: block;
  text-align: center;
  z-index: 99;
  overflow: hidden;clear: both;
  
}

/* List items*/
.navbar-menu .menu li {
  display: inline-block;
   z-index: 99;
  overflow: hidden;clear: both;
  font-size: 16px;
  font-weight: bold;
  border-top: 1px solid #681728;
}

/* Cuando se haga hover sobre el item el submenu se activa
 en caso tuviese */
.navbar-menu .menu li:hover > .submenu {
  display: block;
  -webkit-animation-name: showSubMenu;
  -webkit-animation-duration: .4s;
   z-index: 99;
  overflow: hidden;clear: both;
}

/* Submenus*/
.navbar-menu .menu li ul {
  background-color: #fff;
  display: none;
  position: absolute;
  border-top: 1px solid #ccc;
  border-radius: 3px;


}

.navbar-menu .menu li ul li {
  display: block;
  border-top: none;
  font-weight: normal;
}

.navbar-menu .menu li ul li a:active {
  -webkit-animation-name: hideSubMenu;
  -webkit-animation-duration: .4s;
}

/******************************************************
                        MINI MENU
******************************************************/
/* Mini menu */
.navbar-mini-menu {
  background-color: #681728;
  display: none;
}

/* Bloque que tiene el boton para desplegar el mini menu */
.navbar-mini-menu .menu-select {
  color: #fff;
  padding: 1rem 1.5rem;
}

/* Span que contiene el icono*/
.navbar-mini-menu .menu-select .btn-select {
background-image: url('images/mn-iconn.png');
   background-size: contain;
   background-repeat: no-repeat, repeat;
  cursor: pointer;
  position: absolute;
  height: 60px;
  width: 60px;
  right: 0px;
  top: 9.3%;

}

/* Lista del mini menu */
.navbar-mini-menu .mini-menu-options {
  display: block;
  background: #fff;
}

/* Items del mini menu */
.navbar-mini-menu .mini-menu-options li {
  display: block;
}


/* Submenus de los items del mini menu */
.navbar-mini-menu .mini-menu-options li .submenu {
  display: none;

}


.navbar-mini-menu .mini-menu-options li:focus {
  outline: 0;
}

.navbar-mini-menu .mini-menu-options li:focus > .submenu {
  display: block;
  -webkit-animation-name: showSubMenu;
  -webkit-animation-duration: .4s;

}

/* Enlaces del mini menu */
.navbar-mini-menu .mini-menu-options li a {
  display: block;
  padding: 1rem 1.5rem;
  color: #000;
}

.navbar-mini-menu .mini-menu-options li a.active {
   color: #681728;
   font-weight: bold;
}

/* ***************************************************
                      ANIMACIONES
*****************************************************/
@-webkit-keyframes showSubMenu {
    0% {
      transform: scale(0,0);
    }
  100% {
    transform: scale(1,1);
  }
}

@-webkit-keyframes hideSubMenu {
  0% {
    transform: scale(1,1);
  }
  100% {
    transform: scale(0,0);
  }
}

/*****************************************************                       MEDIAQUERIES
*****************************************************/
@media screen and (max-width: 750px) {
  /* Elimina los margenes al nav */
  .navbar-menu {
    margin: 0;
  }
  
  /* Esconde el menu normal */
  .navbar-menu .menu {
    display: none;
  }
  
  /* Muestra el mini menu */
  .navbar-mini-menu {
    display: block;
  }
  
  /* Esconde la lista del mini menu */
  .navbar-mini-menu .mini-menu-options {
    display: none;
  }
  .white-space{
  background: #fff;
  height: 0px;
}

.submenu a{
  font-size: 13px;
}

  .chkbxs label{
  position: relative;
  width: 100%;
  float: left;
}
}
.top-image {
  background-image: url(images/jo.jpg);
  min-height: 400px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.top-image-fm {
  background-image: url(images/jo.jpg);
  min-height: 400px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.top-image-abt {
  background-image: url(images/dl2.jpg);
  min-height: 400px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.top-image-gd {
  background-image: url(images/3.jpg);
  min-height: 400px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.top-image-fm {
  background-image: url(images/4.jpg);
  min-height: 400px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.top-image-cnt {
  background-image: url(images/5.jpg);
  min-height: 400px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.svg-elem{
  position: relative;
  top: -60px;
}
.tag{
  position: relative;font-size: 35px;font-weight: bold;top: -10px;padding: 25px;color: #681728;
}

.contactus{
  position: relative;
  padding: 0 auto;
  margin: 0 auto;
  top: 60px;
  width: 50%;
  text-align: center;
}
.contactus h1{
  font-size: 22px;
}

.contactus p{
  font-weight: bold;
  color: #681728;
}
.contactus div{
  position: relative;
  padding: 0 auto;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 30px;
  padding-top: 15px;
}
ul.hm-socila-link{
  list-style: none;
}
ul.hm-socila-link li{
  display: inline-block;
  padding: 0;
  margin: 0;
  border: 1px solid #000;
}
ul.hm-socila-link li a{
  padding: 1rem 1.5rem;
}
.svg-elem-2{
 }
.cprght{
  position: relative;font-size: 1.2vw;top: -60px;color: #ccc;padding: 25px;color: #ccc;
}
.flex-box{
  border-top: 1px solid #fff;
}
div.para{
 position: relative;
 width: 60%;
 padding-top: 5%;
 padding-bottom: 0;
 padding: 4%;
}

#para2{
  position: relative;
  width: 40%;
  margin-top:0;
  border-left: 1px dashed #ccc;


}
#para2 h1{
  position: relative;
}
div.para-gen{
  position: relative;
  padding: 0 auto;
  margin: 0 auto;
  top: 30px;
  width: 90%;
 padding-top: 5%;
 padding-bottom: 0;
 padding: 4%;
 text-align: justify;
}

div.para-gen p{
  position: relative;
  padding-bottom: 30px;
  line-height: 30px;
}

div.para-gen h1{
  position: relative;
  padding-bottom: 60px;
}
div.para p{
  text-align: justify;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .responsive-image {
    min-height: 20vw;
  }

 
}


@media (max-width: 750px) {

     .svg-elem{
  position: relative;
  top: -30px;
}

}

@media (max-width: 650px) {

     .svg-elem{
  position: relative;
  top: -30px;
}

}



@media (max-width: 900px) {


  
.cprght{
  position: relative;font-size: 1.2vw;top: -45px;color: #ccc;padding: 25px;
}
.tag{
  position: relative;font-size: 35px;font-weight: bold;top: 0px;padding: 25px;
}
}

@media (max-width: 700px) {


  
.cprght{
  position: relative;font-size: 1.2vw;top: -35px;color: #ccc;padding: 25px;
}

}


span.svgtextbottom{
  position: relative;
  top: -20px;
  left: 1%;
  font-size: 36px;
  font-weight: bold;
  color:#681728;
}


@media (min-width: 1200px) {
  .top-image {
    min-height: 400px;
  }

}

.flex-box{
  position: relative;
  padding: 10%;
  width: 100%;
  display: flex;
  background: #681728;
  margin-top: 5%;
}

.parts{
  position: relative;
  width: 50%;
}
.parts a{
  color: #ccc;
  font-weight: bold;
  
}

.parts h1{
  text-align: center;
  color:#ccc;
}
.parts p{
  text-align: center;
  padding-bottom: 10px;
  color: #ccc;
  font-size: 14px;
}
.parts p span{
  font-weight: bold;
}
.parts.bor{
  border-left: 1px solid #ccc;
  border-right:1px solid #ccc;
}
@media (max-width: 950px) {
.flex-box{
  position: relative;
  padding: 10%;
  width: 100%;
  display: block;
  background: #681728;
  margin-top: 5%;
}
.parts{
  width: 100%;
}
.parts.bor{
  border-left: none;
  border-right:none;
}
}
ul.ftr-nav {
    position: relative;
    text-align: center;
}
ul.ftr-nav li{

   display:inline-block;

}

ul.ftr-nav li a{
   padding:10px;
   font-size: 22px;
   color: #ccc;

}

ul.ftr-nav.con li a{
   padding:10px;
   font-size: 34px;
   color: #681728;


}

ul.ftr-nav li a i{
   position:relative;
   display:inline-block;
   text-align: center;

}
p#phn{
  position: relative;
  padding-bottom: 15px;
}


.feedback {
  background-color : #681728;
  color: white;
  padding: 10px 20px;
  border:1px solid #fff;
  border-left: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  /* Note there is no / symbol here! */
  border-bottom-right-radius:20px;
  border-top-right-radius: 20px;
}


.feedback:hover{
  cursor: pointer;
}

#mybutton {
  position: fixed;
  bottom: 50%;
  left: 0px;
}


/*form css */


/* Forms */

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

form {
  max-width: 300px;
  margin: 10px auto;
  padding: 10px 20px;
  background: #FDFDFD;
  border-radius: 8px;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
}
.Related-Department{ display: none; position: relative;padding-bottom: 20px;}
.Access-to-Information{ display: none;position: relative;padding-bottom: 20px;}
.late-reply{ display: none;position: relative;padding-bottom: 20px;}
.content-dif{ display: none;position: relative;padding-bottom: 20px;}
.shape-dif{ display: none;position: relative;padding-bottom: 20px;}
.payment{ display: none;position: relative;padding-bottom: 20px;}

.reasonbox{ display: none;}

fieldset .fdpt{
  width: 100%;
  display: flex;

}

fieldset .fdpt input{
  margin: 10px;
  
}

fieldset .fdptfl{
  margin: 10px;
 
}

h1.frmhdr {
  margin: 30 0 30px 0;
  text-align: center;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],


textarea,
select {
  
  border: none;
  font-size: 1.2vw;
  height: auto;
  margin: 0;
  outline: 0;
  padding: 15px;
  width: 100%;
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  background: #FDFDFD;
  border-radius: 8px;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.1);
  margin-bottom: 30px;
}
 input[type="date"]:before {
    content: attr(placeholder) !important;
    color: #aaa;
    margin-right: 0.5em;
  }
  input[type="date"]:focus:before,
  input[type="date"]:valid:before {
    content: "";
  }

  input[type="datetime-local"]:before {
    content: attr(placeholder) !important;
    color: #aaa;
    margin-right: 0.5em;
  }
  input[type="datetime-local"]:focus:before,
  input[type="datetime-local"]:valid:before {
    content: "";
  }

  .chkbxs p{
    
    font-size: 10px;
  }

  fieldset p.tpofcom{
    font-size: 10px;
  }
textarea{
  height: 180px;
}

select {
  padding: 6px;
  height: 32px;
  border-radius: 2px;
  font-family: 'Rajdhani', sans-serif;
}

button {
  font-family: 'Rajdhani', sans-serif;
  padding: 5px 39px 5px 39px;
  color: #FFF;
  background-color: #681728;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  font-style: normal;
  border-radius: 10px;
  width: 100%;
  border: 1px solid #fff;
  border-width: 1px 1px 3px;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
  margin-bottom: 10px;
}
button a{
  color: #fff;
}

fieldset {
  margin-bottom: 30px;
  border: none;
  padding-top: 50px;
}

legend {
  font-size: 1.4em;
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 8px;
}

label.light {
  font-weight: 300;
  display: inline;
}

label.error  {
  color: #681728;
  position: relative;
  font-size: 10px;
  margin-top: 20px;
}
label.dfn{
  font-size: 10px;
}
#msform fieldset:not(:first-of-type) {
  display: none;
}
.chkbxs{
  position: relative;
 display: inline-block;
}
.chkbxs label{
  position: relative;
  width: 50%;
  float: left;
}
/*inputs*/

/*buttons*/
#msform .action-button {
  position: relative;
  left: 1%;
  width: 100px;
  background: #681728;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 0px;
  font-family: 'Rajdhani', sans-serif;

  

}
#msform .action-button:hover, #msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #681728;
}
/*headings*/
.fs-title {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #681728;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;

}
#progressbar li {
  list-style-type: none;
  color: #000;
  text-transform: uppercase;
  font-size: 9px;
  width: 13%;
  text-align: center;
  display: inline-block;
  position: relative;
  left: 16%;
  margin-top: 30px;
  z-index: 2;

}

#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 15px;
  color: white;
  text-align: center;
  background: #681728;
  border-radius: 3px;
  margin: 0 auto 5px auto;
  z-index: 99;

}

/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 75%;
  height: 2px;
  background: #F5F4F4;
  position: absolute;
  left: -38%;
  top: 9px;
  z-index: -1;

/*put it behind the numbers*/
}

#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none; 

}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
  background: #681728;
  color: white;
}

.container-check {
  display: block;
  position: relative;
  width: 100%;
  padding: 0 auto;
  margin: 0 auto;
  margin-bottom: 25px;
  cursor: pointer;
  font-size: 22px; -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container-check span.text{
  font-size: 13px;
  position: relative;
  padding:30px;
}
/* Hide the browser's default checkbox */
.container-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -3px;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container-check:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-check input:checked ~ .checkmark {
  background-color: #681728;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*attahe file part*/
.custom-file-input{

    position: relative;
    width:98%;
    padding: 0 auto;
    margin: 0 auto;
    letter-spacing: 2%;
    top: 10px;
   
    }
    .custom-file-input input[type="file"]{
        width: 100%;
        height: 100%;
        opacity: 0;
        filter: alpha(opacity=0);
        zoom: 1;  /* Fix for IE7 */
        position: absolute;
        top: 0;
        left: 0;
        z-index: 999;
        background: #FDFDFD;
        border-radius: 8px;
        box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
    }

  input.attach{
    background: #fff;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    position: relative;
    top: 2px;
    border-radius: 4px;
    width: 15%;
    border: 1px solid #000;
  }

  input.selected-image-name-display{
      width: 30%;
      height: 10px;
      box-shadow:none;
      border: 1px solid #ccc;
      border-radius: 4px;
      
  }

@media screen and (min-width: 480px) {

  form {
    max-width: 880px;
  }

}