@font-face {
  font-family: "DM-Sans-Regular";
  src: url(../css/Fonts/DM_Sans/DMSans-VariableFont.ttf);
}
@font-face {
  font-family: "DM-Sans-SemiBold";
  src: url(../css/Fonts/DM_Sans/DMSans-VariableFont.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "DM-Sans-Bold";
  src: url(../css/Fonts/DM_Sans/DMSans-VariableFont.ttf);
  font-weight: 800;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #F3F7FB;
  overflow-x: hidden !important;
}

.btn-primary {
  background-color: #5661F6 !important;
}

.btn-outline-primary {
  border-color: #5661F6 !important;
  color: #5661F6;
}

.font-bold {
  font-weight: 800 !important;
}

.login-page {
  height: 100vh;
}
.login-page .login-details {
  background: linear-gradient(-45deg, #ee7752, #3c6ae7, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 60s ease infinite;
  color: #fff;
  padding: 30px;
  padding-left: 80px;
  padding-right: 80px;
  height: 100vh;
}
.login-page .login-details .heading-title {
  padding-left: 20px;
  padding-bottom: 90px;
}
.login-page .login-details .heading-title h1 {
  font-size: 30px;
  font-weight: 400;
}
.login-page .login-details .sub-heading-title h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
}
.login-page .login-details .login-content {
  margin-top: 30px;
  height: 700px;
  overflow: auto;
}
.login-page .login-details .login-content h5 {
  font-weight: 600;
}
.login-page .login-details .login-content p {
  margin-top: 25px;
  font-size: 18px;
}
.login-page .login-details .login-content p span {
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(192, 153, 153, 0.507);
  box-shadow: 0 10px 20px rgba(243, 142, 142, 0.19), 0 6px 6px rgba(248, 184, 184, 0.23);
}
.login-page .login-form {
  padding: 150px 150px;
}
.login-page .login-form .form-header {
  text-align: center;
}
.login-page .login-form .form-header h2 {
  font-weight: 800;
  font-size: 32px;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.chat-ai {
  background-color: #F3F7FB;
}
.chat-ai .bg {
  position: fixed;
  width: 100%;
  top: 0;
  height: 20px;
  background-color: #F3F7FB;
  z-index: 9;
}
.chat-ai .header {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0px 8px 24px -4px rgba(0, 0, 0, 0.0784313725) !important;
  padding: 10px;
  margin-top: 20px;
  position: fixed;
  width: calc(100% - 25px);
  top: 0;
  z-index: 9;
}
.chat-ai .header .user-setting{
  justify-content: end;
}

.chat-ai .header .user-setting :active {
  border-color: transparent !important;
}
.chat-ai .header .user-setting .dropdown .user-button-setting {
  border: 1px solid #C7C7C7;
  font-weight: 500;
  color: #000;
}
.chat-ai .header .user-setting .dropdown .user-button-setting img {
  margin-right: 10px;
}
.chat-ai .header .user-setting .dropdown ::after {
  border: 0;
}
.chat-ai .list-of-conversation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 5px;
}
.chat-ai .list-of-conversation p {
  color: rgb(92, 92, 92);
  font-size: 16px;
}
.chat-ai .list-of-conversation a {
  color: #5661F6;
  font-weight: 800;
  font-size: 16px;
}
.chat-ai .list-of-conversation-days {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 5px;
}
.chat-ai .list-of-conversation-days p {
  color: rgb(92, 92, 92);
  font-size: 16px;
  font-weight: 500;
}
.chat-ai .list-of-questions {
  height: 650px;
  overflow-y: auto;
  overflow-x: hidden;
}
.chat-ai .user-content .return-ans h5 {
  font-weight: 700;
  font-size: 16px;
}
.chat-ai .user-content .return-ans .avatar {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  max-width: 30px;
  max-height: 30px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.chat-ai .user-content .return-ans .loading-icon {
  width: 100%;
  height: auto;
  margin-left: -10px;
}
.chat-ai .user-content .return-ans .provided-ans {
  margin-left: 40px;
}
.chat-ai .user-content .return-ans .provided-ans h4 {
  font-weight: 400;
  font-size: 18px;
}
.chat-ai .user-content .return-ans .provided-ans .note {
  font-weight: 600;
  font-size: 18px;
}
.chat-ai .user-content .return-ans .return-content {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 15px;
}
.chat-ai .user-content .return-ans .return-content .return-content-box {
  padding: 10px 0;
}
.chat-ai .user-content .return-ans .return-content .return-content-box li {
  font-weight: 500;
}
.chat-ai .user-content .return-ans .return-content .return-content-box ::marker {
  font-weight: 600;
}
.chat-ai #content-wrapper {
  margin-top: 86px;
}
.chat-ai #content-wrapper .input-search {
  max-width: 757px;
  margin: 0 auto;
  border: 1px solid #C7C7C7;
}
.chat-ai #content-wrapper .input-content {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  /*padding-top: 20px;*/
  z-index: 9;
  background-color: #F3F7FB;
}
.chat-ai #content-wrapper .input-content .form-control {
  margin-right: 5px;
  border-radius: 30px;
  height: 50px;
  padding: 20px;
}
.chat-ai #content-wrapper .input-content .send {
  background-color: #5661F6;
  border-radius: 50%;
  box-shadow: 0 0.1rem 0.2rem #5661F6;
  margin-top: 3px;
  margin-right: 6px;
}
.chat-ai #content-wrapper .input-content .send img {
  width: 25px;
  height: 29px;
  min-height: 29px;
  min-width: 25px;
  max-width: 25px;
  max-height: 29px;
}
.chat-ai #content-wrapper .form-control:focus {
  box-shadow: none;
}
.chat-ai #content-wrapper .landing-boxes {
  height: calc(100vh - 260px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto 0;
  margin-bottom: 130px;
  padding-top: 30px;
}
.chat-ai #content-wrapper .highlighted-content .landing-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.chat-ai #content-wrapper .highlighted-content .landing-icon .icon {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 32px;
  margin-bottom: 18px;
}
.chat-ai #content-wrapper .highlighted-content .landing-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  text-align: center;
}
.chat-ai #content-wrapper .highlighted-content .landing-content h2 {
  font-weight: 600;
  font-size: 44px;
}
.chat-ai #content-wrapper .highlighted-content .boxes .inner-boxes-first {
  display: flex;
  justify-content: end;
  align-items: center;
}
.chat-ai #content-wrapper .highlighted-content .boxes .inner-boxes-second {
  display: flex;
  justify-content: start;
  align-items: center;
}
.chat-ai #content-wrapper .highlighted-content .boxes .card {
  border: 0;
  border-radius: 14px;
  background-color: #FFFFFF;
  max-width: 500px;
  width: 100%;
}
.chat-ai #content-wrapper .highlighted-content .boxes .card .card-content {
  padding: 25px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-ai #content-wrapper .highlighted-content .boxes .card .card-content h3 {
  text-align: center;
  font-size: 22px;
  line-height: 35px;
  font-weight: 500;
}
.chat-ai #content-wrapper .highlighted-content .boxes .card .card-content .right-arrow {
  width: 30px;
}
.chat-ai #content-wrapper .highlighted-content .boxes .card .card-content .right-arrow img {
  width: 24px;
  max-width: 24px;
  min-width: 24px;
}
.chat-ai #content-wrapper .user-content {
  padding-left: 50px;
  padding-right: 50px;
}
.chat-ai #content-wrapper .return-ans:first-child {
  padding-top: 30px;
}
.chat-ai #content-wrapper .user-content:last-child {
  padding-bottom: 120px;
}
.input-group-background {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 180px;
}

.landing-page .header {
  border: 1px solid #F8F8F8;
  padding: 25px 65px;
  z-index: 1;
  position: relative;
  background-color: #F8F8F8;
}
.landing-page .header .call-button {
  padding: 8px 10px;
  font-size: 20px;
  max-height: 50px;
  display: flex;
  align-items: baseline;
}
.landing-page .body-section .landing-bg img {
  position: absolute;
  top: 80px;
  width: 100%;
  height: calc(100% - 80px);
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-page .body-section .content {
  padding: 60px 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.landing-page .body-section .content .welcome-text {
  padding-top: 150px;
}
.landing-page .body-section .content .welcome-text .welcome {
  position: relative;
}
.landing-page .body-section .content .welcome-text .welcome h2 {
  font-size: 55px;
  letter-spacing: 8px;
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  font-weight: 800;
  text-transform: uppercase;
}
.landing-page .body-section .content .welcome-text .welcome .bg-img {
  position: absolute;
  top: -65px;
  width: 100%;
  left: -76px;
}
.landing-page .body-section .content .welcome-text .note {
  position: relative;
  top: 50px;
  max-width: 830px;
}
.landing-page .body-section .content .welcome-text .note p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #FFFFFF;
}
.landing-page .body-section .content .welcome-text .note .login-button {
  margin-top: 40px;
}
.landing-page .body-section .content .welcome-text .note .login-button a {
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  color: #5661F6;
}
.landing-page .body-section .content .departments {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -25px;
}
.landing-page .body-section .content .departments .hr-sales {
  width: 181px;
  text-align: center;
  margin-top: 45px;
}
.landing-page .body-section .content .departments .hr-sales .icon {
  border: 1px solid rgba(255, 255, 255, 0.4392156863);
  padding: 30px 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}
.landing-page .body-section .content .departments .hr-sales .icon img {
  width: 50px;
  max-width: 50px;
  height: auto;
  transition: 0.4s ease;
}
.landing-page .body-section .content .departments .hr-sales .icon:hover {
  box-shadow: 0 10px 33px rgba(0, 0, 0, 0.12), 0 1px 8px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.landing-page .body-section .content .departments .hr-sales .icon:hover img {
  transform: scale(1.08);
}
.landing-page .body-section .content .departments .hr-sales .text {
  margin-top: 10px;
}
.landing-page .body-section .content .departments .hr-sales .text a {
  font-size: 30px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
}
.landing-page .body-section .content .departments :first-child {
  margin-top: 0;
}

.container-height {
  height: calc(100vh - 100px);
}

  @media only screen and (max-width: 991px) {
  .chat-ai .inner-boxes-first {
    justify-content: center !important;
  }
  .chat-ai .inner-boxes-second {
    justify-content: center !important;
  }
  /* .chat-ai .landing-boxes {
    height: 100% !important;
  } */
  .chat-ai .landing-boxes .landing-content {
    margin-bottom: 40px !important;
  }
  .chat-ai .landing-boxes .landing-content h2 {
    font-size: 30px !important;
  }
  .landing-page .body-section .landing-bg img {
    height: 106%;
  }
  .landing-page .body-section .content .welcome-text .welcome .bg-img {
    top: 0;
  }
  .landing-page .body-section .content .welcome-text .note {
    top: 10px;
  }
  .landing-page .body-section .content .welcome-text .login-button {
    margin-top: 30px;
  }
  .landing-page .body-section .content .departments {
    display: block;
    margin-top: 20px;
  }
  .landing-page .body-section .content .departments .first {
    display: flex;
    align-items: center;
    justify-self: center;
  }
  .landing-page .body-section .content .departments .second {
    display: flex;
    align-items: center;
    justify-self: center;
  }
  .landing-page .body-section .content .departments .third {
    display: flex;
    align-items: center;
    justify-self: center;
  }
  .landing-page .body-section .content .departments .hr-sales {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .landing-page .body-section .content {
    padding: 64px;
    padding-bottom: 0;
  }
  .landing-page .body-section .content .welcome-text {
    padding-top: 0px;
  }
  .landing-page .body-section .content .welcome-text .welcome h2 {
    font-size: 32px;
    white-space: nowrap;
  }
  .landing-page .body-section .content .welcome-text .note p {
    margin-top: 20px;
    line-height: 28px;
  }
  .landing-page .body-section .content .welcome-text .note .login-button {
    margin-top: 40px;
  }
  .departments {
    display: block;
  }
  .departments .first {
    display: flex;
    align-items: center;
    justify-self: center;
  }
  .departments .second {
    display: flex;
    align-items: center;
    justify-self: center;
  }
  .departments .hr-sales {
    margin-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .container-height {
    height: unset;
  }
  .landing-page .body-section .content .welcome-text .welcome h2 {
    white-space: wrap;
  }
  .landing-page .body-section .content .welcome-text .welcome .bg-img {
    left: -20px;
  }
  .landing-page .body-section .content .welcome-text .note .login-button {
    text-align: center;
    margin-left: 30px;
  }
  .landing-page .header {
    padding: 25px 30px;
    z-index: 1;
    position: relative;
    background-color: #F8F8F8;
  }
  .landing-page .body-section {
    position: relative !important;
    overflow: hidden !important;
  }
  .landing-page .body-section .content {
    padding: 30px;
  }
  /* .landing-page .body-section .content .departments .first {
    flex-direction: column;
  }
  .landing-page .body-section .content .departments .second {
    flex-direction: column;
  } */
  .landing-page .body-section .content .departments .hr-sales {
    margin-top: 20px !important;
  }
  .landing-bg img {
    top: 0 !important;
    bottom: 0;
    position: absolute !important;
  }
}
@media (min-width: 767.98px) and (max-width: 990px) {
  .landing-page .body-section .content {
    padding: 64px;
    padding-bottom: 0;
  }
  .landing-page .body-section .content .welcome-text {
    padding-top: 0px;
  }
  .landing-page .body-section .content .welcome-text .welcome h2 {
    white-space: nowrap;
  }
}
@media only screen and (max-width: 376px) {
  .landing-bg img {
    height: 206% !important;
  }
}
@media only screen and (max-width: 460px) {
  .landing-bg img {
    height: 206% !important;
  }
    .landing-page .body-section .content .departments .first {
      flex-direction: column;
    }
  
    .landing-page .body-section .content .departments .second {
      flex-direction: column;
    }
    .landing-page .body-section .content .departments .third {
      flex-direction: column;
    }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM-Sans-Regular";
  font-size: 16px;
  color: #000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}/*# sourceMappingURL=style.css.map */