@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&display=swap");


:root {
  --color-1: #b93f3f;
  --color-2: #dd6359;
  --color-3: #e6e7e9;
  --color-4: #bcbdc0;
  --color-5: #6c6d70;
  --color-6: #0b2046;
  --color-7: #0c3667;
  --color-8: #adbbcb;
  --color-9: #a7c8e8;
  --color-10: #9abadd;
  --color-11: #ffffff;
  --color-12: #000000;
  --color-13: #231F20;
  --color-14: #EDCFC6;
}

input,
textarea,
select,
button {
  all: unset;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

button {
  cursor: pointer;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  height: auto;
  display: inline-block;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  user-select: none;
  /* Prevents text/image selection */
  pointer-events: none;
  /* Disables clicking & dragging */
  -webkit-user-drag: none;
  /* Stops dragging in WebKit browsers */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

@font-face {
  font-family: Ploni;
  src: url(../fonts/ploni.otf);
  font-weight: 500;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.site-main {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-11);
  color: #141E23;
  padding-top: 40px;
  padding-bottom: 60px;
  /* Hide Shipping Method Block */
}

.site-main .wc-block-components-checkbox__label a {
  text-decoration: underline;
}

.site-main .container {
  max-width: 1000px;
}

.site-main .container ol,
.site-main .container ul {
  font-size: 20px;
  margin: 40px auto;
  margin-bottom: 80px;
}

.site-main .container ol li,
.site-main .container ul li {
  margin-bottom: 30px;
}

.site-main .container h1,
.site-main .container h2,
.site-main .container h3 {
  color: #141E23;
  text-align: center;
}

.site-main .container p {
  color: #5E605E;
}

.site-main .wc-block-components-checkout-shipping-method-block {
  display: none !important;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.site-main div[class*="pickup-options"] {
  display: none !important;
}

.site-main input[type="checkbox"] {
  all: revert;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  accent-color: #141E23;
  /* Optional: adds custom color in modern browsers */
}

.site-main .wp-block-woocommerce-checkout-terms-block {
  display: none;
}

.site-main .wc-block-checkout__actions_row a {
  text-decoration: underline;
}

.site-main .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row {
  justify-content: center;
  flex-direction: column;
}

.site-main .is-large .wc-block-checkout__sidebar.is-sticky {
  top: 120px;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(19, 23, 25, 0.5);
  overflow: hidden;
  backdrop-filter: blur(6.5px) brightness(0.7);
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.dialog.visible {
  opacity: 1;
  pointer-events: all;
}

.dialog p {
  color: #141E23;
  font-weight: 600;
}

.dialog .dialog-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 16px;
  border: 2px solid #DBDAE3;
  background: var(--color-11);
  position: relative;
  width: 360px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
}

.dialog .dialog-box h3 {
  color: #141E23;
  line-height: 1;
  font-size: 30px;
  margin: 0;
}

.dialog .dialog-close {
  margin-top: 20px;
}

.main-btn {
  display: flex;
  padding: 12px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--color-1);
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  color: var(--color-11);
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

.main-btn:hover {
  /* padding: 12px 60px; */
  background: var(--color-2);
}

.main-btn label {
  color: var(--color-11);
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

.main-btn.invert {
  background: var(--color-1);
  color: #fff !important;
  border: 1px solid var(--color-11);
}

.main-btn.invert:hover {
  background: var(--color-2);
}



.main-btn.submit-btn,
.main-btn.lecturer-btn {
  min-width: 300px;
  max-width: 300px;
  font-size: 24px;
  line-height: 1.5;
}

.main-btn.invert.tender-btn,
.main-btn.lecturer-btn {
  background-color: var(--color-14);
  color: var(--color-7) !important;
}

.main-btn.invert.tender-btn:hover,
.main-btn.lecturer-btn:hover {
  background-color: var(--color-4);
}

@media only screen and (max-width: 800px) {
  .main-btn {
    font-size: 18px;
    padding: 10px 40px;
  }

  .main-btn.submit-btn,
  .main-btn.lecturer-btn {
    min-width: 200px;
    width: 100%;
  }

  .main-btn:hover {
    /* padding: 10px 40px;  */
  }

  .main-btn label {
    font-size: 18px;
  }
}

.wc-block-components-checkout-place-order-button {
  display: flex;
  padding: 12px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: #141E23;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  color: var(--color-11);
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

.wc-block-components-checkout-place-order-button:hover {
  padding: 12px 60px;
  background: #334B56;
}

@media only screen and (max-width: 800px) {
  .wc-block-components-checkout-place-order-button {
    font-size: 18px;
    padding: 10px 40px;
  }

  .wc-block-components-checkout-place-order-button:hover {
    padding: 10px 40px;
  }
}

.woocommerce .button {
  display: flex;
  padding: 12px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: #141E23;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  color: var(--color-11);
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

.woocommerce .button:hover {
  padding: 12px 60px;
  background: #334B56;
}

@media only screen and (max-width: 800px) {
  .woocommerce .button {
    font-size: 18px;
    padding: 10px 40px;
  }

  .woocommerce .button:hover {
    padding: 10px 40px;
  }
}

.wc-block-components-checkout-return-to-cart-button {
  display: none;
}

.sub-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  box-sizing: border-box;
  background: none;
  cursor: pointer;
  border: 1px solid var(--color-11);
  transition: all 0.3s ease;
  padding: 12px 30px;
  color: var(--color-11);
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

.sub-btn:hover {
  padding: 12px 40px;
  background: var(--color-2);
  border-color: var(--color-2);
}

.sub-btn label {
  color: var(--color-11);
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

.sub-btn.invert {
  background-color: var(--color-1);
  color: var(--color-11);
  border-color: var(--color-11);
}

.sub-btn.invert:hover {
  background-color: var(--color-2);
  color: var(--color-11);
}

@media only screen and (max-width: 800px) {
  .sub-btn {
    padding: 10px 30px;
    font-size: 18px;
  }

  .sub-btn:hover {
    padding: 10px 30px;
    border-color: white;
    background: none;
  }

  .sub-btn label {
    font-size: 18px;
  }
}

.sub-btn-b {
  color: var(--color-11);
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  border-bottom: 1px solid;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sub-btn-b:hover {
  color: var(--color-2);
}

.results-container .sub-btn.invert:hover {
  padding: 12px 30px;
}

* a {
  text-decoration: none;
  color: inherit !important;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

p {
  font-size: 18px;
  color: #F8F7FA;
  font-weight: 500;
}

h1,
h2,
h3 {
  font-family: 'Ploni', sans-serif;
  color: var(--color-11);
  font-size: 45px;
}

html,
body {
  padding: 0;
  margin: 0;
  direction: rtl;
  font-family: 'Assistant', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  padding-top: 80px;
}

.wrap_form_profile .row .lecture-box .text-input {
  background: var(--color-11);
}

.text-input {
  display: flex;
  width: 100%;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
  border-radius: 8px;
  font-weight: 600;
  background: var(--color-11);
  border: 1px solid var(--color-7);
  color: var(--color-5);
  font-size: 20px;
  font-family: 'Assistant', sans-serif;
  transition: all 0.3s ease;
  appearance: none;
}

.text-input:focus {
  border-color: var(--color-6);
}

textarea.text-input {
  height: 140px;
}

.text-input[type="select"],
select.text-input,
.text-input.select-box {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236c6d72' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 24px;
  padding-left: 40px;
  cursor: pointer;
}

.custom-multiselect {
  position: relative;
  user-select: none;
  width: 100%;
}

.select-box {
  padding: 10px 20px;
  background-color: var(--color-14);
  color: var(--color-5);
  font-size: 20px;
  cursor: pointer;
  width: 100%;
  flex: 1;
  box-sizing: border-box;
}

.wrap_form_profile .custom-multiselect .options {
  background-color: var(--color-11);
}

.custom-multiselect .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-14);
  border-radius: 8px;
  display: none;
  z-index: 10;
  padding: 10px;
}

.custom-multiselect .options input[type="checkbox"] {
  all: revert;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--color-6);
  /* Optional: adds custom color in modern browsers */
}

.custom-multiselect.open .options {
  display: block;
}

.custom-multiselect .options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  padding: 4px 0;
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  body {
    padding-top: 50px;
  }

  p {
    font-size: 4.62vw;
  }

  h1,
  h2,
  h3 {
    font-size: 8.21vw;
  }

  h1 {
    font-size: 11.28vw !important;
  }

  .wp-block-woocommerce-checkout {
    overflow: hidden;
    box-sizing: border-box;
  }

  .site-main .container {
    padding: 0 5vw;
    box-sizing: border-box;
  }

  .site-main ol,
  .site-main ul {
    font-size: 4.62vw;
  }
}

header ul {
  padding: 0;
  margin: 0;
}

header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 80px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: var(--color-3);
  overflow: hidden;
  z-index: 99;
}

header .navbar .container {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0px 40px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

header .navbar .logo {
  display: flex;
  width: 125px;
  justify-content: flex-start;
  align-items: center;
}

.logo p {
  position: relative;
  background-color: var(--color-1);
  padding: 4px 6px;
  line-height: 10px;
  font-size: 14px;
  border-radius: 20px;
  left: 20px;
  top: 20px;
  transform: rotate(18deg);
}

@media screen and (max-width:768px) {
  .logo p {

    padding: 4px 4px;
    font-size: 12px;
    left: 16px;
    top: 10px;
    transform: rotate(12deg);
  }
}

header .navbar .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

header .navbar .menu {
  display: flex;
  width: 450px;
  box-sizing: border-box;
  padding: 26px 0px;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}


header .navbar .menu p {
  color: var(--color-6);
}


header .navbar .menu .control,
header .navbar .menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

header .navbar .menu .control p,
header .navbar .menu ul p {
  font-weight: 700;
  font-size: 16px;
}

header .navbar .menu li {
  padding: 0;
  color: var(--color-6);
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

header .navbar .menu li.btn {
  display: flex;
  padding: 3px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  color: var(--color-11);
  background: var(--color-1);
  transition: all 0.4s ease;
}

header .navbar .menu li.btn:hover {
  border-color: var(--color-2);
  background: var(--color-2);
}

header .navbar .menu li.sub-btn {
  display: flex;
  padding: 3px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background-color: var(--color-1);
  color: var(--color-11);
}

header .navbar .menu li.sub-btn.active {
  border-color: var(--color-1);
  background: var(--color-1);
}

header .navbar .menu li.sub-btn:hover {
  border-color: var(--color-2);
  background: var(--color-2);
}

@media only screen and (max-width: 800px) {
  header .no-mob {
    display: none;
  }

  header .navbar {
    padding: 0px 5vw;
    padding: 0 10px;
    box-sizing: border-box;
    height: 50px;
  }

  header .navbar .container {
    padding: 0;
  }

  header .navbar .logo {
    width: 70px;
  }

  header .navbar .menu {
    width: auto;
  }

  header .navbar .menu .control {
    gap: 5px;
  }

  header .navbar .menu .control p {
    display: none;
  }

  header .navbar .menu .btn,
  header .navbar .menu .sub-btn {
    padding: 4px 14px !important;
    font-size: 12px;
  }
}

footer {
  display: flex;
  width: 100%;
  padding: 80px 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-shrink: 0;
  background: var(--color-1);
  color: var(--color-11);
}

footer img {
  width: 225px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

footer a {
  text-decoration: underline;
}

footer p {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  footer {
    padding: 60px 0;
  }

  footer img {
    width: 125px;
  }
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(19, 23, 25, 0.5);
  overflow: hidden;
  backdrop-filter: blur(6.5px) brightness(0.7);
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.dialog .dialog-x {
  float: left;
  position: absolute;
  width: auto;
  top: 7px;
  left: 12px;
  font-weight: 800;
}

.dialog.visible {
  opacity: 1;
  pointer-events: all;
}

.dialog p {
  color: #141E23;
  font-weight: 600;
}

.dialog .dialog-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 16px;
  border: 2px solid #DBDAE3;
  background: var(--color-11);
  position: relative;
  width: 360px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
}

.dialog .dialog-box h3 {
  color: #141E23;
  line-height: 1;
  font-size: 30px;
  margin: 0;
}

.dialog .dialog-close {
  margin-top: 20px;
}

.tender-dialog,
.offer-dialog {
  z-index: 998;
}

.tender-dialog .dialog-box,
.offer-dialog .dialog-box {
  width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.tender-dialog .dialog-box .dialog-x,
.offer-dialog .dialog-box .dialog-x {
  width: 32px;
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
}

.tender-dialog .form-container,
.offer-dialog .form-container {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 1400px;
  box-sizing: border-box;
  width: 100%;
}

.tender-dialog .form-container form,
.offer-dialog .form-container form {
  display: contents;
}

.tender-dialog .form-container .row,
.offer-dialog .form-container .row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.tender-dialog .form-container .row .field,
.offer-dialog .form-container .row .field {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.tender-dialog .form-container .row .field .error-msg,
.offer-dialog .form-container .row .field .error-msg {
  display: none;
  color: red;
  font-size: 15px;
  margin-top: 4px;
  font-weight: bold;
}

.tender-dialog .form-container .row .field .error-msg:not(:empty),
.offer-dialog .form-container .row .field .error-msg:not(:empty) {
  display: block;
}

.tender-dialog .form-container .row label,
.offer-dialog .form-container .row label {
  color: var(--color-7);
  font-size: 20px;
  font-weight: 700;
}

.tender-dialog .form-container .row h2,
.offer-dialog .form-container .row h2 {
  font-size: 48px;
  line-height: 1;
  color: var(--color-1);
  text-align: center;
  width: 100%;
  padding: 0;
  padding-bottom: 10px;
}

.tender-dialog .form-container input,
.tender-dialog .form-container select,
.tender-dialog .form-container textarea,
.offer-dialog .form-container input,
.offer-dialog .form-container select,
.offer-dialog .form-container textarea {
  padding: 10px;
  border: 1px solid var(--color-7);
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
  background: var(--color-11);
  text-align: right;
}

.tender-dialog .form-container input[type=date],
.tender-dialog .form-container select[type=date],
.tender-dialog .form-container textarea[type=date],
.offer-dialog .form-container input[type=date],
.offer-dialog .form-container select[type=date],
.offer-dialog .form-container textarea[type=date] {
  width: 100%;
  text-align: right;
  display: block;
}

.tender-dialog .form-container select.text-input,
.tender-dialog .form-container .text-input[type="select"],
.tender-dialog .form-container .text-input.select-box,
.offer-dialog .form-container select.text-input,
.offer-dialog .form-container .text-input[type="select"],
.offer-dialog .form-container .text-input.select-box {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%236C6D72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 24px;
  padding-left: 40px;
  cursor: pointer;
}

.tender-dialog .form-container input[type=submit],
.tender-dialog .form-container button.submit-btn,
.offer-dialog .form-container input[type=submit],
.offer-dialog .form-container button.submit-btn {
  padding: 12px 40px;
  background: var(--color-1);
  color: var(--color-11);
  border: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  max-width: 300px;
  margin: 0 auto;
}

@media only screen and (max-width: 800px) {
  .tender-dialog .dialog-box {
    max-width: 95%;
    padding: 30px 0;
  }

  .tender-dialog .dialog-box .form-container .row {
    flex-direction: column;
  }
}

body.home section.hero *,
body.home section.hero *::before,
body.home section.hero *::after {
  box-sizing: border-box;
}

body.home section.hero {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  height: auto;
  padding: 90px 20px;
  justify-content: center;
  align-items: center;
  gap: 120px;
  flex-shrink: 0;
  position: relative;
  background-color: var(--color-7);
  overflow: hidden;
}

body.home section.hero .wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -342px;
  overflow: hidden;
  padding: 342px 0;
}

body.home section.hero .flash {
  width: 141px;
  height: 1114px;
  transform: rotate(-25.866deg);
  position: absolute;
  left: calc(50% - 541px);
  top: 0px;
  border-radius: 1114px;
  opacity: 0.4;
  background: var(--color-1);
  filter: blur(100px);
}

body.home section.hero .text {
  display: flex;
  width: 100%;
  max-width: 663px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  position: relative;
}

body.home section.hero .text h1 {
  text-align: right;
  font-size: 48px;
  font-weight: 800;
  line-height: 88.89%;
  letter-spacing: -1.44px;
}

body.home section.hero .text h1 span {
  position: relative;
}

body.home section.hero .text h1 span:after {
  content: '';
  width: 100%;
  height: 4px;
  background: var(--color-1);
  left: 0;
  bottom: 13%;
  position: absolute;
}

body.home section.hero .text p {
  align-self: stretch;
  text-align: right;
  font-weight: 500;
  line-height: 165%;
}

body.home section.hero .hero-list {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

body.home section.hero .hero-list li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;

  line-height: 1.2;
  font-size: 30px;
  color: var(--color-11);
  position: relative;
  z-index: 2;
}

body.home section.hero .hero-list li:not(:last-child) {
  padding-left: 30px;
}

body.home section.hero .hero-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--color-11);
}

@media only screen and (max-width: 800px) {
  body.home section.hero .hero-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  body.home section.hero .hero-list li {
    font-size: 4.62vw;
  }

  body.home section.hero .hero-list li:not(:last-child) {
    padding-left: 0px;
  }

  body.home section.hero .hero-list li:not(:last-child)::after {
    display: none;
  }
}

body.home section.hero .text .btns {
  display: flex;
  padding-top: 20px;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media screen and (max-width:800px) {
  body.home section.hero .text .btns {
    width: 100%;
    gap: 15px;
  }

  body.home section.hero .text .btns a {
    display: block;
    width: 100%;
  }
}

body.home section.hero .visual {
  display: flex;
  width: 578px;
  height: 566px;
  padding: 10px 80px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  align-self: stretch;
  position: relative;
}

body.home section.hero .visual .container {
  width: 578px;
  height: 566px;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

body.home section.hero .visual .circle1 {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  border-radius: 220px;
  background: var(--color-1);
  position: absolute;
  top: 45px;
  left: 241px;
}

body.home section.hero .visual .vis1 {
  width: 324px;
  height: 324px;
  flex-shrink: 0;
  border-radius: 324px;
  background-repeat: no-repeat;
  background-size: 102% auto;
  background-position: center center;
  background-color: #d9d9d9;
  position: absolute;
  left: 0;
  top: 76px;
}

body.home section.hero .visual .vis2 {
  width: 403px;
  height: 403px;
  flex-shrink: 0;
  border-radius: 403px;
  background-repeat: no-repeat;
  background-size: 102% auto;
  background-position: center center;
  background-color: #d9d9d9;
  box-shadow: 0px 0px 50px 0px rgba(11, 14, 16, 0.5), 0px 0px 30px 0px rgba(11, 14, 16, 0.25);
  position: absolute;
  top: 163px;
  left: 175px;
}

body.home section.hero .visual .dashed {
  width: 147px;
  height: 147px;
  flex-shrink: 0;
  border-radius: 147px;
  border: 1px dashed var(--color-1);
  position: absolute;
  top: 355px;
  left: 77px;
  animation: rotate360 12s linear infinite;
}

@media screen and (max-width:1450px) and (min-width:800px) {
  body.home section.hero .text h1 {
    font-size: 3.7931vw;
  }

  body.home section.hero .hero-list {
    gap: 1.0345vw;
  }

  body.home section.hero .hero-list li {
    font-size: 2.0690vw;
  }

  body.home section.hero .hero-list li:not(:last-child) {
    padding-left: 2.0690vw;
  }

  body.home section.hero .hero-list li:not(:last-child)::after {
    top: 0.8966vw;
    width: 1.0345vw;
    height: 1.0345vw;
  }

  body.home section.hero .visual {
    width: 39.8621vw;
    height: 39.0345vw;
    padding: 0.6897vw 5.5172vw;
    gap: 0.6897vw;
  }

  body.home section.hero .visual .container {
    width: 39.8621vw;
    height: 39.0345vw;
  }

  body.home section.hero .visual .circle1 {
    width: 15.1724vw;
    height: 15.1724vw;
    border-radius: 15.1724vw;
    top: 3.1034vw;
    left: 16.6207vw;
  }

  body.home section.hero .visual .vis1 {
    width: 22.3448vw;
    height: 22.3448vw;
    border-radius: 22.3448vw;
    top: 5.2414vw;
  }

  body.home section.hero .visual .vis2 {
    width: 27.7931vw;
    height: 27.7931vw;
    border-radius: 27.7931vw;
    box-shadow: 0px 0px 3.4483vw 0px rgba(11, 14, 16, 0.5), 0px 0px 30px 0px rgba(11, 14, 16, 0.25);
    top: 11.2414vw;
    left: 12.0690vw;
  }

  body.home section.hero .visual .dashed {
    width: 10.1379vw;
    height: 10.1379vw;
    border-radius: 10.1379vw;
    top: 24.4828vw;
    left: 5.3103vw;
  }
}



body.home section.featured {
  display: flex;
  width: 100%;
  padding: 100px;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  background-color: var(--color-7);
}

body.home section.featured .carousel-wrapper {
  display: contents;
}

body.home section.featured .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

body.home section.featured .carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

body.home section.featured .carousel .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

body.home section.featured .speaker {
  display: flex;
  padding: 38.5px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  will-change: padding;
  transition: all 0.3s ease;
  position: relative;
}

body.home section.featured .speaker .thumb {
  display: flex;
  width: 230px;
  height: 230px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 400px;
  background-color: #d9d9d9;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  will-change: width, height, filter;
  transition: all 0.3s ease;
}

body.home section.featured .speaker .desc {
  display: flex;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  will-change: gap;
}

body.home section.featured .speaker .desc strong {
  color: var(--color-11);
  font-size: 24px;
  font-weight: 800;
  line-height: 83.333%;
  transition: all 0.3s ease;
  will-change: font-size;
}

body.home section.featured .speaker .desc span {
  color: #F8F7FA;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  transition: all 0.3s ease;
  will-change: font-size;
}

body.home section.featured .speaker.active,
body.home section.featured .speaker.swiper-slide-active {
  padding: 0px 0px;
}

body.home section.featured .speaker.active .thumb,
body.home section.featured .speaker.swiper-slide-active .thumb {
  width: 290px;
  height: 290px;
  filter: grayscale(0%);
}

body.home section.featured .speaker.active .thumb:before,
body.home section.featured .speaker.swiper-slide-active .thumb:before {
  width: 300px;
  height: 300px;
  opacity: 1;
  margin-left: -150px;
  margin-top: -150px;
}

body.home section.featured .speaker.active .desc,
body.home section.featured .speaker.swiper-slide-active .desc {
  gap: 12px;
}

body.home section.featured .speaker.active .desc strong,
body.home section.featured .speaker.swiper-slide-active .desc strong {
  font-size: 32px;
}

body.home section.featured .speaker.active .desc span,
body.home section.featured .speaker.swiper-slide-active .desc span {
  font-size: 20px;
}

body.home section.stats * body.home section.stats *::before,
body.home section.stats *::after {
  box-sizing: border-box;
}

body.home section.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 120px;
  padding-top: 50px;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-7);
}

body.home section.stats .container {
  display: flex;
  width: 100%;
  padding: 80px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background-color: var(--color-1);
  overflow: hidden;
}

body.home section.stats .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-align: center;
}

body.home section.stats .numbers {
  display: flex;
  width: 886px;
  padding: 10px 0px;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}

body.home section.stats .numbers .number {
  display: flex;
  width: 180px;
  height: 180px;
  padding: 10px 20px;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  border-radius: 200px;
  background: var(--color-11);
  box-shadow: 0px 4px 20px 0px rgba(38, 27, 54, 0.37);
}

body.home section.stats .numbers .number strong {
  color: var(--color-7);
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  line-height: 51.563%;
}

body.home section.stats .numbers .number span {
  color: var(--color-7);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}

body.home section.about *,
body.home section.about *::before,
body.home section.about *::after {
  box-sizing: border-box;
}

body.home section.about {
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--color-7);
}

body.home section.about .container {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
}

body.home section.about h2 {
  text-align: center;
  font-size: 45px;
  line-height: 1;
  margin-bottom: 50px;
}

body.home section.about .row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  align-self: stretch;
}

body.home section.about .row:nth-of-type(even) {
  flex-direction: row-reverse;
}

body.home section.about .row .visual {
  width: 100%;
  height: auto;
  max-width: 500px;
}

body.home section.about .row .visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.home section.about .row .text {
  width: 100%;
  max-width: 413px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 13px;
}

@media screen and (max-width:800px) {
  body.home section.about .row .text {
    max-width: 100%;
  }

  body.home section.about .row .text br {
    display: none;
  }
}

body.home section.about .cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
}

body.home section.about .cta p {
  color: white;
  font-weight: 800;
}

body.home section.about .cta .btns {
  display: flex;
  padding-top: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width:800px) {
  body.home section.about .cta .btns {
    width: 100%;
    gap: 15px;
  }

  body.home section.about .cta .btns a {
    width: 100%;
    display: block;
  }
}

body.home section.how *,
body.home section.how *::before,
body.home section.how *::after {
  box-sizing: border-box;
}

body.home section.how {
  display: flex;
  width: 100%;
  height: auto;
  padding: 100px 50px 100px 20px;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  gap: 20px;
  flex-shrink: 0;
  color: var(--color-13);
  background: var(--color-11);
  overflow: hidden;
}

body.home section.how p {
  color: var(--color-13);
}

body.home section.how h2 {
  text-align: center;
  font-size: 45px;
  color: var(--color-1);
  line-height: 1;
  margin-bottom: 50px;
}

body.home section.how .steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
}

body.home section.how .steps .step {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  counter-increment: section-counter;
  gap: 120px;
}

body.home section.how .steps .step:nth-of-type(even) {
  flex-direction: row-reverse;
}

body.home section.how .steps .step .text {
  width: 100%;
  max-width: 410px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

body.home section.how .steps .step h3 {
  font-size: 45px;
  color: var(--color-1);
  position: relative;
  line-height: 0.8;
}

body.home section.how .steps .step h3:before {
  content: counter(section-counter);
  position: absolute;
  right: -32px;
  top: -5px;
  color: var(--color-7);
  text-align: left;
  font-size: 140px;
  font-weight: 800;
  line-height: 45.714%;
  opacity: 0.75;
  mix-blend-mode: multiply;
}

body.home section.how .steps .step .visual {
  width: 100%;
  height: auto;
  max-width: 500px;
}

body.home section.how .steps .step .visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media only screen and (max-width: 800px) {
  body.home section.hero {
    height: auto;
    padding: 60px 5vw;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 30px;
  }

  body.home section.hero .text {
    width: 100%;
    padding: 0;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  body.home section.hero .text h1 {
    text-align: center;
  }

  body.home section.hero .text h1 br {
    display: none;
  }

  body.home section.hero .text p {
    max-width: 60vw;
    line-height: 1.2;
    text-align: center;
    align-self: auto;
  }

  body.home section.hero .visual {
    width: 100%;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    height: auto;
  }

  body.home section.hero .visual .container {
    width: 100%;
    position: relative;
    height: 94vw;
    bottom: auto;
  }

  body.home section.hero .visual .circle1 {
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    top: 0;
    left: 55%;
    transform: translateX(-50%);
    z-index: 0;
  }

  body.home section.hero .visual .vis1 {
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background-size: cover;
    left: 0;
    top: 10vw;
    z-index: 2;
  }

  body.home section.hero .visual .vis2 {
    width: 65vw;
    height: 65vw;
    border-radius: 50%;
    background-size: cover;
    top: 28vw;
    left: auto;
    right: 0;
    z-index: 3;
  }

  body.home section.hero .visual .dashed {
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    top: 52vw;
    left: 14%;
    z-index: 4;
    transform: translateX(-50%);
    z-index: 1;
    animation: rotate360 12s linear infinite;
  }

  body.home section.hero .wrapper {
    pointer-events: none;
  }

  body.home section.hero .wrapper .flash {
    left: 51%;
    height: 500px;
    filter: blur(20px);
    top: 154vw;
    width: 25px;
    /* bottom: 0; */
    transform: rotate(-30.866deg);
  }

  body.home section.featured {
    padding: 100px 0;
    padding-bottom: 50px;
    padding-top: 0;
  }

  body.home section.featured .text {
    width: 95vw;
    text-align: center;
    align-self: auto;
  }

  body.home section.featured .swiper {
    direction: ltr;
    display: inherit;
  }

  body.home section.featured .carousel {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  body.home section.featured .carousel:before {
    display: none;
  }

  body.home section.featured .carousel .swiper-wrapper {
    justify-content: flex-start;
    display: flex;
  }

  body.home section.featured .speaker {
    padding: 31px 15px;
    width: 292px;
    box-sizing: border-box;
  }

  body.home section.featured .speaker .thumb {
    width: 170px;
    height: 170px;
  }

  body.home section.featured .speaker .desc strong {
    font-size: 20px;
  }

  body.home section.featured .speaker .desc span {
    font-size: 14px;
  }

  body.home section.featured .speaker.swiper-slide-active {
    padding: 10px 0;
  }

  body.home section.featured .speaker.swiper-slide-active .thumb {
    width: 200px;
    height: 200px;
  }

  body.home section.featured .speaker.swiper-slide-active .thumb:before {
    width: 210px;
    height: 210px;
    margin-left: -105px;
    margin-top: -105px;
  }

  body.home section.featured .speaker.swiper-slide-active .desc strong {
    font-size: 24px;
  }

  body.home section.featured .speaker.swiper-slide-active .desc span {
    font-size: 16px;
  }

  body.home section.featured .swiper-slide {
    flex: 0 0 auto !important;
    max-width: 300px;
    /* Adjust if needed */
  }

  body.home .swiper {
    direction: ltr;
  }

  body.home section.stats {
    padding: 50px 0;
  }

  body.home section.stats .container {
    width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
    gap: 30px;
  }

  body.home section.stats .numbers {
    width: 100%;
  }

  body.home section.stats .numbers .number {
    width: 140px;
    height: 140px;
  }

  body.home section.stats .numbers .number strong {
    font-size: 46px;
  }

  body.home section.stats .numbers .number span {
    font-size: 16px;
  }

  body.home section.about .container {
    padding: 0 5vw;
    padding-bottom: 100px;
  }

  body.home section.about .cta {
    text-align: center;
    flex-direction: column;
    padding: 10px;
    gap: 18px;
  }

  body.home section.about h2 {
    font-size: 11.28vw !important;
    max-width: 92%;
    margin: 0;
  }

  body.home section.about .row {
    flex-direction: column;
    gap: 30px;
  }

  body.home section.about .row:nth-of-type(even) {
    flex-direction: column;
  }

  body.home section.about .row .visual {}

  body.home section.about .row .visual img {}

  body.home section.about .row .text {
    text-align: center;
    align-items: center;
  }

  body.home section.how {
    padding: 100px 20px;
    padding-bottom: 100px;
  }

  body.home section.how h2 {
    font-size: 11.28vw !important;
    max-width: 92%;
    margin: 0;
  }

  body.home section.how .steps {
    width: 80%;
    flex-direction: column;
    gap: 80px;
  }

  body.home section.how .steps .step {
    flex-direction: column-reverse;
    gap: 30px;
    align-items: center;
  }

  body.home section.how .steps .step:nth-of-type(even) {
    flex-direction: column-reverse;
  }

  body.home section.how .steps .step .visual img {
    height: 220px;
  }

  body.home section.how .steps .step .text {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  body.home section.how .steps .step .text p {
    width: 100%;
  }

  body.home section.how .steps .step .text h3 {
    font-size: 11.28vw;
    text-align: center;
  }

}

body.single-speaker {
  background: #F8F7FA;
  padding-top: 0;
}

body.single-speaker section.profile-head {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  background: var(--color-9);
}

body.single-speaker section.profile-head .container {
  display: flex;
  padding: 80px 20px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  box-sizing: border-box;
}

body.single-speaker section.profile-head .container .profile-image {
  width: 300px;
}

body.single-speaker section.profile-head .container .profile-image .image {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  background: lightgray no-repeat center center;
  background-size: cover;
  box-shadow: 0px 0px 50px 0px rgba(11, 14, 16, 0.5), 0px 0px 30px 0px rgba(11, 14, 16, 0.25);
}

body.single-speaker section.profile-head .container .main-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: right;
  gap: 20px;
  flex: 1 0 0;
  color: #F8F7FA;
}

body.single-speaker section.profile-head .container .main-details h2 {
  line-height: 1;
  color: var(--color-7);
}

body.single-speaker section.profile-head .container .main-details p:first-of-type {
  color: var(--color-7);
}

body.single-speaker section.profile-head .container .main-details p {
  color: var(--color-13);
}

body.single-speaker section.profile-head .container .main-details .btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

body.single-speaker section.profile-head .container .sub-details {
  display: flex;
  width: 347px;
  padding-right: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  align-self: stretch;
  border-right: 1px solid var(--color-1);
}

body.single-speaker section.profile-head .container .sub-details .detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--color-13);
}

body.single-speaker section.profile-head .container .sub-details .detail p {
  color: var(--color-13);
}

body.single-speaker section.profile-head .container .sub-details .detail img {
  width: 32px;
}

body.single-speaker section.profile-head .container .sub-details .detail strong {
  font-weight: 800;
}

body.single-speaker section.content {
  display: flex;
  width: 100%;
  padding: 60px 100px 120px 100px;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  background: var(--color-9);
  box-sizing: border-box;
}

body.single-speaker section.content .row {
  display: flex;
  max-width: 1200px;
  align-items: stretch;
  gap: 34px;
  width: 100%;
  justify-content: center;
}

body.single-speaker section.content .row .box {
  display: flex;
  width: 100%;
  padding: 40px 60px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  border-radius: 8px;
  background: var(--color-10);
  flex: 1;
  overflow: hidden;
}

body.single-speaker section.content .row .box h2 {
  color: var(--color-13);
  line-height: 133.33%;
}

body.single-speaker section.content .row .box p {
  color: var(--color-13);
}

body.single-speaker section.content .row .box .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
  flex: 1;
}

body.single-speaker section.content .row .box .gallery .item {
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  background: lightgray no-repeat center center;
  background-size: cover;
}

body.single-speaker section.content .row .box .lectures {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

body.single-speaker section.content .row .box .lectures .lecture {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px 40px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  border-radius: 16px;
  background: #F8F7FA;
  box-sizing: border-box;
}

body.single-speaker section.content .row .box .lectures .lecture.open .arrow svg {
  transform: rotate(180deg);
}

body.single-speaker section.content .row .box .lectures .lecture.open .lecture-desc {
  max-height: 400px;
}

body.single-speaker section.content .row .box .lectures .lecture .lecture-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: right;
}

body.single-speaker section.content .row .box .lectures .lecture .lecture-toggle h3 {
  font-family: 'Assistant', sans-serif;
  color: #141E23;
  text-align: right;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  margin: 0;
}

body.single-speaker section.content .row .box .lectures .lecture .lecture-toggle .arrow {
  margin-right: 10px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

body.single-speaker section.content .row .box .lectures .lecture .lecture-toggle .arrow svg {
  display: block;
  transition: transform 0.3s ease;
  color: #5E605E;
  height: 30px;
  width: auto;
}

body.single-speaker section.content .row .box .lectures .lecture .lecture-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

body.single-speaker section.content .row .box .lectures .lecture .lecture-desc p {
  margin: 10px 0 0;
  color: #5E605E;
  text-align: right;
}

body.single-speaker section.content .row .box .interests {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
  align-self: stretch;
  flex-wrap: wrap;
}

body.single-speaker section.content .row .box .interests .interest {
  display: flex;
  padding: 10px 25px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--color-11);
  background: var(--color-1);
  font-weight: 500;
  color: var(--color-11);
  font-size: 20px;
  line-height: 1;
}

.custom-multiselect .options label {
  color: #141E23;
  font-size: 20px;
  font-weight: 700;
}

@media only screen and (max-width: 800px) {
  body.single-speaker section.profile-head {
    padding: 50px 5vw;
  }

  body.single-speaker section.profile-head .container {
    flex-direction: column;
    padding: 0;
    width: 100%;
    padding-top: 50px;
  }

  body.single-speaker section.profile-head .container .profile-image {
    width: 200px;
  }

  body.single-speaker section.profile-head .container .profile-image .image {
    width: 200px;
    height: 200px;
  }

  body.single-speaker section.profile-head .container .main-details {
    align-items: center;
    text-align: center;
  }

  body.single-speaker section.profile-head .container .sub-details {
    border: 0;
    border-top: 1px solid #dbdae330;
    box-sizing: border-box;
    padding: 0;
    padding-top: 30px;
    text-align: center;
    align-items: flex-start;
    width: 100%;
  }

  body.single-speaker section.profile-head .container .sub-details .detail {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  body.single-speaker section.content {
    padding: 60px 5vw;
    box-sizing: border-box;
  }

  body.single-speaker section.content .row {
    flex-direction: column;
  }

  body.single-speaker section.content .row .box {
    padding: 20px;
    box-sizing: border-box;
  }

  body.single-speaker section.content .row .box .gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  body.single-speaker section.content .row .box .lectures .lecture {
    padding: 10px 20px;
    border-radius: 8px;
  }

  body.single-speaker section.content .row .box .interests {
    gap: 5px;
  }

  body.single-speaker section.content .row .box .interests .interest {
    font-size: 4.62vw;
    padding: 8px 18px;
  }
}

body.signup {
  background: #F8F7FA;
  padding-top: 0;
}

body.signup .role-toggle {
  display: flex;
  gap: 40px;
}

body.signup .role-toggle button {
  background: #5E605E;
  padding: 30px 30px;
  width: 250px;
  line-height: 1;
  box-sizing: border-box;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  opacity: 0.8;
  transition: all 0.3s ease;
  color: var(--color-11);
  font-size: 30px;
  font-family: 'Ploni';
}

body.signup .role-toggle button.active {
  background: #141E23;
  opacity: 1;
}

body.signup .role-toggle button.active .checker {
  border-color: #141E23;
}

body.signup .role-toggle button.active .checker img {
  opacity: 1 !important;
}

body.signup .role-toggle button h3 {
  font-size: 36px;
  line-height: 1;
}

body.signup .role-toggle button p {
  font-weight: 600;
  font-size: 24px;
}

body.signup .role-toggle button p span {
  font-size: 14px;
  display: block;
}

body.signup .role-toggle button:hover {
  opacity: 1;
}

body.signup .role-toggle button:hover .checker img {
  opacity: 0.7;
}

body.signup .role-toggle button .checker {
  background: var(--color-11);
  border: 5px solid #5E605E;
  width: 50px;
  height: 50px;
  top: -20px;
  box-sizing: border-box;
  left: 50%;
  margin-left: -20px;
  position: absolute;
  justify-content: center;
  display: flex;
  align-items: center;
  border-radius: 100%;
  transition: all 0.3s ease;
}

body.signup .role-toggle button .checker img {
  opacity: 0.5;
}

body.signup .role-toggle button .checker img {
  height: 25px;
  width: auto;
  opacity: 0;
  transition: all 0.3s ease;
}

body.signup section.headline {
  background: var(--color-7);
  display: flex;
  width: 100%;
  padding: 80px 100px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  flex-direction: column;
  text-align: center;
  padding-top: 150px;
}

body.signup section.headline h1 {
  font-size: 72px;
  line-height: 1;
}

body.signup section.headline p {
  max-width: 1000px;
}

body.signup section.content {
  display: flex;
  width: 100%;
  padding: 60px 100px 120px 100px;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  min-height: 100vh;
  box-sizing: border-box;
  padding-top: 20px;
}

body.signup section.content .form-container {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  max-width: 1400px;
  box-sizing: border-box;
  width: 100%;
}

body.signup section.content .form-container .speaker-only,
body.signup section.content .form-container .client-only {
  display: contents;
}

body.signup section.content .form-container form {
  display: contents;
}

body.signup section.content .form-container .row {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  align-items: stretch;
  width: 100%;
}

body.signup section.content .form-container .row.plan-row {
  align-items: stretch;
}

body.signup section.content .form-container .row.lecture-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

body.signup section.content .form-container .row .field {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

body.signup section.content .form-container .row .field.profile-field {
  flex-grow: 0;
  align-self: flex-start;
}

body.signup section.content .form-container .row .field .error-msg {
  display: none;
  color: red;
  font-size: 15px;
  margin-top: 4px;
  font-weight: bold;
}

body.signup section.content .form-container .row .field .error-msg:not(:empty) {
  display: block;
}

body.signup section.content .form-container .select-box,
body.signup section.content .form-container .custom-multiselect .options {
  background-color: var(--color-11);
}

body.signup section.content .form-container .row #profileUpload {
  display: none;
}

body.signup section.content .form-container .row .preview {
  height: 140px;
  width: 140px;
  border: 2px solid var(--color-7);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: var(--color-11);
  background-size: cover;
  position: relative;
  background-position: center center;
}

body.signup section.content .form-container .row .preview img {
  width: 60px;
  pointer-events: none;
}

body.signup section.content .form-container .row .preview .reset {
  width: 30px;
  height: 30px;
  background: url("../img/trash.svg"), #DBDAE3;
  background-size: 12px auto;
  background-position: center center;
  background-repeat: no-repeat;
  border: 2px solid var(--color-11);
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  display: none;
  left: 0;
}

body.signup section.content .form-container .row .preview.has-image {
  border: 2px solid var(--color-11);
}

body.signup section.content .form-container .row .preview.has-image img {
  opacity: 0;
}

body.signup section.content .form-container .row .preview.has-image .reset {
  display: block;
}

body.signup section.content .form-container .row .label-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

body.signup section.content .form-container .row label,
.custom-multiselect .options label {
  font-size: 20px;
  font-weight: 700;
}

body.signup section.content .form-container .row label {
  color: var(--color-7);
}

.custom-multiselect .options label {
  color: var(--color-5) !important;
}

body.signup section.content .form-container .row .sublabel {
  color: var(--color-7);
  font-size: 18px;
  font-weight: 500;
}

body.signup section.content .form-container .row h2 {
  padding: 30px 0;
  font-size: 48px;
  line-height: 1;
  color: var(--color-1);
  text-align: center;
}

body.signup section.content .form-container .row .cat-container {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 10px;
}

body.signup section.content .form-container .row .cat-container .cat {
  display: flex;
  padding: 10px 30px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--color-7);
  background: var(--color-11);
  font-size: 20px;
  color: var(--color-5);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

body.signup section.content .form-container .row .cat-container .cat.active {
  background: var(--color-1);
  color: var(--color-11);
  border-color: var(--color-1);
}


body.signup section.content .form-container .row.buttons-container .main-btn.lecturer-btn {
  background-color: var(--color-7);
  color: var(--color-11) !important;
}

body.signup section.content .form-container .row.buttons-container .main-btn.lecturer-btn:hover {
  background-color: var(--color-6);
}

body.signup section.content .form-container .row.buttons-container .main-btn.submit-btn {
  background-color: var(--color-10);
  color: var(--color-7);
}

body.signup section.content .form-container .row.buttons-container .main-btn.submit-btn:hover {
  background-color: var(--color-9);
}


body.signup section.content .form-container .add-lecture {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 16px;
  border: 2px solid #DBDAE3;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 380px;
}

body.signup section.content .form-container .add-lecture p {
  color: #5E605E;
  font-weight: bold;
  transition: all 0.3s;
}

body.signup section.content .form-container .add-lecture svg {
  width: 50px;
  height: auto;
}

body.signup section.content .form-container .add-lecture svg path {
  fill: #5E605E;
  transition: all 0.3s;
}

body.signup section.content .form-container .add-lecture:hover {
  border-color: #5E605E;
  background: var(--color-11);
}

body.signup section.content .form-container .add-lecture:hover p {
  color: #141E23;
}

body.signup section.content .form-container .add-lecture:hover svg path {
  fill: #141E23;
}

body.signup section.content .form-container .lecture-box,
body.signup section.content .form-container .recommender-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 16px;
  border: 2px solid #DBDAE3;
  background: var(--color-11);
  position: relative;
}

body.signup section.content .form-container .lecture-box h3,
body.signup section.content .form-container .recommender-box h3 {
  color: var(--color-7);
  font-size: 24px;
}

body.signup section.content .form-container .lecture-box input,
body.signup section.content .form-container .lecture-box textarea,
body.signup section.content .form-container .lecture-box select,
body.signup section.content .form-container .recommender-box input,
body.signup section.content .form-container .recommender-box textarea,
body.signup section.content .form-container .recommender-box select {
  background: var(--color-11);
}

body.signup section.content .form-container .lecture-box .remove-btn,
body.signup section.content .form-container .recommender-box .remove-btn {
  position: absolute;
  left: 15px;
  top: 15px;
  background: url("../img/trash.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 18px;
  height: 18px;
  opacity: 0.4;
  transition: all 0.3s ease;
}

body.signup section.content .form-container .lecture-box .remove-btn:hover,
body.signup section.content .form-container .recommender-box .remove-btn:hover {
  opacity: 1;
}

body.signup section.content .form-container .lecture-box .price-field,
body.signup section.content .form-container .recommender-box .price-field {
  max-width: 30%;
  position: relative;
}

body.signup section.content .form-container .lecture-box .price-field input,
body.signup section.content .form-container .recommender-box .price-field input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Ctext x='0' y='14' font-size='16' fill='%235E605E'%3E₪%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  background-size: 16px;
  padding-left: 40px;
}

body.signup section.content .form-container .plan {
  background: var(--color-10);
  padding: 50px 30px;
  box-sizing: border-box;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  opacity: 0.8;
  transition: all 0.3s ease;
}

body.signup section.content .form-container .plan.active {
  background: var(--color-7);
  opacity: 1;
}

body.signup section.content .form-container .plan.active .checker {
  border-color: var(--color-7);
}

body.signup section.content .form-container .plan.active .checker img {
  opacity: 1 !important;
}

body.signup section.content .form-container .plan h3 {
  font-size: 36px;
  line-height: 1;
}

body.signup section.content .form-container .plan p {
  font-weight: 600;
  font-size: 24px;
}

body.signup section.content .form-container .plan p span {
  font-size: 14px;
  display: block;
}

body.signup section.content .form-container .plan:hover {
  opacity: 1;
}

body.signup section.content .form-container .plan:hover .checker img {
  opacity: 0.7;
}

body.signup section.content .form-container .plan .checker {
  background: var(--color-11);
  border: 5px solid var(--color-10);
  width: 50px;
  height: 50px;
  top: -20px;
  box-sizing: border-box;
  left: 50%;
  margin-left: -20px;
  position: absolute;
  justify-content: center;
  display: flex;
  align-items: center;
  border-radius: 100%;
  transition: all 0.3s ease;
}

body.signup section.content .form-container .plan .checker img {
  opacity: 0.5;
}

body.signup section.content .form-container .plan .checker img {
  height: 25px;
  width: auto;
  opacity: 0;
  transition: all 0.3s ease;
}

body.signup section.content input[type=submit],
body.signup section.content .lecturer-btn {
  margin: 0 auto;
}

body.signup section.content .buttons-container {
  padding-top: 30px;
}

.has-error .text-input {
  border-color: red;
}

@media only screen and (max-width: 800px) {
  body.signup section.headline {
    padding: 60px 40px;
    padding-top: 90px;
  }

  body.signup section.content {
    padding: 60px 5vw;
    padding-top: 20px;
  }

  body.signup section.content .form-container {
    padding: 20px 0;
  }

  body.signup section.content .form-container .add-lecture {
    min-height: 120px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    border-color: #5e605e;
  }

  body.signup section.content .form-container .add-lecture svg {
    width: 30px;
  }

  body.signup section.content .form-container .lecture-box .price-field {
    max-width: 44%;
  }

  body.signup section.content .form-container .lecture-box .price-field input {
    background-size: 20px;
  }

  body.signup section.content .form-container .row {
    flex-direction: column;
    gap: 20px;
  }

  body.signup section.content .form-container .row .field.profile-field {
    width: 100%;
  }

  body.signup section.content .form-container .row .cat-container {
    gap: 15px;
  }

  body.signup section.content .form-container .row .cat-container .cat {
    font-size: 4.62vw;
    padding: 8px 20px;
  }

  body.signup section.content .form-container .row .preview {
    align-self: center;
    width: 180px;
    height: 180px;
  }

  body.signup section.content .form-container .row .preview .reset {
    background-size: 15px auto;
    width: 40px;
    height: 40px;
  }

  body.signup section.content .form-container .row h2 {
    font-size: 8.21vw;
    padding: 10px 0;
  }

  body.signup section.content .form-container .row.lecture-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.signup section.content .form-container .plan-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  body.signup section.content .form-container .plan-row .plan {
    padding: 50px 20px;
    padding-bottom: 40px;
  }

  body.signup section.content .form-container .plan-row .plan h3 {
    font-size: 24px;
  }

  body.signup section.content .form-container .plan-row p {
    font-size: 4.62vw;
  }
}

body.login main {
  background: var(--color-11);
  display: flex;
  padding: 80px;
  justify-content: center;
  align-items: center;
  min-height: 53vh;
}

body.login .page-container {
  max-width: 800px;
  text-align: center;
  color: var(--color-13);
}

body.login .page-container a {
  text-decoration: underline;
}

body.login .page-container p {
  color: var(--color-13);
}

body.login .page-container form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

body.login .page-container .field {
  display: flex;
  gap: 4px;
  flex-direction: column;
}

body.login .page-container .field input {
  text-align: right;
}

body.login .page-container .field label {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-7);
}

body.login .page-container h1,
body.login .page-container h2,
body.login .page-container h3 {
  color: var(--color-1);
}

body.login .login-error {
  background: #ffe0e0;
  color: #c00;
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  text-align: center;
}

body.search {
  background: #F8F7FA;
  padding-top: 0;
}

body.search section.headline {
  background: var(--color-7);
  display: flex;
  width: 100%;
  padding: 80px 100px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  flex-direction: column;
  text-align: center;
  padding-top: 150px;
}

body.search section.headline h1 {
  font-size: 72px;
  line-height: 1;
}

body.search section.headline p {
  max-width: 1000px;
}

body.search section.searcher {
  display: flex;
  width: 100%;
  padding: 30px 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 37px;
  background: var(--color-1);
  box-sizing: border-box;
}

body.search section.searcher .form-container {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 1400px;
  box-sizing: border-box;
  width: 100%;
}

body.search section.searcher .form-container form {
  display: contents;
}

body.search section.searcher .form-container .row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

body.search section.searcher .form-container .row .field {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

body.search section.searcher .form-container .row .field .error-msg {
  display: none;
  color: red;
  font-size: 15px;
  margin-top: 4px;
  font-weight: bold;
}

body.search section.searcher .form-container .row .field .error-msg:not(:empty) {
  display: block;
}

body.search section.searcher .form-container .row .field>label {
  color: var(--color-11);
  font-size: 20px;
  font-weight: 700;
}

body.search section.searcher .form-container .row h2 {
  font-size: 48px;
  line-height: 1;
  color: #141E23;
  text-align: center;
  width: 100%;
  padding: 0;
  padding-bottom: 10px;
}

body.search section.searcher .form-container .cat-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 10px;
}

body.search section.searcher .form-container .cat-container .cat {
  display: flex;
  padding: 10px 30px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--color-11);
  font-size: 20px;
  color: var(--color-11);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

body.search section.searcher .form-container .cat-container .cat.active {
  background: var(--color-11);
  color: #141E23;
  border-color: var(--color-11);
}

body.search section.searcher .form-container input:not([type="checkbox"]),
body.search section.searcher .form-container select {
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
  background: var(--color-14);
  text-align: right;
}

body.search section.searcher .form-container input[type=date],
body.search section.searcher .form-container select[type=date] {
  width: 100%;
  text-align: right;
  display: block;
}

body.search section.searcher .form-container select.text-input,
body.search section.searcher .form-container .text-input[type="select"],
body.search section.searcher .form-container .text-input.select-box {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23141E23' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 24px;
  padding-left: 40px;
  cursor: pointer;
}

/* Limit dropdown height to show max 10 items */
body.search section.searcher .form-container select.text-input {
  max-height: 300px;
  overflow-y: auto;
}

/* Custom scrollbar for webkit browsers */
body.search section.searcher .form-container select.text-input::-webkit-scrollbar {
  width: 8px;
}

body.search section.searcher .form-container select.text-input::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

body.search section.searcher .form-container select.text-input::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

body.search section.searcher .form-container select.text-input::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body.search section.searcher .form-container input[type=submit],
body.search section.searcher .form-container button.submit-btn {
  padding: 12px 20px;
  background: var(--color-11);
  color: #141E23;
  border: none;
  text-align: center;
  border-radius: 999px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  width: 200px;
  margin: 0 auto;
}

body.search section.content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  flex-shrink: 0;
  box-sizing: border-box;
  overflow: hidden;
}

body.search section.content .results-container {
  box-sizing: border-box;
  display: flex;
  max-width: 1400px;
  width: 100%;
  padding: 10px;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

body.search section.content .results-container .msg {
  color: #141E23;
  font-weight: 600;
  font-size: 24px;
}

body.search section.content .results-container .item {
  display: flex;
  padding: 20px 20px 20px 45px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border: 2px solid var(--color-8);
  background: var(--color-11);
  gap: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px 0px rgba(38, 27, 54, 0.1);
  position: relative;
  cursor: pointer;
  flex: 1;
  max-width: 410px;
  min-width: 336px;
}

body.search section.content .results-container .item .checkbox {
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  border: 2px solid var(--color-8);
  text-align: center;
}

body.search section.content .results-container .item .checkbox svg {
  transition: all 0.3s ease;
  opacity: 0;
  width: 13px;
  height: auto;
  pointer-events: none;
}

body.search section.content .results-container .item .profile-image {
  width: 150px;
  height: 150px;
  background: lightgray;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 100%;
}

body.search section.content .results-container .item .desc {
  display: flex;
  justify-content: space-between;
  align-self: stretch;
  flex-direction: column;
  flex: 1;
  color: var(--color-7);
  gap: 10px;
}

body.search section.content .results-container .item .desc .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

body.search section.content .results-container .item .desc .text h3 {
  font-family: 'Assistant', sans-serif;
  color: var(--color-7);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

body.search section.content .results-container .item .desc .text p {
  color: var(--color-7);
  font-size: 16px;
  font-weight: 600;
}

body.search section.content .results-container .item .btns .sub-btn.invert {
  background-color: var(--color-7);
}

body.search section.content .results-container .item:hover .checkbox svg {
  opacity: 0.8;
}

body.search section.content .results-container .item.selected {
  border-color: var(--color-11);
  background: var(--color-1);
}

body.search section.content .results-container .item.selected .btns .sub-btn.invert {
  background-color: var(--color-1);
}

body.search section.content .results-container .item.selected .desc .text p,
body.search section.content .results-container .item.selected .desc .text h3 {
  color: var(--color-11);
}

body.search section.content .results-container .item.selected .sub-btn {
  color: var(--color-11);
  border-color: var(--color-11);
}

body.search section.content .results-container .item.selected .sub-btn:hover {
  background: var(--color-11);
  color: var(--color-11);
}

body.search section.content .results-container .item.selected .checkbox {
  justify-content: center;
  background: var(--color-11);
}

body.search section.content .results-container .item.selected .checkbox svg {
  opacity: 1;
}

body.search section.content .btns {
  display: flex;
  gap: 20px;
}

body.search section.content .results-buttons {
  width: 100%;
  background-color: var(--color-1);
  justify-content: center;
  padding: 50px 20px;
}

body.search section.content .btns .tender-btn.disabled {
  pointer-events: none;
}

@media only screen and (max-width: 800px) {
  body.search section.headline {
    padding: 60px 40px;
    padding-top: 90px;
  }

  body.search section.searcher {
    padding: 50px 5vw;
  }

  body.search section.searcher .form-container {
    padding: 0;
  }

  body.search section.searcher .form-container .cat-container {
    gap: 10px;
  }

  body.search section.searcher .form-container .cat-container .cat {
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 700;
  }

  body.search section.searcher .form-container .row {
    flex-direction: column;
  }

  body.search section.searcher .form-container .row .field {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  body.search section.content .results-container {
    gap: 20px;
    padding-top: 30px;
  }

  body.search section.content .results-container .item {
    gap: 20px;
    padding: 20px 20px 20px 45px;
    min-width: 200px;
  }

  body.search section.content .results-container .item .checkbox {
    width: 20px;
    height: 20px;
    top: 7px;
    left: 7px;
  }

  body.search section.content .results-container .item .checkbox svg {
    width: 13px;
    opacity: 0;
  }

  body.search section.content .results-container .item .desc {
    padding: 0;
  }

  body.search section.content .results-container .item .desc .text {
    padding-left: 25px;
  }

  body.search section.content .results-container .item .desc .text h3 {
    font-size: 20px;
  }

  body.search section.content .results-container .item .btns a {
    width: 100%;
  }

  body.search section.content .results-container .item .btns .sub-btn {
    font-size: 15px;
    width: 100%;
    padding: 8px 20px;
  }

  body.search section.content .results-container .item .profile-image {
    width: 100px;
    height: 100px;
  }
}

body.account {
  background: #F8F7FA;
}

body.account .layout {
  display: flex;
  align-items: stretch;
}

body.account .tab-content {
  display: none;
  height: 100%;
}

body.account .tab-content p {
  color: var(--color-7);
}

body.account .tab-content.active {
  display: block;
}

body.account .headline h2 {
  padding: 30px 0;
  font-size: 48px;
  line-height: 1;
  color: #141E23;
  text-align: center;
}

body.account .sidebar {
  width: 480px;
}

body.account .sticky-inner {
  position: sticky;
  top: 81px;
  /* Adjust according to your header height */
}

body.account .main {
  flex: 1;
}

body.account .tabs {
  position: sticky;
  top: 40px;
  /* adjust for your header height */
  align-self: flex-start;
  /* if you're using flex */
}

body.account .tabs li a {
  width: 100%;
}

body.account .sidebar {
  background: var(--color-11);
  border-left: 1px solid #DBDAE3;
  box-sizing: border-box;
}

body.account .sidebar ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  text-align: right;
}

body.account .sidebar ul li {
  font-size: 20px;
  color: #141E23;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 30px;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  align-self: stretch;
  border-bottom: 1px solid #DBDAE3;
  background: var(--color-11);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.account .sidebar ul li img {
  height: 32px;
  transition: all 0.3s ease;
}

body.account .sidebar ul li:hover {
  background: #DBDAE3;
}

body.account .sidebar ul li.active {
  color: var(--color-11);
  border-color: var(--color-1);
  background: var(--color-1);
}

body.account .sidebar ul li.active img {
  filter: grayscale(100%) brightness(10);
}

body.account .main {
  background: #F8F7FA;
  width: 100%;
  flex: 1;
  min-height: 80vh;
}

body.account .form-container {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  max-width: 1000px;
  box-sizing: border-box;
  width: 100%;
}

body.account form {
  display: contents;
}

body.account .row {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
  align-items: flex-start;
  align-items: stretch;
  width: 100%;
}

body.account .row.buttons-container {
  justify-content: center;
  flex-wrap: wrap;
}

@media only screen and (max-width: 800px) {

  body.account .row.buttons-container .main-btn.submit-btn,
  body.account .row.buttons-container .main-btn.lecturer-btn {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  body.account .cta-container {
    width: 100%;
  }
}

body.account .row.plan-row {
  align-items: stretch;
}

body.account .row.lecture-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

body.account .row .gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
  flex: 1;
}

body.account .row .gallery-preview .gallery-thumb {
  width: 100%;
  text-align: center;
  font-size: 14px;
  position: relative;
  aspect-ratio: 1 / 1;
}

body.account .row .gallery-preview .gallery-thumb .remove-wrap {
  width: 30px;
  height: 30px;
  background: url("../img/trash.svg"), #DBDAE3;
  background-size: 12px auto;
  background-position: center center;
  background-repeat: no-repeat;
  border: 2px solid var(--color-11);
  border-radius: 100%;
  position: absolute;
  bottom: 10px;
  font-size: 0;
  left: 10px;
}

body.account .row .gallery-preview .gallery-thumb .thumb {
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: lightgray no-repeat center center;
  background-size: cover;
}

body.account .row .cta-container {
  align-self: center;
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.account .row .gallery-thumb.add-thumb .thumb.plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #5E605E;
  cursor: pointer;
  box-sizing: border-box;
  border: 2px solid #5E605E;
  background: none;
}

body.account .row .gallery-thumb .remove-wrap {
  margin-top: 5px;
  display: block;
  font-size: 13px;
}

body.account .row #galleryAddTrigger {
  display: flex;
}

body.account .row .add-lecture {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 16px;
  border: 2px solid #DBDAE3;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 380px;
}

body.account .row .add-lecture p {
  color: #5E605E;
  font-weight: bold;
  transition: all 0.3s;
}

body.account .row .add-lecture svg {
  width: 50px;
  height: auto;
}

body.account .row .add-lecture svg path {
  fill: #5E605E;
  transition: all 0.3s;
}

body.account .row .add-lecture:hover {
  border-color: #5E605E;
  background: var(--color-11);
}

body.account .row .add-lecture:hover p {
  color: #141E23;
}

body.account .row .add-lecture:hover svg path {
  fill: #141E23;
}

body.account .row .lecture-box,
body.account .row .recommender-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 16px;
  border: 2px solid #DBDAE3;
  background: var(--color-11);
  position: relative;
}

body.account .row .lecture-box h3,
body.account .row .recommender-box h3 {
  color: #141E23;
  font-size: 24px;
}

body.account .row .lecture-box input,
body.account .row .lecture-box textarea,
body.account .row .lecture-box select,
body.account .row .recommender-box input,
body.account .row .recommender-box textarea,
body.account .row .recommender-box select {
  background: #f7f7f7;
}

body.account .row .lecture-box .remove-btn,
body.account .row .recommender-box .remove-btn {
  position: absolute;
  left: 15px;
  top: 15px;
  background: url("../img/trash.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 18px;
  height: 18px;
  opacity: 0.4;
  transition: all 0.3s ease;
}

body.account .row .lecture-box .remove-btn:hover,
body.account .row .recommender-box .remove-btn:hover {
  opacity: 1;
}

body.account .row .lecture-box .price-field,
body.account .row .recommender-box .price-field {
  max-width: 30%;
  position: relative;
}

body.account .row .lecture-box .price-field input,
body.account .row .recommender-box .price-field input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Ctext x='0' y='14' font-size='16' fill='%235E605E'%3E₪%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  background-size: 16px;
  padding-left: 40px;
}

body.account .row .field {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

body.account .row .field.profile-field {
  flex-grow: 0;
  align-self: flex-start;
}

body.account .row .field .error-msg {
  display: none;
  color: red;
  font-size: 15px;
  margin-top: 4px;
  font-weight: bold;
}

body.account .row .field .error-msg:not(:empty) {
  display: block;
}

body.account .row .profile-field #profileUpload {
  display: none;
}

body.account .row .profile-field .preview {
  height: 140px;
  width: 140px;
  border: 2px solid var(--color-7);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: var(--color-11);
  background-size: cover;
  position: relative;
  background-position: center center;
}

body.account .row .profile-field .preview img {
  width: 60px;
  pointer-events: none;
  display: none;
}

body.account .row .profile-field .preview .reset {
  width: 30px;
  height: 30px;
  background: url("../img/trash.svg"), #DBDAE3;
  background-size: 12px auto;
  background-position: center center;
  background-repeat: no-repeat;
  border: 2px solid var(--color-11);
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  display: none;
  left: 0;
}

body.account .row .profile-field .preview.has-image {
  border: 2px solid var(--color-11);
}

body.account .row .profile-field .preview.has-image img {
  opacity: 0;
}

body.account .row .profile-field .preview.has-image .reset {
  display: block;
}

body.account .row .field .custom-multiselect .select-box {
  background-color: var(--color-11);
}

body.account .row .label-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

body.account .row label {
  color: var(--color-7);
  font-size: 20px;
  font-weight: 700;
}

body.account .row .sublabel {
  color: var(--color-7);
  font-size: 18px;
  font-weight: 500;
}

body.account .row h2 {
  padding: 30px 0;
  font-size: 48px;
  line-height: 1;
  color: var(--color-1);
  text-align: center;
}

body.account .row .cat-container {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 10px;
}

body.account .row .cat-container .cat {
  display: flex;
  padding: 10px 30px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--color-7);
  background: var(--color-11);
  font-size: 20px;
  color: var(--color-5);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

body.account .row .cat-container .cat.active {
  background: var(--color-1);
  color: var(--color-11);
  border-color: var(--color-1);
}

body.account section.content {
  display: flex;
  width: 100%;
  padding: 60px 100px 120px 100px;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  gap: 34px;
  flex-shrink: 0;
  box-sizing: border-box;
  overflow: hidden;
}

body.account .main-container {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1000px;
  box-sizing: border-box;
  width: 100%;
}

body.account .main-container h2 {
  padding: 30px 0;
  font-size: 48px;
  line-height: 1;
  color: var(--color-1);
  text-align: right;
}

body.account .tenders-container {
  display: flex;
  width: 100%;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

body.account .tenders-container .tender.locked {
  border: 1px dashed #ccc;
  padding: 20px;
  text-align: center;
}

body.account .tenders-container .tender.locked .main-btn {
  color: white !important;
  text-decoration: none;
}

body.account .tenders-container .tender {
  display: flex;
  padding: 30px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  gap: 10px;
  align-self: stretch;
  border: 1px solid #DBDAE3;
  background: #F8F7FA;
  border-radius: 8px;
  background: var(--color-11);
}

body.account .tenders-container .tender h3 {
  color: var(--color-7);
}

body.account .tenders-container .tender .title {
  display: flex;
  gap: 10px;
}

body.account .tenders-container .tender .title p {
  font-size: 30px;
  color: var(--color-7);
  font-weight: 800;
  /*           filter: blur(7px); */
}

body.account .tenders-container .tender:has(.accept-btn[data-is-free-plan="true"]) .title p {
  filter: blur(7px);
  pointer-events: none;
  user-select: none;
}

body.account .tenders-container .tender .title span {
  font-size: 20px;
  color: #5E605E;
  font-weight: 600;
}

body.account .tenders-container .tender .meta {
  padding-bottom: 10px;
  gap: 15px;
  justify-content: flex-start;
  flex-direction: row;
  display: flex;
}

body.account .tenders-container .tender .meta p {
  font-size: 16px;
  color: #5E605E;
}

body.account .tenders-container .tender .details {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
}

body.account .tenders-container .tender .details .detail {
  display: flex;
  padding: 8px 20px;
  padding-right: 13px;
  box-sizing: border-box;
  border-radius: 6px;
  background: var(--color-7);
  gap: 5px;
  justify-content: center;
  align-items: center;
}

body.account .tenders-container .tender .details .detail img {
  height: 26px;
}

body.account .tenders-container .tender .details .detail span {
  font-size: 16px;
  color: var(--color-11);
  font-weight: 700;
}

body.account .tenders-container .tender .btns {
  display: flex;
  gap: 15px;
  padding-top: 20px;
}

body.account .tenders-container .tender .btns .status-msg {
  background: #DBDAE3;
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 700;
  color: #141E23;
}

body.account .tenders-container .tender .btns .status-msg button,
body.account .tenders-container .tender .btns .status-msg a {
  display: inline-block;
  width: auto;
  margin: 0 10px;
  text-decoration: underline;
}

body.account .tenders-container .tender .btns .status-msg button:last-child,
body.account .tenders-container .tender .btns .status-msg a:last-child {
  margin-left: 0;
}

body.account .tenders-container .tender .btns .status-msg.accepted {
  background-color: #e0ffe0;
}

body.account .tenders-container .tender .btns .status-msg.rejected {
  background-color: #ffe0e0;
}

body.account .tenders-container .tender .btns .accept-btn {
  border-radius: 40px;
  border: 2px solid #247638;
  color: #247638;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 8px;
  font-weight: 700;
  padding: 8px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.account .tenders-container .tender .btns .accept-btn svg {
  height: 32px;
}

body.account .tenders-container .tender .btns .accept-btn svg path {
  fill: #247638;
  transition: all 0.3s ease;
}

body.account .tenders-container .tender .btns .accept-btn span {
  color: #247638;
  flex: 1;
  transition: all 0.3s ease;
}

body.account .tenders-container .tender .btns .accept-btn:hover {
  background: #247638;
}

body.account .tenders-container .tender .btns .accept-btn:hover svg path {
  fill: var(--color-11);
}

body.account .tenders-container .tender .btns .accept-btn:hover span {
  color: var(--color-11);
}

body.account .tenders-container .tender .btns .reject-btn {
  border-radius: 40px;
  border: 2px solid #E42727;
  color: #247638;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 8px;
  font-weight: 700;
  padding: 8px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.account .tenders-container .tender .btns .reject-btn svg {
  height: 32px;
}

body.account .tenders-container .tender .btns .reject-btn svg path {
  fill: #E42727;
  transition: all 0.3s ease;
}

body.account .tenders-container .tender .btns .reject-btn span {
  color: #E42727;
  flex: 1;
  transition: all 0.3s ease;
}

body.account .tenders-container .tender .btns .reject-btn:hover {
  background: #E42727;
}

body.account .tenders-container .tender .btns .reject-btn:hover svg path {
  fill: var(--color-11);
}

body.account .tenders-container .tender .btns .reject-btn:hover span {
  color: var(--color-11);
}

body.account .tenders-container .tender .offers-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
  flex-wrap: wrap;
}

body.account .tenders-container .tender .offers-section h4 {
  font-size: 24px;
  color: var(--color-7);
  margin-bottom: 10px;
  width: 100%;
}

body.account .tenders-container .tender .offers-section .offer {
  border: 1px solid var(--color-8);
  border-radius: 8px;
  background: var(--color-10);
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  gap: 10px;
  box-sizing: border-box;
  position: relative;
  flex: 1;
  min-width: 350px;
}

body.account .tenders-container .tender .offers-section .offer .offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

body.account .tenders-container .tender .offers-section .offer .offer-header p {
  margin: 0;
  font-size: 18px;
  color: var(--color-11);
  font-weight: 700;
}

body.account .tenders-container .tender .offers-section .offer .offer-header p strong {
  font-weight: 800;
}

body.account .tenders-container .tender .offers-section .offer .toggle-details-btn {
  margin-top: 10px;
  background: var(--color-1);
  border: 0;
  border-radius: 40px;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-11);
  cursor: pointer;
  text-align: center;
  align-self: flex-start;
  transition: background 0.3s ease;
  box-sizing: border-box;
}

body.account .tenders-container .tender .offers-section .offer .toggle-details-btn:hover {
  background: #e33311;
}

body.account .tenders-container .tender .offers-section .offer .contact-speaker {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DBDAE3;
}

body.account .tenders-container .tender .offers-section .offer .contact-speaker h4 {
  font-size: 22px;
  color: var(--color-7);
  margin-bottom: 15px;
}

body.account .tenders-container .tender .offers-section .offer .contact-speaker .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-7);
  color: var(--color-11);
  font-weight: bold;
  font-size: 16px;
  padding: 12px 20px;
  width: auto;
  border-radius: 40px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background 0.3s ease;
  margin-left: 10px;
}

body.account .tenders-container .tender .offers-section .offer .contact-speaker .btn img.contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

body.account .tenders-container .tender .offers-section .offer .contact-speaker .btn:hover {
  background: #050809;
}

body.account .tenders-container .tender .offers-section .offer .contact-speaker .btn span {
  color: var(--color-11);
  font-weight: bold;
  font-size: 16px;
}

body.account .tenders-container .tender .offers-section .offer .offer-details {
  background: #DBDAE3;
  border-radius: 6px;
  padding: 20px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  color: #5E605E;
  margin-top: 10px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  background: var(--color-11);
}

body.account .tenders-container .tender .offers-section .offer .offer-details p {
  margin: 5px 0;
  color: #5E605E;
}

body.account .tenders-container .tender .offers-section .offer .offer-details p strong {
  color: #141E23;
}

body.account .tenders-container .tender .offers-section .offer .offer-details .offer-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

body.account .tenders-container .tender .offers-section .offer .offer-details .offer-actions .approve-offer-btn,
body.account .tenders-container .tender .offers-section .offer .offer-details .offer-actions .reject-offer-btn {
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: var(--color-11);
}

body.account .tenders-container .tender .offers-section .offer .offer-details .offer-actions .approve-offer-btn:hover,
body.account .tenders-container .tender .offers-section .offer .offer-details .offer-actions .reject-offer-btn:hover {
  color: var(--color-11);
}

body.account .tenders-container .tender .offers-section .offer .offer-details .offer-actions .approve-offer-btn {
  border-color: #247638;
  color: #247638;
}

body.account .tenders-container .tender .offers-section .offer .offer-details .offer-actions .approve-offer-btn:hover {
  background: #247638;
}

body.account .tenders-container .tender .offers-section .offer .offer-details .offer-actions .reject-offer-btn {
  border-color: #E42727;
  color: #E42727;
}

body.account .tenders-container .tender .offers-section .offer .offer-details .offer-actions .reject-offer-btn:hover {
  background: #E42727;
}

body.account .tenders-container .tender .offers-section .offer .offer-details {
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  max-height: 0;
}

body.account .tenders-container .tender .offers-section .offer.accepted {
  border: 2px solid var(--color-8);
  background: var(--color-10);
}

body.account .tenders-container .tender .offers-section .offer.rejected {
  border: 2px solid #E42727;
  background: #ffe0e0;
}

body.account .tenders-container .tender .offers-section .offer.offered {
  background: #141E23;
}

body.account .tenders-container .tender .offers-section .offer.offered .offer-header p {
  color: var(--color-11);
}

body.account .account-settings-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

body.account .account-settings-container .settings-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 40px;
  border: 1px solid var(--color-8);
  border-radius: 8px;
  background: var(--color-10);
}

body.account .account-settings-container .settings-box .title p {
  font-size: 30px;
  color: var(--color-11);
  font-weight: 800;
}

body.account .account-settings-container .settings-box .title p span {
  display: block;
  font-size: 20px;
  color: var(--color-11);
  font-weight: 600;
}

body.account .account-settings-container .settings-box .settings-btns {
  display: flex;
  gap: 15px;
  padding-top: 20px;
}

body.account .account-settings-container .settings-box .settings-btns .status-msg {
  background: #DBDAE3;
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 700;
  color: #141E23;
}

body.account .account-settings-container .settings-box .settings-btns .status-msg button,
body.account .account-settings-container .settings-box .settings-btns .status-msg a {
  display: inline-block;
  width: auto;
  margin: 0 10px;
  text-decoration: underline;
}

body.account .account-settings-container .settings-box .settings-btns .status-msg button:last-child,
body.account .account-settings-container .settings-box .settings-btns .status-msg a:last-child {
  margin-left: 0;
}

body.account .account-settings-container .settings-box .settings-btns .status-msg.accepted {
  background-color: #e0ffe0;
}

body.account .account-settings-container .settings-box .settings-btns .status-msg.rejected {
  background-color: #ffe0e0;
}

body.account .account-settings-container .settings-box .settings-btns .accept-btn {
  border-radius: 40px;
  border: 2px solid #247638;
  color: #247638;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 8px;
  font-weight: 700;
  padding: 8px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.account .account-settings-container .settings-box .settings-btns .accept-btn svg {
  height: 32px;
}

body.account .account-settings-container .settings-box .settings-btns .accept-btn svg path {
  fill: #247638;
  transition: all 0.3s ease;
}

body.account .account-settings-container .settings-box .settings-btns .accept-btn span {
  color: #247638;
  flex: 1;
  transition: all 0.3s ease;
}

body.account .account-settings-container .settings-box .settings-btns .accept-btn:hover {
  background: #247638;
}

body.account .account-settings-container .settings-box .settings-btns .accept-btn:hover svg path {
  fill: var(--color-11);
}

body.account .account-settings-container .settings-box .settings-btns .accept-btn:hover span {
  color: var(--color-11);
}

body.account .account-settings-container .settings-box .settings-btns .reject-btn {
  border-radius: 40px;
  border: 2px solid var(--color-11);
  color: var(--color-11) !important;
  background-color: var(--color-1);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 8px;
  font-weight: 700;
  padding: 8px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.account .account-settings-container .settings-box .settings-btns .reject-btn svg {
  height: 32px;
}

body.account .account-settings-container .settings-box .settings-btns .reject-btn svg path {
  fill: #E42727;
  transition: all 0.3s ease;
}

body.account .account-settings-container .settings-box .settings-btns .reject-btn span {
  color: #E42727;
  flex: 1;
  transition: all 0.3s ease;
}

body.account .account-settings-container .settings-box .settings-btns .reject-btn:hover {
  background: var(--color-2);
}

body.account .account-settings-container .settings-box .settings-btns .reject-btn:hover svg path {
  fill: var(--color-11);
}

body.account .account-settings-container .settings-box .settings-btns .reject-btn:hover span {
  color: var(--color-11);
}

body.account .threads-list .thread-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid #DBDAE3;
  background: var(--color-11);
  box-sizing: border-box;
  width: 100%;
}

body.account .threads-list .thread-item .thread-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.account .threads-list .thread-item .thread-header .profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

body.account .threads-list .thread-item .thread-header .thread-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 5px;
}

body.account .threads-list .thread-item .thread-header .thread-info .thread-name {
  font-weight: 700;
  color: var(--color-7);
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.account .threads-list .thread-item .thread-header .thread-info .thread-name span {
  font-weight: 500;
  font-size: 20px;
}

body.account .threads-list .thread-item .thread-header .thread-info .thread-preview {
  font-size: 20px;
  color: var(--color-7);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

body.account .threads-list .thread-item:hover {
  background: var(--color-3);
}

body.account .threads-list .thread-item.active {
  background: var(--color-1);
}

body.account .threads-list .thread-item.active .thread-name,
body.account .threads-list .thread-item.active .thread-meta {
  color: var(--color-11);
}

body.account .chat-area {
  height: 100%;
  display: none;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
}

body.account .chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 600px;
  overflow-y: auto;
  padding: 20px;
  border-radius: 8px;
}

body.account .chat-messages .back-button {
  background: none;
  border: none;
  color: var(--color-1);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
  cursor: pointer;
  text-align: right;
}

body.account .message {
  max-width: 70%;
  padding: 15px 20px;
  border-radius: 16px;
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-size: 20px;
  word-break: break-word;
}

body.account .message.sent {
  background: var(--color-1);
  color: var(--color-11);
  align-self: flex-start;
}

body.account .message.received {
  background: var(--color-11);
  color: #141E23;
  align-self: flex-end;
}

body.account .message .message-time {
  font-size: 12px;
  margin-top: 5px;
  opacity: 0.7;
}

body.account .chat-input {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  background: var(--color-11);
  box-sizing: border-box;
  padding: 20px;
  border-top: 1px solid #DBDAE3;
}

body.account .chat-input textarea {
  flex: 1;
  height: 60px;
  resize: none;
  border-radius: 8px;
  padding: 10px;
  color: #141E23;
  font-size: 20px;
  font-weight: 500;
}

body.account .chat-input button {
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--color-1);
  color: var(--color-11);
  font-weight: bold;
  cursor: pointer;
  width: 80px;
  transition: background 0.3s;
  text-align: center;
  font-size: 20px;
}

body.account .chat-input button img {
  vertical-align: middle;
}

body.account .chat-input button:hover {
  background: #e33311;
}

@media only screen and (max-width: 800px) {
  body.account footer {
    padding-bottom: 120px;
  }

  body.account .main-container {
    padding: 0;
  }

  body.account .main-container .tenders-container .tender,
  body.account .main-container .tenders-container .settings-box,
  body.account .main-container .account-settings-container .tender,
  body.account .main-container .account-settings-container .settings-box {
    padding: 20px;
  }

  body.account .main-container .tenders-container .tender .offers-section .offer,
  body.account .main-container .tenders-container .settings-box .offers-section .offer,
  body.account .main-container .account-settings-container .tender .offers-section .offer,
  body.account .main-container .account-settings-container .settings-box .offers-section .offer {
    min-width: 200px;
  }

  body.account .main-container .tenders-container .tender .title,
  body.account .main-container .tenders-container .settings-box .title,
  body.account .main-container .account-settings-container .tender .title,
  body.account .main-container .account-settings-container .settings-box .title {
    flex-direction: column;
    gap: 0;
    line-height: 1;
    padding-bottom: 20px;
  }

  body.account .main-container .tenders-container .tender .btns,
  body.account .main-container .tenders-container .tender .settings-btns,
  body.account .main-container .tenders-container .settings-box .btns,
  body.account .main-container .tenders-container .settings-box .settings-btns,
  body.account .main-container .account-settings-container .tender .btns,
  body.account .main-container .account-settings-container .tender .settings-btns,
  body.account .main-container .account-settings-container .settings-box .btns,
  body.account .main-container .account-settings-container .settings-box .settings-btns {
    flex-direction: column;
  }

  body.account .sidebar {
    position: fixed;
    width: 100%;
    z-index: 99;
    bottom: 0;
    border: 0;
    left: 0;
    border-top: 1px solid #DBDAE3;
  }

  body.account .sidebar ul {
    flex-direction: row;
    position: static;
    width: 100%;
  }

  body.account .sidebar ul li {
    text-align: center;
    justify-content: center;
    flex: 1;
    box-sizing: border-box;
    border: 0;
    border-left: 1px solid #DBDAE3;
  }

  body.account .sidebar ul li span {
    display: none;
  }

  body.account .sidebar ul li:last-of-type {
    border: 0;
  }

  body.account section.content {
    padding: 60px 5vw;
    padding-top: 20px;
    gap: 0;
  }

  body.account section.content .form-container {
    padding: 20px 0;
  }

  body.account section.content .form-container .gallery-thumb.add-thumb {
    aspect-ratio: auto;
  }

  body.account section.content .form-container .gallery-thumb.add-thumb .thumb.plus {
    min-height: 120px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    aspect-ratio: auto;
  }

  body.account section.content .form-container .add-lecture {
    min-height: 120px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    border-color: #5e605e;
  }

  body.account section.content .form-container .add-lecture svg {
    width: 30px;
  }

  body.account section.content .form-container .lecture-box .price-field {
    max-width: 44%;
  }

  body.account section.content .form-container .lecture-box .price-field input {
    background-size: 20px;
  }

  body.account section.content .form-container .row {
    flex-direction: column;
    gap: 20px;
  }

  body.account section.content .form-container .row .field.profile-field {
    width: 100%;
  }

  body.account section.content .form-container .row .cat-container {
    gap: 15px;
  }

  body.account section.content .form-container .row .cat-container .cat {
    font-size: 4.62vw;
    padding: 8px 20px;
  }

  body.account section.content .form-container .row .preview {
    align-self: center;
    width: 180px;
    height: 180px;
  }

  body.account section.content .form-container .row .preview .reset {
    background-size: 15px auto;
    width: 40px;
    height: 40px;
  }

  body.account section.content .form-container .row h2 {
    font-size: 8.21vw;
    padding: 10px 0;
  }

  body.account section.content .form-container .row.lecture-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.account section.content .form-container .plan-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  body.account section.content .form-container .plan-row .plan {
    padding: 50px 20px;
    padding-bottom: 40px;
  }

  body.account section.content .form-container .plan-row .plan h3 {
    font-size: 24px;
  }

  body.account section.content .form-container .plan-row p {
    font-size: 4.62vw;
  }
}

/*# sourceMappingURL=style.css.map */

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.row.additional-descr,
.row.variables {
  margin-top: 30px;
}


body.signup section.content .form-container form:not(.is-client) .field.client-title,
body.signup section.content .form-container form.is-client .field.nanny-title{
  display: none;
}