

/* BASIC */
@font-face {
  font-family: IRANSans;
  font-style: normal;
  font-weight: bold;
    src: url('/fonts/IRANSansWeb_Bold.ttf') format('ttf');
}

body {
  font-family: IRANSans;
}





html {
  background-color: #56baed;
}

body {
  font-family: IRANSans;
  height: 100vh;
}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px; 
  color: #cccccc;
}



/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}
@media (min-width:1025px) { 
  #formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
  }
}

#formFooter {
  background-color: #2f89c5;
  border-top: 1px solid #2f89c5;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset]  {
  background-color: #56baed;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

input[type=text] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 50%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 0px 20px 20px 0px;
}
input[type=password] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 50%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 0px 20px 20px 0px;
}
input[type=text]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}
input[type=password]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}
input[type=text]:placeholder {
  color: #cccccc;
}
input[type=password]:placeholder {
  color: #cccccc;
}

/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}



/* OTHERS */

*:focus {
    outline: none;
} 

#icon {
  width:60%;
}

* {
  box-sizing: border-box;
}
@media only screen and (min-width: 769px) {
      #formContent {
        background-color: #2f89c5;
      }
      .fadeIn.fourth.login{
      	background-color: #1e45a2;
        border-bottom: 3px solid;
          border-right: 3px solid;
        border-color: #163786;
		font-size: 1.2vw;
      }

      .material-icons.login-field {
        position: relative;
        right: -19px;
      top: -2px;
        font-size: 30px;
        background-color: #173782;
        padding: 13px;
        border-radius: 20px 0px 20px 20px;
        color: #fff;
        vertical-align: middle;
        z-index: 10;
      }
      #log1 {
        background: none;
        color: #fff;
        box-shadow: none;
        font-size: 1.4vw;
          margin: 0;
      }
      #formContent {
              background-color: #2f89c5;
              background-image: url(../1_files/koli.png);
              background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
      }
      .row1-icon div,  .row2-icon div{
        display: inline-block;
        width: 24%;
      }
      .mySlides.fade1 {
        margin: 10px 30px;
      }
      p {
        text-align: center;
        padding: 20px 0px;
      }
	.row1-icon img,  .row2-icon img{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
	}
    .default-box {
        margin: 10px;
    }
  .col-md-6.form-group.mb-3.half {
      display: flex;
      gap: 10px;
  }
  .menu-footer {
      position: fixed;
      bottom: 0px;
      width: 100%;
      height: 155px;
      background-color: #fff;
      border-radius: 10px 10px 0px 0px;
      display: flex;
      gap: 10%;
      box-shadow: 0px -2px 3px #ccc;
    }
  .footer-item {
    text-align: center;
  }
  .footer-item img {
    display: inline-flex;
    width: 25%;
    padding: 10px;
  }
  .menu-footer2 {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 45px;
    text-align: center;
    color: #ccc;
  }
  .center-btn {
      display: inline-block;
  }
  .dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {background-color: #ddd;}

  .dropdown:hover .dropdown-content {display: block;}

  .dropdown:hover .dropbtn {background-color: #3e8e41;}
  .dropdown-content a {
      text-align: right;
      border-bottom: 1px solid #ccc;
      border-radius: 0px 0px 5px 5px;
  }
  .back-home {
      display: inline-block;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      margin: 24px 10px;
  }

}

@media only screen and (max-width: 769px) {

  div#formContent {
      width: 100%;
	  text-align: center;
	  height: 97vh;
	  border-radius: 20px;
  }

  #icon {
    width: 60%;
    top: 15vh;
    position: relative;
  }

  div#login1 {
    position: relative;
    top: 20vh;
  }

  input#login, input#password, input#email {
    	background-color: #f6f6f6;
        border: none;
        color: #0d0d0d;
        padding: 15px 30px;
        text-align: left;
        text-decoration: none;
        display: inline-block;
        font-size: 5vw;
        margin: 5px;
        width: 60%;
        border: 2px solid #f6f6f6;
  }

  .material-icons.login-field {
		position: relative;
        right: -21px;
        top: -5px;
        font-size: 30px;
        background-color: #173782;
        padding: 15px;
        border-radius: 20px 0px 20px 20px;
        color: #fff;
        vertical-align: middle;
        z-index: 10;
  }

  #log1 {
    background: none;
    box-shadow: none;
    text-align: center;
	color: #fff;
    font-size: 4.2vw;
    text-align: center;
    padding: 10px 0px;
    margin: 10px 0px;
  }

  input.fadeIn.fourth.login {
      display: block;
      text-align: center;
      margin: 0 auto;
      font-size: 2.5vh;
      border-radius: 20px;
      margin-top: 20px;
      padding: 15px 100px;
	background-color: #1e45a2;
        border-bottom: 3px solid;
        border-right: 3px solid;
        border-color: #163786;
  }
  #formContent {
          background-color: #2f89c5;
          background-image: url(../1_files/koli.png);
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
  }
  #login2 {
    position: relative;
    top: 160px;
  }
  #reqpass {
    font-size: 4.5vw;
    margin: 20px 0px 10px 0px;
    border-bottom: 3px solid;
    border-right: 3px solid;
    border-color: #1fa8ee;
  }

  #log2 {
    font-size: 4.5vw;
    padding: 15px 50px;
    margin: 20px 0px;
	background: #1e45a2;
    border-bottom: 3px solid;
    border-right: 3px solid;
    border-color: #163786;
  }
  .back-to-top {
    position: fixed;
    bottom: 85px;
    right: 90%;
  }
  .menu-footer {
	position: fixed;
    bottom: 0px;
    width: 100%;
    height: 100px;
    background-color: #fff;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    gap: 10%;
    box-shadow: 0px -2px 3px #ccc;
  }
  .footer-item img {
    width: 38%;
    display: inline-flex;
    width: 50%;
    padding: 10px 0px;
  }
  .footer-item {
    text-align: center;
  }
  .row1-icon img, .row2-icon img{
	 padding:24px;
  }

  .row1-icon div, .row2-icon div {
    width: 24%;
    display: inline-block;
  }
  .row1-icon p,  .row2-icon p {
  text-align: center;
  font-size: 1vh;
  }
  .menu-footer2 {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 20px;
    background-color: #fff;
    text-align: center;
    color: #ccc;
  }
  .form-control{
    width: 100%;
    color: #000;
    font-weight: bold;
	height: 39px;
  }
  .col-md-6.form-group.mb-3.half {
    display: flex;
    gap: 10px;
  }
  #khedmatdiv .row{
    margin-right:0px;
    margin-left:0px;
  }
  .center-btn {
      width: 100%;
      text-align: center;
      margin-bottom: 10px;
  }
  .center-btn input.btn.btn-primary {
      width: 100%;
  }
  .center-btn a.btn.btn-default.homelista {
      width: 100%;
  }
  .dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {background-color: #ddd;}

  .dropdown:hover .dropdown-content {display: block;}

  .dropdown:hover .dropbtn {background-color: #3e8e41;}
  .dropdown-content a {
      text-align: right;
      border-bottom: 1px solid #ccc;
      border-radius: 0px 0px 5px 5px;
      font-size: 4vw;
  }
  .back-home {
        display: inline-block;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        margin: 15px 10px;

  }
}
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #3f51b5;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #337ab7;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #3f51b5;
}

/* Fading animation */
.fade1 {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}