html {
  font-size: 16px;
  background: #e8e4e4;
}

@media only screen and (max-width: 1300px) {
  html {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}

@media only screen and (max-width: 700px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: "DM Sans", sans-serif;
  color: #7c889f;
  line-height: 1.56;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.header,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Spectral", serif;
}
.m-auto {
  margin: 0 auto;
}
.mt-10px {
  margin-bottom: 0.625rem;
}
.mr-3 {
  margin-right: 1rem;
}
.ml-3 {
  margin-left: 1rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-30px {
  margin-top: 1.875rem;
}
.mt-40px {
  margin-top: 2.5rem;
}
.mt-5 {
  margin-top: 2.5rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mt-10px {
  margin-top: 0.625rem;
}
.pl-100px {
  padding-left: 6.25rem;
}
.pr-100px {
  padding-right: 6.25rem;
}
.pb-4 {
  padding-bottom: 1.5rem;
}
.img-fluid {
  max-width: 100%;
}
.h-100 {
  height: 100%;
}
.w-100 {
  width: 100%;
}
.min-h-100vh {
  min-height: 100vh;
}
.w-60vw {
  width: 60vw;
}
.max-w-50 {
  max-width: 50%;
}
.text-center {
  text-align: center;
}
.relative {
  position: relative;
}
.d-iblock {
  display: inline-block;
}
.d-flex {
  display: flex;
}
.flex-1 {
  flex: 0 0 50%;
  max-width: 50%;
}
.flex-40{
  flex: 0 0 40%;
  max-width: 40%;
}
.flex-60{
  flex: 0 0 60%;
  max-width: 60%;
}
.flex-half {
  flex: 0 0 48%;
  max-width: 48%;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.content-between {
  justify-content: space-between;
}
.content-center {
  justify-content: center;
}
.bg-whiteish {
  background: #f8f8f8;
}
.bg-black {
  background-color: #22263a;
}
strong {
  font-weight: bold;
}
.weight-500 {
  font-weight: 500;
}
.text-white {
  color: #ffffff;
}
.text-whiteish {
  color: #f3f3f3;
}
.text-body {
  color: #7c889f;
}
.text-highlight {
  color: #58647b !important;
}
.text-black {
  color: #152751;
}
.text-red {
  color: #ff0000;
}
.section-sep {
  padding: 3.75rem 0;
}
.container {
  margin: 0 90px;
}
.container-left {
  margin-left: 90px;
}
.container-right {
  margin-right: 90px;
}
.main-title {
  font-weight: 600;
  font-size: 3.625rem;
  line-height: 1.07;
  letter-spacing: -0.02em;
}
.main-disclaimer {
  position: relative;
  padding-left: 1.625rem;
  margin-bottom: 0.625rem;
}

.main-disclaimer::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.9375rem;
  height: 0.125rem;
  background: #ff0000;
}
.main-secondtitle {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.main-subtitle {
  font-size: 1rem;
  line-height: 1.69;
}
.btn {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.75rem 1.5rem;
  border: 1px solid;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn.btn-main {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}
.btn.btn-main:hover {
  filter: drop-shadow(0px 4px 10px rgba(240, 0, 0, 0.05))
    drop-shadow(0px 4px 10px rgba(255, 0, 0, 0.25));
}
.btn.btn-secondary {
  background: #ffffff;
  border-color: #ff0000;
  color: #ff0000;
}
.btn.btn-secondary:hover {
  filter: drop-shadow(0px 4px 10px rgba(240, 0, 0, 0.04))
    drop-shadow(0px 4px 6px rgba(255, 0, 0, 0.1));
}
.btn.btn-tertiary {
  background: #ffffff;
  border-color: #ffffff;
  color: #152751;
}
.hero-down {
  background: #ffffff;
  box-shadow: 0px 10px 20px rgba(129, 129, 129, 0.1);
  border-radius: 16px;
}
.hero-down .partners {
  padding: 1.875rem;
}
.hero-down .partner {
  flex: 0 0 12%;
  width: 12%;
  text-align: center;
}
.hero-down .partner .img-fluid {
  max-width: 100%;
  max-height: 2.25rem;
}
/*region header*/
header#header {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 6.25rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
#header.scrolled {
  background: rgba(248, 248, 248, 0.9);
  box-shadow: 0px 10px 20px rgba(129, 129, 129, 0.05);
  backdrop-filter: blur(20px);
}
header#header:not(.scrolled) .btn.btn-main {
  visibility: hidden;
}
.hero-up {
 padding-top: 6.25rem;
}
.hero-down {
  margin-top: -3.125rem;
  z-index: 99;
  position: relative;
}
.hero-right {
  flex: 0 0 40%;
  max-width: 40%;
}
.hero-right .img-fluid {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.hero-left {
  flex: 0 0 53%;
  max-width: 53%;
  padding: 3.125rem 0;
}
.certificate-container {
  background: #ffffff;
  box-shadow: 0px 5px 20px rgba(129, 129, 129, 0.03);
  border-radius: 30px;
  padding: 0.75rem 1rem;
}
/*#endregion*/

/*#region footer*/
#footer {
  padding: 3.125rem 0;
}
.first-footer .container {
  padding-bottom: 2.1875rem;
}
.second-footer .container {
  border-top: 1px solid #abafc7;
  padding-top: 1.25rem;
}
.footer-left {
  flex: 0 0 35%;
  max-width: 35%;
}

.footer-middle {
  flex: 0 0 15%;
  max-width: 15%;
}

.footer-right {
  flex: 0 0 20%;
  max-width: 20%;
}
.menu-footer .menu-item a {
  text-decoration-line: underline;
  color: #58647b;
}

.footer-header {
  font-weight: bold;
  padding-bottom: 1rem;
}
.contact-elem .txt,
.footer-header,
.menu-footer .menu-item a {
  font-size: 1rem;
  line-height: 1.75;
}
.contact-elem:not(:last-child),
.menu-footer .menu-item:not(:last-child) {
  padding-bottom: 0.625rem;
}
.contact-elem .txt {
  text-decoration: none;
}
.copyright {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2.43;
}
/*#endregion*/

/*#region help*/
.two-cols .img-center {
  max-width: 27.5rem;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  border-radius: 50px;
}
/* .two-cols .img-center::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% - 1.625rem);
  height: 100%;
  background: #f3f3f3;
  border-radius: 50px;
} */
.two-cols .img-text {
  background: #ffffff;
  box-shadow: 0px 10px 20px rgb(129 129 129 / 10%);
  border-radius: 16px;
  padding: 1.25rem;
  position: absolute;
  z-index: 5;
}
.help-left .img-center::after {
  left: -1.625rem;
  bottom: -1.625rem;
}
.help-left .img-text:first-child {
  top: 1.875rem;
  max-width: 13.75rem;
  left: 1.875rem;
}
.help-left .img-text:nth-child(2) {
  top: 30%;
  right: 10%;
}
.help-left .img-text:nth-child(3) {
  bottom: 1.875rem;
  right: 0;
}
.image-advantages .advantage {
  background: #ffffff;
  box-shadow: 0px 5px 20px rgba(129, 129, 129, 0.03);
  border-radius: 30px;
  padding: 0.75rem 1rem;
}
/*#endregion*/

/*#region join*/
.join-right.two-cols .img-center {
  max-width: 30rem;
}
.join-right .img-center::after {
  right: -1.625rem;
  top: -1.625rem;
}
.join-right .img-text:first-child {
  top: 1.875rem;
  max-width: 18.75rem;
  left: 0;
}
.join-right .img-text:nth-child(2) {
  bottom: 30%;
  max-width: 23.75rem;
  right: 1.875rem;
}
.join-right .img-text:nth-child(3) {
  bottom: 1.875rem;
  max-width: 20.75rem;
  left: 1.875rem;
}
/*#endregion*/

/*#region tab*/
.tab {
  min-height: 28.75rem;
  display: flex;
  align-items: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
/*#endregion*/

/*#region testimonials*/
div.sp-testimonial-free-section .slick-list {
  padding-bottom: 3rem;
}
.testimonials .slick-slide {
  padding: 0 90px;
}
.sp-testimonial-free {
  display: flex;
  align-items: flex-start;
}
.testimonials #sp-testimonial-free-wrapper-122 .sp-testimonial-free-section {
  padding: 0 !important;
}
.sp-testimonial-free-section .sp-tfree-client-image,
.sp-testimonial-free-section .sp-testimonial-client-image{
  margin: 0;
  order: 1;
}
.testimonials
  #sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .tfree-client-testimonial,
.testimonials
  #sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .sp-testimonial-client-testimonial{
  order: -1;
  text-align: left;
  margin: 0;
  padding: 0 3rem 0 0;
  background: url("https://oss.atem.ro/kiwifinance.ro/wp-content/uploads/2022/02/test.png")
    80% 80% no-repeat;
}
.testimonials
  #sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .tfree-client-rating,
.testimonials
  #sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .sp-testimonial-client-rating{
  display: none;
}
.sp-testimonial-free-section .sp-tfree-client-image,
.sp-testimonial-free-section .sp-testimonial-client-image{
  z-index: 2;
  position: relative;
  display: flex;
  margin: 0 auto;
  flex-shrink: 0;
}
.sp-testimonial-free-section .sp-tfree-client-image img,
.sp-testimonial-free-section .sp-testimonial-client-image img{
  border-radius: 40px;
  width: 31rem;
  height: 31rem;
  object-fit: cover;
  padding: 1.875rem;
  box-sizing: content-box;
}
.sp-testimonial-free-section .sp-tfree-client-image::after,
.sp-testimonial-free-section .sp-tfree-client-image::before,
.sp-testimonial-free-section .sp-testimonial-client-image::after, 
.sp-testimonial-free-section .sp-testimonial-client-image::before{
  content: "";
  position: absolute;
  z-index: -1;
  width: 60%;
  height: 60%;
  background: #f3f3f3;
  border-radius: 50px;
}
.sp-testimonial-free-section .sp-tfree-client-image::after,
.sp-testimonial-free-section .sp-testimonial-client-image::after{
  top: 0;
  left: 0;
}
.sp-testimonial-free-section .sp-tfree-client-image::before,
.sp-testimonial-free-section .sp-testimonial-client-image::before{
  bottom: 0;
  right: 0;
}

.sp-testimonial-free-section .sp-testimonial-free-item,
.sp-testimonial-free-section .sp-testimonial-item {
  padding: 0;
}

.sp-testimonial-free-section .tfree-client-rating i.fa {
  font-size: 1.5rem;
}

.sp-testimonial-free-section .tfree-client-rating i.fa:not(:last-child) {
  margin-right: 0.5rem;
}
.sp-testimonial-free-section .tfree-client-testimonial p,
.sp-testimonial-free-section .tfree-client-testimonial,
.sp-testimonial-free-section .sp-testimonial-client-testimonial p, 
.sp-testimonial-free-section .sp-testimonial-client-testimonial .sp-testimonial-content{
  text-align: left;
  font-size: 1rem;
  line-height: 1.75;
  color: #7c889f;
  padding-top: 1.25rem;
  margin-bottom: 2.5rem;
}

.sp-testimonial-free-section .tfree-client-testimonial h3,
.sp-testimonial-free-section .sp-testimonial-client-testimonial h3{
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #152751;
}

.sp-testimonial-free-section .tfree-client-testimonial h4,
.sp-testimonial-free-section .sp-testimonial-client-testimonial h4{
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.56;
  color: #152751;
}
/* .testimonials
  #sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .slick-prev,
.testimonials
  #sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .slick-next {
  display: none !important;
} */

.sp-testimonial-free-section .slick-dots {
  position: absolute;
  bottom: 0px;
  margin: 0;
}

.testimonials
  #sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .slick-dots
  li
  button {
  background: #cecece;
  box-shadow: 0px 5px 9px rgba(0, 0, 0, 0.25);
}

.testimonials
  #sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .slick-dots
  li.slick-active
  button {
  background: #ff0000;
  box-shadow: 0px 5px 9px rgba(187, 140, 140, 0.44);
}
.sp-testimonial-free-section .slick-dots li {
  padding: 10px;
  box-sizing: content-box;
  margin: 0;
}
#sp-testimonial-free-wrapper-122 .sp-testimonial-free-section .slick-prev,
#sp-testimonial-free-wrapper-122 .sp-testimonial-free-section .slick-next {
  bottom: 0;
  top: unset;
  transform: none;
}

#sp-testimonial-free-wrapper-122 .sp-testimonial-free-section .slick-prev {
  left: 90px;
}

#sp-testimonial-free-wrapper-122 .sp-testimonial-free-section .slick-next {
  right: unset;
  left: calc(90px + 4rem);
}
/*#endregion*/

/*#region testimonials*/
div.pop-up-form {
  position: fixed;
  height: 0;
  overflow: hidden;
  width: 100vw;
  height: 0;
  z-index: 1000;
  top: 0;
  left: 0;
  background: rgba(88, 100, 123, 0.5);
  backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
div.pop-up-form.display {
  height: 100vh;
}
div.pop-up-form .form {
  background: #ffffff;
  box-shadow: 0px 10px 20px rgba(129, 129, 129, 0.1);
  border-radius: 16px;
  max-width: 40%;
  position: relative;
}
.form-container {
  max-height: 95vh;
  overflow: auto;
  padding: 1.875rem;
}
div.close-form {
  position: absolute;
  right: -3rem;
  background: #ffffff;
  border-radius: 25px;
  width: 2.625rem;
  height: 2.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -1rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
div.close-form:hover {
  transform: rotate(180deg);
}
.form-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.08;
  text-align: center;
}

.form-subtitle {
  font-size: 0.8125rem;
  line-height: 1.54;
  text-align: center;
  padding-top: 0.75rem;
}

.form-content {
  padding: 1.2rem 0;
}

.form .label {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #58647b;
  padding-bottom: 0.5rem;
}

.form .required::after {
  content: "*";
  color: #ed1c24;
}

.error-msg {
  /* text-align: center; */
  font-size: 0.875rem;
  font-weight: 500;
  color: #ed1c24;
}

.form .inp,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-search--dropdown .select2-search__field,
.field-input .inp {
  background: #ffffff;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
  border-radius: 8px;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.56;
  color: #152751;
  transition: all 0.3s ease-in-out;
  outline: none;
  height: unset;
}
.form .inp:hover,
.form .inp:active,
.form .inp:focus,
.select2-container--default .select2-selection--single:hover,
.select2-container--default .select2-selection--single:active,
.select2-container--default .select2-selection--single:focus,
.field-input .inp:hover,
.field-input .inp:active,
.field-input .inp:focus {
  border-color: #ff0000;
}
.form textarea {
  resize: vertical;
  font-family: "DM Sans", sans-serif;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder,
.inp::placeholder,
.inp::-webkit-input-placeholder,
.field-input .inp::placeholder,
.field-input .inp::-webkit-input-placeholder {
  color: #7c889f !important;
}
.select2-dropdown {
  border-color: #ff0000;
}
span.select2.select2-container.select2-container--default {
  max-width: 100%;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #152751;
  font-size: 0.875rem;
  line-height: 1.56;
  display: inline;
  padding: 0;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: auto;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  right: 1rem;
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background: #f3f3f3;
  color: #152751;
}
.form .inp.error,
.select2-container--default .select2-selection--single.error,
.select2-container--default
  .select2-search--dropdown
  .select2-search__field.error {
  border-color: #ed1c24;
}
.select2-container {
  width: 100% !important;
}
.form .form-element:not(:last-child) {
  padding-bottom: 1rem;
}
.consent {
  display: block;
  position: relative;
  padding-left: 1.75rem;
  cursor: pointer;
  font-size: 0.75rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 1.2rem;
}
.consent a {
  color: #7c889f;
  text-decoration: underline;
}
.consent p {
  display: inline-block;
}
.consent input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  left: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 1rem;
  width: 1rem;
  background-color: #fff;
  border: 1px solid #cecece;
  box-sizing: border-box;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.consent:hover input ~ .checkmark {
  border-color: #ff0000;
}

.consent input:checked ~ .checkmark {
  background-color: #ff0000;
  border-color: #ff0000;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.consent input:checked ~ .checkmark:after {
  display: block;
}

.consent .checkmark:after {
  left: 0.3rem;
  top: 0.125rem;
  width: 3px;
  height: 0.45rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.success-message {
  text-align: center;
}

.success-message .header {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.08;
  text-align: center;
  color: #152751;
  padding-top: 1.2rem;
}

.success-message .subheader {
  font-weight: normal;
  font-size: 13px;
  line-height: 1.54;
  text-align: center;
  color: #7c889f;
  padding-top: 1rem;
}

.success-message .message-text {
  max-width: 60%;
  margin: 0 auto;
}
/*#endregion*/

/*#region calcs*/
.calcs .w-60vw {
  width: 60vw;
  margin: auto;
}

.calcs-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-option {
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #cecece;
  box-sizing: border-box;
  border-radius: 6px;
  padding: 1rem 1.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.calc-option .option-radio {
  position: relative;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  margin-right: 1rem;
  border: 1px solid #cecece;
  border-radius: 50%;
}

.calc-option.active {
  border-color: #ff0000;
  color: #ff0000;
}

.calc-option.active .option-radio {
  border-color: #ff0000;
}

.calc-option .option-radio::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.calc-option.active .option-radio::after {
  background: #ff0000;
}
.calculator-card-container {
  background: #f3f3f3;
  border-radius: 40px;
  margin-top: 3.125rem;
}

.calculator-card .calculator-left {
  flex: 1;
  background: #ffffff;
  box-shadow: 0px 10px 20px rgba(129, 129, 129, 0.1);
  border-radius: 40px;
  padding: 1.5rem 1.875rem;
}

.calculator-card .calculator-right {
  flex: 1;
  padding: 1.5rem 1.875rem;
}

.calculator-card .calculator-title {
  font-weight: bold;
  font-size: 1.2rem;
}

.calculator-card .field-label {
  font-size: 0.9375rem;
  color: #58647b;
  padding-bottom: 0.75rem;
}

.calculator-card .field-input.options {
  display: flex;
  background: #f3f3f3;
  border-radius: 6px;
  border-radius: 6px;
}

.calculator-card .options .option {
  flex: 1;
  filter: drop-shadow(0px 10px 20px rgba(129, 129, 129, 0.1));
  background: #f3f3f3;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.75rem 0;
  color: #152751;
  text-align: center;
  /* border-radius: 6px; */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.calculator-card .options .option.active {
  background: #22263a;
  color: #fff;
}
.calculator-field {
  padding-bottom: 1.2rem;
}

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

/* Firefox */
.calculator-field .inp[type="number"] {
  -moz-appearance: textfield;
}

.calculator-field .field-input.lei .inp {
  padding-right: 2rem;
}
.calculator-field .field-input.lei,
.calculator-field .field-input.eur {
  position: relative;
}
.calculator-field .field-input.lei::after,
.calculator-field .field-input.eur::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: #152751;
}
.calculator-field .field-input.lei::after {
  content: "lei";
}
.calculator-field .field-input.eur::after {
  content: "eur";
}
.output-field {
  padding-bottom: 1.2rem;
  margin-bottom: 1.3rem;
}
.output-field:not(:last-child) {
  border-bottom: 1px solid rgb(206 206 206 / 50%);
}
.output-label {
  color: #58647b;
}

.output-text {
  color: #000000;
  font-weight: bold;
}

.total .output-label {
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.41;
  color: #152751;
}

.total .output-text {
  font-size: 1.1rem;
  line-height: 1.41;
}

.output-disclaimer {
  margin-bottom: 1.2rem;
}
.output-disclaimer-smaller {
  flex: 1;
  margin-top: 0.5rem;
  font-size: 13px;
  font-style: italic;
}
.output-disclaimer.d-flex svg {
  flex-shrink: 0;
}
.field-w-btns {
  display: flex;
}
.calculator-card .field-w-btns .field-input.number {
  flex: 0 0 70%;
  max-width: 70%;
}
.calculator-card .field-w-btns .field-input.options {
  flex: 0 0 30%;
  max-width: 30%;
}
.calculator-card-container.rate-needs .hide-needs {
  display: none;
}

.calculator-card-container:not(.rate-needs) .hide-needs {
  display: block;
}

.calculator-card-container.rate-needs .display-needs {
  display: block;
}
.calculator-card-container:not(.rate-needs) .display-needs {
  display: none;
}
.calculator-card-container .interest.personal,
.calculator-card-container.mortgage .interest.mortgage {
  display: inline;
}
.calculator-card-container .interest.mortgage,
.calculator-card-container.mortgage .interest.personal,
.calculator-card-container:not(.mortgage) .hide-pn,
.calculator-card-container.mortgage .display-pn {
  display: none;
}

.broker-item {
  padding: 0 10px;
}

.broker-item > .broker-item-container {
  background: #ffffff;
  box-shadow: 0px 10px 20px rgba(129, 129, 129, 0.1);
  border-radius: 16px;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
}

.bg-grey {
  background: #f3f3f3;
}

.broker-image img.img-fluid {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}

.broker-details {
  padding-top: 0.5rem;
}

.broker-details .name {
  font-weight: bold;
  font-size: 0.815rem;
  line-height: 1.85;
  color: #152751;
}

.broker-details .city {
  font-size: 0.75rem;
  line-height: 1.33;
  color: #7c889f;
}

.broker-details .see-more {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 2;
  text-decoration-line: underline;
  color: #ff0000;
  padding-top: 1rem;
}
.brokers-left {
  flex: 0 0 55%;
  max-width: 55%;
}
.brokers-right {
  flex: 0 0 45%;
  max-width: 45%;
}
.brokers-left svg {
  max-width: 95%;
}

.brokers-left svg .point-city {
  cursor: pointer;
  fill: #ed1c24;
}

.brokers-slick .slick-arrow,
#sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .slick-prev.slick-arrow,
#sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .slick-next.slick-arrow,
#sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .slick-prev.slick-arrow:hover {
  font-size: 0;
  border-radius: 25px;
  width: 2.625rem;
  height: 2.625rem;
  border: none;
  background: #ff0000
    url("https://kiwifinance.ro/wp-content/uploads/2022/03/Arrow_right-1.svg")
    center center no-repeat;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  position: absolute;
  cursor: pointer;
}

.slick-arrow.slick-disabled,
#sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.slick-arrow.slick-disabled.slick-prev,
#sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .slick-arrow.slick-disabled.slick-prev {
  background: #fff
    url("https://kiwifinance.ro/wp-content/uploads/2022/02/Vector-9.svg")
    center center no-repeat;
}
.brokers-slick .slick-arrow.slick-next,
#sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .slick-arrow.slick-next,
#sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .slick-arrow.slick-next:hover {
  box-shadow: -2px 6px 15px rgba(237, 28, 36, 0.1);
  background: #ff0000
    url("https://kiwifinance.ro/wp-content/uploads/2022/02/Vector-9-1.svg")
    center center no-repeat;
}
.slick-arrow.slick-disabled.slick-next,
#sp-testimonial-free-wrapper-122
  .sp-testimonial-free-section
  .slick-arrow.slick-disabled.slick-next {
  background: #fff
    url("https://kiwifinance.ro/wp-content/uploads/2022/03/Arrow_right-2.svg")
    center center no-repeat;
}
.brokers-slick .slick-arrow.slick-next {
  top: 1rem;
  right: 90px;
}
.brokers-slick .slick-arrow.slick-prev {
  top: 1rem;
  right: calc(90px + 4rem);
}

.brokers-slick .slick-list.draggable {
  padding-top: 5rem;
  margin-top: 1rem;
}
.brokers-title {
  position: absolute;
  top: 1.5rem;
  left: 0;
}

.brokers-carousel {
  position: relative;
}
.broker-item.duplicated {
  position: absolute;
  bottom: 0;
  top: 5rem;
}

.broker-item.duplicated .broker-item-container {
  display: flex;
  height: 100%;
  align-items: center;
}

.broker-item.duplicated .see-more {
  display: none;
}

.broker-item.duplicated .broker-details {
  flex: 1;
  padding-left: 1rem;
}

.broker-item:not(.duplicated) .description,
.broker-item:not(.duplicated) .go-broker,
.broker-item:not(.duplicated) .form-close {
  display: none;
}

.broker-item.duplicated .description,
.broker-item.duplicated .go-broker,
.broker-item.duplicated .form-close {
  display: block;
}

.broker-item.duplicated .description {
  font-size: 0.75rem;
  color: #58647b;
}

.form-close.broker-close {
  position: absolute;
  top: 1rem;
  right: 2rem;
}
#tooltip {
  background: #58647b;
  border: 1px solid #7c889f;
  box-shadow: 0px 10px 20px rgba(92, 92, 92, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  position: absolute;
  z-index: 99;
  color: #fff;
  max-height: 300px;
  overflow: auto;
  font-size: 0.675rem;
  line-height: 1.3;
}

#tooltip .network-name {
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.7;
}

#tooltip .network-bold {
  font-weight: 500;
}

#tooltip a {
  color: #fff;
}

/*#endregion*/

.uplaod-label.cursor-pointer {
  cursor: pointer;
  background: #ffffff;
  border: 1px dashed #ebebeb;
  box-sizing: border-box;
  border-radius: 8px;
  width: 100%;
  padding: 1.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.56;
  color: #152751;
  text-align: center;
}

input#formHrAtach {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
}

.tab-kpi {
  background: #ffffff;
  box-shadow: 0px 10px 20px rgba(129, 129, 129, 0.1);
  border-radius: 16px;
  padding: 0.875rem 0.75rem;
  position: absolute;
}

.tab-kpi-header {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.14;
  color: #152751;
  flex-grow: 1;
  white-space: nowrap;
  padding-right: 0.5rem;
}

.tab-kpi-text {
  font-weight: 400;
  font-size: .75rem;
  line-height: 1.33;
  color: #58647b;
}

.relative.tab-right {flex: 1;
  min-height: 28.75rem;}

.tab-kpi.right.d-flex.items-center {right: 16%;max-width: 300px;top: 16%;}

.tab-kpi.left.d-flex.items-center {left: 15%;bottom: 45%;max-width: 180px;}

.tab-kpi.bottom.d-flex.items-center {bottom: 15%;right: 21%;max-width: 210px;}
.tab-kpi.bottom.d-flex.items-center::after {content:""; position:absolute;top:-1rem;left:-1rem;width:2rem;height: 2rem;background:url("https://kiwifinance.ro/wp-content/uploads/Group-33519-1.svg") center center no-repeat; background-size: contain;}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .min-h-100vh,
  .hero-up {
    min-height: unset;
  }
  .container {
    margin: 0 40px;
  }
  .container-left {
    margin-left: 40px;
  }
  .container-right {
    margin-right: 40px;
  }
  .hero-down {
    margin: 0;
  }

  .pr-100px {
    padding-right: 3rem;
  }

  .pl-100px {
    padding-left: 3rem;
  }

  .calcs .w-60vw {
    width: 80vw;
  }
}

@media only screen and (max-width: 912px) {
  .hero-right .img-fluid {
    width: 100%;
  }
  .m-0-sm {
    margin: 0 !important;
  }
  .flex-col-sm {
    flex-direction: column;
  }
  .d-none-sm {
    display: none;
  }
  .container {
    margin: 0 30px;
  }
  .container-left {
    margin-left: 30px;
  }
  .container-right {
    margin-right: 30px;
  }
  .testimonials .slick-slide {
    padding: 0 30px;
  }
  #sp-testimonial-free-wrapper-122 .sp-testimonial-free-section .slick-prev {
    left: 30px;
  }

  #sp-testimonial-free-wrapper-122 .sp-testimonial-free-section .slick-next {
    right: unset;
    left: calc(30px+ 4rem);
  }
  #sp-testimonial-free-wrapper-122
    .sp-testimonial-free-section
    .sp-tfree-client-image,
#sp-testimonial-free-wrapper-122
    .sp-testimonial-free-section
    .tfree-client-image{
    display: none;
  }
  #sp-testimonial-free-wrapper-122 .slick-slide:not(.slick-current) {
    height: 0;
  }
  .hero-left,
  .hero-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hero-right {
    order: -1;
  }
  .hero-left {
    background: #ffffff;
    box-shadow: 0px 5px 20px rgba(129, 129, 129, 0.03);
    border-radius: 10px;
    margin: 0 24px;
    padding: 1.5rem;
    margin: -4rem 30px 0 30px;
  }

  .main-title {
    font-size: 2.42rem;
  }

  .hero-down {
    margin: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .partners.d-flex.content-between.items-center {
    padding: 1.875rem 0;
    width: 100vw;
    overflow: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .partners.d-flex.content-between.items-center::-webkit-scrollbar {
    display: none;
  }

  .hero-down .partner {
    flex: 0 0 25%;
    width: auto;
  }
  .flex-1,
  .brokers-right,
  .flex-40,
  .flex-60 {
    flex: 1;
    max-width: 100%;
  }

  .help .container-right,
  .join .container-left,
  .brokers .container-right {
    margin: 0 30px;
  }
  .brokers .container-left {
    margin: 0;
  }
  .brokers-title {
    left: 30px;
  }

  div#formPopUp .form {
    margin: 0 30px;
    max-width: calc(100% - 60px);
  }

  .pr-100px {
    padding-right: 0;
  }

  .pl-100px {
    padding-left: 0;
  }
  .calcs-options {
    flex-direction: column;
  }

  .calc-option {
    flex: 1;
    width: 100%;
    margin-bottom: 1rem;
  }

  .calcs .text-center.w-60vw {
    width: 100%;
  }

  .output-disclaimer.d-flex svg {
    flex-shrink: 0;
  }
  .calcs-options {
    flex-direction: column;
  }

  .calc-option {
    flex: 1;
    width: 100%;
    margin-bottom: 1rem;
  }

  .calcs .text-center.w-60vw {
    width: 100%;
  }

  .sp-testimonial-free {
    flex-direction: column;
  }

  .sp-testimonial-free-section .sp-tfree-client-image img {
    width: 21rem;
    height: 21rem;
  }

  .sp-testimonial-free-section .slick-dots {
    left: 50%;
    transform: translateX(-50%);
  }

  div.sp-testimonial-free-section .slick-list {
    margin: 0;
  }
  #sp-testimonial-free-wrapper-122 .sp-testimonial-free-section .slick-prev {
    left: calc(50% - 5rem);
  }

  #sp-testimonial-free-wrapper-122 .sp-testimonial-free-section .slick-next {
    left: calc(50% + 1rem);
  }

  .testimonials
    #sp-testimonial-free-wrapper-122
    .sp-testimonial-free-section
    .tfree-client-testimonial,
 .testimonials
    #sp-testimonial-free-wrapper-122
    .sp-testimonial-free-section
    .sp-testimonial-client-testimonial {
    padding: 0;
  }

  .join-right.two-cols .img-center {
    max-width: 20rem;
  }

  .join-right.two-cols.flex-1.relative {
    margin-top: 3rem;
  }

  .join-right .img-text {
    font-size: 0.875rem;
  }

  .join-right .img-text .icon svg {
    width: 2rem;
    height: 2rem;
  }

  .join-right .img-text:first-child {
    left: -2rem;
    top: 0;
  }

  .join-right .img-text:nth-child(3) {
    bottom: -1rem;
  }

  .tab.bg-black {
    background-image: none !important;
  }

  .tab-content.max-w-50.text-whiteish {
    max-width: 100%;
    text-align: center;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    flex: 1;
    max-width: 100%;
  }

  .footer-middle,
  .footer-right {
    margin-top: 2rem;
  }
  div.pop-up-form .form {
    margin: 0 30px;
    max-width: calc(100% - 60px);
  }
  div#closeForm {
    right: -1rem;
    top: -3rem;
  }
  .brokers-slick .slick-arrow.slick-next {
    right: 30px;
  }

  .brokers-slick .slick-arrow.slick-prev {
    right: calc(30px + 3rem);
  }
  .testimonials
    #sp-testimonial-free-wrapper-122
    .sp-testimonial-free-section
    .tfree-client-rating {
    display: none;
  }
  .relative.tab-right{
    display: none;
    height: 0;
  }
}
@media only screen and (max-width: 500px) {
  .m-0-xs {
    margin: 0 !important;
  }
  .flex-col-xs {
    flex-direction: column;
  }
  .d-none-xs {
    display: none;
  }
  .container {
    margin: 0 24px;
  }
  .container-left {
    margin-left: 24px;
  }
  .container-right {
    margin-right: 24px;
  }
  .hero-left .btn.btn-main {
    margin-bottom: 1rem !important;
  }
  .help .container-right {
    margin: 0 24px;
  }
  .help-btns.d-iblock,
  .output-btns {
    display: block;
  }
  .testimonials .slick-slide {
    padding: 0 24px;
  }
  .hero-left {
    margin: 0 24px 0 24px;
  }

  .help .container-right,
  .join .container-left,
  .brokers .container-right {
    margin: 0 24px;
  }
  .brokers-title {
    left: 24px;
  }

  div#formPopUp .form {
    margin: 0 24px;
    max-width: calc(100% - 48px);
  }
  .brokers-slick .slick-arrow.slick-next {
    right: 24px;
  }

  .brokers-slick .slick-arrow.slick-prev {
    right: calc(24px + 3rem);
  }
  .sp-testimonial-free-section .tfree-client-testimonial h3 {
    font-size: 1.625rem;
  }
  .help-left.two-cols.flex-1.relative {
    padding-bottom: 4rem;
  }
}

@media only screen and (min-width: 1900px) and (max-width: 2000px) {
  body {
    margin: 0 10vw;
  }
  header#header {
    width: calc(100% - 20vw);
    margin: 0 10vw;
  }
}

@media only screen and (min-width: 2000px) {
  body {
    margin: 0 15vw;
  }
  header#header {
    width: calc(100% - 30vw);
    margin: 0 15vw;
  }
}
