@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  overflow-x: hidden;
}

body,
html {
  margin: 0;
  padding: 0;
  background: #869BFF;
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
}


/*home*/
h1,h2,h3,h4,h5,h6{
  margin-bottom: 0;
  font-family: 'Outfit', sans-serif;
}
a {
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease-in-out !important;
}
a:hover {
  text-decoration: none;
  transition: 0.3s ease-in-out !important;
}
p {
  margin-bottom: 0px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
}
input:focus, textarea:focus {
  outline: 0;
  box-shadow: none !important;
}
button{
  border: none;
}
button:focus {
  outline: 0;
}
.fix {
  overflow: hidden;
}
.theme-container{
  max-width: 1440px;
  position: relative;
  margin: 0 auto;
}
.theme-btn{
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  line-height: 36px;
  padding: 11px 28px;
  border-radius: 50px;
  min-width: 200px;
  min-height: 48px;
  text-align: center;
  transition: all 0.4s;
  width: max-content;
}

/*/ Chrome, Safari, Edge, Opera /*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*/ Firefox /*/
input[type=number] {
  -moz-appearance: textfield;
}
select:invalid {
  color: #535c52 !important;
}
option:first {
  color: #535c52 !important;
}
option:disabled {
  color: #535c52 !important;
}
.main-splash{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.main-signup{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: 100vh;
  gap: 40px;
  padding-top: 5vh;
}
.main-splash img{
  width: 20vw;
}
.main-signup img{
  width: 15vw;
}
.main-signup .auth-wrapper{
  width: 28vw;
}

.auth-card {
  background: #fff;
  border-radius: 15px;
  width: 100%;
}

.custom-input {
  background: #e6ecff;
  border: 2px solid #e6ecff;
  border-radius: 11px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}

.custom-input:focus {
  box-shadow: none;
  outline: 2px solid #2c3e91;
  background-color: #e6ecff;
}

.custom-btn {
  background: #2c3e91;
  border-radius: 12px;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.333px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.custom-btn:hover {
  background: #23347c;
}

.eye-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.6;
}
/* OTP Inputs */
.otp-wrapper {
  margin-top: 10px;
}

.otp-input {
  width: 64px;
  height: 64px;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  border-radius: 16px;
  border: none;
  background: #e6ecff;
}

.otp-input:focus {
  outline: none;
  box-shadow: none;
  border: 2px solid #2c3e91;
  background: #e6ecff;
}

.otp-input.active {
  border: 2px solid #2c3e91;
  background: #e6ecff;
}
.loader {
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #ffffff 94%, #0000) top / 5px 5px no-repeat, conic-gradient(#0000 30%, #ffffff);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 5px),#000 0);
  animation: l13 1s infinite linear;
}
.g-header{
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 12;
}
.g-header hr{
  margin: 0;
}
.g-header .g-header-logo{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
}
.g-header .g-header-logo img{
  width: 90px;
}
.g-header .g-header-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
}
.g-header .g-header-head div{
  display: flex;
  align-items: center;
  gap:12px;
}
.g-header .g-header-head h1{
  font-size: 19px;
  color: #171725;
}
.g-header .g-header-head div p{
  color: #718096;
  font-size: 12px;
  line-height: 1.2;
}
.icon-btn{
  width: 45px;
  height: 45px;
  padding: 0;
  display:flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  background-color: #869BFF;
  border-radius: 15px;
  border: 1px solid #fff;
}
.icon-btn.disabled{
  background-color: #869BFF;
  border: 1px solid #fff;
}

@keyframes l13{
  100%{transform: rotate(1turn)}
}
.main-gallery{
  padding: 20px;
  padding-top: 175px;
}
.main-gallery .gallery-inner{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.main-gallery .gallery-inner .img-item{
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius:12px;
  background-color: #ffffff40;
  backdrop-filter: blur(5px);
  position: relative;
  cursor: pointer;
}
.main-gallery .gallery-inner .img-item img{
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}
/* Download icon */
.download-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  display: inline-block;
  z-index: 2;
}

.img-item:hover .download-icon {
  display: block;
}

/* Checkbox icon */
.check-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #2c3e91;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.img-item.selected .check-icon {
  display: flex;
}

.img-item.selected::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 145, 0.25);
}
.modal-content{
  height: 75vh;
}
.modal-body{
  height: -webkit-fill-available;
}
.carousel{
  height: -webkit-fill-available;
}
.carousel-inner{
  height: -webkit-fill-available;
}
.carousel-item{
  height: -webkit-fill-available;
}
.carousel-item-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-item-inner img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: -webkit-fill-available;
}
.icon-btn-close{
  width: 45px;
  min-height: 45px;
  display:flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 0;
  position: absolute;
  right: 0px;
  top: -13px;
}
.text-download{
    font-size: 17px;
    padding: 6px 16px;
    color: #fff;
    background-color: #212529;
    position: absolute;
    left: 0;
    top: -26px;
    text-align: center;
    z-index: 5;
    border-radius: 13px;
}
@media only screen and (max-width: 991px){
  .main-splash img{
    width: 80vw;
  }
  .main-signup img{
    width: 50vw;
  }
  .main-signup .auth-wrapper{
    width: 90vw;
  }
  .main-gallery .gallery-inner{
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
}
    