.accordion-wrapper .accordion-title {
  padding-bottom: 16px;
}
.accordion-wrapper .accordion-item {
  background-color: #F2F6FE;
  border-radius: 16px;
  margin-bottom: 16px;
}
.accordion-wrapper .accordion-item .accordion-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 16px 16px 16px 24px;
}
.accordion-wrapper .accordion-item .accordion-item-header .accordion-item-icon {
  font-size: 28px;
  color: #f9b233;
  display: flex;
}
.accordion-wrapper .accordion-item .accordion-item-content {
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-wrapper .accordion-item .accordion-item-content .accordion-item-content-wrapper {
  padding: 24px;
  border-radius: 0 0 16px 16px;
  border: 3px solid #F2F6FE;
}
.accordion-wrapper .accordion-item.open .accordion-item-header .accordion-item-icon {
  transform: rotate(180deg);
}
.alert-wrapper .alert-item {
  display: flex;
  gap: 10px;
  background-color: #F2F6FE;
  padding: 10px;
  border-radius: 16px;
  margin-bottom: 16px;
}
.alert-wrapper .alert-item .alert-item-icon {
  font-size: 24px;
  color: #f9b233;
}
.alert-wrapper .alert-item p {
  margin-bottom: 0;
}
.btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
  display: inline-block;
  width: auto;
}
@media (max-width: 1024px) {
  .btn {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .btn {
    font-size: 16px;
  }
}
.btn:hover {
  opacity: 0.8;
}
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-secondary {
  color: #f9b233;
  min-width: 160px;
  background: #fff;
  box-shadow: 0px 4px 8px -4px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 4px 4px 16px -4px rgba(0, 0, 0, 0.1019607843);
}
.btn-primary {
  color: #fff;
  min-width: 160px;
  background: linear-gradient(136.03deg, #F9C500 -8.8%, #FAA600 111.83%);
  box-shadow: 0px 4px 8px -4px rgba(0, 0, 0, 0.1019607843);
}
.btn-link {
  color: #030304;
}
.btn-arrow-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  background: #fff;
  color: #030304;
  border-radius: 60px;
  padding: 5px 5px 5px 20px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-arrow-right .icon-wrapper {
  width: 56px;
  height: 56px;
  background: #F7A600;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .btn-arrow-right .icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.btn-wrapper {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}
.btn-wrapper a {
  width: 100%;
}

.icon-btn {
    font-size: 24px;
    color: #030304;
    text-decoration: none;
    transition: all 0.2s;
}

    .icon-btn:hover {
        opacity: 0.8;
    }

@charset "UTF-8";
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  /* Tik işareti */
}
.checkbox-wrapper input[type=checkbox] {
  display: none;
}
.checkbox-wrapper label {
  font-size: 16px;
  font-weight: 400;
  padding-left: 28px;
  position: relative;
  z-index: 1;
}
.checkbox-wrapper .custom-checkbox {
  width: 20px;
  height: 20px;
  border: 3px solid #f9b233;
  border-radius: 4px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: absolute;
}
.checkbox-wrapper input[type=checkbox]:checked + .custom-checkbox {
  background: #f9b233;
  border-color: #f9b233;
}
.checkbox-wrapper .custom-checkbox::after {
  content: "";
  display: none;
  position: absolute;
  width: 4px;
  height: 9px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  left: 4px;
  top: 0px;
  transform: rotate(45deg);
}
.checkbox-wrapper input[type=checkbox]:checked + .custom-checkbox::after {
  display: block;
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.radio-list .radio-list-label {
  font-size: 14px;
  font-weight: 400;
  color: #030304;
  display: block;
}
.radio-list .radio-list-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.radio-list .radio-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.radio-list .radio-list-item label {
  font-size: 14px;
  font-weight: 400;
  color: #424242;
  padding-left: 28px;
  position: relative;
  z-index: 1;
}
.radio-list .radio-list-item input[type=radio] {
  display: none;
}
.radio-list .radio-list-item .custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #A3A4A5;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: absolute;
  left: 0;
  top: 0;
}
.radio-list .radio-list-item .custom-radio::after {
  content: "";
  display: none;
  width: 11px;
  height: 12px;
  border-radius: 50%;
  background: #f9b233;
}
.radio-list .radio-list-item input[type=radio]:checked + label {
  color: #030304;
}
.radio-list .radio-list-item input[type=radio]:checked + label .custom-radio {
  border-color: #f9b233;
}
.radio-list .radio-list-item input[type=radio]:checked + label .custom-radio::after {
  display: block;
}
.section-wrapper h3 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 100px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .section-wrapper h3 {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
@media (max-width: 810px) {
  .section-wrapper h3 {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

.slider-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.slider-shapes .shape-1 {
  width: 100px;
  height: 100px;
  position: absolute;
  right: 180px;
  bottom: -80px;
  display: flex;
  border-radius: 50%;
  -webkit-animation: square 20s infinite;
  animation: square 20s infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  transition-timing-function: linear;
  background: linear-gradient(150.42deg, #FFE154 21.69%, #FAC800 69.33%);
}
@media (max-width: 767px) {
  .slider-shapes .shape-1 {
    right: 40px;
  }
}
.slider-shapes .shape-2 {
  width: 100px;
  height: 100px;
  position: absolute;
  right: 450px;
  bottom: -80px;
  display: flex;
  border-radius: 50%;
  -webkit-animation: square 25s infinite;
  animation: square 25s infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  transition-timing-function: linear;
  border: 7px solid #ffed00;
}
.slider-shapes .shape-3 {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 40%;
  bottom: -30px;
  display: flex;
  border-radius: 50%;
  -webkit-animation: square 35s infinite;
  animation: square 35s infinite;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  transition-timing-function: linear;
  background: linear-gradient(0deg, #f7a600 -0.01%, #ffed00 98.89%, #ffed00 99.99%);
}
@media (max-width: 767px) {
  .slider-shapes .shape-3 {
    left: initial;
    right: 80px;
  }
}
.slider-shapes .shape4 {
  width: 26px;
  height: 26px;
  position: absolute;
  right: 0;
  bottom: -30px;
  display: flex;
  border-radius: 50%;
  -webkit-animation: square 25s infinite;
  animation: square 25s infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  transition-timing-function: linear;
  background: linear-gradient(0deg, #f7a600 -0.01%, #ffed00 98.89%, #ffed00 99.99%);
}
.slider-shapes.green-shapes .shape-1 {
  background: linear-gradient(150.42deg, #73E694 21.69%, #54C775 69.33%);
  width: 57px;
  height: 57px;
}
.slider-shapes.green-shapes .shape-2 {
  border: 7px solid #73E694;
}
.slider-shapes.green-shapes .shape-3 {
  background: linear-gradient(174.43deg, #51C673 39.15%, #51C673 62.25%);
}
.slider-shapes.green-shapes .shape-4 {
  background: linear-gradient(174.43deg, #51C673 39.15%, #51C673 62.25%);
}

@-webkit-keyframes square {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(-1500px);
    @media (max-width: 767px) {
      transform: translateY(-750px);
    }
  }
}
@keyframes square {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(-1500px);
    @media (max-width: 767px) {
      transform: translateY(-750px);
    }
  }
}
.detail-section-wrapper #mobile-section-slider-ow .tns-nav {
  bottom: 80px;
}

.detail-banner-section {
  display: flex;
  padding: 240px 0;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1366px) {
  .detail-banner-section {
    padding: 160px 0;
  }
}
@media (max-width: 810px) {
  .detail-banner-section {
    padding: 140px 0;
  }
}
@media (max-width: 767px) {
  .detail-banner-section {
    padding-bottom: 90px;
  }
}
.detail-banner-section .detail-banner-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .detail-banner-section .detail-banner-content {
    gap: 20px;
  }
}
.detail-banner-section .detail-banner-content p {
  margin-bottom: 0;
}
.detail-banner-section .detail-banner-content .title {
  font-size: 44px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1366px) {
  .detail-banner-section .detail-banner-content .title {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .detail-banner-section .detail-banner-content .title {
    font-size: 24px;
  }
}
.detail-banner-section .detail-banner-content .title img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .detail-banner-section .detail-banner-content .title img {
    width: 44px;
    height: 44px;
  }
}
.detail-banner-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .detail-banner-section .container {
    gap: 0;
  }
}
@media (max-width: 810px) {
  .detail-banner-section .container {
    flex-direction: column;
    gap: 40px;
  }
}
.detail-banner-section.work-energy-banner {
    background-image: url("../images/isimin-enerjisi/isimin-enerjisi-banner-bg.png");
}
@media (max-width: 767px) {
    .detail-banner-section.work-energy-banner {
        background-image: url("../images/isimin-enerjisi/isimin-enerjisi-banner-bg-mobile.png");
    }
}
.detail-banner-section.home-energy-banner {
    background-image: url("../images/evimin-enerjisi/evimin-enerjisi-banner-bg.png");
}
@media (max-width: 767px) {
    .detail-banner-section.home-energy-banner {
        background-image: url("../images/evimin-enerjisi/evimin-enerjisi-banner-bg-mobile.png");
    }
}

.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  padding: 0 100px;
  position: relative;
  height: 510px;
}
@media (max-width: 1366px) {
  .slider-container {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .slider-container {
    height: 293px;
  }
}
@media (max-width: 810px) {
  .slider-container {
    height: 360px;
  }
}
@media (max-width: 767px) {
  .slider-container {
    padding: 0 17px;
  }
}
.slider-container .dots {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  cursor: pointer;
  gap: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .slider-container .dots {
    gap: 10px;
  }
}
.slider-container .dots span {
  display: inline-block;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  position: relative;
  opacity: 0.6;
  transition: background 0.2s, opacity 0.2s;
}
.slider-container .dots span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #34AB56;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slider-container .dots span.active {
  opacity: 1;
  position: relative;
}
.slider-container .dots span.active::after {
  content: "";
  border: 2px solid #34AB56;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.slider-container .slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 560px;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
@media (max-width: 1366px) {
  .slider-container .slider {
    min-width: 400px;
    max-width: 400px;
  }
}
@media (max-width: 1024px) {
  .slider-container .slider {
    min-width: 312px;
    max-width: 312px;
  }
}
@media (max-width: 810px) {
  .slider-container .slider {
    max-width: 100%;
    min-width: 100%;
  }
}
.slider-container .slider .slide {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.4, 2, 0.6, 1), z-index 0.3s;
  cursor: pointer;
}
.slider-container .slider .slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  z-index: 1;
  background: linear-gradient(1.87deg, rgba(23, 38, 38, 0.9) 1.68%, rgba(23, 38, 38, 0.4) 17.38%, rgba(23, 38, 38, 0) 103.55%);
  border-radius: 24px;
}
.slider-container .slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.slider-container .slider .slide.prev-2, .slider-container .slider .slide.next-2 {
  transform: translate(-120%, -50%) scale(0.4);
  z-index: 0;
}
.slider-container .slider .slide.prev-1 {
  transform: translate(-80%, -50%) scale(0.7);
  z-index: 2;
}
.slider-container .slider .slide.next-1 {
  transform: translate(-20%, -50%) scale(0.7);
  backdrop-filter: blur(5px);
  z-index: 2;
}
.slider-container .slider .slide.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.slider-container .slider .slide.active:before {
  display: none;
}
.slider-container .slider .slide.active .slide-content {
  display: flex;
}
.slider-container .slider .slide .banner-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  max-height: 40px;
}
.slider-container .slider .slide .banner-logo img {
  width: 100%;
  height: 40px;
  object-fit: contain;
  border-radius: 0px;
}
.slider-container .slider .slide .slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 40px;
  color: #fff;
  background: linear-gradient(360deg, rgba(23, 38, 38, 0.9) 41.99%, rgba(23, 38, 38, 0.53) 60.91%, rgba(23, 38, 38, 0) 75.26%);
  border-radius: 0 0 24px 24px;
  display: none;
}
.slider-container .slider .slide .slide-content p {
  margin-bottom: 0;
}

.orange-nav .slider-container .dots span:before {
  background: rgb(249, 197, 0);
}
.orange-nav .slider-container .dots span.active:before {
  background: linear-gradient(150.42deg, #FFE154 21.69%, #FAC800 69.33%);
}
.orange-nav .slider-container .dots span.active::after {
  border-color: #FAC800;
}

.work-energy-circle-bg {
  width: 100%;
}
@media (max-width: 767px) {
  .work-energy-circle-bg {
    margin-bottom: -295px;
  }
}

.repeat-section {
  padding: 150px 0 0;
  z-index: 2;
  position: relative;
}
@media (max-width: 960px) {
  .repeat-section {
    padding: 60px 0 0;
  }
}
@media (max-width: 767px) {
  .repeat-section {
    padding: 0;
  }
}
.repeat-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .repeat-section .container {
    flex-direction: column;
    gap: 40px;
  }
}
.repeat-section .repeat-section-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
@media (max-width: 767px) {
  .repeat-section .repeat-section-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.repeat-section .repeat-section-image {
  position: relative;
}
.repeat-section .repeat-section-image > img {
  height: 670px;
}
@media (max-width: 960px) {
  .repeat-section .repeat-section-image > img {
    height: 471px;
  }
}
.repeat-section .repeat-section-image picture {
  position: absolute;
  left: 25%;
  width: 352px;
  top: 50%;
  margin-top: -176px;
  z-index: 9;
  margin-left: 176px;
  display: block;
}
@media (max-width: 960px) {
  .repeat-section .repeat-section-image picture {
    height: 280px;
    margin-top: -150px;
    margin-left: 110px;
  }
}
@media (max-width: 767px) {
  .repeat-section .repeat-section-image picture {
    position: relative;
    left: 0;
    height: auto;
    margin-top: 0;
    margin-left: 0;
    top: 0;
    width: 100%;
  }
}
.repeat-section .repeat-section-image picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.repeat-section.custom-image {
  padding: 0;
  margin-bottom:-195px;
}
.repeat-section.custom-image .repeat-section-content {
  margin-left: -390px;
}
@media (max-width: 960px) {
    .repeat-section.custom-image {
        padding: 0;
        margin-bottom: -60px;
    }
    
    .repeat-section.custom-image .repeat-section-content {
    margin-left: -320px;
  }
}
@media (max-width: 767px) {
  .repeat-section.custom-image .repeat-section-content {
    margin-left: 0;
  }
}
.repeat-section.custom-image .repeat-section-image picture {
  left: 25%;
  margin-left: 0;
}
@media (max-width: 960px) {
  .repeat-section.custom-image .repeat-section-image picture {
    left: 15%;
  }
}
@media (max-width: 767px) {
  .repeat-section.custom-image .repeat-section-image picture {
    left: 0;
  }
}
.repeat-section .repeat-section-content {
  position: relative;
  background-color: #F2F6FA;
  padding: 40px;
  margin-left: 310px;
  position: relative;
  padding-left: 180px;
  width: 100%;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 960px) {
  .repeat-section .repeat-section-content {
    height: 216px;
    margin-left: 200px;
  }
}
@media (max-width: 767px) {
  .repeat-section .repeat-section-content {
    margin-left: 0;
    padding: 180px 20px 100px !important;
    height: 446px;
    margin-right: 0;
    padding-right: 0;
    margin-top: -220px;
    border-radius: 32px;
    text-align: center;
  }
}
.repeat-section .repeat-section-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vh;
  background-color: #F2F6FA;
  height: 100%;
  left: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  .repeat-section .repeat-section-content::before {
    display: none;
  }
}
@media (max-width: 960px) {
  .repeat-section .repeat-section-content h2 {
    font-size: 20px;
  }
}
.repeat-section .repeat-section-content p {
  margin-bottom: 0;
}
.repeat-section.blue-sky-bg {
  position: relative;
/*  padding: 0;*/
  margin-top: 0px;
}
@media (max-width: 960px) {
    .repeat-section.blue-sky-bg {
        margin-top: 0px;
        padding: 0;
    }
}
@media (max-width: 767px) {
  .repeat-section.blue-sky-bg {
    margin-top: 0;
  }
}
.repeat-section.blue-sky-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 944px;
  background-image: url(../images/isimin-enerjisi/blue-sky.png);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  height: 647px;
  z-index: -1;
}
@media (max-width: 960px) {
  .repeat-section.blue-sky-bg::after {
    height: 362px;
    top: -70px;
  }
}
@media (max-width: 767px) {
  .repeat-section.blue-sky-bg::after {
    display: none;
  }
} 
.repeat-section.solar-bg {
  position: relative;
  z-index: 1;
  padding-bottom: 92px;
}
@media (max-width: 960px) {
  .repeat-section.solar-bg {
    padding-bottom: 40px;
  }
}
.repeat-section.solar-bg::before {
  content: "";
  background-image: url(../images/isimin-enerjisi/solar-panel.png);
  background-size: 50% 100%;
  background-position: left;
  background-repeat: no-repeat;
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 654px;
  z-index: -1;
  background-color: #fff;
}
@media (max-width: 960px) {
  .repeat-section.solar-bg::before {
    height: 395px;
  }
}
@media (max-width: 767px) {
  .repeat-section.solar-bg::before {
    display: none;
  }
}
@media (max-width: 1366px) {
  .repeat-section.right-section .container {
    padding-right: 17%;
  }
}
@media (max-width: 767px) {
  .repeat-section.right-section .container {
    padding-right: 20px;
  }
}
.repeat-section.right-section .repeat-section-wrapper {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .repeat-section.right-section .repeat-section-wrapper {
    flex-direction: column;
  }
}
.repeat-section.right-section .repeat-section-image picture {
  margin-left: 0;
  left: initial;
  right: 25%;
}
@media (max-width: 767px) {
  .repeat-section.right-section .repeat-section-image picture {
    right: 0;
  }
}
.repeat-section.right-section .repeat-section-content {
  margin-right: 176px;
  margin-left: 0;
  padding-left: 0;
  padding-right: 180px;
}
@media (max-width: 960px) {
  .repeat-section.right-section .repeat-section-content {
    margin-right: 90px;
  }
}
@media (max-width: 767px) {
  .repeat-section.right-section .repeat-section-content {
    margin-right: 0;
    padding-right: 0;
  }
}
.repeat-section.right-section .repeat-section-content::before {
  left: -100vh;
}
@media (max-width: 767px) {
  .repeat-section.right-section .repeat-section-content::before {
    display: none;
  }
}
.repeat-section.right-section .repeat-section-content:after {
  left: initial;
  right: 0;
}

.grid-bg {
  position: relative;
}
    .grid-bg:after {
        content: "";
        background-image: url(../images/grid.png);
        background-size: 100% 100%;
        background-position: center bottom;
        background-repeat: no-repeat;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200vh;
        height: 50%;
        z-index: -1;
    }
@media (max-width: 767px) {
    .grid-bg:after {
        width: 100%;
        height: 100%;
        background-size: 400%;
        z-index: -1;
    }
}
.grid-bg.grid-full:after {
  width: 100%;
}

.basic-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .basic-section .container {
    flex-direction: column;
  }
}
.basic-section .container h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 1366px) {
  .basic-section .container h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.basic-section .container .image-wrapper {
  width: 50%;
}
@media (max-width: 767px) {
  .basic-section .container .image-wrapper {
    width: 100%;
  }
}
.basic-section .container .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .basic-section .container .content-wrapper {
    padding-bottom: 40px;
  }
}
.basic-section.reverse-section {
  padding: 100px 0;
}
@media (max-width: 960px) {
  .basic-section.reverse-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .basic-section.reverse-section {
    padding: 0px 0 40px;
  }
}
@media (max-width: 767px) {
  .basic-section.reverse-section > div {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .basic-section.reverse-section > div .content-wrapper {
    padding-bottom: 0;
  }
}
.basic-section.reverse-section .absolute-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .basic-section.reverse-section .absolute-image {
    position: relative;
    width: 100%;
  }
}
.basic-section.reverse-section .absolute-image img {
  min-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.basic-section.reverse-section .container {
  position: relative;
  min-height: 670px;
}
@media (max-width: 1366px) {
  .basic-section.reverse-section .container {
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .basic-section.reverse-section .container {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .basic-section.reverse-section .container .btn {
    width: 100%;
  }
}
.basic-section.reverse-section .image-wrapper {
  order: 2;
}

.tab-section {
  background-color: #F2F6FE;
  padding: 100px 0;
}
@media (max-width: 960px) {
  .tab-section {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .tab-section {
    padding: 40px 0;
  }
}

.tab-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 960px) {
  .tab-wrapper {
    gap: 30px;
  }
}
.tab-wrapper .tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .tab-wrapper .tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-stop: always;
    overflow-y: hidden;
    overflow-x: scroll;
  }
}
.tab-wrapper .tabs .tab {
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 767px) {
  .tab-wrapper .tabs .tab {
    min-width: 200px;
  }
}
.tab-wrapper .tabs .tab:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(171, 171, 171, 0.6);
  z-index: 0;
  border-radius: 12px;
}
.tab-wrapper .tabs .tab:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 12px;
  opacity: 0.75;
  backdrop-filter: blur(4px);
}
.tab-wrapper .tabs .tab span {
  position: relative;
  z-index: 1;
}
.tab-wrapper .tabs .tab:nth-child(1):after {
  background: url(../images/evimin-enerjisi/tab-bg-1.png) no-repeat center center;
  background-size: cover;
}
.tab-wrapper .tabs .tab:nth-child(2):after {
  background: url(../images/evimin-enerjisi/tab-bg-2.png) no-repeat center center;
  background-size: cover;
}
.tab-wrapper .tabs .tab:nth-child(3):after {
  background: url(../images/evimin-enerjisi/tab-bg-3.png) no-repeat center center;
  background-size: cover;
}
.tab-wrapper .tabs .tab.active {
  opacity: 0.75;
}
.tab-wrapper .tabs .tab.active:before {
  background: linear-gradient(136.03deg, #F9C500 -8.8%, #FAA600 111.83%);
}
.tab-wrapper .tab-content-item {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .tab-wrapper .tab-content-item {
    flex-direction: column;
    gap: 20px;
  }
}
.tab-wrapper .tab-content-item.active {
  display: flex;
}
.tab-wrapper .tab-content-item .tab-image {
  max-width: 600px;
}
@media (max-width: 960px) {
  .tab-wrapper .tab-content-item .tab-image {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .tab-wrapper .tab-content-item .tab-image {
    max-width: 100%;
  }
}
.tab-wrapper .tab-content-item .tab-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease-in-out;
}
.tab-wrapper .tab-content-item .tab-image img.fade-out {
  opacity: 0;
}
.tab-wrapper .tab-content-item .tab-image img.fade-in {
  opacity: 1;
}
.tab-wrapper .tab-content-item .tab-content {
  width: 100%;
}
@media (max-width: 767px) {
  .tab-wrapper .tab-content-item .tab-content {
    padding-left: 20px;
  }
}

.circle-section {
  padding: 100px 0;
  background-color: #F2F6FE;
}
@media (max-width: 960px) {
  .circle-section {
    padding: 60px 0;
  }
}

.circle-section-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  counter-reset: sayac;
}
@media (max-width: 1366px) {
  .circle-section-wrapper {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .circle-section-wrapper {
    gap: 0px;
  }
}
@media (max-width: 767px) {
  .circle-section-wrapper {
    flex-direction: column;
    gap: 0px;
    align-items: center;
  }
}
.circle-section-wrapper .circle-wrap {
  width: 216px;
  height: 216px;
  position: relative;
}
@media (max-width: 1366px) {
  .circle-section-wrapper .circle-wrap {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 960px) {
  .circle-section-wrapper .circle-wrap {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 767px) {
  .circle-section-wrapper .circle-wrap {
    width: 216px;
    height: 216px;
  }
}
.circle-section-wrapper .circle-wrap:before {
  counter-increment: sayac;
  content: counter(sayac);
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #f9b233;
  color: #fff;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .circle-section-wrapper .circle-wrap:before {
    top: 15px;
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}
.circle-section-wrapper .circle-wrap::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 104px;
  background-color: #E8E8E9;
  z-index: 1;
  right: -17px;
}
@media (max-width: 1366px) {
  .circle-section-wrapper .circle-wrap::after {
    height: 85px;
  }
}
@media (max-width: 1024px) {
  .circle-section-wrapper .circle-wrap::after {
    height: 77px;
  }
}
@media (max-width: 960px) {
  .circle-section-wrapper .circle-wrap::after {
    height: 43px;
    right: 0px;
  }
}
@media (max-width: 767px) {
  .circle-section-wrapper .circle-wrap::after {
    height: 33px;
  }
}
.circle-section-wrapper .circle-wrap:nth-child(2n+1)::after {
  bottom: -30px;
  rotate: -45deg;
}
@media (max-width: 1366px) {
  .circle-section-wrapper .circle-wrap:nth-child(2n+1)::after {
    bottom: -20px;
  }
}
@media (max-width: 1024px) {
  .circle-section-wrapper .circle-wrap:nth-child(2n+1)::after {
    bottom: -8px;
  }
}
@media (max-width: 960px) {
  .circle-section-wrapper .circle-wrap:nth-child(2n+1)::after {
    bottom: 0px;
  }
}
@media (max-width: 767px) {
  .circle-section-wrapper .circle-wrap:nth-child(2n+1)::after {
    right: inherit;
    left: 35px;
    bottom: -16px;
    rotate: 45deg;
  }
}
@media (max-width: 767px) {
  .circle-section-wrapper .circle-wrap:nth-child(2n+1) {
    margin-left: 80px;
  }
}
.circle-section-wrapper .circle-wrap:nth-child(2n) {
  margin-top: 150px;
}
@media (max-width: 960px) {
  .circle-section-wrapper .circle-wrap:nth-child(2n) {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .circle-section-wrapper .circle-wrap:nth-child(2n) {
    margin-top: 0;
    margin-left: -80px;
  }
}
.circle-section-wrapper .circle-wrap:nth-child(2n):before {
  top: inherit;
  bottom: 30px;
}
@media (max-width: 767px) {
  .circle-section-wrapper .circle-wrap:nth-child(2n):before {
    bottom: inherit;
    top: 15px;
    left: inherit;
    right: 0;
  }
}
.circle-section-wrapper .circle-wrap:nth-child(2n)::after {
  top: -30px;
  rotate: 45deg;
}
@media (max-width: 1366px) {
  .circle-section-wrapper .circle-wrap:nth-child(2n)::after {
    top: -20px;
  }
}
@media (max-width: 1024px) {
  .circle-section-wrapper .circle-wrap:nth-child(2n)::after {
    top: -8px;
  }
}
@media (max-width: 960px) {
  .circle-section-wrapper .circle-wrap:nth-child(2n)::after {
    top: 0px;
  }
}
@media (max-width: 767px) {
  .circle-section-wrapper .circle-wrap:nth-child(2n)::after {
    top: inherit;
    bottom: -14px;
    right: 28px;
    rotate: -45deg;
  }
}
.circle-section-wrapper .circle-wrap:last-child::after {
  display: none;
}

.agreement-section {
  padding: 0 0 150px;
  margin-top: -150px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .agreement-section {
    padding-bottom: 60px;
  }
}
.agreement-section .agreement-section-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 767px) {
  .agreement-section .agreement-section-wrapper {
    flex-direction: column;
    gap: 0px;
  }
}
.agreement-section .agreement-section-image {
  position: relative;
  z-index: 2;
  max-width: 651px;
  width: 100%;
  padding-left: 37px;
}
@media (max-width: 1200px) {
  .agreement-section .agreement-section-image {
    padding-left: 24px;
  }
}
@media (max-width: 900px) {
  .agreement-section .agreement-section-image {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .agreement-section .agreement-section-image {
    padding-left: 0;
    padding-top: 24px;
    max-width: 90%;
    margin: 0 auto;
  }
}
.agreement-section .agreement-section-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.agreement-section .agreement-section-image::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 37px;
  height: 280px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(136.03deg, #F9C500 -8.8%, #FAA600 111.83%);
}
@media (max-width: 1200px) {
  .agreement-section .agreement-section-image::before {
    top: 30%;
    height: 164px;
    width: 24px;
  }
}
@media (max-width: 900px) {
  .agreement-section .agreement-section-image::before {
    top: 20%;
  }
}
@media (max-width: 767px) {
  .agreement-section .agreement-section-image::before {
    top: 0;
    width: 160px;
    height: 24px;
    border-radius: 24px 24px 0 0;
    left: 40px;
  }
}
.agreement-section .agreement-section-card {
  background-color: #fff;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  border: 2px solid #FBEEAA;
  margin-left: -300px;
  padding-left: 330px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  top: 50px;
}
@media (max-width: 1200px) {
  .agreement-section .agreement-section-card {
    margin-left: -200px;
    padding-left: 200px;
  }
}
@media (max-width: 767px) {
  .agreement-section .agreement-section-card {
    margin-left: 0;
    padding: 20px;
    top: 0;
    margin-top: -100px;
    padding-top: 125px;
  }
}
.agreement-section .agreement-section-card h2 {
  font-size: 32px;
  font-weight: 600;
  color: #030304;
}
@media (max-width: 767px) {
  .agreement-section .agreement-section-card h2 {
    font-size: 24px;
  }
}
.agreement-section .agreement-section-card p {
  margin-bottom: 0;
}

.agreement-power-modal-wrapper {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .agreement-power-modal-wrapper {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.agreement-power-modal-wrapper .agreement-power-modal-image > img {
  width: 100%;
  width: 200px;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .agreement-power-modal-wrapper .agreement-power-modal-image > img {
    display: none;
  }
}
.agreement-power-modal-wrapper .agreement-power-modal-image span {
  position: absolute;
  bottom: 65px;
  left: 245px;
  width: 410px;
}
@media (max-width: 960px) {
  .agreement-power-modal-wrapper .agreement-power-modal-image span {
    width: 350px;
    bottom: 85px;
  }
}
@media (max-width: 767px) {
  .agreement-power-modal-wrapper .agreement-power-modal-image span {
    width: 100%;
    position: relative;
    bottom: inherit;
    left: inherit;
  }
}
.agreement-power-modal-wrapper .agreement-power-modal-image span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-section .agreement-power-modal-wrapper{
    display:flex;
}

.faq-section .agreement-power-modal-wrapper .agreement-power-modal-image span {
    position: inherit;
    /*bottom: 65px;
    left: 245px;*/
    width: 410px;
}

@media (max-width: 960px) {
    .faq-section .agreement-power-modal-wrapper .agreement-power-modal-image span {
        width: 350px;
        bottom: 85px;
    }
}

@media (max-width: 767px) {
    .faq-section .agreement-power-modal-wrapper .agreement-power-modal-image span {
        width: 100%;
        position: relative;
        bottom: inherit;
        left: inherit;
    }
}

.faq-section .agreement-power-modal-wrapper .agreement-power-modal-image span img {
    /* position: absolute; */
    max-width: 400px;
    width: auto;
    /* height: 100%; */
    /* bottom: 0; */
    object-fit: contain; 
}


.header-section {
  background: linear-gradient(291.98deg, #E3EEFB 18.85%, rgba(255, 255, 255, 0.8) 37%, #FFFFFF 66.57%, #F2F6FE 82.15%), linear-gradient(190.57deg, rgba(255, 255, 255, 0) 7.86%, #F2F6FE 74.5%, #FFFFFF 91.69%);
  padding: 240px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .header-section {
    padding: 175px 0 150px;
  }
}
.header-section span {
  position: absolute;
  top: 100px;
  right: 50px;
  width: 420px;
  height: 410px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 768px) {
    .header-section span {
        top: 135px;
        right: 5%;
        width: 250px;
        height: 230px;
    }

    .header-section .alternate {
        position: absolute;
        margin: 0 auto;
        left: 0;
        right: 0;
        z-index: 10;
    }
}
.header-section.agreement-header {
    background: linear-gradient(120.46deg, rgba(255, 237, 79, 0.8) -0.38%, rgba(255, 255, 255, 0.24) 66.12%), linear-gradient(182.44deg, rgba(255, 237, 79, 0.04) 31.02%, rgba(255, 255, 255, 0) 118.64%);
}
@media (max-width: 1024px) {
  .header-section.agreement-header {
    padding: 200px 0;
  }
}
@media (max-width: 767px) {
  .header-section.agreement-header {
    padding: 175px 0;
  }
}
.header-section.agreement-header span {
  top: -100px;
  left: 250px;
  background-size: contain;
}
@media (max-width: 900px) {
  .header-section.agreement-header span {
    top: -45px;
    left: 110px;
  }
}
@media (max-width: 767px) {
  .header-section.agreement-header span {
    top: -150px;
    left: 0px;
  }
}
.header-section.agreement-header .header-section-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .header-section.agreement-header .header-section-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header-section.agreement-header .header-section-wrapper h1 {
    font-size: 32px;
  }
}
.header-section .header-section-wrapper h1 {
  font-size: 52px;
}
@media (max-width: 1200px) {
  .header-section .header-section-wrapper h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .header-section .header-section-wrapper h1 {
    font-size: 24px;
  }
}

.header-section .header-section-wrapper .alternate .emoticon:hover {
    cursor: pointer;
    box-shadow: 0px 4px 8px -4px rgba(0, 0, 0, 0.1019607843);
    transition: background 0.3s, box-shadow 0.3s;
}

.faq-section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .faq-section {
    padding-bottom: 40px;
  }
}
.faq-section .faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  display: none;
}
.faq-section .faq-wrapper.active {
  display: flex;
}
.faq-section .faq-wrapper .faq-item .faq-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-section .faq-wrapper .faq-item .faq-content .faq-content-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #F2F6FA;
  padding: 20px;
}
@media (max-width: 768px) {
  .faq-section .faq-wrapper .faq-item .faq-content .faq-content-item {
    padding: 0px;
  }
}
.faq-section .faq-wrapper .faq-item .faq-content .faq-content-item .faq-content-title {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq-section .faq-wrapper .faq-item .faq-content .faq-content-item .faq-content-title {
    font-size: 14px;
  }
}
.faq-section .faq-wrapper .faq-item .faq-content .faq-content-item .faq-content-title i {
  font-size: 24px;
  color: #A3A4A5;
}
.faq-section .faq-wrapper .faq-item .faq-content .faq-content-item .faq-content-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.faq-section .faq-wrapper .faq-item .faq-content .faq-content-item .faq-content-item-content.open {
  max-height: 1000px;
}

.faq-section-tab-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: -240px;
  position: relative;
  z-index: 1;
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .faq-section-tab-wrapper {
    margin-top: -100px;
  }
}
@media (max-width: 768px) {
  .faq-section-tab-wrapper {
    margin-bottom: 30px;
  }
}

.faq-section-tab {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  padding: 5px;
  border-radius: 56px;
  box-shadow: 0px 0px 32px 0px rgba(140, 143, 164, 0.2392156863);
}
@media (max-width: 768px) {
  .faq-section-tab {
    margin-top: -140px;
    gap: 0px;
  }
}
.faq-section-tab .faq-section-tab-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #A3A4A5;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 18px 24px;
  text-decoration: none;
  min-width: 186px;
}
@media (max-width: 768px) {
  .faq-section-tab .faq-section-tab-item {
    font-size: 12px;
    padding: 5px 10px;
    min-width: auto;
    text-align: center;
  }
}
.faq-section-tab .faq-section-tab-item.active {
  color: #fff;
  background-color: #F7A600;
  border-radius: 56px;
}

/* Styling for the Parent FAQ Section */
    /*.faq-parent {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}*/
    /* Styling for Ordered List (ol) and Unordered List (ul) */
    .faq-parent ul, .faq-parent ol {
        margin-left: 20px;
        /*font-size: 14px;*/
        line-height: 1.6;
    }

        .faq-parent ul li, .faq-parent ol li {
            margin-bottom: 10px;
            /*color: #333;*/
            list-style-position: inside;
        }

    /* Styling for Ordered List (ol) for numbering */
    .faq-parent ol {
        list-style-type: decimal;
    }

    .faq-parent ul {
        list-style-type: disc;
    }

    /* Table Styling */
    .faq-parent .table-responsive {
        overflow-x: auto;
        margin-top: 20px;
    }

    .faq-parent .table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
        margin-top: 20px;
    }

    .faq-parent .table-bordered {
        border: 1px solid #ddd;
    }

    .faq-parent .table th, .faq-parent .table td {
        padding: 12px;
        text-align: center;
        border: 1px solid #ddd;
    }

    .faq-parent .table th {
        background-color: #f8f8f8;
        font-weight: bold;
        color: #333;
    }

    .faq-parent .table td {
        background-color: #ffffff;
        color: #555;
    }

    /* Adding Zebra Striping for table rows */
    .faq-parent .table tr:nth-child(even) td {
        background-color: #f9f9f9;
    }

    /* Hover effect on rows */
    .faq-parent .table tbody tr:hover {
        background-color: #f1f1f1;
        cursor: pointer;
    }

    /* Styling for <h4> in FAQ items */
    .faq-parent .faq-content-title {
        /*font-size: 16px;*/
        /*font-weight: bold;*/
        /*color: #333;*/
        cursor: pointer;
        /*padding: 10px 0;*/
    }

    /* FAQ content */
    .faq-parent .faq-content-item-content p {
      /*  font-size: 14px;
        line-height: 1.6;
        color: #555;*/
        /*margin-top: 10px;*/
    }

    /* Icons for FAQ */
 /*   .faq-parent .faq-content-title .icon-plus {
        font-size: 18px;
        color: #007bff;
        margin-left: 10px;
        transition: transform 0.2s ease;
    }

    .faq-parent .faq-content-title.active .icon-plus {
        transform: rotate(45deg);
    }*/

    /* Adding margin to each FAQ item for spacing */
    .faq-parent .faq-item {
        /*margin-bottom: 15px;*/
    }

/* For FAQ Section - Keeping it responsive */
@media (max-width: 768px) {
    .faq-parent .faq-content-title {
        /*font-size: 14px;*/
    }

    .faq-parent .faq-content-item-content p {
        /*font-size: 12px;*/
    }

    .faq-parent .table th, .faq-parent .table td {
        font-size: 12px;
        padding: 8px;
    }
}



footer {
    background-color: #151E29;
    position: relative;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  padding: 128px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1366px) {
  footer .footer-content {
    padding: 100px 0;
  }
}
@media (max-width: 960px) {
  footer .footer-content {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    gap: 40px;
    padding: 60px 0 40px 0;
  }
}
footer .footer-content .footer-logo {
  max-width: 150px;
}
@media (max-width: 1024px) {
  footer .footer-content .footer-logo {
    max-width: 120px;
  }
}
footer .footer-content .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .footer-content .footer-links {
  color: #fff;
}
footer .footer-content .footer-links a {
  color: #fff;
  font-size: 14px;
  opacity: 0.7;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.2s;
}
footer .footer-content .footer-links a:hover {
  opacity: 1;
}
footer .footer-content .footer-links h3 {
  margin-bottom: 16px;
}
footer .footer-content .footer-links h3 a {
  font-size: 18px;
  font-weight: 600;
  opacity: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.0784313725);
}
@media (max-width: 960px) {
  footer .footer-content .footer-links h3 a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  footer .footer-content .footer-links h3 a {
    text-align: center;
  }
}
footer .footer-content .footer-links .footer-links-wrapper {
  display: flex;
  gap: 100px;
}
@media (max-width: 1024px) {
  footer .footer-content .footer-links .footer-links-wrapper {
    gap: 40px;
  }
}
footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 768px) {
  footer:before {
    background-size: 300%;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #fff;
  justify-content: flex-end;
  text-align: right;
}
@media (max-width: 768px) {
  .footer-contact {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }
}
.footer-contact .contact-number-wrapper a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .footer-contact .contact-number-wrapper a {
    justify-content: center;
  }
}
.footer-contact .contact-number-wrapper a .icon-wrapper {
  font-size: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 10px;
}
.footer-contact .contact-number-wrapper p {
  font-size: 14px;
}
.footer-contact .social-media-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact .social-media-wrapper .social-media-items {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer-contact .social-media-wrapper .social-media-items {
    align-items: center;
  }
}
.footer-contact .social-media-wrapper .social-media-items .social-media-item img {
  width: 40px;
  height: 40px;
}
@media (max-width: 1024px) {
  .footer-contact .social-media-wrapper .social-media-items .social-media-item img {
    width: 32px;
    height: 32px;
  }
}
.footer-contact .social-media-wrapper .social-media-items .social-media-item:hover {
  opacity: 0.8;
}
.footer-contact .social-media-wrapper .social-media-text {
  font-size: 14px;
  font-weight: 400;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 960px) {
  .footer-bottom {
    padding: 20px 0;
  }
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .footer-bottom .container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}
.footer-bottom .footer-bottom-text {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.footer-bottom .footer-bottom-right-text {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}
.footer-bottom .footer-bottom-right-text:hover {
  text-decoration: underline;
}
.footer-logo-wrapper {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    z-index: 1;
    position: relative;
}

    .footer-logo-wrapper:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #00108b;
        transform: translateY(-50%);
    }

    .footer-logo-wrapper img {
        width: 88px;
        background-color: #fff;
        padding: 10px;
        position: relative;
        z-index: 1;
    }

header {
  padding: 20px 0;
  z-index: 100;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  margin-bottom: -129px;
  height: 129px;
}
@media (max-width: 1024px) {
  header {
    padding: 16px 0;
    height: 104px;
  }
}
@media (max-width: 768px) {
  header {
    height: 85px;
  }
}
header .container-header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
header .container-header > div {
  width: 100%;
}
header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 4;
  opacity: 0;
  transition: all 0.3s;
  display: none;
}
@media (max-width: 768px) {
  header:after {
    opacity: 1;
    display: block;
  }
}
header.scrolled, header.white-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.3s, box-shadow 0.3s;
}
header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
header .logo {
  display: block;
  position: relative;
  z-index: 5;
}
header .logo img {
  max-width: 177px;
}
@media (max-width: 1024px) {
  header .logo img {
    max-width: 116px;
  }
}
@media (max-width: 768px) {
  header nav {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 30px;
    background: linear-gradient(189.75deg, rgba(255, 255, 255, 0.16) 7.33%, rgba(255, 255, 255, 0.8) 92.65%);
    backdrop-filter: blur(10px);
    z-index: 2;
    padding-top: 100px;
    transform: translateY(100%);
    transition: all 0.3s;
    display: none;
  }
}
header nav.active {
  transform: translateY(0);
  display: block;
}
header nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
}
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
  }
}
header nav ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
header nav ul li > a {
  color: #030304;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  padding: 15px;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  display: block;
}
@media (max-width: 1024px) {
  header nav ul li > a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  header nav ul li > a {
    padding: 15px 10px;
    width: 100%;
    border-bottom: 1px solid rgba(72, 102, 142, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
  }
}
header nav ul li > a i {
  font-size: 24px;
}
header nav ul li > a:hover, header nav ul li > a.active {
  color: #f9b233;
  border-bottom: 2px solid #f9b233;
}
header .header-actions {
  display: flex;
  position: relative;
  z-index: 5;
  justify-content: flex-end;
  align-items: center;
}

    header .header-actions .icon-account-circle {
        font-size: 36px;
    }

    header .header-actions .icon-btn {
        margin-right: 15px;
    }

@media (max-width: 768px) {
    header .header-actions .icon-btn {
        margin-right: 0px;
    }
}

@media (max-width: 1024px) {
  header .header-actions .btn-primary {
    min-width: 120px;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .dropdown {
    width: 100%;
  }
}
.dropdown > a {
  color: #030304;
  text-decoration: none;
  padding: 15px 20px;
  font-weight: 500;
  display: flex;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 1024px) {
  .dropdown > a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .dropdown > a {
    font-size: 16px;
    padding: 15px 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid transparent;
  }
}
.dropdown > a i {
  font-size: 26px;
}
.dropdown > a.active {
  color: #f9b233;
  border-bottom: 2px solid #f9b233;
}
.dropdown:hover {
  background-color: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .dropdown:hover {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
  }
}
.dropdown:hover > a {
  color: #f9b233;
}


@media (max-width: 768px) {
  .dropdown:hover > a {
    border-bottom: 1px solid rgba(72, 102, 142, 0.2);
  }

    .dropdown .dropdown-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

        .dropdown .dropdown-content.active {
            max-height: 500px; /* içerik yüksekliğini geçmeyecek kadar büyük bir değer */
            opacity: 1;
            display: block;
        }
}


.dropdown:hover .dropdown-content {
    display: block;
}


.dropdown-content {
  background-color: #fff;
  display: none;
  position: absolute;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 24px 24px;
  padding: 0 10px 10px;
  z-index: 1;
  width: 100%;
  top: 100%;
  left: 0;
}

@media (max-width: 768px) {
  .dropdown-content {
    position: relative;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    top: 100%;
    left: 0;
    padding: 0;
    margin-top: 10px;
    background: transparent;
    backdrop-filter: none;
    margin-top: 0;
    padding-left: 25px;
  }
}
.dropdown-content a {
  color: #030304;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  display: block;
}
@media (max-width: 1024px) {
  .dropdown-content a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .dropdown-content a {
    padding: 15px 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(72, 102, 142, 0.2);
    width: 100%;
  }
}
.dropdown-content a i {
  font-size: 24px;
}
.dropdown-content a:last-child {
  border-bottom: none;
}
.dropdown-content a:hover {
  color: #f9b233;
}
.dropdown-content:hover {
  display: block;
}

.menu-btn {
  width: 24px;
  height: 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.menu-btn span {
  background-color: #333;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.menu-btn span:nth-child(1) {
  top: 0;
}

.menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-btn span:nth-child(3) {
  bottom: 0;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 46%;
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 40%;
}
.hero {
  text-align: center;
  background: linear-gradient(284.45deg, #E3EEFB 22.06%, rgba(255, 255, 255, 0.6) 42.64%, #FFFFFF 79.57%, #F2F6FE 91.13%), linear-gradient(185.41deg, rgba(255, 255, 255, 0) 7.68%, #F2F6FE 76.86%, #FFFFFF 94.7%);
  position: relative;
  padding: 220px 0 128px 0;
}
@media (max-width: 1024px) {
  .hero {
    padding: 160px 0 128px 0;
  }
}
.hero > div > p {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .hero > div > p {
    margin-bottom: 32px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/hero-bg.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .hero-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .hero .hero-slider {
    margin-top: 0px;
  }
}
.hero .hero-slider .hero-slider-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100%;
  height: 100%;
}
.hero .hero-slider .hero-slider-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero .hero-slider > div {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
.hero .hero-slider > div .hero-slider-content {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(360deg, #0E1516 -6.44%, rgba(14, 21, 22, 0.6) 68.07%, rgba(14, 21, 22, 0) 100%);
  padding: 40px 40px 85px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}
@media (max-width: 1024px) {
  .hero .hero-slider > div .hero-slider-content {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .hero .hero-slider > div .hero-slider-content {
    padding: 20px 20px 80px 20px;
  }
}
.hero .hero-slider > div .hero-slider-content p {
  margin-bottom: 0;
}
.hero .hero-slider > div .hero-slider-content .btn {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .hero .hero-slider > div .hero-slider-content .btn {
    width: 100%;
  }
}
.hero .hero-slider > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tns-outer {
  position: relative;
}

.tns-nav {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  z-index: 9;
}
@media (max-width: 1024px) {
  .tns-nav {
    bottom: 35px;
  }
}
.tns-nav button {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.5;
  position: relative;
  background: none;
}
.tns-nav button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.tns-nav button.tns-nav-active {
  opacity: 1;
  position: relative;
}
.tns-nav button.tns-nav-active::after {
  content: "";
  border: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.green-nav #mobile-section-slider-ow .tns-nav button:before {
  background-color: #34AB56;
}
.green-nav #mobile-section-slider-ow .tns-nav button.tns-nav-active::after {
  background: linear-gradient(203.56deg, #34AB56 17.87%, #51C673 89.3%);
}

.orange-nav #mobile-section-slider-ow .tns-nav button:before {
  background: rgb(249, 197, 0);
}
.orange-nav #mobile-section-slider-ow .tns-nav button.tns-nav-active:before {
  background: linear-gradient(150.42deg, #FFE154 21.69%, #FAC800 69.33%);
}
.orange-nav #mobile-section-slider-ow .tns-nav button.tns-nav-active::after {
  border-color: #FAC800;
}

@media (max-width: 767px) {
  #mobile-section-slider-ow {
    margin-top: -100px;
  }
}

.section-item {
  padding: 144px 0;
  position: relative;
  width: 100%;
}
@media (max-width: 1600px) {
  .section-item {
    padding: 0px 0;
  }
}
@media (max-width: 767px) {
  .section-item {
    overflow: hidden;
  }
}
.section-item .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .section-item .btn {
    width: 100%;
  }
}
.section-item.left-image .flex-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.section-item.left-image .right-content {
  left: -5%;
  top: -95px;
}
@media (max-width: 1800px) {
  .section-item.left-image .right-content {
    left: -10%;
  }
}
@media (max-width: 1600px) {
  .section-item.left-image .right-content {
    top: -80px;
    max-width: 700px;
    left: -5%;
  }
}
@media (max-width: 1200px) {
  .section-item.left-image .right-content {
    left: -13%;
  }
}
@media (max-width: 1024px) {
  .section-item.left-image .right-content {
    top: -50px;
    max-width: 600px;
    left: -16%;
  }
}
@media (max-width: 960px) {
  .section-item.left-image .right-content {
    top: -40px;
    left: -23%;
  }
}
@media (max-width: 767px) {
  .section-item.left-image .right-content {
    top: 0;
    margin-top: -100px;
  }
}
.section-item .section-description {
  margin-bottom: 24px;
}
.section-item .section-title {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .section-item .section-title {
    font-size: 20px;
  }
}
.section-item .section-title img {
  width: 54px;
  height: 54px;
  margin-right: 16px;
}

.home-energy {
  padding: 0 0 200px;
}
@media (max-width: 1024px) {
  .home-energy {
    padding: 0 0 130px;
  }
}
@media (max-width: 767px) {
  .home-energy {
    padding: 100px 0;
  }
}
.home-energy .bg-container {
  padding: 128px 0;
  position: relative;
}
@media (max-width: 1600px) {
  .home-energy .bg-container {
    padding: 60px 0;
  }
}
@media (max-width: 1024px) {
  .home-energy .bg-container {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .home-energy .bg-container {
    display: flex;
    flex-direction: column-reverse;
  }
}
.home-energy .bg-container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120.46deg, #FFEDA4 0%, #E3F0FF 100%);
    z-index: 0;
}
@media (max-width: 767px) {
    .home-energy .bg-container:after {
        background: linear-gradient(212deg, #FFEDA4 0%, #E3F0FF 100%);
    }
}
.home-energy .bg-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/home-energy-bg.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  max-width: 840px;
  z-index: -1;
}

.work-energy {
  position: relative;
  z-index: 1;
}
@media (max-width: 1600px) {
  .work-energy {
    padding: 60px 0;
  }
}
@media (max-width: 1024px) {
  .work-energy {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .work-energy {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .work-energy .bg-container {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
  }
}
.work-energy .bg-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #AFCFB5 0%, #E6EBF2 100%);
}
@media (max-width: 767px) {
    .work-energy .bg-container::after {
        background: linear-gradient(187deg, #AFCFB5 0%, #E6EBF1 100%);
    }
}
.work-energy .bg-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 5%;
  width: 100%;
  height: 100%;
  background-image: url(../images/circles.png);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .work-energy .bg-container::before {
    top: -89px;
    right: 0%;
    width: 50%;
  }
}

.left-content {
  max-width: 650px;
  text-align: left;
}
@media (max-width: 1800px) {
  .left-content {
    max-width: 50%;
  }
}
@media (max-width: 1600px) {
  .left-content {
    max-width: 45%;
  }
}
@media (max-width: 767px) {
  .left-content {
    max-width: 100%;
    margin-top: -50px;
  }
}

.right-content {
  position: absolute;
  right: -5%;
  top: -95px;
  width: 100%;
  height: 100%;
  max-width: 950px;
  z-index: 1;
}
@media (max-width: 1800px) {
  .right-content {
    right: -10%;
  }
}
@media (max-width: 1600px) {
  .right-content {
    top: -80px;
    max-width: 700px;
    right: -5%;
  }
}
@media (max-width: 1200px) {
  .right-content {
    right: -13%;
  }
}
@media (max-width: 1024px) {
  .right-content {
    top: -60px;
    max-width: 600px;
    right: -16%;
  }
}
@media (max-width: 960px) {
  .right-content {
    top: -50px;
    right: -23%;
  }
}
@media (max-width: 767px) {
  .right-content {
    position: relative;
    top: 0;
    margin-top: -120px;
    width: 126%;
    right: 0;
  }
}
.right-content .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-section {
  padding: 128px 0;
  position: relative;
}
@media (max-width: 1024px) {
  .footer-section {
    padding: 80px 0 128px;
  }
}
@media (max-width: 767px) {
  .footer-section {
    padding: 40px 0;
  }
}
.footer-section .container .footer-section-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .footer-section .container .footer-section-wrapper {
    flex-direction: column-reverse;
  }
}
.footer-section .container .card {
  background-color: #fff;
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 512px;
  margin-right: -200px;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 1024px) {
  .footer-section .container .card {
    max-width: 340px;
    margin-right: -100px;
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .footer-section .container .card {
    position: relative;
    margin-top: -60px;
    max-width: 260px;
    margin-right: 0;
    padding: 20px;
    right: 0;
    margin-right: 50px;
    transform: none;
  }
}
.footer-section .container .card .card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #f9b233;
}
@media (max-width: 767px) {
  .footer-section .container .card .btn {
    width: 100%;
  }
}
.footer-section .container .footer-section-image {
  position: relative;
  width: 90%;
}
@media (max-width: 767px) {
  .footer-section .container .footer-section-image {
    width: 100%;
  }
}
.footer-section .container .footer-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.footer-section .container .footer-section-image .orange-shape {
  position: absolute;
  bottom: -24px;
  right: 50px;
  width: 45%;
  height: 50%;
  background-color: #F7A600;
  border-radius: 32px;
}
@media (max-width: 767px) {
  .footer-section .container .footer-section-image .orange-shape {
    bottom: -12px;
    right: 15px;
    width: 50%;
    height: 50%;
  }
}
ul.list li {
  font-size: 18px;
  font-weight: 400;
  color: #030304;
  margin-bottom: 10px;
  list-style: disc;
  margin-left: 25px;
}
@media (max-width: 1366px) {
  ul.list li {
    font-size: 16px;
  }
}
ul.list li:last-child {
  margin-bottom: 0;
}

.stepper-list li {
  padding-bottom: 60px;
  color: #A3A4A5;
  font-size: 20px;
  font-weight: 400;
  padding-left: 40px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1366px) {
  .stepper-list li {
    font-size: 18px;
    padding-bottom: 40px;
  }
}
@media (max-width: 960px) {
  .stepper-list li {
    font-size: 16px;
    padding-bottom: 30px;
  }
}
.stepper-list li span {
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}
.stepper-list li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #E8E8E9;
  transition: background-color 0.3s ease-in-out;
}
.stepper-list li:after {
  content: "";
  position: absolute;
  top: 7px;
  left: -8px;
  width: 12px;
  height: 12px;
  background-color: #E8E8E9;
  border: 4px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transform: scale(0.6);
  transition: all 0.3s ease-in-out;
}
.stepper-list li:last-child {
  padding-bottom: 0;
}
.stepper-list li:last-child:before {
  top: 0;
  height: 20px;
}
.stepper-list li:last-child.active:before {
  background: #F7A600;
}
.stepper-list li.active, .stepper-list li:hover {
  color: #030304;
}
.stepper-list li.active span, .stepper-list li:hover span {
  color: #F7A600;
}
.stepper-list li.active:after {
  opacity: 1;
  transform: scale(1);
  border-color: #F7A600;
  background-color: #fff;
}
.stepper-list .stepper-item:has(~ .active):before {
  background: #F7A600;
}
.stepper-list .stepper-item:has(~ .active):after {
  opacity: 1;
  transform: scale(1);
  background: #F7A600;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: #424242;
  line-height: 1.6;
  font-size: 16px;
}
@media (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}
body.mobile-menu-open {
  overflow: hidden;
}

main {
  overflow-x: hidden;
}

.container {
  padding: 0 40px;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

p a {
  color: #F7A600;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.2s;
}
p a:hover {
  opacity: 0.8;
}

.flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 18px;
}

ul {
  list-style: none;
}
ul li a {
  text-decoration: none;
}

p {
  margin-bottom: 16px;
}

.cookie-policy {
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(266.77deg, #141D28 0%, #1C2531 100%);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  color: #fff;
}
@media (max-width: 767px) {
  .cookie-policy {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
.cookie-policy .cookie-policy-buttons {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 960px) {
  .cookie-policy .cookie-policy-buttons {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.cookie-policy .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .cookie-policy .container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.cookie-policy .container a {
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s;
}
.cookie-policy .container p {
  margin-bottom: 0;
}
.cookie-policy .container .cookie-policy-text {
  font-size: 16px;
  font-weight: 400;
  width: 50%;
}
@media (max-width: 768px) {
  .cookie-policy .container .cookie-policy-text {
    width: 100%;
    font-size: 14px;
  }
}
.cookie-policy .container .cookie-policy-settings {
  font-weight: 600;
  text-decoration: none;
  color: #f9b233;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 3, 4, 0.5);
  z-index: 1000;
  overflow: auto;
  padding: 40px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .modal {
    padding: 0;
  }
}
.modal .modal-content {
  background-color: #fff;
  width: 80%;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 32px;
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .modal .modal-content {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    border-radius: 0;
    padding: 20px;
  }
}
.modal .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}
.modal .modal-content .modal-header .modal-title {
  font-size: 18px;
  font-weight: 600;
}
.modal .modal-content .modal-header .modal-close {
  font-size: 24px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #f9b233;
  color: #fff;
}
.modal .modal-content .modal-header .modal-close:hover {
  opacity: 0.8;
}

body.modal-open {
  overflow: hidden;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal.open .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.color-primary {
  color: #f9b233;
}

.color-white {
  color: #fff;
}

.color-orange {
  color: #F7A600;
}

.large-text {
  font-size: 20px;
}
@media (max-width: 1024px) {
  .large-text {
    font-size: 14px;
  }
}

.mobile-visible {
  display: none;
}
@media (max-width: 768px) {
  .mobile-visible {
    display: block;
  }
}

.mobile-hidden {
  display: block;
}
@media (max-width: 768px) {
  .mobile-hidden {
    display: none;
  }
}

.bg-grey-light {
  background-color: #F2F6FA;
}

.bold-text {
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.align-center {
  align-items: center;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-40 {
  margin-bottom: 40px;
}

.relative {
  position: relative;
}

.w-auto {
  width: auto !important;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.fs-24 {
  font-size: 24px;
}

.font-weight-700 {
    font-weight: 700;
}

.text-decoration-none {
  text-decoration: none;
}

.circle-wrap {
  width: 150px;
  height: 150px;
  position: relative;
}

.circle-progress {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

circle {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.bg {
  stroke: #eee;
}

.progress {
  stroke: #F7A600;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.5s ease;
}

.centered-content {
  position: absolute;
  width: 80%;
  height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  text-align: center;
  color: #A3A4A5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #F2F6FA;
  padding: 15px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 5px 5px 20px 0px rgba(174, 174, 192, 0.4);
}
.centered-content p {
  margin-bottom: 0;
  font-size: 14px;
}
@media (max-width: 1366px) {
  .centered-content p {
    font-size: 11px;
  }
}
@media (max-width: 767px) {
  .centered-content p {
    font-size: 14px;
  }
}
.centered-content i {
  font-size: 36px;
  margin-bottom: 10px;
  color: #F7A600;
}
@media (max-width: 1366px) {
  .centered-content i {
    font-size: 24px;
  }
}



.btn-disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}