@import url(header.css);
@import url(footer.css);
@import url(font/font.css);

*, *::before, *::after {
    box-sizing: border-box;

}

body {
    font-family: 'SF Pro Display';
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    height: 100vh;
}

main {
    padding-top: 92px;
    width: 100%;
    height: auto;
}

.CalcSection {
    background: url("../image/banner.png") no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.CalcSection {
  height: 100%;
  width: auto;
  overflow: hidden;
  padding-top: 80px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.CalcOuter {
  height: 100%;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1264px;
  width: 100%;
  box-sizing: border-box;
}

.CalcIMGbox {
display: flex;

  align-items: center;
  position: relative;
  min-height: 532px;
  width: 454px;
}

.CalcIMGbox img{
position: absolute;
  z-index: 0;
  left: -150px;
  top: 60%;
  display: block;
  width: 900px;
  transform: translateY(-50%);
}

.license {
    display: flex;
  gap: 20px;
  flex-wrap: wrap;
  height: 50px;
  width: 100%;
  height: 50px;
  background: #144175;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  gap: 40px;
}

.license a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}

.license a:hover {
  color: #2065e6;
  transition: 0.2s;
}

.Calc {
  background: #f5f6fb;
  box-shadow: 0 0 20px rgba(0,0,0,.15);
  border-radius: 15px;
  width: 529px;
  height: 100%;
  margin-bottom: 24px;
  z-index: 100;
}

.NewRegular {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.New, .Regular{
border-bottom: #c1c3d3 2px solid;
width: 50%;
display: flex;
justify-content: center;
align-items: center;
height: 52px;
cursor: pointer;
padding-left: 8px;
padding-right: 8px;
}

.New p, .Regular p {
    color: #0d1321;
    margin: 0;
    font-size: 16px;
    text-align: center;
}

.CalcInfo1 {
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.CalcInfo1 p{
    margin: 0;
}

.Opp {
    padding-bottom: 20px;
}

.Opp p {
font-weight: 400;
  font-size: 15px;
  color: #6e737d;
}

.Sliders {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.Sum, .Days{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.Amount {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:start;
}

.Amount p {
    font-weight: 400;
  font-size: 13px;
  color: #6e737d;
}

.ValueBox p {
  font-weight: 600;
  font-size: 18px;
  text-align: right;
  color: #0d1321;
}

.ClLk {
    font-size: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.CalcInfo2 {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 0 11px rgba(0,0,0,.08);
    padding: 16px 24px;
    box-sizing: border-box; 
}

.row1 {
    width: fit-content;
    margin-right: auto;
    max-width: 212px;
}

.row2 {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    max-width: 155px;
}

.LoanSum, .ReturnDays, .ReturnBefore, .Percentage, .AllSum{
display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}



.LoanSum p, .ReturnDays p, .ReturnBefore p, .Percentage p, .AllSum p{
font-weight: 400;
  font-size: 14px;
  color: #6e737d;
  line-height: 191%;
} 

.SumText {
display: block;
  padding-left: 20px;
  margin-left: auto!important;
  font-weight: 600!important;
  font-size: 14px!important;
  color: #0d1321!important;
}

.SmallText p{
    color: #6e737d;
  font-size: 12px;
  margin-top: 8px;
  margin-bottom: 32px;
}

.CalcButtons {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 16px;
}

.FullBut {
    background-color: #2065e6;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 100px;
    transition: ease-in-out 0.2s;
        border: 1px solid #2065e6;
}

.FullBut:hover {
    background-color: #f5f6fb;
    border: 1px solid #e1e3f0;
    color: #2065e6;
    transition: ease-in-out 0.2s;
}

.OutlineBut {
    background-color: none;
    color: #2065e6;
    font-size: 14px;
    height: 48px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 100px;
    border: 1px solid #e1e3f0;
        transition: ease-in-out 0.2s;
}

.OutlineBut:hover {
    background-color: #2065e6;
    color: #fff;
    transition: ease-in-out 0.2s;
}




.SliderContainer2 {
  position: relative;
  width: 100%;
  height: 21px;
  border-radius: 100px;
  background: #e9ebf3;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 12px;
  box-sizing: border-box;
}

.Slider2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  margin: 0;
  z-index: 5;
  cursor: pointer;
}

.Slider2::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
}

.Slider2::-moz-range-thumb {
  width: 0;
  height: 0;
  border: 0;
}

.Slider2::-ms-thumb {
  width: 0;
  height: 0;
  border: 0;
}

.Track {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.Track .plank {
  flex: 1 1 auto;
  height: 1px;
  background: #c1c3d3;
}

.dotleft, .dotright {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c1c3d3;
}

.dotleft {
  background: #c2e812;
}

.ProgressBar2 {
  position: absolute;
  height: 2px;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  background: #c2e812;
  border-radius: 2px;
  pointer-events: none;
}

.Pointer2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 21px;
  border-radius: 27px;
  background: #c2e812;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -18px;
  pointer-events: none;
  color: #111;;
  padding: 0 6px;
  white-space: nowrap;
}

.New.active, .Regular.active {
  border-bottom: 2px solid #2065e6;
}

.New.active p, .Regular.active p {
  font-weight: 600;
  color: #2065e6;
}


h2 {
    font-weight: 600;
    font-size: 32px;
    margin: 0;
}

.aboutus {
    margin-top: 64px;
    margin-bottom: 64px;
    display: flex;
    justify-content: center;
}

.aboutuscover {
    max-width: 1200px;
    margin-right: 32px;
    margin-left: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aboutblocks {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    row-gap: 56px;
    margin-top: 40px;
}

.aboutblock {
display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width:353px;
  min-width: 271px;
}

.aboutblock img {
    height: 64px;
    width: 64px;
}

.aboutinner {
    margin-left: 24px;
    display: flex;
    flex-direction: column;
}

.aboutinner b{
    font-size: 16px;
    font-weight: 600;
    color: #0d1321;
    margin: 0;
    margin-bottom: 12px;
}

.aboutinner p{
    font-weight: 400;
    font-size: 16px;
    color: #6e737d;
    margin: 0;
}

.loyalty {
    margin-top: 64px;
    margin-bottom: 64px;
    display: flex;
    justify-content: center;
}

.loyaltycover {
    max-width: 1200px;
    margin-right: 32px;
    margin-left: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loyaltyblock {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    gap: 44px;
}

.loyaltyblock img {
    width: 450px;
    height: 343px;
}

.loyaltyinfo {
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 56px 40px 40px;
  background: #f5f6fb;
  border-radius: 15px;
}

.loyaltyinfowrap {
    display: flex;
    flex-direction: column;
}

.loyaltyinfo b {
    font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #0d1321;
  margin: 0;
  margin-bottom: 24px;
}

.loyaltyinfo p {
    font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #6e737d;
  margin: 0;
  margin-bottom: 20px;
}

.loyaltybutton {
    max-width: 224px;
    display: flex;
  justify-content: center;
  align-items: center;
  color: #2065e6;
  border: 1px solid #e1e3f0;
  border-radius: 40px;
  height: 48px;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #2065e6;
  text-decoration: none;
}

.loyaltybutton:hover {
  border: 1px solid #2065e6;
  background: #2065e6;
  color: #fff;
  transition: 0.2s;
}

.Conditions {
    margin-top: 64px;
    margin-bottom: 64px;
    display: flex;
    justify-content: center;
}

.ConditionsWrap {
    max-width: 1200px;
    margin-right: 32px;
    margin-left: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f6fb;
    border-radius: 15px;
    padding: 32px;
}

.ConditionsWrap h2 {
  margin-bottom: 40px;
}

.CondOuter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.CondButs {
  max-width: 364px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: 44px;
}

.CondNew {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e1e3f0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
}

.CondNew.active {
background-color: #fff;
color: #2065e6;
}

.CondReg {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e1e3f0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
}

.CondReg.active {
background-color: #fff;
color: #2065e6;
}

.CondBlocks {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 20px;
}

.CondBlock {
width: 100%;
  max-width: 364px;
  border-radius: 15px;
  border: 1px solid #e1e3f0;
  padding: 20px;
}

.CondBlock b {
  font-size: 24px;
  font-weight: 500;

}

.CondList {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.CondList a {
  font-size: 16px;
}

.CondBlock2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
width: 100%;
  max-width: 364px;
  border-radius: 15px;
  border: 1px solid #e1e3f0;
  padding: 20px;
}

.CondBlock2 b {
 font-size: 28px;
  font-weight: 600;
  color: #2065e6;
  text-decoration: underline;
}

.CondBlock2 p {
  color: #6e737d;
  margin-top: 12px;
  margin-bottom: 0; 
}

.CondList p {
  margin: 0;  
  color: #050517;
}


.CondRef {
  display: flex;  
  min-height: 48px;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background: #2065e6;
  border-radius: 40px;
  width: 100%;
  text-decoration: none;
    transition: ease-in-out 0.2s;
}

.CondRef:hover {
  background: 0 0;
  color: #2065e6;
  border: 1px solid #e1e3f0;
  transition: ease-in-out 0.2s;
}

.CondBlock3 {
width: 100%;
  max-width: 364px;
  border-radius: 15px;
  border: 1px solid #e1e3f0;
  padding: 20px;
}

.CondBlock3 b {
  font-size: 24px;
  font-weight: 500;
}



.HowTo1 {
    margin-top: 64px;
    margin-bottom: 64px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.HowTo1Wrap {
    max-width: 1200px;
    width: 100%;
    margin-right: 32px;
    margin-left: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.HowTo1Textblock {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 32px;
    margin-bottom: 40px;
}

.HowTo1Textblock b {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #0d1321;
}

.HowTo1Blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.HowTo1Block {
    display: flex;
    flex-direction: column;
    width: 33%;
    max-width: 300px;
    margin: auto;
}

.HowTo1Block b {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #0d1321;
}

.HowTo1Block p {
display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #6e737d;
  margin: 0;
  margin-bottom: 12px;
}

.HowTo1Block a {
    text-align: center;
}

.HowTo1IMG {
    position: relative;
  display: block;
  width: 100%;
  max-width: 257px;
  margin: 0 auto 34px;
  height: 243px;
  border-radius: 17px;
  box-shadow: 0 0 17px rgba(0,0,0,.11);
  }

  .HowTo1IMG img{
      width: 100%;
      height: 243px;
  }

  .HowTo1IMG b {
  position: absolute;
  left: -20px;
  top: 50%;
  z-index: 2;
  margin-top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2065e6;
  border-radius: 50%;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #fff;
  text-align: center;
}

.HowTo1Button {
  display: flex;
  min-height: 48px;
  padding: 5px 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
  background: #2065e6;
  border-radius: 40px;
  width: 100%;
  max-width: 345px;
  text-decoration: none;
}

.HowTo1Button:hover {
  background: #fff;
  color: #2065e6;
  border: 1px solid #e1e3f0;
  transition: ease-in-out 0.2s;
}

.HowToPlank {
    width: 1px;
    height: 350px;
    background: #e1e3f0;
}


.HowTo2 {
    margin-top: 64px;
    margin-bottom: 64px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.HowTo2Wrap {
    max-width: 1200px;
    width: 100%;
    margin-right: 32px;
    margin-left: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.HowTo2Textblock {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 32px;
    margin-bottom: 40px;
}

.HowTo2Blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
}

.HowTo2Block {
    display: flex;
    flex-direction: column;
    width: 33%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.HowTo2Block b {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #0d1321;
}

.HowTo2Block p {
display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #6e737d;
  margin: 0;
  margin-bottom: 12px;
}

.HowTo2Block a {
    text-align: center;
}

.HowTo23IMG {
position: relative;
  display: block;
  width: 100%;
  height: 257px;
  max-width: 257px;
  margin: 0 auto 34px;
  border-radius: 22px;
  box-shadow: 0 0 17px rgba(0,0,0,.11);
  overflow: visible;
      display: flex;
    align-items: center;
    justify-content: center;
  }

.HowTo23IMG img {
  position: absolute;
    width: 257px;
    height: 257px;
}

.HowTo21IMG {
position: relative;
  display: block;
  width: 100%;
  height: 257px;
  max-width: 257px;
  margin: 0 auto 34px;
  border-radius: 22px;
  box-shadow: 0 0 17px rgba(0,0,0,.11);
  overflow: visible;
      display: flex;
    align-items: center;
    justify-content: center;
  }

.HowTo21IMG img {
        position: absolute;
    width: 304px;
    height: 304px;
        top: -27px;
}

.HowTo22IMG {
position: relative;
  display: block;
  width: 100%;
  height: 257px;
  max-width: 257px;
  margin: 0 auto 34px;
  border-radius: 22px;
  box-shadow: 0 0 17px rgba(0,0,0,.11);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;

  }

.HowTo22IMG img {
    position: absolute;
    width: 300px;
    height: 300px;
    top: -23px;
}



.TestimNav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-top:16px;
}
.TestimNav .tn-prev,
.TestimNav .tn-next,
.TestimNav .tn-page{
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  opacity: .7;
}
.TestimNav .tn-page.active { font-weight: 700; opacity: 1; }
.TestimViewport {
  overflow: hidden;
}

.TestimViewport{      
  overflow: hidden;
  touch-action: pan-y;
}
.TestimViewport.is-dragging,
.TestimViewport.is-dragging *{
  user-select: none; 
}
.TestimViewport img{
  -webkit-user-drag: none;
  user-drag: none;
}

.TestimNav{
  display:flex; align-items:center; justify-content:center;
  gap:16px; margin-top:16px;
}
.TestimNav .tn-prev,.TestimNav .tn-next,.TestimNav .tn-page{
  background:none; border:none; font:inherit; cursor:pointer; opacity:.7;
}
.TestimNav .tn-page.active{ font-weight:700; opacity:1; }

.Testim {
    margin-top: 64px;
  margin-bottom: 64px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.TestimWrap h2 {
  margin-bottom: 40px;
}

.TestimWrap {
    max-width: 1200px;
  width: 100%;
  margin-right: 32px;
  margin-left: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.TestimBlocks {
  max-width: 1200px;
  
}
.TestimBlock {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f5f6fb;
  border-radius: 15px;
  padding: 32px;
  flex: 0 0 376px !important; 
  width: 376px !important;
  margin-left: 12px;
  margin-right: 12px;
}

.TestimUp {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e9ebf5;

}

.ImgName {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.ImgName img {
  width: 40px;
  height: 40px;
   border-radius: 8px;
}

.NameBar b{
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #0d1321;
  margin-left: 12px;

}

.Review {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c2e812;
  border-radius: 8px;
  padding: 3px 6px;
}

.Review img {
  width: 12px;
  height: 12px;
}

.Review span {
  display: block;
  padding-left: 4px;
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
  color: #0d1321;
}


.TestimBot p{
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #0d1321;
  margin: 0;
}


.FAQ {
    margin-top: 64px;
    margin-bottom: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.FAQWrap {
    max-width: 1200px;
    margin-right: 32px;
    margin-left: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.FAQBlocks {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  background-color: #f5f6fb;
  border-radius: 16px;
  padding: 32px;
}

.FAQblock {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.FAQblock + .FAQblock {
  margin-top: 20px;
}

.FAQblock .FAQText {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.FAQblock.expanded .FAQText {
    max-height: 4000px;
padding: 16px 24px 20px;
  border-bottom: 1px solid #e1e3f0;
  background-color: #fff;
    opacity: 1;
}

.FAQMain {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
        padding-bottom: 12px;
        border-bottom: 1px solid #e1e3f0;
}

.FAQblock:last-child .FAQMain {
    border-bottom: none;
    padding: 0;
}

.FAQblock:last-child.expanded .FAQMain {
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
}

.ArrowDiv {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  background-color: #e1e3f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.ArrowDiv img {
      width: 16px;
    height: 16px;
    object-fit: fill; 
}

.FAQMain p {
    display: block;
  padding-right: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #050517;
  transition: color .2s linear;
  margin: 0;
}

.ArrowDiv {
    transition: transform 0.3s ease;
}

.FAQblock.expanded .ArrowDiv {
    transform: rotate(180deg);
    background-color: #2065e6;
}

.FAQblock.expanded .FAQMain p {
  color: #2065e6;
  transition: transform 0.3s ease;
}

.FAQText p {
    margin: 0;
    display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #050517;
  overflow-wrap: anywhere;   /* сучасний варіант */
  word-break: break-word;    /* підстраховка для старих двигунів */
  hyphens: auto;             /* перенос слів з дефісами/за словником, якщо доступно */
}

.FAQ button {
    padding: 16px 28px;
}

.FAQ button p {
    font-size: 18px;
    margin: 0;
}

.FAQText a{
    transition: color 0.3s ease;
    color: #050517;
}

.FAQText a:hover {
    color: #2065e6;
}

.CompanyInfo  {
    margin-top: 64px;
    margin-bottom: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.CompanyInfoWrap {
    background: #f5f6fb;
  margin-top: 40px;
  width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.InfoBlock {
 padding: 32px 0;
    max-width: 1200px;
    margin-right: 32px;
    margin-left: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.InfoInner {
  width: calc(50% - 24px);
  padding: 40px 50px 40px 40px;
  margin-right: 48px;
  background: #fff;
  border-radius: 15px;
}

.InfoInner h3{
  display: block;
  margin: 0;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #0d1321;
}

.InfoInner p {
  display: block;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #0d1321;
}

.Video {
  position: relative;
  overflow: hidden;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(50% - 24px);
  border-radius: 15px;
}

.video-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.preview-play-button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 80px;
  width: 80px;
  z-index: 2;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10000;
}

.close-button::before,
.close-button::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
}

.close-button::before {
  transform: rotate(45deg);
}

.close-button::after {
  transform: rotate(-45deg);
}

.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-container {
  width: 80%;
  max-width: 800px;
  aspect-ratio: 16/9;
}

.video-player {
  width: 100%;
  height: 100%;
}


.ReqBlockOuter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ReqBlock {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin-left: 32px;
    margin-right: 32px;
}

.Requirments {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 16px;
    background-color: #f5f6fb;
}

.ReqMain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 28px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ReqMain p {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.ReqMain img {
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.ReqMain img.rotated {
    transform: rotate(360deg);
}

.ReqsInfo {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.ReqsInfo.expanded {
    max-height: 10000px;
}

.ReqsInside {
    padding: 12px 40px 20px;
    display: flex;
    flex-direction: column;
}

.ReqsInside p, .ReqsInside span {
    margin: 0;
    line-height: 1.5;
    font-size: 18px;
}

.ReqsInside span {
    font-weight: 600;
}

.ReqsInside a {
    color: var(--Main);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.ReqsInside a:hover {
    color: #008DEF;
}

.TextFrame {
    outline: 2px solid #6e737d;
    outline-offset: -1px;
    padding: 16px;
    border-radius: 16px;
}

.TextFrame p {
    margin: 0;
    font-size: 16px;
    line-height: 20px;
}

.ReqsInside a {
    text-decoration: underline;
}

.ReqBut button{
    padding: 16px 28px;
    text-decoration: none;
    font-size: 18px;
}

.ReqBut p {
    margin: 0;
}


.PartnersBlock {
    margin-top: 64px;
    margin-bottom: 64px;
    display: flex;
    justify-content: center;
}

.Partners {
  width: 100%;
    max-width: 1200px;
    margin-right: 32px;
    margin-left: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    border: 1px solid #e1e3f0;
    border-radius: 16px;
}

.Partner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 91px;
  width: 25%;
}

.Partner img {
  max-width: 90px;
}

.PartnersPlank {
  height: 100%;
  width: 1px;
  background-color: #e1e3f0;
}

.ProtectedBlock {
    margin-top: 64px;
    margin-bottom: 64px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.ProtectedBlockWrap {
    max-width: 1200px;
    width: 100%;
    margin-right: 32px;
    margin-left: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ProtectedPart {
  padding: 32px;
  background: #f5f6fb;
  border-radius: 16px;
}

.Prottext h2 {
  font-size: 28px;
  line-height: 120%;
  font-weight: 500;
  margin-bottom: 12px;
}

.Prottext p {
  font-size: 16px;
  line-height: 150%;
  margin: 0;
  margin-bottom: 20px;
}

.Prottext a {
color: #0d1321;
transition: color 0.3s ease;
}

.Prottext a:hover {
color: #008DEF;
transition: color 0.3s ease;
}

.ProtBut {
  display: flex;
  min-height: 48px;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 17px;
  text-align: center;
  color: #fff;
  background: #2065e6;
  border-radius: 40px;
  width: 100%;
  max-width: 345px;
  text-decoration: none;
    transition: ease-in-out 0.2s;
}

.ProtBut:hover {
background: 0 0;
  color: #2065e6;
  border: 1px solid #e1e3f0;
  transition: ease-in-out 0.2s;
}


@media screen and (max-width: 768px) {
    .CalcSection {
      padding-top: 0;  
    }

    .CalcOuter {
      flex-direction: column;
      align-items: center;
      padding-left: 0;
      padding-right: 0;
    }

    .CalcIMGbox {
      width: 100%;
      height: 100%;
      min-height: 200px;
      padding-right: 16px;
      padding-left: 16px;
    }

    .CalcIMGbox img {
      width: 100%;
  left:16px;
  top: 16px;
  transform: translateY(0);
  position: relative;
    }
    .Calc {
      width: 100%;
      border-radius: 0;
      margin-bottom: 0;
    }

    .New p, .Regular p {
      font-size: 14px;
    }

    .CalcInfo1 {
      padding-right: 16px;
      padding-left: 16px;
      padding-top: 12px;
      padding-bottom: 12px;
    }

    .Opp {
      padding-bottom: 16px;
    }

    .Sliders {
      gap: 16px;
  margin-bottom: 16px;
    }

    .Sum, .Days {
      gap: 8px;
    }

    .ClLk {
      font-size: 16px;
      margin-bottom: 16px;
    }

    .CalcInfo2 {
      border-radius: 8px;
      padding-top: 8px;
      padding-bottom: 8px;
      padding-left: 12px;
      padding-right: 12px;
      flex-direction: column;
    }
    .row1 {
      width: 100%;  
      margin: 0;
      max-width: none;
      gap: 8px;
    }
    .row2 {
       width: 100%;  
      margin: 0;
      max-width: none;
    }

    .SmallText p {
      color: #6e737d;
  font-size: 11px;
  line-height: 160%;
  margin-bottom: 20px;
    }

    .CalcButtons {
      flex-direction: column;
      gap: 12px;
    }

    .FullBut {
      width: 100%;
    }

    .OutlineBut {
      width: 100%;
    }

    .license {
      height: auto;
      padding-left: 16px;
      padding-right: 16px;
      text-align: center;
      padding-top: 8px;
      padding-bottom: 8px;
      gap: 20px;
    }

    .license a {
        font-size: 14px;
    }

    h2 {
      font-size: 20px;
    }

    .aboutus {
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .aboutuscover {
      margin-left: 16px;
      margin-right: 16px;
    }

    .aboutblocks {
      margin-top: 32px;
      row-gap: 20px;
    }

    .aboutblock {
      max-width: none;
      min-width: 0;
    }

    .aboutblock img {
      width: 40px;
      height: 40px;
    }

    .aboutinner {
      margin-left: 16px;
    }

    .aboutinner b {
      font-size: 14px;
    margin-bottom: 4px;
    }

    .aboutinner p {
      font-size: 14px;
    }

    .Conditions {
      margin-top: 40px;
      margin-bottom: 40px;
      width: 100%;
      
    }

    .ConditionsWrap {
      width: 100%;
      padding-left: 16px;
      padding-right: 16px;
      padding-top: 12px;
      padding-bottom: 12px;
      border-radius: 0;
      margin: 0;
    }

    .ConditionsWrap h2 {
      margin-bottom: 32px;
    }

    .CondOuter {
      gap: 16px;
      width: 100%;
      
    }

    .CondButs {
      max-width: none;
      gap: 8px;
    }

    .CondNew {
      padding-left: 8px;
      padding-right: 8px;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .CondReg {
      padding-left: 8px;
      padding-right: 8px;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .CondBlocks {
      flex-direction: column;
      gap: 16px;
    }

    .CondBlock {
      max-width: none;
      padding: 16px;
    }

    .CondBlock b {
      font-size: 20px;
    }

    .CondList {
      gap: 12px;
      margin-top: 16px;
    }

    .CondList a {
      font-size: 15px;
    }
    

    .CondBlock2 {
      max-width: none;
      padding: 16px;
    }

    .ListWrap b {
      font-size: 20px;
    }

    .ListWrap p {
      font-size: 14px;
      margin-top: 8px;
    }
    .CondList p {
      margin: 0;
      font-size: 14px;
    }

    .CondRef {
      margin-top: 20px;
    }

    .CondBlock3 {
      padding: 16px;
      max-width: none;
    }

    .CondBlock3 b {
      font-size: 20px;
    }

    .HowTo1 {
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .HowTo1Wrap {
      margin-left: 16px;
      margin-right: 16px;
    }

    .HowTo1Textblock {
      margin-top: 20px;
      margin-bottom: 20px;
    }

    .HowTo1Textblock b {
      font-size: 14px;
    line-height: 135%;
    margin-bottom: 24px;
    }

    .HowTo1Blocks {
      flex-direction: column;
      gap: 32px;
    }

    .HowTo1Block {
      width: auto;
    }

    .HowTo1IMG {
      width: 175px;
      margin-bottom: 16px;
      overflow: visible;
      height: auto;
      border-radius: 8px;
      height: 167px;
    }

    .HowTo1IMG img {
      max-height: 167px;
    }

    .HowToPlank {
      display: none;
    }

    .HowTo1Block b {
      font-size: 14px;
    line-height: 150%;
    margin-bottom: 8px;
    }

    .HowTo1Block p {
      max-width: 213px;
    margin: 0;
    font-size: 14px;
    line-height: 150%;
    }

    .HowTo1Block a {
      text-align: center;
    margin: 12px auto 0;
    }

    .HowTo2 {
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .HowTo2Wrap {
      margin-left: 16px;
      margin-right: 16px;
    }

    .HowTo2Textblock {
      margin-top: 24px;
      margin-bottom: 20px;
    }

    .HowTo2Textblock b {
      font-size: 14px;
    line-height: 135%;
    margin-bottom: 24px;
    }

    .HowTo2Blocks {
      flex-direction: column;
      gap: 32px;
    }

    .HowTo2Block {
      width: auto;
      justify-content: center;
      align-items: center;
    }

    .HowTo21IMG {
      width: 175px;
      margin-bottom: 16px;
      overflow: visible;
      height: auto;
      border-radius: 14px;
      height: 175px;
      
    }

    .HowTo21IMG img {
      max-height: 206px;
      width: 330px;
      height: 330px;
      top: -18px;
    }

    .HowTo22IMG {
      width: 175px;
      margin-bottom: 16px;
      overflow: visible;
      height: auto;
      border-radius: 14px;
      height: 175px;
    }

    .HowTo22IMG img {
      max-height: 206px;
      width: 330px;
      height: 330px;
      top: -18px;
    }

    .HowTo23IMG {
      width: 175px;
      margin-bottom: 16px;
      overflow: visible;
      height: auto;
      border-radius: 14px;
      height: 175px;
    }

    .HowTo23IMG img {
      max-height: 175px;
      width: 330px;
      height: 330px;
      top: 0;
    }


    .HowTo2Block b {
      font-size: 14px;
    line-height: 150%;
    margin-bottom: 8px;
    }

    .HowTo2Block p {
      max-width: 213px;
    margin: 0;
    font-size: 14px;
    line-height: 150%;
    }

    .HowTo2Block a {
      text-align: center;
    margin: 12px auto 0;
    }

    .Testim {
      margin-bottom: 40px;
      margin-top: 40px;
    }
    
    .TestimWrap {
      margin-right: 16px;
      margin-left: 16px;
    }

    .TestimWrap h2 {
            margin-bottom: 32px;
    }

    .TestimBlocks {

      padding: 0 16px;        /* гатери */
    box-sizing: border-box; /* щоб padding входив у 100% */
      gap: 32px;
      
    }

    .TestimBlock {
      width: 100%!important;
      
    }

    .TestimWrap .TestimBlocks{
    display: flex;
    gap: 32px;
    /* компенсируем боковые поля слайдов, чтобы край страницы = 16px */
    margin: 0 -16px;
    align-items: start;
  }

  /* каждая карточка занимает ширину экрана минус поля по 16px */
  .TestimWrap .TestimBlocks > .TestimBlock{
    flex: 0 0 calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    width: auto !important;
    margin: 0 16px !important;      /* поля по 16px от края экрана */
    box-sizing: border-box;
  }

  .TestimBlocks {
    height: auto!important;
  }

  .FAQ {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .FAQWrap {
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
    
  }

  .FAQMain p {
    font-size: 14px;
  }

  .FAQBlocks {
    padding: 24px;
    margin-top: 32px;
  }

  .FaqText p {
    font-size: 14px;
  }

  .CompanyInfo {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .CompanyInfoWrap {
    margin-top: 32px;
  }

  .InfoBlock {
    margin-right: 16px;
    margin-left: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-direction: column-reverse;
  }

.InfoInner {
  margin: 0;
  margin-top: 16px;
  width: 100%;
  padding: 16px;
}

.InfoInner h3 {
  font-size: 14px;
}

.InfoInner p {
  font-size: 12px;
}

  .Video {
    width: 100%;
    border-radius: 12px;
  }

  .preview-play-button {
    width: 56px;
    height: 56px;
  }

  .video-overlay {
    padding: 12px;
  }

  .video-container {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
  }

  .video-player {
    width: 100%;
    height: 100%;
  }

  .close-button {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }
  .close-button::before,
  .close-button::after {
    width: 14px;
  }

  .ReqBlock {
    margin-right: 16px;
    margin-left: 16px;
  }

  .ReqMain {
    padding: 16px;
  }

  .ReqMain p {
    font-size: 18px;
  }

  .ReqsInside {
    padding: 4px 16px 12px;
  }

  .ReqsInside p, .ReqsInside span, .ReqsInside a, .ReqsInside b {
    font-size: 16px;
  }

  .PartnersBlock {
    margin-top: 40px;
    margin-bottom: 40px;
  }


   .Partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #e1e3ef;
    padding: 1px;
    border-radius: 16px;
    overflow: hidden;
    margin-right: 16px;
    margin-left: 16px;
  }

  .Partner {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
width: 100%;
height: 100%;
    padding: 16px;
  }

  .Partner img {
    max-height: 48px;
    width: 20vw;
    height: auto;
    object-fit: contain;
  }

  .PartnersPlank { display: none !important; }

  .ProtectedBlock {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .ProtectedBlockWrap {
    margin-left: 16px;
    margin-right: 16px;
  }

  .ProtectedPart {
    padding: 24px;
  }

  .Prottext h2 {
    font-size: 18px;
  }

  .Prottext p {
    font-size: 16px;
  }
  }
