/*
  Author: Nipesh Tamang
  Website: www.nipeshtamang.com.np
  Email: nipeshtamang@gmail.com
  Phone: +977 9823242628
*/
/*Variables*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  border-radius: 0 !important; }

body {
  background: url("../images/main-bg.jpg");
  background-repeat: repeat;
  background-position: center;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-size: 15px; }

a {
  transition: 0.5s; }
  a:hover, a:active, a:focus {
    color: #ef434a;
    outline: none;
    text-decoration: none; }

p {
  padding: 0;
  margin: 0 0 20px 0;
  white-space: pre-wrap !important; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0; }

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #ef434a;
  color: #eee;
  display: inline-block;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11; }
  .back-to-top i {
    padding-top: 12px;
    color: #eee; }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#mainHeader {
  position: absolute;
  z-index: 9999;
  width: 100%; }

#mainNav {
  border-color: transparent;
  background-color: transparent;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s; }
  #mainNav .navbar-nav > li.nav-item > a.nav-link {
    padding: 0.5rem 1.5rem;
    color: #eee;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase; }
    #mainNav .navbar-nav > li.nav-item > a.nav-link:focus {
      color: rgba(255, 255, 255, 0.7); }
    #mainNav .navbar-nav > li.nav-item > a.nav-link:hover, #mainNav .navbar-nav > li.nav-item > a.nav-link:focus:hover {
      color: #ef434a; }
  #mainNav.navbar-shrink {
    border-bottom: 1px solid rgba(33, 37, 41, 0.1);
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0; }
    #mainNav.navbar-shrink .navbar-brand {
      padding: 0px; }
    #mainNav.navbar-shrink .navbar-nav > li.nav-item > a.nav-link {
      color: #eee; }
      #mainNav.navbar-shrink .navbar-nav > li.nav-item > a.nav-link:focus {
        color: #ef434a; }
      #mainNav.navbar-shrink .navbar-nav > li.nav-item > a.nav-link:hover, #mainNav.navbar-shrink .navbar-nav > li.nav-item > a.nav-link:focus:hover {
        color: #ef434a; }

.social-links a {
  text-align: center;
  float: left;
  width: 34px;
  height: 34px;
  border: 1px solid #eee;
  border-radius: 100%;
  margin-right: 7px; }
  .social-links a i {
    font-size: 17px;
    line-height: 34px;
    color: #eee; }
    .social-links a i:hover {
      color: #ef434a; }

/*--------------------------------------------------------------
# Home Banner
--------------------------------------------------------------*/
#home-banner #myVideo {
  width: 100%;
  height: 100vh;
  object-fit: cover; }
#home-banner .carousel-item img {
  width: 100%;
  height: 100vh; }
#home-banner .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0; }
#home-banner .carousel-content {
  text-align: center; }
#home-banner h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 55px; }
  #home-banner h2 span {
    color: #ef434a; }
#home-banner p {
  width: 100%;
  margin: 0 auto 30px auto;
  text-transform: uppercase;
  color: #eee;
  font-size: 22px; }
#home-banner .carousel-fade .carousel-inner .carousel-item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  opacity: 0; }
#home-banner .carousel-fade .carousel-inner .active {
  opacity: 1;
  transition: 0.5s; }
  #home-banner .carousel-fade .carousel-inner .active.carousel-item-left, #home-banner .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0; }
#home-banner .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left, #home-banner .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s; }
#home-banner .carousel-fade .carousel-inner .carousel-item-next, #home-banner .carousel-fade .carousel-inner .carousel-item-prev {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }
#home-banner .carousel-fade .carousel-inner .active.carousel-item-left, #home-banner .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }
#home-banner .carousel-control-prev, #home-banner .carousel-control-next {
  width: 10%; }
#home-banner .carousel-control-next-icon, #home-banner .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1; }
#home-banner .carousel-indicators li {
  cursor: pointer; }
#home-banner .btn-read-more {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #e67e22; }
  #home-banner .btn-read-more:hover {
    background: #fff;
    color: #e67e22; }

/*--------------------------------------------------------------
# Introduction
--------------------------------------------------------------*/
#introduction {
  padding: 50px 0; }
  #introduction .about {
    background: url("../images/about-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 30px;
    color: #eee;
    margin-top: 15%;
    margin-right: -20%;
    z-index: 100 !important;
    position: absolute; }

/*--------------------------------------------------------------
# Our Special
--------------------------------------------------------------*/
#special {
  padding: 50px 0;
  text-align: center; }
  #special h2 {
    color: #eee;
    font-size: 50px; }
  #special p {
    color: #eee;
    font-size: 24px; }
  #special .card {
    background: url("../images/special-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 20px 30px;
    min-height: 340px; }
    #special .card img {
      border-radius: 50%;
      height: 170px;
      width: 170px;
      border: 3px solid #fde0c4;
      margin: 0 auto; }
    #special .card h2 {
      color: #eee;
      text-transform: uppercase;
      font-size: 22px;
      text-align: left;
      font-weight: bold;
      margin-bottom: 15px; }
    #special .card p {
      color: #111;
      text-align: left;
      margin: 0px; }
    #special .card .card-body {
      padding: 0px;
      margin-top: 20px; }
      #special .card .card-body h5 {
        color: #eee;
        font-size: 25px;
        font-family: 'Oswald';
        text-transform: uppercase; }
      #special .card .card-body p {
        color: #eee;
        font-size: 14px;
        text-align: justify; }
  #special .lSSlideWrapper {
    position: unset; }
  #special .lSAction > a {
    width: 40px;
    display: block;
    top: 63%;
    height: 40px;
    background-image: url("../images/controls1.png");
    cursor: pointer;
    position: absolute;
    z-index: 99;
    margin-top: -16px;
    opacity: 0.9;
    -webkit-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s; }
  #special .lSAction > a:hover {
    opacity: 1; }
  #special .lSAction > .lSPrev {
    background-position: 0 0;
    left: -25px; }
  #special .lSAction > .lSNext {
    background-position: -41px 0;
    right: -25px; }
  #special .lSPager {
    display: none; }

/*--------------------------------------------------------------
# Our Testimonial
--------------------------------------------------------------*/
#testimonial {
  padding: 50px 0;
  text-align: center; }
  #testimonial h2 {
    color: #eee;
    font-size: 50px; }
  #testimonial #myVideo {
    width: 100%;
    height: 494px;
    object-fit: cover; }
  #testimonial .carousel-item img {
    width: 100%;
    height: 500px; }
  #testimonial .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0; }
  #testimonial .carousel-content {
    text-align: center; }
  #testimonial h5 {
    font-family: 'Oswald';
    color: #eee;
    font-size: 30px; }
  #testimonial p {
    width: 50%;
    margin: 0 auto 30px auto;
    color: #eee;
    font-size: 18px; }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 20px 0 40px 0; }
  #footer .footer-intro img {
    padding-bottom: 30px; }
  #footer .footer-intro p {
    color: #eee; }
  #footer .contact-info h1 {
    color: #eee; }
  #footer .contact-info ul {
    margin: 0px;
    padding: 0px;
    list-style: none; }
  #footer .contact-info li {
    color: #eee;
    line-height: 35px; }
  #footer .contact-info i {
    color: #ef434a;
    padding-right: 20px; }
  #footer .subscribe {
    /* .social-links a, i{
  border-color: #ef434a;
  color: #ef434a;
} */ }
    #footer .subscribe h1, #footer .subscribe p {
      color: #eee; }
    #footer .subscribe .subscribeform {
      margin-bottom: 20px; }
      #footer .subscribe .subscribeform input {
        padding: 12px 12px;
        border-radius: 5px 0 0 5px;
        border: none;
        outline: none;
        font-style: italic; }
      #footer .subscribe .subscribeform button {
        padding: 12px 12px;
        border-radius: 0 5px 5px 0;
        border: none;
        outline: none;
        background: #ef434a;
        color: #fff;
        font-weight: bold;
        margin-left: -5px;
        cursor: pointer;
        text-transform: uppercase; }

/*--------------------------------------------------------------
# Copyright
--------------------------------------------------------------*/
#copyRight {
  background: rgba(0, 0, 0, 0.7);
  padding: 25px 0; }
  #copyRight .copyright-text {
    text-align: center; }
    #copyRight .copyright-text p {
      margin: 0px;
      padding: 0px;
      font-size: 14px;
      color: #fff;
      white-space: unset !important; }

/*--------------------------------------------------------------
# Inner Page Banner
--------------------------------------------------------------*/
#innerPage-banner {
  display: table;
  width: 100%;
  height: 50vh;
  background: #000; }
  #innerPage-banner .carousel-item {
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
    #innerPage-banner .carousel-item::before {
      content: '';
      background-color: rgba(0, 0, 0, 0.5);
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0; }
  #innerPage-banner .carousel-container {
    position: absolute;
    bottom: 0;
    top: 50%;
    left: 0;
    right: 0; }
  #innerPage-banner .carousel-content {
    text-align: center; }
  #innerPage-banner h2 {
    color: #fff;
    font-size: 50px;
    font-weight: bold; }
  #innerPage-banner p {
    width: 80%;
    margin: 0 auto 30px auto;
    color: #fff;
    font-size: 16px; }

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
#aboutpage {
  padding: 50px 0; }
  #aboutpage .about {
    color: #eee;
    text-align: justify; }

/** Contact Page **/
#contactus {
  padding: 50px 0; }
  #contactus h2 {
    color: #eee;
    font-size: 50px;
    text-align: center; }
  #contactus p {
    color: #eee;
    font-size: 18px;
    text-align: center; }
  #contactus .contact-address {
    text-align: left;
    padding-top: 30px; }
    #contactus .contact-address h3 {
      text-align: left;
      color: #eee;
      font-size: 40px; }
    #contactus .contact-address ul {
      color: #eee;
      list-style: none;
      margin: 0px;
      padding: 0px; }
    #contactus .contact-address li {
      font-size: 16px;
      line-height: 40px;
      font-weight: bold; }
      #contactus .contact-address li p {
        padding: 0px 0px 0px 15px;
        margin: 0px; }
    #contactus .contact-address i {
      padding-right: 1em;
      color: #ef434a; }
  #contactus input:focus ~ label, #contactus textarea:focus ~ label, #contactus input:valid ~ label, #contactus textarea:valid ~ label {
    font-size: 0.75em;
    color: #999;
    top: -5px;
    -webkit-transition: all 0.225s ease;
    transition: all 0.225s ease; }
  #contactus .styled-input {
    float: left;
    width: 100%;
    margin: 1rem 0;
    position: relative;
    border-radius: 4px; }
  @media only screen and (max-width: 768px) {
    #contactus .styled-input {
      width: 100%; } }
  #contactus .styled-input label {
    color: #666;
    padding: 1rem 30px 1rem 30px;
    position: absolute;
    top: 10px;
    left: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    pointer-events: none; }
  #contactus label.error {
    color: indianred;
    text-align: right;
    width: 100%; }
  #contactus input[type=number]::-webkit-inner-spin-button,
  #contactus input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  #contactus .styled-input.wide {
    width: 100%;
    max-width: 100%; }
  #contactus input,
  #contactus textarea {
    padding: 25px;
    border: 0;
    width: 100%;
    font-size: 1rem;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 4px;
    border: 1px solid #eee; }
  #contactus input:focus,
  #contactus textarea:focus {
    outline: 0; }
  #contactus input:focus ~ span,
  #contactus textarea:focus ~ span {
    width: 100%;
    -webkit-transition: all 0.075s ease;
    transition: all 0.075s ease; }
  #contactus textarea {
    width: 100%;
    min-height: 15em; }
  #contactus .input-container {
    width: 650px;
    max-width: 100%;
    margin: 20px auto 25px auto; }
  #contactus .submit-btn {
    float: right;
    padding: 7px 35px;
    background-color: #ef434a;
    color: white;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease; }
  @media (max-width: 768px) {
    #contactus .submit-btn {
      width: 100%;
      float: none;
      text-align: center; } }

/** Contact Map **/
#contactmap h2 {
  text-transform: none;
  color: #eee;
  text-align: center;
  font-size: 50px;
  margin-bottom: 30px; }
#contactmap iframe {
  margin-bottom: 30px; }

/** Atic Menu **/
#atticmenu {
  padding: 50px 0; }
  #atticmenu img {
    height: 100px;
    width: 100px;
    border-radius: 100%; }
  #atticmenu li {
    padding: 0 10px;
    font-weight: 500;
    text-transform: uppercase; }
  #atticmenu .nav-pills .nav-link.active, #atticmenu .nav-pills .show > .nav-link {
    background: #ef434a; }
  #atticmenu .media {
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px; }
    #atticmenu .media .media-body {
      color: #eee; }
      #atticmenu .media .media-body .price {
        font-family: 'Oswald';
        float: right;
        font-weight: 500;
        font-size: 20px; }
      #atticmenu .media .media-body h5 {
        font-family: 'Oswald';
        font-weight: 500;
        font-size: 20px; }

/*** Gallery Album ***/
#atticgalleryablum {
  padding: 50px 0; }
  #atticgalleryablum .item {
    margin-bottom: 25px; }
  #atticgalleryablum .nav-tabs {
    border-bottom: 1px solid #ef434a;
    text-transform: uppercase; }
    #atticgalleryablum .nav-tabs .active {
      background: #ef434a;
      color: #fff;
      text-transform: uppercase;
      border: none; }
    #atticgalleryablum .nav-tabs .nav-link {
      border: none;
      padding: 15px 0; }
      #atticgalleryablum .nav-tabs .nav-link:hover, #atticgalleryablum .nav-tabs .nav-link:focus {
        border: none; }
  #atticgalleryablum .tab-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px 25px 0 25px; }
  #atticgalleryablum .galleryalbum {
    position: relative; }
  #atticgalleryablum .image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 250px;
    transition: .5s ease;
    backface-visibility: hidden;
    border: 2px solid;
    border-color: rgba(255, 255, 255, 0.7); }
  #atticgalleryablum .middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%; }
  #atticgalleryablum .galleryalbum:hover .image {
    opacity: 0.5; }
  #atticgalleryablum .galleryalbum:hover .middle {
    opacity: 1; }
  #atticgalleryablum .text {
    background-color: #ef434a;
    color: white;
    font-size: 16px;
    padding: 10px; }

/*** Gallery ***/
#atticgallery {
  padding: 50px 0; }
  #atticgallery .nav-pills .nav-link.active, #atticgallery .nav-pills .show > .nav-link {
    background: #ef434a; }
  #atticgallery .demo-gallery {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px 35px 15px 35px;
    display: block;
    overflow: hidden; }
    #atticgallery .demo-gallery h2 {
      color: #fff; }
    #atticgallery .demo-gallery > ul {
      margin-bottom: 0; }
      #atticgallery .demo-gallery > ul > li {
        float: left;
        margin-bottom: 15px;
        margin-right: 0px;
        padding: 0 10px;
        width: 200px; }
        #atticgallery .demo-gallery > ul > li a {
          border: 3px solid;
          border-color: rgba(255, 255, 255, 0.8);
          border-radius: 3px;
          display: block;
          overflow: hidden;
          position: relative;
          float: left; }
          #atticgallery .demo-gallery > ul > li a > img {
            -webkit-transition: -webkit-transform 0.15s ease 0s;
            -moz-transition: -moz-transform 0.15s ease 0s;
            -o-transition: -o-transform 0.15s ease 0s;
            transition: transform 0.15s ease 0s;
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
            height: 100%;
            width: 100%;
            min-height: 200px;
            max-height: 200px; }
          #atticgallery .demo-gallery > ul > li a:hover > img {
            -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1); }
          #atticgallery .demo-gallery > ul > li a:hover .demo-gallery-poster > img {
            opacity: 1; }
          #atticgallery .demo-gallery > ul > li a .demo-gallery-poster {
            background-color: rgba(0, 0, 0, 0.1);
            bottom: 0;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            -webkit-transition: background-color 0.15s ease 0s;
            -o-transition: background-color 0.15s ease 0s;
            transition: background-color 0.15s ease 0s; }
            #atticgallery .demo-gallery > ul > li a .demo-gallery-poster > img {
              left: 50%;
              margin-left: -10px;
              margin-top: -10px;
              opacity: 0;
              position: absolute;
              top: 50%;
              -webkit-transition: opacity 0.3s ease 0s;
              -o-transition: opacity 0.3s ease 0s;
              transition: opacity 0.3s ease 0s; }
          #atticgallery .demo-gallery > ul > li a:hover .demo-gallery-poster {
            background-color: rgba(0, 0, 0, 0.5); }
    #atticgallery .demo-gallery .justified-gallery > a > img {
      -webkit-transition: -webkit-transform 0.15s ease 0s;
      -moz-transition: -moz-transform 0.15s ease 0s;
      -o-transition: -o-transform 0.15s ease 0s;
      transition: transform 0.15s ease 0s;
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
      height: 100%;
      width: 100%; }
    #atticgallery .demo-gallery .justified-gallery > a:hover > img {
      -webkit-transform: scale3d(1.1, 1.1, 1.1);
      transform: scale3d(1.1, 1.1, 1.1); }
    #atticgallery .demo-gallery .justified-gallery > a:hover .demo-gallery-poster > img {
      opacity: 1; }
    #atticgallery .demo-gallery .justified-gallery > a .demo-gallery-poster {
      background-color: rgba(0, 0, 0, 0.1);
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      -webkit-transition: background-color 0.15s ease 0s;
      -o-transition: background-color 0.15s ease 0s;
      transition: background-color 0.15s ease 0s; }
      #atticgallery .demo-gallery .justified-gallery > a .demo-gallery-poster > img {
        left: 50%;
        margin-left: -10px;
        margin-top: -10px;
        opacity: 0;
        position: absolute;
        top: 50%;
        -webkit-transition: opacity 0.3s ease 0s;
        -o-transition: opacity 0.3s ease 0s;
        transition: opacity 0.3s ease 0s; }
    #atticgallery .demo-gallery .justified-gallery > a:hover .demo-gallery-poster {
      background-color: rgba(0, 0, 0, 0.5); }
    #atticgallery .demo-gallery .video .demo-gallery-poster img {
      height: 48px;
      margin-left: -24px;
      margin-top: -24px;
      opacity: 0.8;
      width: 48px; }
    #atticgallery .demo-gallery.dark > ul > li a {
      border: 3px solid #04070a; }
  #atticgallery .home .demo-gallery {
    padding-bottom: 80px; }
  #atticgallery .backbtn {
    float: right;
    background: #ef434a;
    padding: 8px 30px;
    border-radius: 5px; }
    #atticgallery .backbtn a:hover {
      color: #fff; }
  #atticgallery .pagechange {
    float: left; }
    #atticgallery .pagechange .page-link {
      background: #ef434a;
      border-color: rgba(255, 255, 255, 0.3);
      color: #fff; }

#video-gallery a img {
  min-height: 200px;
  max-height: 200px; }
#video-gallery .playbtn img {
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.8;
  position: absolute;
  top: 38%;
  left: 45%;
  min-height: 20px; }
#video-gallery .galleryalbum:hover .middle {
  opacity: 1; }
#video-gallery .text {
  background-color: rgba(138, 96, 54, 0.5);
  color: white;
  font-size: 16px;
  padding: 10px; }

#atticgallery {
  display: none; }

.navbar li.active a {
  color: #ef434a !important; }

/* Set width on the form input elements since they're 100% wide by default */
/*** ADMIN LOGIN ***/
#adminlogin {
  text-align: center;
  background: #555;
  margin-top: 10%;
  background: url(../Images/06_pattern.jpg) repeat;
  padding-left: 15px;
  padding-right: 15px; }
  #adminlogin input,
  #adminlogin select,
  #adminlogin textarea {
    max-width: 280px; }
  #adminlogin .form-signin {
    background: #f1f1f1;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    border-radius: 5px; }
  #adminlogin .form-signin .checkbox {
    font-weight: 400;
    text-align: left; }
  #adminlogin .form-signin .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px; }
  #adminlogin form-signin .form-control:focus {
    z-index: 2; }
  #adminlogin .form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  #adminlogin .form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  #adminlogin .form-signin .btn-primary {
    background: #29578e;
    border: none;
    width: auto;
    font-size: 16px; }

/* edit css*/
.img-wrap {
  width: 100%;
  display: block;
  float: left;
  border-radius: 5px;
  background: #fff;
  margin-bottom: 30px; }

#adminlogin .form-signin img.mb-3 {
  padding: 20px; }

form.form-horizontal {
  padding: 20px; }

.validation-summary-errors.text-danger ul {
  /*padding: 0px;*/ }

.validation-summary-errors.text-danger li {
  list-style: none;
  text-align: left; }

.forgot-msg {
  padding-bottom: 10px; }

/*# sourceMappingURL=style.css.map */  