/* -----------------------------------------
access denied
----------------------------------------- */
.access-denied-sec {
  background-color: #ffffff;
  box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.access-denied-sec img {
  width: 430px;
  height: 300px;
  object-fit: contain;
}
.access-denied-sec .title {
  font-size: 5em;
  font-weight: 700;
  color: #ffc107;
}

.access-denied-sec .subtitle {
  font-size: 40px;
  font-weight: 700;
  color: #1fa9d6;
}

.access-denied-sec .go-back-btn {
  font-size: 12px;
  margin: 30px;
  font-weight: 700;
  border: 2px solid #ffc107;
  text-decoration: none;
  padding: 10px 20px;
  text-transform: uppercase;
  color: #ffc107;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}

.access-denied-sec .go-back-btn:hover {
  background-color: #ffc107;
  color: white;
  transition: all 0.2s ease-in-out;
}
/********************************************/
/*Media Query Start*/
/********************************************/
@media screen and (height: 2160px) {
  .access-denied-sec {
    height: 2082px;
  }
}
@media screen and (height: 1824px) {
  .access-denied-sec {
    height: 1746px;
  }
}
@media screen and (height: 1800px) {
  .access-denied-sec {
    height: 1722px;
  }
}
@media screen and (height: 1504px) {
  .access-denied-sec {
    height: 1426px;
  }
}
@media screen and (height: 1440px) {
  .access-denied-sec {
    height: 1362px;
  }
}
@media screen and (height: 1080px) {
  .access-denied-sec {
    height: 1002px;
  }
}
@media screen and (height: 900px) {
  .access-denied-sec {
    height: 822px;
  }
}
@media screen and (height: 768px) {
  .access-denied-sec {
    height: 690px;
  }
}
@media screen and (height: 668px) {
  .access-denied-sec {
    height: 590px;
  }
}
