img, img:focus, input, input:focus, button, button:focus, a, a:focus {
  outline: none;
}

img {
  width: 100%;
  height: auto;
}

input, input:focus, select:focus-visible {
  box-shadow: none !important;
}

p, ul li {
  text-align: justify;
  line-height: 2em;
  color: #2e2e38;
}

.container {
  width: 80%;
  max-width: 80%;
  margin: 0 auto;
}

.amitShadow {
  box-shadow: 1px 1px 5px #aaa;
  transition: 0.5s all;
}
.amitShadow:hover {
  box-shadow: 0 14px 28px rgba(191, 191, 191, 0.2509803922), 0 10px 10px rgba(132, 132, 132, 0.2196078431);
}

.tint:before, .tint:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
}
.tint:after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.308));
}

.tint2:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
}
.tint2:after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent);
}

.amitBtn {
  background: #7209d7;
  color: #fff;
  padding: 5px 10px;
  transition: 0.5s all;
  border-radius: 5px;
}
.amitBtn:hover {
  background: #7209d7;
}

.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  margin-top: 1em;
  font-size: 25px;
  font-weight: 600;
  color: #2e2e38;
}

.content a, a.specialanchor {
  color: #ad2e24;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.content a:after, a.specialanchor:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1em;
  border-bottom: 2px solid #ad2e24;
  content: "";
}

.oneliner {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
}

.form-control {
  width: 100%;
  border: 1px solid #bebbbb;
  padding: 5px 10px;
  border-radius: 5px;
}

textarea.form-control {
  width: 100%;
}

.web {
  display: block;
}

.mobile {
  display: none;
}

/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  transition: transform 0.25s ease;
}

.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

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

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

.zoom-in {
  cursor: zoom-in;
}

.zoom-out {
  cursor: zoom-out;
}

[x-cloak] {
  display: none !important;
}

@media (max-width: 767px) {
  .web {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}/*# sourceMappingURL=style.css.map */