/* common input style -----------------START*/
.ekas-input-common {
  border-radius: 10rem;
  background: #ffffff;
  outline: none;
  border: 1px solid #a8a8a8;
  text-indent: 1rem;
  color: #646464;
  font-size: 1.5rem;
  transition: 0.3s linear;
}

.ekas-input-common:hover {
  border: 1px solid #8fc5e5;
}

.ekas-input-common:focus {
  border: 1px solid #8fc5e5;
  box-shadow: 0 0 0 3px #dde9f5;
}

/* common input style -----------------END*//* TVP input style -----------------START*/
.ekas-input-tvp-wrapper {
  position: relative;
}

.ekas-input-tvp {
  border-radius: 10rem;
  background: #ffffff;
  outline: none;
  border: 1px solid #a8a8a8;
  text-indent: 1rem;
  color: #646464;
  font-size: 1.5rem;
  transition: 0.3s linear;
  display: inline-block;
  padding-right: 3rem;
  height: 100%;
  width: 100%;
}

.ekas-input-tvp:hover {
  border: 1px solid #8fc5e5;
}

.ekas-input-tvp:focus {
  border: 1px solid #8fc5e5;
  box-shadow: 0 0 0 3px #dde9f5;
}

.ekas-input-toggle-icon-wrapper {
  position: absolute;
  width: 3rem;
  top: 0;
  right: -3rem;
  margin-top: 0.5rem;
  vertical-align: middle;
  text-align: center;
}

.ekas-input-toggle-icon {
  cursor: pointer;
  transition: 0.3s linear;
  outline: none;
  color: #a8a8a8;
  font-size: 1.4rem;
}

.ekas-input-toggle-icon:hover {
  color: #8fc5e5;
}

/* TVP input style -----------------END*//* primary button style -----------------START*/
.ekas-button-primary {
  border-radius: 0.5rem;
  background: #ffffff;
  cursor: pointer;
  transition: 0.3s linear;
  outline: none;
  border: 1px solid #a8a8a8;
  position: relative;
  color: #646464;
  font-size: 1.5rem;
}

.ekas-button-primary:hover {
  border: 1px solid #8fc5e5;
  color: #8fc5e5;
}

.ekas-button-primary:focus {
  border: 1px solid #8fc5e5;
  color: #8fc5e5;
}

/* primary button style -----------------END*/
/* seconady button style -----------------START*/
.ekas-button-secondary {
  border-radius: 0.5rem;
  background: #ffffff;
  cursor: pointer;
  transition: 0.3s linear;
  outline: none;
  border: 1px solid #a8a8a8;
  position: relative;
  color: #646464;
  font-size: 1.5rem;
}

.ekas-button-secondary:hover {
  border: 1px solid #cf934d;
  color: #cf934d;
}

.ekas-button-secondary:focus {
  border: 1px solid #cf934d;
  color: #cf934d;
}

/* seconady button style -----------------END*/
/* button loading style -----------------END*/
.ekas_button_Loading {
  border-radius: 0.5rem;
  background: #ffffff;
  cursor: pointer;
  transition: 0.3s linear;
  outline: none;
  border: 1px solid #a8a8a8;
  position: relative;
  color: #646464;
  font-size: 1.5rem;
  color: #a8a8a8;
}

/* button loading style -----------------END*/
/* reverse color button style -----------------START*/
.ekas-button-reverse {
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  transition: 0.3s linear;
  outline: none;
  border: 1px solid #ffffff;
  position: relative;
  color: #ffffff;
  font-size: 1.5rem;
}

.ekas-button-reverse:hover {
  border: 1px solid #8fc5e5;
  background-color: #ffffff;
  color: #8fc5e5;
}

/* reverse color button style -----------------END*/
/* spinner style -----------------START*/
.ekas-button-spinner-wrapper {
  position: absolute;
  margin: auto;
  margin-left: -8px;
  top: 0;
}

.ekas-button-spinner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.15rem solid #8fc5e5;
  border-radius: 50%;
  border-top-color: #f5f3f3;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
/* spinner style -----------------END*/.ekas-carousle-block {
  display: flex;
  flex-wrap: wrap;
}

.ekas-carousle-left-arrow-wrapper {
  width: 5%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .ekas-carousle-left-arrow-wrapper {
    display: none;
  }
}

.ekas-carousle-left-arrow {
  margin: auto;
  font-size: 2.8rem;
  color: #123a61;
  cursor: pointer;
  transition: 0.3s linear;
}

.ekas-carousle-left-arrow:hover {
  color: #8fc5e5;
}

.ekas-carousle-right-arrow-wrapper {
  width: 5%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .ekas-carousle-right-arrow-wrapper {
    display: none;
  }
}

.ekas-carousle-right-arrow {
  margin: auto;
  font-size: 2.8rem;
  color: #123a61;
  cursor: pointer;
  transition: 0.3s linear;
}

.ekas-carousle-right-arrow:hover {
  color: #8fc5e5;
}

.ekas-carousel-body {
  display: inline-block;
  height: 100%;
  width: 90%;
  position: relative;
}
@media screen and (max-width: 992px) {
  .ekas-carousel-body {
    width: 100% !important;
  }
}

.ekas-carousel-box {
  height: 100%;
  margin: auto;
  border-radius: 0.5rem;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: auto;
  transition: 0.4s linear;
}
@media screen and (max-width: 992px) {
  .ekas-carousel-box {
    width: 100% !important;
  }
}

.ekas-carousel-slid-wrapper {
  width: 100%;
  margin: auto;
  text-align: center;
  position: relative;
  height: 100%;
  overflow: hidden;
  z-index: 100;
}

@media screen and (min-width: 992px) {
  .ekas-carousel-slid-image {
    width: 20%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 992px) {
  .ekas-carousel-slid-image {
    width: 100%;
    margin-top: 1rem;
  }
}

.ekas-carousel-slid-image-item {
  width: 10rem;
  height: 10rem;
  border-radius: 0.5rem;
  user-select: none;
}
@media screen and (max-width: 992px) {
  .ekas-carousel-slid-image-item {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 992px) {
  .ekas-carousel-slid-content-wrapper {
    height: 100%;
    width: 80%;
    float: right;
    overflow: hidden;
    padding-right: 3rem;
  }
}

.ekas-carousel-slid-content {
  position: absolute;
  top: 50%;
  width: 80%;
  transform: translateY(-50%);
}
@media screen and (max-width: 992px) {
  .ekas-carousel-slid-content {
    width: 100%;
    margin-top: 7rem;
  }
}

.ekas-carousel-slid-content-title {
  font-size: 1.5rem;
  color: #123a61;
  user-select: none;
  display: block;
  margin: auto;
  padding: 2rem;
}

.ekas-carousel-slid-content-sub-title {
  font-size: 1.4rem;
  color: #123a61;
  padding-top: 1rem;
  user-select: none;
  display: block;
}

.ekas-carousel-select-dot-container {
  width: 100%;
  height: 3rem;
}

.ekas-carousel-select-dot-box {
  width: 70%;
  height: 100%;
  margin: auto;
  overflow: hidden;
  text-align: center;
}

.ekas-carousel-select-dot-wrapper {
  display: inline-block;
}

.ekas-carousel-select-dot {
  height: 1.3rem;
  width: 1.3rem;
  background-color: #dde9f5;
  border-radius: 50%;
  margin: auto;
  margin-top: 1rem;
  display: inline-block;
  margin: 1rem 0.6rem 0 0.6rem;
  cursor: pointer;
  transition: 0.4s linear;
}
@media screen and (max-width: 768px) {
  .ekas-carousel-select-dot {
    margin: 1rem 0.4rem 0 0.4rem;
  }
}

.ekas-carousel-select-dot:hover {
  background-color: #8fc5e5;
}.ekas-upload-container {
  border: 0.2rem dashed #a8a8a8;
  transition: 0.4s linear;
  background-color: #f5f5f0;
  position: relative;
  overflow: hidden;
}

.ekas-upload-container:hover {
  border: 0.2rem dashed #8fc5e5;
}

.ekas-upload-zone {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  z-index: 100;
}

.ekas-uplaod-drag-enter {
  border: 0.2rem dashed #8fc5e5;
}

.ekas-upload-content-wrapper {
  width: 100%;
  height: 15rem;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.ekas-upload-content-icon-wrapper {
  position: relative;
}

.ekas-upload-icon {
  font-size: 5rem;
  color: #8fc5e5;
}

.ekas-upload-file-number-wrapper {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background-color: #8fc5e5;
  position: absolute;
  top: 0.8rem;
  right: 0;
  left: 0;
  margin: auto;
}

.ekas-upload-file-number {
  line-height: 2rem;
  text-align: center;
  font-size: 1.4rem;
  color: #f5f5f0;
}

.ekas-upload-content-title {
  font-size: 1.5rem;
  user-select: none;
}

.ekas-upload-content-content {
  font-size: 1.2rem;
  user-select: none;
  color: #646464;
}

.ekas-upload-error-container {
  border: 0.2rem dashed #d36559;
  transition: 0.4s linear;
  background-color: #f5f5f0;
  position: relative;
  overflow: hidden;
}

.ekas-upload-icon-error {
  font-size: 5rem;
  color: #d36559;
}

.ekas-upload-error-content-title {
  font-size: 1.5rem;
  user-select: none;
  color: #d36559;
}

.ekas-upload-loading-container {
  border: 0.2rem dashed #8fc5e5;
  transition: 0.4s linear;
  background-color: #f5f5f0;
  position: relative;
  overflow: hidden;
}

.ekas-upload-loading-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}

.ekas-upload-loading-spinner-wrapper {
  width: 6rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}

.ekas-upload-loading-spinner {
  display: inline-block;
  vertical-align: middle;
  width: 5rem;
  height: 5rem;
  border: 0.3rem solid #8fc5e5;
  border-radius: 50%;
  border-top-color: #f5f3f3;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.ekas-upload-success-container {
  border: 0.2rem dashed #82ba33;
  transition: 0.4s linear;
  background-color: #f5f5f0;
  position: relative;
  overflow: hidden;
}

.ekas-upload-icon-success {
  font-size: 5rem;
  color: #82ba33;
}

.ekas-upload-success-content-title {
  font-size: 1.5rem;
  user-select: none;
  color: #82ba33;
}.ekas-notification-top-right-wrapper {
  position: fixed;
  top: 1rem;
  right: 5rem;
  z-index: 1000;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-name: topRightAnimation;
}

@keyframes topRightAnimation {
  from {
    right: -2rem;
    opacity: 0;
  }
  to {
    right: 5rem;
    opacity: 1;
  }
}
.ekas-notification-top-right-wrapper-exit {
  position: fixed;
  top: 1rem;
  right: 5rem;
  z-index: 1000;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-name: topRightExitAnimation;
}

@keyframes topRightExitAnimation {
  from {
    right: 5rem;
    opacity: 1;
  }
  to {
    right: -2rem;
    opacity: 0;
  }
}
.ekas-notification-top-left-wrapper {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-name: topLeftAnimation;
}

@keyframes topLeftAnimation {
  from {
    left: -2rem;
    opacity: 0;
  }
  to {
    left: 1rem;
    opacity: 1;
  }
}
.ekas-notification-top-left-wrapper-exit {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-name: topLeftExitAnimation;
}

@keyframes topLeftExitAnimation {
  from {
    left: 1rem;
    opacity: 1;
  }
  to {
    left: -2rem;
    opacity: 0;
  }
}
.ekas-notification-middle-wrapper {
  position: fixed;
  right: 0;
  left: 0;
  top: 1rem;
  margin: auto;
  text-align: center;
  z-index: 1000;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-name: middleAnimation;
}

@keyframes middleAnimation {
  from {
    top: -2rem;
    opacity: 0;
  }
  to {
    top: 1rem;
    opacity: 1;
  }
}
.ekas-notification-middle-wrapper-exit {
  position: fixed;
  right: 0;
  left: 0;
  top: 1rem;
  margin: auto;
  text-align: center;
  z-index: 1000;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-name: middleExitAnimation;
}

@keyframes middleExitAnimation {
  from {
    top: 1rem;
    opacity: 1;
  }
  to {
    top: -2rem;
    opacity: 0;
  }
}
.ekas-notification-bottom-left-wrapper {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 1000;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-name: bottomLeftAnimation;
}

@keyframes bottomLeftAnimation {
  from {
    bottom: -2rem;
    opacity: 0;
  }
  to {
    bottom: 1rem;
    opacity: 1;
  }
}
.ekas-notification-bottom-left-wrapper-exit {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 1000;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-name: bottomLeftExitAnimation;
}

@keyframes bottomLeftExitAnimation {
  from {
    bottom: 1rem;
    opacity: 1;
  }
  to {
    bottom: -2rem;
    opacity: 0;
  }
}
.ekas-notification-bottom-right-wrapper {
  position: fixed;
  bottom: 1rem;
  right: 5rem;
  z-index: 1000;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-name: bottomRightAnimation;
}

@keyframes bottomRightAnimation {
  from {
    bottom: -2rem;
    opacity: 0;
  }
  to {
    bottom: 1rem;
    opacity: 1;
  }
}
.ekas-notification-bottom-right-wrapper-exit {
  position: fixed;
  bottom: 1rem;
  right: 5rem;
  z-index: 1000;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-name: bottomRightExitAnimation;
}

@keyframes bottomRightExitAnimation {
  from {
    bottom: 1rem;
    opacity: 1;
  }
  to {
    bottom: -2rem;
    opacity: 0;
  }
}
.ekas-notification-item-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 1.5rem 2rem;
  text-align: center;
  margin: auto;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.ekas-notification-item-title {
  font-size: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #123a61;
  user-select: none;
}

.ekas-notification-item-content {
  font-size: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #123a61;
  user-select: none;
}

.ekas-notification-item-btn {
  width: 15rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: #ffffff;
  cursor: pointer;
  transition: 0.3s linear;
  outline: none;
  border: 1px solid #a8a8a8;
  position: relative;
  color: #646464;
  font-size: 1.5rem;
  margin: auto;
}

.ekas-notification-item-btn:hover {
  border: 1px solid #8fc5e5;
  color: #8fc5e5;
}.ekas-menu-body {
  width: 100%;
  z-index: 100;
}

.ekas-menu-wrapper {
  position: relative;
}

.ekas-menu-logo {
  height: 100%;
  display: inline-block;
  text-align: center;
  user-select: none;
  cursor: pointer;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  transition: 0.3s linear;
  margin-right: 1rem;
}
@media screen and (max-width: 1290px) {
  .ekas-menu-logo {
    display: none;
  }
}

.ekas-menu-logo-image {
  width: 95%;
  height: 95%;
  vertical-align: middle;
  margin: auto;
}

.ekas-menu-item-wrapper {
  display: inline-block;
  position: relative;
  text-align: center;
  margin-left: 1rem;
}
@media screen and (max-width: 1290px) {
  .ekas-menu-item-wrapper {
    display: none;
  }
}

.ekas-menu-item {
  display: inline-block;
  margin-right: 0.2rem;
  user-select: none;
  transition: 0.3s linear;
  cursor: pointer;
}

.ekas-menu-item:hover {
  background-color: rgba(175, 228, 255, 0.6);
}

.ekas-menu-item:hover .ekas-menu-sub-menu-wrapper {
  opacity: 1;
  visibility: visible;
}

.ekas-menu-item-text {
  cursor: pointer;
  height: 2rem;
  transition: 0.3s linear;
  color: #123a61;
  font-size: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.ekas-menu-sub-menu-wrapper {
  position: absolute;
  transition: 0.3s linear;
  text-align: center;
  font-size: 1.5rem;
  z-index: -100;
  visibility: hidden;
  z-index: 1;
  opacity: 0;
  transition: 0.3s linear;
}

.ekas-menu-sub-menu-item {
  transition: 0.3s linear;
  text-decoration: none;
  color: #123a61;
  font-size: 1.3rem;
}

.ekas-menu-sub-menu-item:hover {
  background-color: rgba(175, 228, 255, 0.6);
  text-decoration: none;
}

.ekas-menu-sub-menu-item:focus {
  text-decoration: none;
}

.ekas-menu-login-wrapper {
  float: right;
  margin-right: 3rem;
}
@media screen and (max-width: 1290px) {
  .ekas-menu-login-wrapper {
    float: left;
  }
}

.ekas-menu-login-icon-wrapper {
  display: inline-block;
  cursor: pointer;
  color: #123a61;
  transition: 0.3s linear;
  font-size: 1.5rem;
  margin-right: 2rem;
}
@media screen and (max-width: 1290px) {
  .ekas-menu-login-icon-wrapper {
    display: none;
  }
}

.ekas-menu-login-icon-wrapper:hover {
  color: #3a5d80;
}

.ekas-menu-login-icon {
  vertical-align: middle;
  cursor: pointer;
  margin-right: 1rem;
  font-size: 2.8rem;
}

.ekas-menu-login-text {
  user-select: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.5rem;
}

.ekas-menu-social-media-icon-wrapper {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-top: -4px;
}
@media screen and (max-width: 1290px) {
  .ekas-menu-social-media-icon-wrapper {
    margin-left: 2rem;
  }
}

.ekas-menu-social-media-icon {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.ekas-menu-social-media-icon-item {
  color: #123a61;
  font-size: 2.8rem;
  vertical-align: middle;
  transition: 0.3s linear;
  cursor: pointer;
}

.ekas-menu-social-media-icon-item:hover {
  color: #3a5d80;
}

.ekas-menu-responsive-bar-icon-wrapper {
  float: right;
  color: #123a61;
  font-size: 1.5rem;
  margin-top: -0.4px;
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 1290px) {
  .ekas-menu-responsive-bar-icon-wrapper {
    display: inline-block;
  }
}

.ekas-menu-responsive-bar-icon {
  color: #123a61;
  vertical-align: middle;
  transition: 0.3s linear;
  cursor: pointer;
  margin-right: 2rem;
  outline: none;
  font-size: 2rem;
}

.ekas-menu-responsive-bar-icon:hover {
  color: #3a5d80;
}

.ekas-menu-responsive-menu-page {
  z-index: 100;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0px;
  display: none;
  transition: 0.5s linear;
}
@media screen and (max-width: 1290px) {
  .ekas-menu-responsive-menu-page {
    display: block;
  }
}

.ekas-menu-responsive-menu-login-wrapper {
  display: inline-block;
  width: 50%;
  color: #123a61;
  font-size: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: auto;
  cursor: pointer;
  transition: 0.3s linear;
  user-select: none;
  text-indent: 3rem;
}

.ekas-menu-responsive-menu-login-wrapper:hover {
  color: #3a5d80;
}

.ekas-menu-responsive-menu-login-icon {
  font-size: 2.8rem;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 1rem;
}

.ekas-menu-responsive-menu-close-icon-wrapper {
  display: inline-block;
  width: 50%;
  text-align: right;
}

.ekas-menu-responsive-menu-close-icon {
  color: #123a61;
  vertical-align: middle;
  transition: 0.3s linear;
  cursor: pointer;
  font-size: 3.5rem;
  transition: 0.5s linear;
  outline: none;
  margin-right: 1rem;
}

.ekas-menu-responsive-menu-close-icon:hover {
  color: #3a5d80;
}

.ekas-menu-responsive-menu-item {
  color: #123a61;
  font-size: 1.4rem;
  font-family: poppins-semibold, poppins, sans-serif;
  margin: auto;
  line-height: 4rem;
  cursor: pointer;
  transition: 0.3s linear;
  user-select: none;
  text-indent: 7rem;
}

.ekas-menu-responsive-menu-item:hover {
  color: #3a5d80;
}

.ekas-menu-responsive-sub-menu-item-wrapper {
  color: #123a61;
  font-size: 1.4rem;
  font-family: poppins-semibold, poppins, sans-serif;
  margin: auto;
  line-height: 3rem;
  user-select: none;
  text-indent: 7rem;
}

.ekas-menu-responsive-sub-menu-item {
  color: #123a61;
  font-family: poppins-semibold, poppins, sans-serif;
  margin: auto;
  line-height: 3rem;
  user-select: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.3s linear;
  text-indent: 10rem;
}

.ekas-menu-responsive-sub-menu-item:hover {
  color: #3a5d80;
}

.ekas-menu-responsive-sub-menu-title-icon {
  float: right;
  margin-right: 8rem;
}

.ekas-menu-responsive-sub-menu-divide-line {
  background-color: #e3f1f8;
  margin: auto;
}

.ekas-menu-responsive-sub-menu-title-wrapper {
  cursor: pointer;
}

.ekas-menu-link-remove-underline {
  text-decoration: none;
}