.d-none{
    display:none;
}
.login-wrapper .login-section .content-wrap .form-wrap .btn-sso {
    display: block;
    text-align: center;
    border: 0;
    background: #e47c28;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 0;
    text-decoration: none;
}

.login-wrapper .login-section .content-wrap .form-wrap .form-field:last-child{
    margin-bottom: 0;
}

.login-wrapper .login-section .content-wrap .form-wrap .btn-sso:hover {
    transform: translate3d(0, -1px, 0);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 40%);
}



:root {
  --default-max-width: calc(100% - 110px);
}

.dropzone .dz-preview.dz-image-preview {
  background-color: transparent;
}

body {
  font-family: 'Roboto', sans-serif;
}

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

.drawer p {
  font-weight: 300;
  line-height: 1.5;
}

/* ICON MENU */
.icon-menus {
  height: 100%;
  border-bottom: 1px solid #474747;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  background-color: #2a2e31;
  position: relative;
  z-index: 10;
  overflow-x: auto;
}
.icon-menus .icon {
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all 300ms ease-in-out;
}
.icon-menus .icon:hover,
.icon-menus .icon.active {
  color: #FFDC5D;
  background-image: radial-gradient(#2A2E31, #171B24);
}
.icon-menus .icon svg {
  width: 80px;
  height: 80px;
}

/* LAYOUT BASE */
.inside-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
}
.encased-login-section {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.company-logo {
  height: 100%;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
}
.company-logo p {
  color: #d9d9d9;
  border-top: 1px solid #474747;
  padding: 25px;
}

.resize-none {
  resize: none;
}

/* DRAWER */
.drawer {
  --default-max-width: 100%;
  position: fixed;
  top: 97px;
  left: -110%;
  width: 100%;
  max-width: var(--max-width, var(--default-max-width));
  height: calc(100% - 97px);
  background: #1C1E23;
  color: #fff;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: all 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 8;
}
.drawer.active {
  left: 0;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 10px;
}
.drawer-header h2 {
  font-size: 24px;
  text-transform: uppercase;
}
.green-border-bottom {
  border-bottom: 1px solid #006123;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.close-btn {
  flex-shrink: 0;
  cursor: pointer;
  font-size: 20px;
  background-color: #454545;
  height: 30px;
  border-radius: 9999px;
  transition: transform 0.3s ease;
  transform-origin: center center;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.close-btn:hover {
  transform: rotate(90deg);
  color: #FFDC5D;
}
.drawer-content {
  position: relative;
  line-height: 1.6;
  height: 100%;
}
.drawer-content.hide-scrollbar {
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.drawer-content.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.drawer-content:not(.no-scroll) {
  overflow-y: auto;
}
.drawer-content:not(.no-scroll)::-webkit-scrollbar {
  width: 6px;
}
.drawer-content:not(.no-scroll)::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* SCROLLABLE BTNS */
.scrollable-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
  gap: 5px;
}
.scrollable-btns .scroll-btn {
  cursor: pointer;
  filter: grayscale(0);
  transition: all 0.3s ease;
}
.scrollable-btns .scroll-btn:hover {
  filter: grayscale(1);
}

/* ABOUT */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-content .paras {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-content .paras p {
  font-size: 15px;
  color: #fff;
}

/* BUTTONS */
.cool-vid-btns {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cool-vid-btns .cool-btn {
  border: none;
  outline: none;
  background-color: #2A2E31;
  color: #fff;
  padding: 10px 12px;
  border-radius: 15px;
  cursor: pointer;
  text-align: left;
  line-height: 1.5;
  transition: background-color 500ms ease;
  font-size: 14px;
  text-decoration: none;
}
.cool-vid-btns .cool-btn:hover {
  background-color: #BA8E23;
}
.cool-vid-btns .cool-btn span strong {
  color: #0085E2;
}
.cool-vid-btns .cool-btn:hover span strong {
  color: #fff;
}
.cool-vid-btns .fly-img {
  display: none;
}
.fly-img-clone {
  position: fixed;
  z-index: 999;
  max-width: 220px;
  border: 2px solid #BA8E23;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
}
.fly-img-clone.show {
  opacity: 1;
  visibility: visible;
}

/* UTILITY */
.error {
  color: #ec4242;
  font-size: 12px;
}
.dropzone .dz-preview .dz-remove {
  color: #bc9d28;
  text-decoration: none;
}
.bg-yellow { background: #d1bf62; }
.bg-red { background: #d16262; }
.bg-green { background: #68906E; }

/* SWIPER */
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #686868;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #C0A337;
}

/* PROBLEMS SECTION */
.what-problems {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-left: 20px;
}
.what-problems .title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.what-problems .problem-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.what-problems .problem-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background-image: linear-gradient(to right, #1C1E23, #29456C);
  padding: 2px 15px;
  border-radius: 15px;
}
.what-problems .problem-item h3 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* CONTACT */
.contact-us {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.contact-us .contact-input {
  width: 100%;
  padding: 10px 20px;
  border-radius: 15px;
  border: none;
  outline: none;
  background-color: #3F474C;
  color: #fff;
  font-size: 17px;
}
.contact-us .span-full {
  grid-column: span 2;
}
.contact-us .flex-div {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 10px;
}

.help-select {
  width: 100%;
  padding: 10px;
  border-radius: 15px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 17px;
}
.contact-btn {
  margin-top: 20px;
  border-radius: 9999px;
  border: none;
  outline: none;
  background-color: #30C68F;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
}

/* ADDRESS INFO */
.address-info {
  margin-top: 40px;
}
.address-info .address-info-box-header {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-weight: 600;
}
.address-info .address-info-box {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 6px;
  padding-top: 30px;
  gap: 5px;
}
.address-info .address-info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-top: 1px solid #3F474C;
}

/* HELP SECTION */
.help .dropzone {
  border: 3px dashed #7B7B7B;
  background-color: #3F474C;
  padding: 20px;
  border-radius: 15px;
  color: #848484;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* MEDIA QUERY */
@media (min-width: 480px) {
  .drawer {
    position: absolute;
    --default-max-width: calc(100% - 110px);
    top: 0;
    height: 100%;
  }
  .drawer.active {
    left: 110px;
  }
  .encased-login-section {
    grid-template-columns: 110px 1fr;
  }
  .icon-menus {
    border-right: 1px solid #474747;
    border-bottom: none;
    flex-direction: column;
    justify-content: center;
  }
  .company-logo {
    margin-top: 0;
  }
  .company-logo p {
    padding: 25px 25px 0;
  }
  .contact-us .flex-div {
    grid-template-columns: 1fr 170px;
  }
  .address-info .address-info-box {
    padding: 20px;
  }
}
