@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box !important;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: #545567;
  /*background: var(--cs-bg0);*/

  background-color: var(--background-color);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;

  font-size: 1rem;
  line-height: 1.80857;
  font-weight: normal;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  height: 100vh;
}

body {
  --c-ops: #3986b3;
  --c-ops-rgb: 57, 134, 179;
  --c-ops2: #539dc8;
  --c-ops2-rgb: 83, 157, 200;
  --c-ops3: #094e76;
  --c-ops3-rgb: 9, 78, 118;
  --c-ops4: #77c4f1;
  --c-ops5: #88d1fb;
  --c-ops6: #032c43;

  --cs-bg0: #fffef5;
  --cs-bg0: #f0eee3;
  --cs-bg-rgb: 255, 254, 245;
  --cs-bg0-rgb: 240, 238, 227;
  --cs-bg0-dark: #e0dfd0;
  --cs-bg0-darker: #9a977f;
  --cs-bg1: #96b08b;
  --cs-bg1-light: #fffef5;
  --cs-bg1-bright: #96b08b;
  --cs-bg1-vib: #5dbbf1;
  --cs-bg2: #e8799b;
  --cs-bg2-light: #ec9fb5;
  --cs-bg2-bright: #ffd7e2;
  --cs-bg2-vib: #f46591;
  --cs-bg2-dark: #8d2645;
}

.noise {
  background-size: 75px auto;
  background-image: url("../images/noise.png");
  backdrop-filter: blur(20px);
}

section {
  width: 100%;
  padding-bottom: 90px;
  position: relative;
}

@keyframes moveGradient {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 100% 100%;
  }
}

.banner {
  position: fixed;
  width: 100%;
  min-height: 100dvh;
  background: #e6f6ff;
  background: linear-gradient(
    90deg,
    rgba(230, 246, 255, 1) 0%,
    rgba(197, 222, 227, 1) 37%,
    rgb(225, 225, 216) 64%,
    rgba(230, 250, 255, 1) 100%
  );
}

/*--------------------------------------fundamentals
  --------------overwriting bootstrap------------------------------------------------*/
.container {
  width: 100%;
  padding-right: var(--padding);
  padding-left: var(--padding);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 800px;
  }
}
@media (min-width: 1050px) {
  .container {
    max-width: 840px;
  }
}
@media (min-width: 1100px) {
  .container {
    max-width: 910px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1060px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1320px;
  }
}

.w-100 {
  width: 100%;
}
.flex {
  display: flex;
}
.flex-ja-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-j-center {
  display: flex;
  justify-content: center;
}
.flex-j-sb {
  display: flex;
  justify-content: space-between;
}
.flex-j-sa {
  display: flex;
  justify-content: space-around;
}
.flex-a-center {
  display: flex;
  align-items: center;
}
.flex-dc {
  display: flex;
  flex-direction: column;
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}

h1,
h2,
h3 {
  color: var(--c-ops);
  letter-spacing: 0;
  font-weight: 600;
  position: relative;
  padding: 0 0 10px 0;
  line-height: normal;
  margin: 0;
}

h4,
h5,
h6 {
  color: var(--c-ops);
  position: relative;
  font-weight: normal;
  line-height: normal;
  margin: 0;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 13px;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #212121;
  text-decoration: none !important;
  opacity: 1;
}

button:focus {
  outline: none;
}

ul,
li,
ol {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

a {
  color: #222222;
  text-decoration: none;
  outline: none !important;
}

a:hover {
  color: var(--cs-bg1-vib);
}

a,
.btn {
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

[data-svg-wrapper] {
  position: absolute;
}

header {
  position: fixed;
  width: 100%;
  height: 100px;
  background: var(--c-ops3);
  z-index: 999;
}

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  width: 100%;
  height: 100%;
  padding-right: 60px;
  position: relative;
  /*background: linear-gradient(
  to left,
  rgba(var(--cs-bg-rgb), 1) 0%,
  rgba(var(--cs-bg-rgb), 1) 60%,
  rgba(234, 255, 255, 1) 100%
);*/

  backdrop-filter: blur(20px);
}
.parent-dashboard header {
  position: relative;
}
body:not(.pad) header {
  transition: height 0.5s ease-in-out, padding 0.5s ease-in-out,
    background 0.5s ease-in-out;
}
body.pad header {
  transition: left 0.5s ease-in-out;
}
header.scroll {
  height: 50px;
  padding-top: 0;
  /*background: #d2e6e4;*/
}

#header > ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .logo {
  margin-left: 30px;
  filter: brightness(1.5);
  transition: margin 0.4s ease-in-out, transform 0.4s ease-in-out;
}

#header .logo a {
  display: flex;
  align-items: center;
  height: 100%;
  width: fit-content;
  transition: ;
}

#header .logo img {
  height: 90px;
  transition: height 0.4s ease-in-out;
}

header.scroll #header .logo img {
  height: 44px;
}

#header .logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#header .logo-text h2,
#header .logo-text h3 {
  font-family: Poppins;
  line-height: 1.2;
  text-align: center;
  color: var(--c-ops);
  padding-bottom: 0;
  transition: font-size 0.4s ease-in-out;
}

#header .logo-text h2 {
  font-size: 24px;
  font-weight: bold;
}
#header .logo-text h3 {
  font-size: 20px;
  letter-spacing: 0.1rem;
}

header.scroll #header .logo-text h2 {
  font-size: 16px;
}
header.scroll #header .logo-text h3 {
  font-size: 14px;
}

.header-center {
  position: relative;
  flex-wrap: nowrap;
  border: 0 !important;
  z-index: 1;
  transition: transform 0.4s ease;
}

header.scroll .header-center {
}

.header-center > * {
  z-index: 1;
}

.header-center > *,
.header-right > * {
  margin: 0 var(--padding);
}
/*
.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
*/

.header-center > li {
  position: relative;
}

.header-center > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc(2 * var(--padding));
  height: 1px;
  background: #cdcdcd;
  transform: translateY(-50%);
}

.header-center li a {
  border: 1px solid #cdcdcd !important;
  border-radius: 1px !important;
  cursor: pointer;
  transition: padding 0.4s ease-in-out;
}

header.scroll .header-center li a.nav-link {
  padding: 0.3rem 0.5rem;
}

.header-center li a.active {
  background: var(--c-ops6) !important;
}

.header-center li h4 {
  color: var(--text-light);
  font-size: 18px;
  text-wrap: nowrap;
  transition: font-size 0.4s ease-in-out;
}

.header-center li.current h4 {
  color: var(--c-ops4);
}

header.scroll .header-center li h4 {
  font-size: 14px;
}

.menu-btn {
  display: none;
  transition: left 0.5s ease-in-out;
}

/********** Signin-Signup button *************/
.header-right {
  z-index: 9999;
}

.header-right .header-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 40px;
  border-radius: 5px;
  transition: height 0.4s ease;
}
header.scroll .header-right .header-btn {
  height: 35px;
}

.header-right .header-btn > *:not(.profile-dropdown) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/********* Profile Dropdown **********/

.header-right .header-btn.logged {
  width: fit-content;
  max-width: 200px;
  background: transparent;
  border-radius: 0;
}

.header-right .header-btn.logged #profile-button {
  padding: 0 10px 0 0;
  background: white;
  border-radius: 20px 5px 5px 20px;
}
.header-btn.logged .profile-img-con {
  position: relative;
  height: 100%;
  margin-right: 10px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid white;
  overflow: hidden;
}
.profile-img-con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  z-index: 1000;
  padding: 15px;
  font-size: 14px;
  animation: fadeIn 0.2s ease-in-out;
}

.dropdown-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.dropdown-top .dd-image-con {
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.dropdown-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-top .info {
  flex: 1;
}

.dropdown-top a {
  font-size: 0.8rem;
  color: #666;
}
.dropdown-top a:hover {
  color: var(--cs-bg1);
}

.dd-name {
  font-weight: bold;
  margin: 0;
}

.dd-email {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.dropdown-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-links li {
  margin-top: 8px;
  margin-bottom: 0;
}

.dropdown-links .child-link {
  margin-left: 15px;
  font-size: 0.8rem;
}

.dropdown-links a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 5px;
  transition: background 0.2s ease;
}

.dropdown-links a:hover {
  background: #f0f0f0;
}

@media (max-width: 1300px) {
  body {
    --padding: 0.5rem;
  }
  #header {
    padding: 0;
  }
  #header .logo img {
  }
  .header-center li a.nav-link {
    padding: 0.3rem 0.4rem;
  }
  .header-center li a h4 {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  header {
    left: -50%;
    width: 50%;
    height: 100%;
  }
  #header {
    flex-direction: column;
    justify-content: start;
    padding-left: var(--padding);
    padding-right: var(--padding);
    padding-top: 20px;
  }
  .parent-dashboard header {
    position: fixed;
  }
  header.open {
    left: 0;
  }
  #header .logo {
    margin: 0;
  }
  #header .logo a {
    flex-direction: column;
  }
  #header .logo-text h2 {
    font-size: 18px;
  }
  #header .logo-text h3 {
    font-size: 16px;
  }
  #header .header-center {
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
  }
  .logged #header .header-center {
    margin-top: 100px;
  }
  #header .header-center li {
    padding: 0;
    margin: 20px 0;
    color: white;
  }
  #header .header-center li:not(:last-child):after {
    width: 1px;
    height: 40px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
  }
  .header-center li h4 {
    font-size: 20px;
    color: white;
  }
  .header-center li.current h4 {
    color: #ffc3d5;
  }
  .header-right {
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
  }
  .header-right .header-btn:nth-child(2) {
    margin-bottom: 10px;
  }
  .header-right .header-btn:nth-child(3) {
    background: transparent;
    text-decoration: underline;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.635);
    text-underline-offset: 6px;
  }
  .header-center > *,
  .header-right > * {
    margin: 0;
  }

  .header-right .header-btn.logged {
    position: fixed;
    top: 200px;
  }

  .profile-dropdown {
    left: 0;
    right: auto;
  }

  .menu-btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    font-size: 35px;
    z-index: 1002;
    color: var(--c-ops);
  }
}

/*********************************
              SSECTIONS
**********************************/
.top-pad {
  width: 100%;
  padding-top: 140px;
}
.top-margin {
  margin-top: 140px;
}

.section-title-con {
  position: relative;
}

.section-title {
  color: var(--c-ops3);
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
.title-svg {
  position: absolute;
  left: calc(50% + 10px);
  top: 50px;
}

.home-top {
  width: 100%;
  height: 400px;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.home-top .logo {
  display: none;
  position: absolute;
  top: 30px;
  left: 40px;
}
.home-top .logo a {
  display: flex;
}

.home-top .logo img {
  height: 60px;
}

.home-top .logo .logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-top .logo-text h2,
.home-top .logo-text h3 {
  padding: 0;
  line-height: 1.2rem;
  color: var(--c-ops);
}
.home-top .logo-text h2 {
  font-size: 1.1rem;
}
.home-top .logo-text h3 {
  font-size: 0.9rem;
}

.hero-con {
  position: relative;
  width: 100%;
  height: 100%;
}

.ht-image {
  position: absolute;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url("../images/bg2.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  transition: right 0.5s ease;
}

.ht-con {
  position: relative;
  right: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  left: 0;
  width: 100%;
  height: 100%;
}

.ht-left {
  position: relative;
  padding: 0 20px;
  width: 100%;
  text-align: center;
}

.ht-left h2 {
  font-size: 38px;
  line-height: 60px;
  font-weight: bold;
  font-size: 72px;
  color: rgba(var(--c-ops2-rgb), 0.5);
  mix-blend-mode: screen;
  /*
  background: -webkit-linear-gradient(#00000000, var(--c-ops2));
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;*/
}

.ht-left .ht-find {
  font-size: 14px;
  width: fit-content;
  padding: 5px 15px;
  color: white;
  background: #e8799b;
}
.ht-find:hover {
  color: white !important;
}

@media (max-width: 1400px) {
  .home-top .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 60px 0 90px;
  }
}
@media (max-width: 991px) {
  .top-pad {
    padding-top: 100px;
  }

  section {
    padding-bottom: 60px;
  }

  .home-top .logo {
    display: flex;
  }

  .home-top .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: var(--padding);
    padding-right: var(--padding);
  }
  .ht-image {
    top: -100px;
    left: 0;
    height: calc(100% + 100px);
    background-position: center center;
    background-size: cover;
  }
  .ht-con {
    align-items: self-end;
  }

  .ht-left h2 {
    --tc: #ffffff;
    font-size: 40px;
    text-shadow: 0px 0px 10px var(--tc), 0 1px 0px var(--tc),
      -1px 0 0px var(--tc), -1px 2px 1px var(--tc), -2px 1px 1px var(--tc),
      -2px 3px 2px var(--tc), -3px 2px 2px var(--tc), -3px 4px 2px var(--tc),
      -4px 3px 3px var(--tc), -4px 5px 3px var(--tc), -5px 4px 2px var(--tc),
      -5px 6px 2px var(--tc), -6px 5px 2px var(--tc), -6px 7px 1px var(--tc),
      -7px 6px 1px var(--tc), -7px 8px 0px var(--tc), -8px 7px 0px var(--tc);
  }
  .ht-right {
    padding-bottom: 30px;
  }
  .ht-right .ai-message {
    flex-direction: column;
    justify-content: space-around;
    height: 200px;
    width: 110px;
  }
  .ht-right .ai-message img {
    height: 60px;
  }
  .ht-right .ai-message p {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ht-image {
    top: -50px;
    left: 0;
    height: calc(100% + 50px);
    background-position: center center;
    background-size: cover;
  }
}

@media (max-width: 540px) {
  .home-top .logo {
    left: 12px;
    top: 16px;
  }
  .home-top .logo img {
    height: 50px;
  }
  .home-top .logo-text h2,
  .home-top .logo-text h3 {
    line-height: 1.2rem;
  }
  .home-top .logo-text h2 {
    font-size: 1rem;
  }
  .home-top .logo-text h3 {
    font-size: 0.8rem;
  }
}

/*-------------------------------------------------------
           Services
-------------------------------------------------------*/
.services .nav-tabs {
  border: 0;
}

.services .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--color-secondary);
  background: #ffffff71;
  box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.services .nav-link-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}

.services .nav-link-div > * {
  text-align: center;
  width: 100%;
}

.services .nav-link i {
  font-size: 32px;
  height: 35px;
  line-height: 35px;
}

.services .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 15px 0 0 0;
  color: var(--color-secondary);
}

.services .nav-link:hover {
  color: var(--c-ops);
}

.services .nav-link.active {
  transition: 0.3s;
  background: var(--color-secondary)
    linear-gradient(rgba(var(--c-ops-rgb), 0.95), rgba(var(--c-ops-rgb), 0.6));
  border-color: var(--c-ops);
}

.services .nav-link.active h4 {
  color: var(--color-white);
}

.services .nav-link.active i {
  color: var(--color-white) !important;
}

.services .tab-content {
  margin-top: 30px;
}

.services .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.services .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: var(--color-secondary);
}

.services .tab-pane ul {
  list-style: none;
  padding: 0;
}

.services .tab-pane ul li {
  padding-bottom: 10px;
}

.services .tab-pane ul i {
  vertical-align: middle;
  font-size: 24px;
  margin-right: 4px;
  color: var(--c-ops);
}

.services .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    width: 25% !important;
  }
}

@media (min-width: 1300px) {
  .col-lg-2 {
    width: 20% !important;
  }
}

@media (min-width: 1600px) {
  .services .nav-link h4 {
    font-size: 20px;
  }
  .col-lg-2 {
    width: 16.66666667% !important;
  }
}

@media (max-width: 991px) {
}

@media (max-width: 768px) {
}
@media (max-width: 672px) {
}
@media (max-width: 540px) {
}
@media (max-width: 380px) {
}
/*------------------------------
            services End
------------------------------*/


/*--------------------------------------------------------------
# Why-us
--------------------------------------------------------------*/
.why-us .why-us-con {
  width: 100%;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.why-us .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--c-ops);
}

.why-us .icon-box p {
  font-size: 15px;
  color: #535353;
  margin-left: 60px;
}

.why-us .image {
  display: flex;
  align-items: center;
  position: relative;
}

.why-us .image img {
  width: 100%;
  mix-blend-mode: multiply;
}
/*------------------------------
            Why-us End
------------------------------*/


/*********************************
              PROFILE
**********************************/

/* General Form Styling */
.acf-edit-profile,
.security-section {
  padding: 30px;
}

/* Profile Image Styling */
.profile-image-section {
  text-align: center;
  margin-bottom: 50px;
}

.profile-image label {
  display: none !important;
}

.profile-image .acf-image-uploader {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.profile-image .acf-image-uploader .image-wrap {
  width: 200px;
  height: 200px;
  overflow: hidden;
}

.profile-image .image-wrap.show-if-value {
  display: block !important;
}

.profile-image .acf-image-uploader .image-wrap img {
  max-height: 200px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-image .hide-if-value {
  display: block !important;
  position: absolute;
  bottom: 0;
  width: 200px;
  height: 30px;
}

.profile-image .hide-if-value p {
  width: 100%;
  height: 100%;
}
.profile-image .hide-if-value a {
  display: block;
  width: 100%;
  height: 100%;
  color: #bcbcbc;
  background: rgba(00, 00, 00, 0.5);
  line-height: 30px;
}
.profile-image .hide-if-value a:hover {
  background: rgba(00, 00, 00, 0.7);
}

.profile-image .acf-icon.-pencil {
  display: none;
}

.profile-image .acf-icon.-cancel {
  width: 23px;
  height: 23px;
}
.acf-icon.-cancel:before {
  content: "" !important;
  margin: 0 !important;
}

.profile-image .acf-form-submit {
  display: none;
}

.profile-image #profile-updated {
  height: 30px;
  overflow: hidden;
  transition: height 0.4s ease-in-out;
}
.profile-image #profile-updated.hide {
  height: 0px;
}

.profile-image-section .profile_name h4 {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--cs-bg0-dark);
}

/* Personal Info Section */

/*editor-info*/
.user-info-section {
  margin-bottom: 30px;
}

.editor-info {
}
.editor-info .acf-field input,
.non-acf input {
  width: 100%;
  padding: 4px 8px;
  border: 0;
  border-bottom: 1px solid #c2c2c2;
  outline: 0;
  background-color: #fff;
  font-size: 16px;
}
.non-acf {
  margin: 15px 0;
  clear: both;
}
.non-acf input {
  height: 30px;
}

.editor-info .acf-field input:focus,
.non-acf input:focus {
  border-bottom-width: 2px;
  border-image: linear-gradient(
    to right,
    var(--cs-bg1-vib),
    var(--cs-bg1-bright)
  );
  border-image-slice: 1;
}

.editor-info .acf-field label,
.security-section label {
  font-weight: 600 !important;
  display: block;
  margin: 0 0 3px;
  padding: 0;
}

.security-section label {
  padding: 0;
  line-height: 30px;
}

.editor-info .acf-field {
  flex: 1;
}

.editor-info .acf-field-text,
.acf-field-number,
.acf-field-select,
.non-acf {
  display: flex;
  flex-wrap: wrap;
}

.editor-info .acf-field-text > *,
.acf-field-number > *,
.acf-field-select > * {
  position: relative;
  width: 100%;
  min-height: 1px;
}

.editor-info .acf-required {
  color: inherit;
}

/*social-info*/
.social-info {
  padding: 20px;
  background: linear-gradient(145deg, var(--cs-bg1-bright), #ffffff);
}

.submit-field {
  text-align: center;
}

.submit-field .button {
  background-color: var(--cs-bg1-vib);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-field .button:hover {
  background-color: var(--c-ops3);
}

.change-security {
  margin-bottom: 35px;
}

.change-security .button {
  background-color: var(--c-ops4);
  color: #fff;
  border: none;
  padding: 6px 12px;
  margin-top: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.change-security .button:hover {
  background-color: var(--cs-bg2-dark);
}

/* Responsive Design for Smaller Screens */
@media (min-width: 768px) {
  .acf-field-text > *,
  .acf-field-number > *,
  .acf-field-select > *,
  .pass-field > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 768px) {
}

/*-------------------------
           DASHBOARD
-------------------------*/
#header.header-dash {
  padding-left: calc(3 * var(--padding));
  padding-right: calc(3 * var(--padding));
}

#header.header-dash.scroll {
  background: transparent;
}

.profile-dropdown-dummy {
  width: 200px;
}

.dash-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 230px;
  height: 100%;
  background: var(--c-ops6);
  z-index: 1000;
  transition: width 0.3s ease-in-out;
}

.dash-menu.expand {
  width: 90px;
}

.dash-menu .menu-items {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  z-index: 1000;
}

.dash-menu .menu-items li {
  display: flex;
  width: 100%;
}

.dash-menu .menu-items li a,
.dash-menu .menu-items li .aplus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100px;
  padding: 0;
  font-size: 1.1rem;
  cursor: pointer;
  color: #b5b5b5;
  transition: all 0.2s ease-in-out;
}

.dash-menu.expand .menu-items li a,
.dash-menu.expand .menu-items li .aplus {
  font-size: 0.9rem;
}

.dash-menu .menu-items li a:hover,
.dash-menu .menu-items li .aplus:hover {
  color: var(--cs-bg0-dark);
  background: rgba(255, 255, 255, 0.5);
}

.dash-menu .menu-items li.active a,
.dash-menu .menu-items li.active .aplus {
  background: #ffffff;
}

.dash-menu .menu-items li a i,
.dash-menu .menu-items li .aplus i {
  font-size: 1.7rem;
  transition: all 0.2s ease-in-out;
}

.dash-menu.expand .menu-items li a i,
.dash-menu.expand .menu-items li .aplus i {
  font-size: 1.3rem;
}

.dash-menu > .close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 50px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: var(--c-ops);
  z-index: 1000;
  transition: transform 0.1s ease;
  mix-blend-mode: screen;
  padding: 5px 0;
}
.dash-menu > .close-btn:hover {
  color: var(--c-ops5);
  background: var(--c-ops3);
}
.dash-menu > .close-btn i {
  transition: transform 0.3s linear;
}
.dash-menu > .close-btn i.flip {
  transform: scaleX(-1);
}

.profile-small {
  position: absolute;
  top: 0;
  left: 0px;
  transform: none;
  width: 400px;
  height: 100%;
  padding: 40px 20px;
  background: #fff;
  box-shadow: -1px 0 10px rgba(0, 0, 0, 0.068);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: visible;
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.profile-small .close-btn {
  --c: #c3c3c3;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: var(--c);
}
.profile-small .close-btn:hover {
  --c: #727272;
  background: #ededed;
}

.profile-small.active {
  transform: translateX(-400px);
  opacity: 1;
  pointer-events: auto;
}

.profile-small .profile-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #e7e7e7;
}
.profile-small .profile-image {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 10px;
  overflow: hidden;
}
.profile-small .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
}
.profile-small .profile_name h4 {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--cs-bg0-dark);
}
.profile-small .profile_email {
}

.profile-small .edit-profile-btn a,
.profile-small .logout-btn a {
  display: flex;
  padding: 8px 12px;
}

.profile-small .edit-profile-btn a:hover,
.profile-small .logout-btn a:hover {
  color: var(--cs-bg0-dark);
}

.profile-small .profile-links {
}

.profile-small .editor-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.profile-small .editor-info > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 5px 0;
}

.profile-small .editor-info > div > * {
}

.section-dash {
  margin-bottom: 40px;
}

/****** S U B J E C T S ******/

.parent-dashboard main {
  margin: 50px 0 40px 0;
  padding-left: calc(3 * var(--padding));
  padding-right: calc(3 * var(--padding));
  transition: width 0.3s ease-in-out;
}
.dash-menu ~ main {
  width: calc(100% - 230px);
}
.dash-menu.expand ~ main {
  width: calc(100% - 90px);
}

.svg-left {
  display: flex;
  justify-content: center;
}
.svg-left img {
  height: 100%;
  width: 100%;
  max-width: 500px;
  object-fit: contain;
}
.svg-left-next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: calc(3 * var(--padding));
}
.svg-left-next h2 {
  font-size: 2rem;
  color: var(--cs-bg0-dark);
}
.svg-left-next p,
.svg-left-next li {
  font-size: 0.9rem;
}
.svg-left-next .note {
  margin-top: 1rem;
}
.svg-left-next .note strong {
  color: var(--cs-bg1-vib);
}

.section-title-dash {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: 10px;
  padding-bottom: 20px;
  position: relative;
}
.section-title-dash.big {
  font-size: 30px;
}
.section-title-dash:after {
  content: "";
  position: absolute;
  display: block;
  width: 70px;
  height: 3px;
  background: var(--cs-bg0-dark);
  bottom: 0;
  left: 0;
}
.section-title-dash.big:after {
}
.section-title-dash ~ .dash-section-error {
  margin-left: 10px;
}

.editor-subjects .sub-con {
  padding-top: 20px;
  margin: 0;
}

.editor-subjects .subject {
  width: 250px;
}

.editor-subjects .subject-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  padding: 0;
  overflow: hidden;
}
.editor-subjects .subject-img .img-wrap {
  width: 100%;
  height: 100%;
}
.editor-subjects .subject-img .img-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.285);
  mask-image: linear-gradient(to bottom, transparent, rgb(0 0 0));
  pointer-events: none;
}

.editor-subjects .subject-dtl {
  gap: 5px;
  padding-top: 10px;
  padding-bottom: 34px;
}
.editor-subjects .subject-dtl:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.editor-subjects .subject-dtl .sub-class {
  font-size: 12px;
}
.subject-small .subject-opt {
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 34px;
  margin-left: auto;
  width: fit-content;
  padding: 0 4px 4px 10px;
  z-index: 1;
}
.subject-opt .dots {
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 22px;
  text-align: center;
  vertical-align: middle;
  float: right;
  cursor: pointer;
  border-radius: 50%;
}
.subject-opt .dots:hover {
  background: var(--cs-bg1-bright);
}
.subject-small .option-message {
  position: absolute;
  top: 50%;
  transform: translate(100%, -50%);
  width: 100%;
  padding: 20px 10px;
  font-size: 1rem;
  text-align: center;
  line-height: 1rem;
  background: #ffffff00;
  pointer-events: none;
  visibility: hidden;
  z-index: 3;
  transition: all 0.4s ease-in-out;
}
.subject-small .option-message.show {
  background: #ffffff;
  pointer-events: auto;
  transform: translate(0, -50%);
  visibility: visible;
}
.subject-small .option-message .remove-btn {
  width: fit-content;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  border: 1px dashed #bbbbbb;
  opacity: 0;
  color: var(--c-ops4);
  pointer-events: none;
  visibility: hidden;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.editor-subjects:not(.other-subjects)
  .subject-small
  .option-message
  .remove-btn {
  display: none;
}
.other-subjects .subject-small .option-message .remove-btn.show {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.subject-small .option-message .remove-btn.show:hover {
  background: var(--cs-bg1-bright);
}

@media (min-width: 768px) {
}
@media (max-width: 1200px) {
  .editor-subjects .subject {
    min-width: auto;
  }
}
@media (max-width: 991px) {
  #header.header-dash.scroll {
    background: var(--cs-bg0-dark);
  }
  .profile-dropdown-dummy {
    width: 0px;
  }
  #dash-menu {
    width: 50%;
    right: -50%;
    z-index: 998;
  }
  body.pad #dash-menu {
    transition: right 0.5s ease-in-out;
  }
  #dash-menu.open {
    right: 0;
  }
  #dash-menu.expand {
    width: 50%;
  }
  #dash-menu > .close-btn {
    display: none;
  }
  .profile-small {
    transition: none;
  }
  .profile-small.active {
    transform: translateX(-100vw);
    width: 100vw;
    padding: 100px 20px 0 20px;
  }
  .profile-small .profile-image {
    width: 150px;
    height: 150px;
  }
  .profile-small .close-btn {
    display: none;
  }

  .parent-dashboard main {
    margin-top: 100px;
  }
  #dash-menu ~ main {
    width: 100% !important;
  }
  .svg-left-next {
    padding-right: var(--padding);
  }
  .editor-subjects .subject {
    width: calc(33.333333% - var(--gap) * 2 / 3);
    min-width: calc(33.333333% - var(--gap) * 2 / 3);
  }
}
@media (max-width: 768px) {
  .editor-subjects .sub-con {
    --gap: 35px;
  }
  .editor-subjects .subject {
    width: calc(50% - var(--gap) / 2);
    min-width: calc(50% - var(--gap) / 2);
  }
}
@media (max-width: 540px) {
  .parent-dashboard main {
    padding-left: var(--padding);
    padding-right: var(--padding);
  }
  .editor-subjects .sub-con {
    margin: 0;
  }
  .editor-subjects .subject {
    width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 380px) {
  .editor-subjects .subject {
    min-width: auto;
  }
}

/*-------------------------
           About Us
-------------------------*/
.admins .admin-members {
  list-style: none;
  margin-top: 40px;
  padding: 0;
}
.admins .admin-members li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 15px;
  padding: 10px 25px;
  border: 1px dashed #bbbbbb;
}
.admin-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 10px;
}
.admin-card .admin-role {
  color: grey;
  margin-bottom: 5px;
}

.faq {
  padding: 60px 0;
  overflow: hidden;
}
.faq .accordion-item {
  color: var(--c-ops);
  background: #fff;
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 1px 2px 0px rgba(125, 125, 125, 0.06);
}
.faq .accordion-header {
  padding-bottom: 0;
}
.faq .accordion-button {
  padding: 25px 50px 25px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--cs-bg0-dark);
  text-align: left;
  background: #fff;
  box-shadow: none;
}
.faq .accordion-button.collapsed {
  color: rgb(50, 52, 52);
}
.accordion-button::after {
  position: absolute;
  content: "";
  right: 20px;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 10px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgb(39, 38, 38);
  background: transparent;
  transition: transform 0.3s ease;
}
.faq .accordion-collapse {
  border: 0;
}

@media (max-width: 991px) {
  .admins .admin-members li {
    padding: ;
  }
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.crow {
  padding-bottom: 30px;
  background: rgba(var(--c-ops5), 0.7);
  box-shadow: var(--cp-box-shadowM);
}

.contact .info {
  padding: 30px;
  width: 100%;
}

.contact .info > div {
  padding: 0 0 10px 60px;
  margin-bottom: 1rem;
}

.contact .info i {
  font-size: 20px;
  color: var(--c-ops);
  float: left;
  width: 44px;
  height: 44px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info p {
  font-size: 14px;
  padding-left: 60px;
  margin-bottom: 8px;
}

.contact .info .email p {
  padding-top: 5px;
}


.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--c-ops);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #ffffff00;
  padding: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .form-control {
  color: var(--cp-body-c);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--c-ops);
  border-radius: 0;
}

.contact .php-email-form .form-control:focus {
  border-color: var(--c-ops);
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: var(--c-ops);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: transparent;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--c-ops);
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.my-my {
  margin-top: -1rem !important;
  margin-bottom: 1rem !important;
}

.contact .php-email-form button[type="submit"] {
  background: var(--c-ops);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--c-ops3);
}



.contact .map {
  margin-top: 40px;
  border-top: 2px solid var(--c-ops);
  border-bottom: 2px solid var(--c-ops);
}

.contact .map iframe {
  border: 0;
  margin-bottom: -10px;
  width: 100%;
  height: 400px;
}



@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*-------------------------
          Contact ends

-------------------------*/




/*-------------------------
           Footer
-------------------------*/
#footer {
  position: relative;
  min-height: 250px;
  font-family: Arial, sans-serif;
  overflow: hidden;
  background: var(--c-ops3);
}

.parent-dashboard #dash-menu ~ #footer {
  width: calc(100% - 230px);
  transition: width 0.3s ease-in-out;
}
.parent-dashboard #dash-menu.expand ~ #footer {
  width: calc(100% - 90px);
}

.parent-reset-password #footer {
  display: none;
}

.footer-svg2 {
  position: absolute;
  right: 0;
}

.footer-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 50px 5%;
  backdrop-filter: blur(20px);
}

#footer .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  line-height: 1.1;
}

#footer .logo img {
  height: 150px;
}

#footer .logo h2,
#footer .logo h2 {
  padding: 0;
}

.footer-title {
  width: fit-content;
  font-size: 30px;
  color: var(--c-ops);
}

.footer-title,
.footer-section {
  padding: 20px;
}

.footer-section h4 {
  margin-bottom: 10px;
}

.footer-section h4 {
  color: black;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  color: var(--c-ops2);
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: var(--c-ops);
}

.contact-info li {
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 8px;
  font-size: 18px;
  color: var(--c-ops);
}

.copyright p {
  text-align: center;
  color: var(--c-ops2);
}

.copyright p:nth-of-type(2) {
  font-size: .8rem;
}

.copyright a {
  color: var(--c-ops6);
}
.copyright a:hover {
  color: var(--c-ops);
}

@media (max-width: 991px) {
  .parent-dashboard #dash-menu ~ #footer,
  .parent-dashboard #dash-menu.expand ~ #footer {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .footer-container {
    gap: 20px;
  }
  .footer-title,
  .footer-section {
    padding: 20px 0;
  }
}

/*-------------------------------
--------------Sign In / Up------------
---------------------------------*/
.signinup {
  width: 100%;
  height: fit-content;
  padding: 30px var(--padding);
}

.login-section {
  flex: 1;
  text-align: left;
  max-width: 400px;
}

.login-section h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 30px;
}

.login-section > p {
  font-size: 20px;
  color: #666;
  margin-top: 0;
  margin-bottom: 20px;
}

.signin-top-btn {
}

.signin-top-btn > * {
  width: calc(50% - 5px);
}

.signin-top-btn > * + * {
  margin-left: 10px;
}

.signin-top-btn a {
  text-align: center;
  line-height: 38px;
  padding: 0 10px;
  border: 1px solid #dddddd;
}
.signin-top-btn a:hover {
  background: rgb(243, 251, 249);
}

.separator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 15px 0;
}

.separator::before {
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.separator span {
  text-align: center;
  color: #888;
  background: white;
  padding: 0 6px;
  font-size: 12px;
  z-index: 1;
}

.login-form input,
.signup-form input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  font-size: 14px;
}

.signup-form input {
  margin: 4px 0;
}

.signup-form > input:nth-of-type(1) {
  background: #f4fffc;
}
.signup-form > input:nth-of-type(2) {
  background: #fcf8ff;
}
.signup-form > input:nth-of-type(3) {
  background: #fefff3;
}

.signup-form .school-class input + input {
  margin-left: 8px;
}

.signup-form .school-class input:nth-child(1) {
  width: 65%;
  background: #fffafa;
}

.signup-form .school-class input:nth-child(2) {
  width: 35%;
  background: #f0fbff;
}

.login-form .signup-form input:focus {
  outline: 2px solid var(--c-ops);
}

.login-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: var(--c-ops);
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.login-btn:hover {
  background: var(--c-ops);
}

.image-section {
  flex: 1;
  max-width: 500px;
}

.image-section img {
  width: 100%;
}

/*google sign icon*/

@media (max-width: 768px) {
  .signin-top-btn {
    flex-wrap: wrap;
    gap: 15px;
  }
  .signin-top-btn > * {
    width: 100%;
    margin: 0;
  }
}

/*------ Forgot Password -------*/
.password-reset-modal {
  display: none;
}
.parent-sign-in .input-modal {
  display: none;
}
.input-modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.input-modal .modal-content {
  background-color: white;
  padding: 20px;
  margin: 15% auto;
  width: 340px;
  max-width: 100%;
  text-align: center;
}
.input-modal .modal-content h4 {
  margin-bottom: 30px;
  margin-right: 10px;
  font-size: 16px;
}
.input-modal .close-btn {
  position: absolute;
  top: 18px;
  right: 10px;
  font-size: 30px;
  line-height: 30px;
  cursor: pointer;
  z-index: 2;
}

.input-modal .close-btn:hover {
  color: var(--c-ops4);
}

.reset-form {
  font-size: 16px;
  line-height: 30px;
}

.parent-reset-password .reset-form > * + * {
  margin-top: 20px;
}

.reset-form input,
.reset-form input:focus {
  width: 210px;
  border-width: 0;
  border-bottom-width: 2px;
  border-image: linear-gradient(
    to right,
    var(--cs-bg1-vib),
    var(--cs-bg1-bright)
  );
  border-image-slice: 1;
  outline: none;
}

.reset-form button {
  border: none;
  padding: 4px 10px;
  background: var(--cs-bg0);
  transition: background 0.3s ease-in-out;
}
.reset-form button:hover {
  background: var(--cs-bg1-bright);
}

.input-modal .modal-content p {
  margin-bottom: 0;
  margin-top: 1rem;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.input-modal .modal-content p.msg {
  height: 26px;
}

@media (max-width: 991px) {
  .signinup {
    flex-direction: column;
    height: fit-content;
  }
  .signinup .image-section {
    margin-top: 50px;
    margin-bottom: 10px;
    z-index: -1;
  }
  .input-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 20px var(--padding);
  }
  .reset-form input,
  .reset-form input:focus {
    width: 250px;
    max-width: 100%;
  }
}


