* {
  margin: 0px;
  font-family: "Poppins", sans-serif;
}
.transform {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}
.transition {
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.br-15 {
  border-radius: 15px;
}
.border-blue {
  border: solid 1px #BCCCED;
}
.text-darkBlue {
  color: #003B8A;
}
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 15px;
}
.whiteButton {
  background: #ffffff;
  border: solid 1px #ffffff;
  font-size: 14px;
  font-weight: 600;
  height: 45px;
  line-height: 45px;
  color: #264DD7;
  display: inline-block;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  border-radius: 60px;
  text-decoration: none;
}
.whiteButton:hover {
  text-decoration: none;
  color: #ffffff;
  background: transparent;
}
.whiteLineButton {
  background: transparent;
  border: solid 1px #ffffff;
  font-size: 14px;
  font-weight: 600;
  height: 45px;
  line-height: 45px;
  color: #ffffff;
  display: inline-block;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  border-radius: 60px;
  text-decoration: none;
}
.whiteLineButton:hover {
  text-decoration: none;
  color: #264DD7;
  background: #ffffff;
}
.greenButton {
  background: #2B8928;
  border: solid 1px #2B8928;
  font-size: 14px;
  font-weight: 600;
  height: 45px;
  line-height: 45px;
  color: #ffffff;
  display: inline-block;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  border-radius: 60px;
  text-decoration: none;
}
.greenButton:hover {
  text-decoration: none;
  color: #ffffff;
  border: solid 1px #ffffff;
  background: transparent;
}
.blueDarkButton {
  background: #003B8A;
  border: solid 1px #003B8A;
  font-size: 14px;
  font-weight: 600;
  height: 45px;
  line-height: 45px;
  color: #ffffff;
  display: inline-block;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  border-radius: 60px;
  text-decoration: none;
}
.blueDarkButton:hover {
  text-decoration: none;
  color: #003B8A;
  background: transparent;
}
header {
  position: absolute;
  width: 100%;
  z-index: 1;
}

.headerInner{
  background: #ffffff;
  border-radius: 50px;
}

header .logo img {
  height: 40px;
}
header .playIcon img {
  width: 45px;
  height: 45px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
header .playIcon img:hover {
  width: 41px;
  height: 41px;
  margin: 2px;
}

header .headerInner .greenButton {
  background: #2B8928;
  border: solid 1px #2B8928;
  font-size: 14px;
  font-weight: 600;
  height: 45px;
  line-height: 45px;
  color: #ffffff;
  display: inline-block;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  border-radius: 60px;
  text-decoration: none;
}
header .headerInner .greenButton:hover {
  text-decoration: none;
  color: #2B8928;
  border: solid 1px #2B8928;
  background: transparent;
}

.sliderBox {
  width: 100%;
  height: calc(100vh - 130px);
  position: relative;
  padding-top: 120px;
}
.sliderBox:before {
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(180deg, #0b4da2, #2f4bff);
  clip-path: polygon(0% 0%, 100% 0%, 85% 70%, 0% 100%);
  z-index: -1;
}
.sliderBox .title {
  font-size: 44px;
  line-height: 54px;
}

.sliderBox .subTitle {
  font-size: 16px;
  line-height: 22px;
}
.sliderBox .imgBox {
  position: relative;
  height: 510px;
  max-width: 85%;
  width: 100%;
}
.sliderBox .imgBox .one {
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 1;
}
.sliderBox .imgBox .two {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 2;
}
.sliderBox .imgBox .three {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.sliderBox .imgBox .four {
  width: 100%;
}

.formArea {
  position: fixed;
  bottom:0px;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: transform 0.3s ease-in-out;
}

.formArea .formAreaInner {
  background: #ffffff;
  border: solid 5px #DBE3F4;
  position: relative;
}

.formArea .formAreaInner p{
  font-size: 13px;
}

.formArea .formAreaInner .formInput {
  width: 100%;
  height: 45px;
  border-radius: 50px;
  border: solid 1px #DBE3F4;
  padding: 0 20px;
  font-size: 14px;
  color: #003B8A;
}
.formArea .formAreaInner .formInput:focus-visible {
  outline: none;
}
.formArea .formAreaInner .formInput:focus {
  border: solid 1px #264DD7;
}
.formArea .formAreaInner .formInput::placeholder {
  color: #003B8A;
}
.formArea .formAreaInner .formSelect {
  width: 100%;
  height: 45px;
  border-radius: 50px;
  border: solid 1px #DBE3F4;
  padding: 0 20px;
  font-size: 14px;
  color: #003B8A;
  background: url(../images/drop-down.svg) no-repeat 95% center transparent;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
}
.formArea .formAreaInner .formSelect:focus-visible {
  outline: none;
}
.formArea .formAreaInner .formSelect:focus {
  border: solid 1px #264DD7;
}
.formArea .formAreaInner .greenButton {
  width: 100%;
  background: #2B8928;
  border: solid 1px #2B8928;
  font-size: 14px;
  font-weight: 600;
  height: 45px;
  line-height: 45px;
  color: #ffffff;
  display: inline-block;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  border-radius: 60px;
  text-decoration: none;
}
.formArea .formAreaInner .greenButton:hover {
  text-decoration: none;
  color: #2B8928;
  border: solid 1px #2B8928;
  background: transparent;
}
.formArea .formAreaInner .form-message {
  display: none;
  font-size: 13px;
  border-radius: 7px;
  padding: 8px 10px;
}
.formArea .formAreaInner .form-message.form-success {
  color: #1E7E34;
  background: #E8F5E9;
  border: 1px solid #C3E6CB;
}
.formArea .formAreaInner .form-message.form-warning {
  color: #C26B00;
  background: #FFF4E5;
  border: 1px solid #FFD699;
}
.formArea .formAreaInner .form-message.form-error {
  color: #C0392B;
  background: #FDEDEC;
  border: 1px solid #F5B7B1;
}

.main .h1 {
  font-size: 36px;
}
.main .h2 {
  font-size: 28px;
}
.main .h3 {
  font-size: 22px;
}
.main .h4 {
  font-size: 18px;
}
.main .h5 {
  font-size: 14px;
}
.main .h6 {
  font-size: 12px;
}
.main .iconSet {
  display: flex;
  align-items: center;
}
.main .iconSet span {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  border: solid 1px rgba(38, 77, 215, 0.3);
  display: block;
}
.main .iconSet span i {
  width: 60px;
  height: 60px;
  margin: 9px;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  background: #264DD7;
  color: #ffffff;
  display: block;
  border-radius: 50px;
}
.main .iconSet p {
  font-size: 16px;
  color: #003B8A;
}
.main .bulletsBox {
  display: flex;
  align-items: center;
  justify-content: start;
  border: solid 1px #DBE3F4;
}
.main .bulletsBox i {
  font-size: 32px;
  color: #264DD7;
}
.main .bulletsBox p {
  font-size: 14px;
  color: #000000;
}
.main .manufacturers {
  width: 100%;
  height: 100%;
  position: relative;
}
.main .manufacturers:before {
  content: "";
  width: 80%;
  height: inherit;
  background: #EEF2F9;
  position: absolute;
  top: 45%;
  left: 0px;
  transform: matrix(1, -0.1, 0, 1, 0, 160);
  z-index: -1;
}
.main .manufacturers:after {
  content: "";
  width: 80%;
  height: inherit;
  background: #EEF2F9;
  position: absolute;
  top: 0px;
  right: 0px;
  transform: matrix(1, -0.1, 0, 1, 0, -100);
  z-index: -2;
}
.main .manufacturers .manufacturersInner {
  width: 100%;
  height: calc(100% + 300px);
  position: relative;
}
.main .manufacturers .manufacturersInner:before {
  content: "";
  width: 100%;
  height: inherit;
  background: #003B8A;
  background: linear-gradient(110deg, #003b8a 0%, #2e4ff3 100%);
  position: absolute;
  top: 0px;
  left: 0px;
  transform: matrix(1, -0.1, 0, 1, 0, 0);
  z-index: -1;
}
.main .manufacturers .manufacturersInner .manufacturersBox {
  background: #ffffff;
  min-height: 200px;
  position: relative;
  padding-top: 60px;
}
.main .manufacturers .manufacturersInner .manufacturersBox .manufacturersBoxIcon {
  width: 80px;
  height: 80px;
  border-radius: 7.5px;
  background: #2E4FF3;
  top: -40px;
  left: calc(50% - 40px);
  position: absolute;
}
.main .manufacturers .manufacturersInner .manufacturersBox .manufacturersBoxIcon i {
  font-size: 50px;
  color: #ffffff;
  text-align: center;
  line-height: 80px;
  display: block;
}
.main .videoBox {
  width: 100%;
  height: auto;
  position: relative;
}
.main .videoBox button {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 1;
  border: 0;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.3);
  width: 78px;
  height: 78px;
  padding: 15px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .videoBox button i {
  font-size: 48px;
  color: #ffffff;
}
.main .videoBox button:hover {
  background: rgba(255, 255, 255, 0.4);
}
.main .videoBox video {
  width: 100%;
  display: block;
}
.main .roiBox {
  background: #EEF2F9;
  border: solid 1px #DBE3F4;
}
.main .roiBox .formBox span {
  font-size: 13px;
  font-weight: 500;
  color: #003B8A;
  display: block;
  margin-bottom: 5px;
}
.main .roiBox .formBox .inputBox {
  width: 100%;
  height: 45px;
  border: solid 1px #DBE3F4;
  border-radius: 7.5px;
  padding: 0px 10px;
  font-size: 14px;
  color: #264DD7;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .roiBox .formBox .inputBox:focus-visible {
  outline: none;
}
.main .roiBox .formBox .inputBox:focus {
  border: solid 1px #264DD7;
}
.main .roiBox .formBox .inputBox::placeholder {
  color: #B8C8E1;
}
.main .roiBox .formConclusionBox {
  background: #ffffff;
  border-radius: 0 0 15px 15px;
}
.main .roiBox .formConclusionBox .formConclusion span {
  font-size: 14px;
  color: #003B8A;
}
.main .roiBox .formConclusionBox .formConclusion strong {
  font-size: 24px;
  color: #2B8928;
}
.main .roiBox .formConclusionBox .formConclusion {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s ease;
}
.main .roiBox .formConclusionBox .formConclusion.show {
  max-height: 200px;
  margin-top: 16px;
  opacity: 1;
  transform: translateY(0);
}
.main .roiConclusion {
  width: 100%;
  height: auto;
  background:#003B8A;
}
.roi-error-message {
  font-size: 13px;
  color: #C26B00;
  background: #FFF4E5;
  border-radius: 7px;
  padding: 8px 10px;
  border: 1px solid #FFD699;
}
.main .informationBox {
  position: relative;
}
.main .informationBox:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #EEF2F9;
  width: 100%;
  height: 70%;
  top: 10%;
}
.main .informationBox .faqBox {
  background: #c8d5ef;
  border: solid 1px #DBE3F4;
}
.main .informationBox .faqBox .accordion-item {
  border-radius: 7.5px;
  border: 0 !important;
}
.main .informationBox .faqBox .accordion-item .accordion-button {
  border-radius: 7.5px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  color: #003B8A;
}
.main .informationBox .faqBox .accordion-item .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #003B8A;
}
.main .informationBox .faqBox .accordion-item .accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}
.main .informationBox .faqBox .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.main .informationBox .faqBox .accordion-item .accordion-body {
  font-size: 14px;
}
.main .informationBox .faqBox .accordion-item:not(:first-of-type) {
  border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.main .informationBox p {
  line-height: 26px;
}
.main .informationBox ul li {
  font-size: 14px;
  margin-bottom: 5px;
}
.main .informationBox ul li::marker {
  color: #264DD7;
  font-size: 18px;
}

footer .footerInner {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}
footer .footerInner .footerInfo {
  position: absolute;
  bottom: 170px;
  z-index: 3;
  width: 100%;
  text-align: center;
}

footer .footerInner .footerInfo img{
  height: 70px;
  background: #ffffff;
  border-radius: 10px;
  padding: 15px; 
}

footer .footerInner .footerInfo p {
  font-size: 12px;
}
footer .footerInner .footerInfo .arina {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footerInner .footerInfo .arina i {
  font-size: 28px;
  margin-left: 5px;
}
footer .footerInner .footerOne {
  width: 80%;
  height: inherit;
  background: #EEF2F9;
  position: absolute;
  top: 0px;
  right: 0px;
  transform: matrix(1, -0.1, 0, 1, 0, 70);
  z-index: 0;
}
footer .footerInner .footerTwo {
  width: 100%;
  height: inherit;
  background: #003B8A;
  background: linear-gradient(110deg, #003b8a 0%, #2e4ff3 100%);
  position: absolute;
  top: 0px;
  left: 0px;
  transform: matrix(1, -0.1, 0, 1, 0, 160);
  z-index: 2;
}


#rangeValue{
  width: 55px;
  height: 30px;
  line-height: 30px;
  font-size: 165x;
  margin-bottom: 0;
  text-align: right;
}



#offerButton {
  position: fixed;
  display: block ;
  z-index: 9;
  left: 15px;
  bottom: 10px;
  background: #2B8928;
  border: solid 1px #2B8928;
  color: #fff;
  height: 50px;
  width: calc(100% - 30px);
  border-radius: 25px;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}

#offerButton {
  display: none
}


@media (min-width: 991px) {
  #offerButton {
    display: none !important;
  }
}

.onayForm {
  background: linear-gradient(180deg, #0b4da2, #2f4bff);
  border-radius: 15px;
  height: 80vh;
  margin-top: 10vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.onayForm .formLogo {
  width: 220px;
  display: block;
  margin: 0px auto;
}
.onayForm .formLogo img {
  width: 100%;
}
.onayForm .formBilgi img {
  width: 120px;
}
.onayForm .formBilgi strong {
  display: block;
  color: #ffffff;
  font-size: 32px;
  text-align: center;
}
.onayForm .formBilgi span {
  display: block;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}
.onayForm .onayButton {
  font-size: 14px;
  display: table;
  color: #ffffff;
  margin: 0px auto;
  border: solid 2px #ffffff;
  padding: 15px 30px;
  border-radius: 30px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  text-decoration: none;
}
.onayForm .onayButton:hover {
  padding: 15px 20px;
  text-decoration: none;
}


@media (min-width: 1200px) and (max-width: 1400px) {
  .sliderBox .imgBox {
    max-width: 95%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sliderBox .imgBox {
    height: 460px;
    max-width: 100%;
  }
  .sliderBox .imgBox .one {
    width: 60%;
  }
  .sliderBox .imgBox .two {
    width: 40%;
  }
  .sliderBox .imgBox .three {
    width: 100%;
  }
  .sliderBox .title {
    font-size: 38px;
    line-height: 48px;
  }
  .main .manufacturers .manufacturersInner .manufacturersBox {
    min-height: 215px;
  }
}
@media (min-width: 0px) and (max-width: 991px) {

  .main .h1 {
    font-size: 34px;
  }
  .main .h2 {
    font-size: 28px;
  }
  .main .h3 {
    font-size: 24px;
  }
  .main .h4 {
    font-size: 18px;
  }
  .main .h5 {
    font-size: 14px;
  }
  .main .h6 {
    font-size: 12px;
  }
  .main .manufacturers:before {
    transform: matrix(1, -0.1, 0, 1, 0, -70);
  }
  .main .manufacturers:after {
    transform: matrix(1, -0.1, 0, 1, 0, -70);
  }
  p br {
    display: none;
  }
  .sliderBox {
    height: auto;
    padding-top: 80px;
  }
  .sliderBox .imgBox {
    max-width: 75%;
    margin: 0px auto;
  }
  .formArea {
    position: relative;
    bottom: 0;
    left: 0;
    transition: none;
  }

  footer .footerInner {
    height: 500px;
  }

  footer .footerInner .footerInfo {
    bottom: 90px;
  }

}
@media (min-width: 577px) and (max-width: 767px) {
  .main .h1 {
    font-size: 30px;
  }
  .main .h2 {
    font-size: 26px;
  }
  .main .h3 {
    font-size: 22px;
  }
  .main .h4 {
    font-size: 18px;
  }
  .main .h5 {
    font-size: 14px;
  }
  .main .h6 {
    font-size: 12px;
  }
  .sliderBox .imgBox {
    height: 460px;
    max-width: 90%;
  }
  .sliderBox .imgBox .one {
    width: 60%;
  }
  .sliderBox .imgBox .two {
    width: 40%;
  }
  .sliderBox .imgBox .three {
    width: 95%;
  }
  .sliderBox .title {
    font-size: 34px;
    line-height: 44px;
  }
}
@media (min-width: 0) and (max-width: 576px) {
  .main .h1 {
    font-size: 26px;
  }
  .main .h2 {
    font-size: 22px;
  }
  .main .h3 {
    font-size: 20px;
  }
  .main .h4 {
    font-size: 18px;
  }
  .main .h5 {
    font-size: 14px;
  }
  .main .h6 {
    font-size: 12px;
  }
  .main .manufacturers .manufacturersInner {
    height: calc(100% + 150px);
  }
  .main .manufacturers:after {
    transform: matrix(1, -0.1, 0, 1, 0, -50);
  }
  .main .manufacturers:before {
    transform: matrix(1, -0.1, 0, 1, 0, -220);
  }
  header .logo img {
    height: 40px;
  }
  .sliderBox {
    padding-top: 60px;
  }
  .sliderBox .imgBox {
    height: 360px;
    max-width: 360px;
  }
  .sliderBox .imgBox .one {
    width: 60%;
  }
  .sliderBox .imgBox .two {
    width: 40%;
  }
  .sliderBox .imgBox .three {
    width: 95%;
  }
  .sliderBox .title {
    font-size: 28px;
    line-height: 36px;
  }
}


