* {
	box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  height: 100%;
}


:root {
  --bg_body: #e4e4e4;
  --bg_header: #ffffff;
  --text: #222;
  --primary: #ffd600;
  --secondary: #fff;
  --accent: #ffb300;
  --item2-1-width: 643px;
  --item2-2-width: 850px;
}

body.light {
  --bg_body: #f3f3f3;
  --bg_header: #ffffff;
  --text: #212121;
  --hover: #000000;
}

body.dark {
  --bg_body: #181818;
  --bg_header: #3f3e3e;
  --text: #cdcdcd;
  --hover: #ffffff;
}

body {
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background: var(--bg_body);
  color: var(--text);
  margin: 0;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--bg_header);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
}

a {
  text-decoration: none;
  color: inherit;         
}


/* button main*/
.cta {
  width: 100%;
  height: 100%;
  display: inline-block;
  border-radius: 100px;
  font-weight: 300;
  cursor: pointer;
  padding: 13px 20px; 
  box-sizing: border-box;
  border: none;
}

.primary {
  background: #ffcb05;
  border: none;
  color: black;
}

.primary:hover {
  background: #E4B62C;
}

body.light .secondary {
  background: white;
  border: 2px solid #ffcb05;
  color: black;
}

body.dark .secondary {
  background: #212121;
  border: 2px solid #ffcb05;
  color: #ffffff;
}

body.light .secondary:hover {
  background: #F3F3F3;
}

body.dark .secondary:hover {
  background: #595959;
}


body.light .section_title {
  background: linear-gradient(to right, #333232, #747474, #333232);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

body.dark .section_title {
  background: linear-gradient(to right, #FFFFFF, #CDCDCD, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.animated_button {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 100px;
  padding: 5px; 
  box-sizing: border-box;
  background-clip: padding-box;
  position: relative;
}
body.light .animated_button {
  border-color: #E8E8E8;
  color: #333232;
}
body.dark .animated_button {
  color: #333232;
  border-color: #595959;
}
.animated_button::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 1.5px;
  background-color: red;
  top: -1.5px;
  left: 60px;
  transition: transform 0s;
  z-index: 10;
  pointer-events: none;
}

body.light .animated_button::before {
  background: linear-gradient(
    to left,
    #E8E8E8 30%,
    red 60%,
    #E8E8E8 100%
  );
}

body.dark .animated_button::before {
  background: linear-gradient(
    to left,
    #595959 30%,
    yellow 60%,
    #595959 100%
  )
}


body.light .animated_button.footer_section_button-elem {
  color: #333232;
  border-color: #595959;
}
body.dark .animated_button.footer_section_button-elem {
  border-color: #595959;
  color: #333232;
}
body.light .animated_button.boost_section_button-elem {
  color: #333232;
  border-color: #595959;
}
body.dark .animated_button.boost_section_button-elem {
  border-color: #E8E8E8;
  color: #333232;
}
body.dark .animated_button.boost_section_button-elem::before {
  background: linear-gradient(
    to left,
    #E8E8E8 30%,
    red 60%,
    #E8E8E8 100%
  );
}
body.light .animated_button.boost_section_button-elem::before {
  background: linear-gradient(
    to left,
    #595959 30%,
    yellow 60%,
    #595959 100%
  )
}
body.light .animated_button.boost_section_button-elem::before {
  background: linear-gradient(
    to left,
    #595959 30%,
    yellow 60%,
    #595959 100%
  );
}
body.light .animated_button.footer_section_button-elem::before {
  background: linear-gradient(
    to left,
    #595959 30%,
    yellow 60%,
    #595959 100%
  )
}

body.light .animated_button.invert_button-elem {
  border-color: #595959;
}
body.dark .animated_button.invert_button-elem {
  border-color: #DDDDDD;
}
body.dark .animated_button.invert_button-elem::before {
  background: linear-gradient(
    to left,
    #E8E8E8 30%,
    red 60%,
    #E8E8E8 100%
  );
}
body.light .animated_button.invert_button-elem::before {
  background: linear-gradient(
    to left,
    #595959 30%,
    yellow 60%,
    #595959 100%
  )
}

body.light .animated_button.footer_button-elem {
    border-color: #595959;
}
body.dark .animated_button.footer_button-elem {
    border-color: #595959;
}
body.dark .animated_button.footer_button-elem::before {
  background: linear-gradient(
    to left,
    #595959 30%,
    yellow 60%,
    #595959 100%
  )
}
body.light .animated_button.footer_button-elem::before {
  background: linear-gradient(
    to left,
    #595959 30%,
    yellow 60%,
    #595959 100%
  )
}






/* button semi */

.cta-border-wrapper {
  display: inline-block;
  padding: 1px; 
  border-radius: 100px;
  background: linear-gradient(to right, #ED1C24 0%, #FFD700 50%, transparent 100%);
  box-shadow: 0 0 8px rgba(237, 28, 36, 0.3); 
  z-index: 2;
}

.cta-secondary {
  font-weight: 300;
  cursor: pointer;
  width: 117px;
  height: 35px;
  font-size: 14px;
  border: none; 
  border-radius: 100px;
  padding: 8px 16px;
  
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px; 
  position: relative;
  z-index: 1;
}

body.light .cta-secondary{
  color: #ED1C24;
  background: #ffffff;
}

body.dark .cta-secondary{
  color: #FFCC33;
  background: #212121;
}


/* linear border */

.linear_border::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -0.5px;
  width: 1px;
  height: 40%;
  z-index: 20;
  pointer-events: none;
}

body.light .linear_border::before {
  background: linear-gradient(
    to bottom,
    #E8E8E8 30%,
    red 60%,
    #E8E8E8 100%
  );
}

body.dark .linear_border::before {
  background: linear-gradient(
    to bottom,
    #595959 10%,
    yellow 60%,
    #595959 100%
  );
}

label {
  cursor: pointer;
  display: none;
}

.icon-border {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}
body.light .icon-border{
  border: 1px solid #E8E8E8;
}
body.dark .icon-border{
  border: 1px solid #595959;
}

/* .menu_icon  */

.menu_open_icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  z-index: 2;
  position: relative;
}
body.light .menu_open_icon{
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  background-color: #FFFFFF;
}
body.dark .menu_open_icon{
  background-color: #595959;
}

.menu_open_icon::before,
.menu_open_icon::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 2px;
  background-color: black;
  border-radius: 1px;
}

.menu_open_icon::before {
  top: 12px; 
}

.menu_open_icon::after {
  top: 18px; 
}

body.dark .menu_open_icon::before,
body.dark .menu_open_icon::after {
  background-color: white;
}


.menu_closed_icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  z-index: 2;
  position: relative;
  color: #E8E8E8;
}
body.light .menu_closed_icon{
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  background-color: #FFFFFF;
}
body.dark .menu_closed_icon{
  background-color: #595959;
}

.menu_closed_icon::before,
.menu_closed_icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #000; 
  transform-origin: center;
}
body.dark .menu_closed_icon::before,
body.dark .menu_closed_icon::after {
  background-color: white;
}


.menu_closed_icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu_closed_icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu_closed_icon {
  display: none;
}


/* slider */

.slider_client {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  width: max-content;
}

.slider-dot_client {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body.light .slider-dot_client {
  background-color: #E8E8E8;
}
body.dark .slider-dot_client {
  background-color: #595959;
}


.slider-dot_client:not(.active):hover {
  background-color: #e50000;
}

.slider-dot_client.active {
  width: 74px;
  height: 28px;
  border-radius: 30px;
  padding: 5px;
  background-color: transparent;
  cursor: default;
}
body.light .slider-dot_client.active {
  border: 2px solid #E8E8E8;
}
body.dark .slider-dot_client.active {
  border: 2px solid #595959;
}

.slider-dot_client.active:hover {
  background-color: transparent;
}

.slider-fill {
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  border-radius: inherit;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.slider-dot_client.active .slider-fill {
  background-color: #e50000;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .slider_content > .right_border_elem {
    display: none;
    transition: opacity 0.3s ease;
  }
  .slider_content > .right_border_elem.visible {
    display: block;
  }
}

/* modal */


.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal {
  display: flex;
  flex-direction: row;
  border-radius: 24px;
  padding: 40px;
  max-width: 1038px;
  width: 100%;
  max-height: 602px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.modal-export.about_section-floating.export-img {
  position: absolute;
  top: 255px;
  left: 56%;
  height: 46px;
  width: 110px;
  border-color: #E8E8E8;
}

.modal_export_icon {
  width: 97px;
  height: 33px;
  font-size: 11px;
  background-color: #ffffff;
  border-radius: 20px;
}


.modal-wrapper {
  position: relative;
  max-width: 1038px;
  width: 100%;
  max-height: 602px;
  height: 100%;
}


.modal-wrapper::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(255, 255, 255, 0.2); 
  border-radius: 30px; 
  pointer-events: none; 
  z-index: 20; 
}
.modal-wrapper::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -10px; 
  width: 1px;
  height: 480px; 
  z-index: 25;
  pointer-events: none;
  border-radius: 1px;
}

body.light .modal-wrapper::before {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.01) 10%,
    red 60%,
    rgba(255, 255, 255, 0.01) 90%
  );
}

body.dark .modal-wrapper::before {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.01) 10%,
    yellow 60%,
    rgba(255, 255, 255, 0.01) 90%
  );
}

body.light .modal {
  background: #ffffff;
}
body.dark .modal {
  background: #212121;
}

.modal {
  overflow: hidden;
}

.modal-content {
  width: 50%;
}

.modal_img {
  position: absolute;
  width: 75%;
  height: auto;
  top: 18%;
  left: 55%;
}

.modal_revenue {
  position: absolute;
  top: 66px;
  left: 66%;
  transform: rotate(15deg);
}
.modal_revenue.fin_floating_text.revenue_index {
  width: 112px;
  height: 101px;
  font-size: 11px;
  color: #212121;
  background-color: #ffffff;
  border: none;
}
.modal_primary_text {
  font-size: 15px;
}
@media (min-width: 350px) and (max-width: 768px) {
  .modal-overlay {
    width: 100%;
  }
  
  .modal-wrapper {
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal {
    width: 100%;
  }
  .modal_img {
    display: none;
  }

  .modal-input-group {
    flex-direction: column;
    width: 100%;
  }

  .modal_export_icon {
    display: none;
  }

  .modal_revenue.fin_floating_text.revenue_index {
    display: none;
  }

  .modal {
    width: 100%;
    padding: 30px;
    height: auto;
  }

  .modal-content {
    width: 100%;
    height: auto;
  }

  .modal-title.section_title {
    font-size: 20px;
    margin: 0;
  }
}


.icon-border {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  cursor: pointer;
  border-radius: 10px;
  z-index: 2;
}

.modal-title {
  font-size: 48px;
}

.modal-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.modal-input-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}



.modal-input {
  flex: 1 1 48%;
  width: 90%;
  padding: 12px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 40px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
body.light input {
  background-color: #ffffff;
}
body.dark input {
  background-color: #595959;
}
body.light input::placeholder {
  color: #212121;
}
body.dark input::placeholder {
  color: #DDDDDD;
}

body.dark .custom-select {
  background-color: #595959;
}



.input-wrapper {
  flex: 1 1 48%;
  border: 1px solid #e8e8e8;
  border-radius: 40px;
  padding: 5px;
  transition: border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-wrapper:has(.modal-input:focus),
.input-wrapper:has(.custom-select.open) {
  border-color: #999;
}

.input-wrapper:has(.modal-input.invalid) {
  border-color: #e50000;
}


.modal-input:focus {
  border-color: #999;
}


.custom-select {
  flex: 1 1 48%;
  position: relative;
  border: 1px solid #e8e8e8;
  border-radius: 40px;
  padding: 12px 40px 12px 16px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.custom-select.open {
  border-color: #999999;
}

.custom-select::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}
body.light .custom-select::after {
  content: url(./assets/icons/header_language_dropdown_icon_light.svg);
}
body.dark .custom-select::after {
  content: url(./assets/icons/header_language_dropdown_icon_dark.svg);
}

.custom-select.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #e8e8e8;
  border-top: none;
  border-radius: 0 0 16px 16px;
  z-index: 10;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  background: #ffffff;
}
body.dark .select-options {
  background: #595959;
}

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

.select-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.select-option:hover {
  background-color: #f0f0f0;
}

.modal_animated_button {
  width: 100%;
}

.input-wrapper {
  position: relative;
}

body.light .input-wrapper::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  top: -1px;
  left: 50px;
  transition: transform 0s;
  z-index: 10;
  pointer-events: none;
}

body.light .input-wrapper::before {
background: linear-gradient(to left, 
  #E8E8E8 30%, 
  red 60%, 
  #E8E8E8 100%);
}

body.dark .input-wrapper::before {
  background: linear-gradient(
    to left,
    #333232 30%,
    yellow 60%,
    #333232 100%
  );
}