@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap");
a {
  color: inherit;
}

.text-blue {
  color: #0071CE !important;
}

.text-green {
  color: #6DB25E !important;
}

.text-orange {
  color: #FAB830 !important;
}

.text-secondary {
  color: #595959 !important;
}

body {
  background: #fff;
}

section.sHeader {
  width: 100%;
  height: auto;
  padding: 0;
  overflow: hidden;
}
section.sHeader img {
  display: block;
  width: 100%;
  transition: 5s all ease-in-out;
}
section.sHeader img.active {
  transform: scale(1.1);
}
section.sHeader .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  color: #fff;
  max-width: 640px;
  text-align: center;
  width: 100%;
}
section.sHeader .title h1 {
  font-size: 62px;
  font-weight: 500;
}
section.sHeader .title p {
  font-size: 51px;
  font-weight: 300;
  line-height: 56px;
}
section.sHeader .title .title-border {
  width: 60%;
  margin: 50px auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
section.sHeader .title .title-border span {
  display: inline-block;
  width: calc(100% / 3);
}
section.sHeader .title .title-border span:nth-child(1) {
  border-bottom: 8px solid #6DB25E;
}
section.sHeader .title .title-border span:nth-child(2) {
  border-bottom: 8px solid #0076FF;
}
section.sHeader .title .title-border span:nth-child(3) {
  border-bottom: 8px solid #F4A600;
}
section.sHeader a.downArrow {
  width: 60px;
  height: 60px;
  background: url(../img/icons/downArrow.svg) no-repeat right center;
  display: block;
  position: absolute;
  right: 10%;
  bottom: 100px;
}

.bottom-number {
  position: relative;
  font-size: 18px;
}
.bottom-number::after {
  content: "2";
  position: absolute;
  bottom: 0px;
  right: -10px;
  font-size: 12px;
}

section {
  padding: 140px;
  font-family: "Ubuntu", sans-serif;
}
section.bg-gray {
  background-color: #f7f7f7;
}

.heading {
  color: #333;
  font-size: 62px;
  font-weight: 500;
  line-height: 64px;
}

.text {
  margin: 75px 0 40px;
  max-width: 735px;
  width: 100%;
  color: #999;
  line-height: 24px;
  font-size: 16px;
}

hr {
  border: 1px solid #D0D0D0;
}

.mt-70 {
  margin-top: 70px;
}

a.surdurulebilirlik-link {
  max-width: 720px;
  width: 100%;
  height: 92px;
  padding: 22px;
  margin: 20px 0;
  border: 1px solid #D0D0D0;
  display: block;
  color: inherit;
  color: #333;
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 24px;
  position: relative;
}
a.surdurulebilirlik-link span {
  font-weight: 700;
}
a.surdurulebilirlik-link ::before {
  content: "";
  border: 1px solid #D0D0D0;
  width: 31px;
  height: 31px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}
a.surdurulebilirlik-link ::after {
  content: "";
  background: url(../img/icons/link-icon.png) no-repeat center;
  width: 31px;
  height: 31px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}
a.surdurulebilirlik-link:hover ::after {
  transform: translate(0, -50%) rotate(30deg);
}

.info-item-wrapper {
  width: 85%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.info-item-wrapper .info-item {
  width: 45%;
  border-bottom: 1px solid #D0D0D0;
  padding: 40px 0;
  position: relative;
}
.info-item-wrapper .info-item .info-item-title {
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 3px;
  position: absolute;
  top: -10px;
}
.info-item-wrapper .info-item .info-item-header {
  font-size: 45px;
  font-weight: bold;
  display: flex;
  align-items: end;
}
.info-item-wrapper .info-item .info-item-header span {
  font-size: 25px;
  font-weight: normal;
  margin-left: 10px;
}
.info-item-wrapper .info-item .info-item-text {
  padding: 25px 0;
  font-size: 20px;
  font-weight: lighter;
}

.slide-right {
  position: relative;
  animation: slideRight 2s forwards;
}

.slide-left {
  position: relative;
  animation: slideLeft 2s forwards;
}

@keyframes slideRight {
  from {
    right: -100%;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
@keyframes slideLeft {
  from {
    left: -100%;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
.text-col {
  width: 100%;
  position: relative;
}
.text-col .mini-title {
  display: block;
  color: #595959;
  font-size: 15px;
  padding-bottom: 20px;
  position: absolute;
  top: -30px;
}
.text-col h2 {
  color: #333;
  font-size: 45px;
  font-weight: 500;
  line-height: 64px;
  padding-bottom: 10px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap !important;
  align-items: center;
}
.text-col h2 img {
  margin-right: 15px;
}
.text-col .text {
  font-size: 20px;
  font-weight: 300;
  margin-top: 55px;
  line-height: 30px;
  max-width: 100% !important;
  color: #000;
}
.text-col .text b {
  font-weight: 600;
}
.text-col .text span {
  font-weight: 400;
}

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.row.j-between {
  justify-content: space-between;
}
.row.half .text-col {
  width: 50%;
}
.row.half .img-col {
  width: 50%;
}
.row.half .img-col a {
  left: 30px;
  bottom: -200px;
}
.row .text-col {
  width: 60%;
  padding-right: 110px;
}
.row .inner {
  padding-right: 160px;
}
.row .img-col {
  width: 31%;
  height: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.row .img-col.left {
  text-align: start;
}
.row .img-col.left a {
  right: unset;
  left: 30%;
}
.row .img-col.left .bg-right {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100% !important;
  width: 290px !important;
}
.row .img-col .imgBtn {
  width: 100%;
  position: relative;
}
.row .img-col .img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  position: relative;
}
.row .img-col .img img {
  width: 100%;
  transition: 0.3s all ease-in-out;
  display: block;
}
.row .img-col .img.no-animaton:hover img {
  transform: scale(1);
}
.row .img-col .img:hover img {
  transform: scale(1.2);
}
.row .img-col a {
  width: 365px;
  text-align: start;
  padding: 25px 40px 40px;
  border-radius: 10px;
  position: absolute;
  left: -30%;
  bottom: -30px;
}
.row .img-col a.green {
  background: #6DB25E;
  color: #fff;
}
.row .img-col a.blue {
  background: #0071CE;
  color: #fff;
}
.row .img-col a.orange {
  background: #FAB830;
  color: #fff;
}
.row .img-col a p {
  font-size: 23px;
  font-weight: 700;
}
.row .img-col a p span {
  font-weight: 300;
}
.row .img-col a ::before {
  content: "";
  border: 1px solid #D0D0D0;
  width: 31px;
  height: 31px;
  position: absolute;
  right: 20px;
  bottom: 20%;
}
.row .img-col a ::after {
  content: "";
  background: url(../img/icons/link-icon.png) no-repeat center;
  width: 31px;
  height: 31px;
  position: absolute;
  right: 20px;
  bottom: 20%;
}
.row .img-col a:hover ::after {
  transform: rotate(30deg);
}
.row .img-col + .text-col .inner {
  padding-right: 0;
  padding-left: 160px;
}

.priority-issues {
  padding-right: 150px;
}
.priority-issues .priority-issues-title {
  color: #0071CE;
  font-size: 13px;
  font-weight: bold;
  line-height: 21px;
  letter-spacing: 3px;
}
.priority-issues .priority-issues-title span {
  color: #595959;
  display: block;
}
.priority-issues .priority-issues-item {
  padding: 25px 0;
  border-bottom: 1px solid #D0D0D0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.priority-issues .priority-issues-item p {
  font-size: 17px;
  font-family: "Karla", sans-serif;
  line-height: 156%;
  letter-spacing: -0.85px;
}
.priority-issues .priority-issues-item p span {
  color: #0071CE;
  font-weight: 500;
  font-family: "Ubuntu", sans-serif;
  padding-right: 15px;
}
.priority-issues .priority-issues-item .topics {
  left: -50px;
  opacity: 0;
  position: relative;
  transition: 0.5s all ease-in-out;
}
.priority-issues .priority-issues-item .topics img {
  margin-right: 5px;
}
.priority-issues .priority-issues-item:hover .topics {
  left: 0;
  opacity: 1;
}

section.planet .bottom {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}
section.planet .bottom .info-item {
  padding: 0 55px 0 63px;
  border-right: 1px solid #D0D0D0;
}
section.planet .bottom .info-item:last-child {
  border-right: none;
}
section.planet .bottom .info-item:first-child {
  padding-left: 0;
}

.yaklasim-card-wrapper {
  width: 700px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-wrap: wrap;
}
.yaklasim-card-wrapper .yaklasim-card {
  width: 200px;
  height: 200px;
  margin: 10px;
}
.yaklasim-card-wrapper .yaklasim-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lazy {
  opacity: 0;
  visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  transition: opacity 1s ease-in-out;
}

.lazy.visible {
  opacity: 1;
  visibility: visible;
}

section.strateji {
  padding: 140px 0;
  position: relative;
}
section.strateji .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  width: 85%;
}
section.strateji .content .triangle {
  position: relative;
  width: 600px;
  height: 400px;
  cursor: pointer;
  margin-top: 150px;
}
section.strateji .content .triangle .green {
  position: absolute;
  bottom: 120px;
  left: 65px;
  transition: 0.5s all ease-in-out;
  user-select: none;
}
section.strateji .content .triangle .green.active {
  bottom: 150px;
  left: 45px;
  scale: 1.01;
}
section.strateji .content .triangle .blue {
  position: absolute;
  right: -50px;
  bottom: 0;
  transition: 0.5s all ease-in-out;
  user-select: none;
}
section.strateji .content .triangle .blue::after {
  content: "";
  background: url(../img/icons/direction-blue.svg) no-repeat;
  width: 50px;
  height: 50px;
  display: inline-block;
  position: absolute;
}
section.strateji .content .triangle .blue.active {
  right: -75px;
  scale: 1.08;
  bottom: 15px;
}
section.strateji .content .triangle .orange {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s all ease-in-out;
  user-select: none;
}
section.strateji .content .triangle .orange.active {
  bottom: -20px;
  left: -30px;
  scale: 1.08;
}
section.strateji .content .info {
  width: 45%;
  margin: auto 0;
}
section.strateji .content .info .blue, section.strateji .content .info .orange, section.strateji .content .info .green {
  display: none;
  width: 100%;
  opacity: 0;
  transition: 0.5s all ease-in-out;
}
section.strateji .content .info .blue div, section.strateji .content .info .orange div, section.strateji .content .info .green div {
  display: flex;
  justify-content: space-between;
}
section.strateji .content .info .blue div .border, section.strateji .content .info .orange div .border, section.strateji .content .info .green div .border {
  width: 5px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
section.strateji .content .info .blue div .border span, section.strateji .content .info .orange div .border span, section.strateji .content .info .green div .border span {
  height: 33.33333%;
  width: 100%;
  display: inline-block;
}
section.strateji .content .info .blue div .border span:nth-child(1), section.strateji .content .info .orange div .border span:nth-child(1), section.strateji .content .info .green div .border span:nth-child(1) {
  background: #6DB25E;
}
section.strateji .content .info .blue div .border span:nth-child(2), section.strateji .content .info .orange div .border span:nth-child(2), section.strateji .content .info .green div .border span:nth-child(2) {
  background: #0071CE;
}
section.strateji .content .info .blue div .border span:nth-child(3), section.strateji .content .info .orange div .border span:nth-child(3), section.strateji .content .info .green div .border span:nth-child(3) {
  background: #FAB830;
}
section.strateji .content .info .blue div .info-content, section.strateji .content .info .orange div .info-content, section.strateji .content .info .green div .info-content {
  display: block;
  padding-left: 25px;
  font-size: 16px;
}
section.strateji .content .info .blue div .info-content h2, section.strateji .content .info .orange div .info-content h2, section.strateji .content .info .green div .info-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 12px;
}
section.strateji .content .info .blue div .info-content b, section.strateji .content .info .orange div .info-content b, section.strateji .content .info .green div .info-content b {
  font-weight: 500;
  line-height: 25px;
  display: inline-block;
  margin-top: 20px;
}
section.strateji .content .info .blue div .info-content ul, section.strateji .content .info .orange div .info-content ul, section.strateji .content .info .green div .info-content ul {
  list-style-type: disc;
  display: block;
  padding-left: 30px;
}
section.strateji .content .info .blue div .info-content ul li, section.strateji .content .info .orange div .info-content ul li, section.strateji .content .info .green div .info-content ul li {
  font-weight: 300;
  line-height: 25px;
}
section.strateji .content .info .blue.active, section.strateji .content .info .orange.active, section.strateji .content .info .green.active {
  display: block;
  opacity: 1;
}

.surdurulebilirlikSlider .item {
  width: 200px;
  height: 500px;
}

@media screen and (max-width: 1580px) {
  section.sHeader {
    height: 50vh;
  }
  section.sHeader img {
    height: 100%;
    object-fit: cover;
  }

  .row .img-col .imgBtn img {
    width: 100%;
  }
  .row .img-col a {
    width: 300px;
    padding: 25px 30px;
  }

  .strateji .content {
    width: 90%;
  }
  .strateji .content .triangle .orange {
    width: 350px;
  }
  .strateji .content .triangle .green {
    height: 350px;
    left: 50px !important;
    bottom: 100px !important;
  }
  .strateji .content .triangle .green.active {
    left: 0px !important;
    bottom: 125px !important;
  }
  .strateji .content .triangle .blue {
    height: 350px;
    right: 80px !important;
  }
  .strateji .content .triangle .blue.active {
    right: 50px !important;
  }
}
@media screen and (max-width: 1270px) {
  section.sHeader {
    height: 70vh;
  }
  section.sHeader img {
    height: 100%;
    object-fit: cover;
  }
  section.sHeader .title h1 {
    font-size: 50px;
  }
  section.sHeader .title p {
    font-size: 40px;
  }

  .row {
    flex-direction: column;
  }
  .row.half {
    padding-bottom: 150px;
  }
  .row.half .text-col {
    width: 100%;
  }
  .row.half .img-col {
    width: 100%;
  }
  .row.half .img-col a {
    left: 0;
    bottom: -200px;
  }
  .row .text-col {
    width: 100%;
    padding-right: 0;
    order: 1;
  }
  .row .img-col {
    width: 45%;
    margin: 30px auto;
    order: 2;
  }
  .row .img-col.left a {
    width: 100%;
    left: 0;
  }
  .row .img-col a {
    width: 100%;
    left: 0;
  }
  .row .img-col a p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1100px) {
  section {
    padding: 70px;
  }
}
@media screen and (max-width: 780px) {
  section {
    padding: 120px 40px;
  }

  section.sHeader {
    height: 80vh;
  }
  section.sHeader .title {
    max-width: 90%;
  }
  section.sHeader .title h1 {
    font-size: 45px;
  }
  section.sHeader .title p {
    font-size: 35px;
  }
  section.sHeader .title .title-border {
    margin: 35px auto;
  }
  section.sHeader a.downArrow {
    bottom: 50px;
  }

  .row .img-col {
    width: 75%;
  }

  .info-item-wrapper {
    width: 90%;
    justify-content: center;
    margin-top: unset;
    margin: 50px auto;
  }
  .info-item-wrapper .info-item {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .info-item-wrapper .info-item .info-item-title {
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 3px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .info-item-wrapper .info-item .info-item-header {
    justify-content: center;
  }

  .priority-issues .priority-issues-item p {
    font-size: 14px;
  }
  .priority-issues .priority-issues-item .topics img {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 480px) {
  .row .img-col {
    width: 100%;
  }
  .row .img-col a p {
    font-size: 16px;
  }

  .priority-issues .priority-issues-item p {
    font-size: 10px;
  }
  .priority-issues .priority-issues-item .topics img {
    width: 40px;
    height: 40px;
  }
}