@import url("fonts.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
  list-style: none !important;
  text-decoration: none !important;
}

body {
  overflow-x: hidden;
  background: #f5f5f5;
  font-family: "Latinka Regular";
  /* -- #F5F5F5 -- */
}
::selection {
  background-color: #2a2a2a;
  color: #fff;
}
::-moz-selection {
  background-color: #2a2a2a;
  color: #fff;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: black;
}
:root {
  --blue-color: #12a19a;
}
.gx-custom {
}
.over-section {
  overflow: hidden !important;
}

.header {
  width: 100%;
  height: 210px;
  padding: 0 110px;
}

.header.active {
  position: fixed;
  z-index: 100;
}

.header-logo img {
  max-width: 200px;
  display: inline;
}
.nav-head {
  padding: 0;
  width: 72%;
}
.nav-bar {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.nav-bar ul li {
  margin: 0 25px;
}

.nav-bar ul li a {
  color: #727272;
  font-family: "Century Gothic";
  font-size: 19px;
  letter-spacing: 1px;
  transition: all 200ms;
}

.nav-bar ul li a:hover {
  color: var(--blue-color);
}
.nav-bar ul li .active {
  color: var(--blue-color);
}

.header-btn {
  display: inline-block;
  position: absolute;
  right: 80px;
  padding: 10px 20px;
  border: 1px solid var(--blue-color);
  color: var(--blue-color);
  font-family: "Menlo";
  font-size: 14px;
  border-radius: 30px;
  transition: background 200ms;
  overflow: hidden;
}

.header-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--blue-color);
}

.header-btn.play::before {
  animation: headerBtnAnim 1s forwards;
  animation-delay: 0.2s;
}

/* coin */

/* coin */
.header-btn:hover {
  background: var(--blue-color);
  color: #fff;
}

@keyframes headerBtnAnim {
  100% {
    width: 0;
  }
}

.page-main {
  width: 100%;
  height: calc(100vh - 120px);
  display: flex;
  padding-top: 100px;
}

.mail-form input[name="e-mail"] {
  width: 100%;
  height: 50px;
  border-radius: 50px;
  padding-left: 25px;
  font-size: 14px;
  background: #ffffff;
  border: none;
  font-family: "Menlo";
}

.mail-form input[name="e-mail"]:focus {
  outline: 1px solid var(--blue-color);
}

.mail-form button[type="submit"] {
  position: absolute;
  right: 0;
  height: 100%;
  border-radius: 50px;
  border: none;
  background: var(--blue-color);
  transition: all 200ms;
  width: 100%;
}

.mail-form button[type="submit"] span {
  font-size: 14px;
  color: #fff;
  font-family: "Century Gothic";
  opacity: 0;
  position: relative;
  bottom: 2px;
}

.mail-form button[type="submit"].play {
  animation: submitAnim 1s forwards;
  animation-delay: 0.2s;
}

.mail-form button[type="submit"].play span {
  animation: submitAnimText 0.8s forwards;
  animation-delay: 1.2s;
}

@keyframes submitAnim {
  0% {
    width: 100%;
  }

  100% {
    width: 155px;
  }
}

@keyframes submitAnimText {
  100% {
    opacity: 1;
  }
}

.mail-form button[type="submit"]:hover {
  background: #0b746e;
}

.google-kayit {
  display: inline-block;
  font-size: 14px;
  font-family: "Century Gothic";
  position: relative;
  left: 20px;
  margin-top: 15px;
}

.language-wrapper select {
  height: 40px;
  padding: 0 25px;
  background: none;
  border-radius: 40px;
  border: 1px solid #cccccc;
  margin-left: 30px;
  color: #a8a8a8;
  cursor: pointer;
  font-family: "Century Gothic";
}

.language-wrapper select:focus {
  outline: 1px solid var(--blue-color);
}

h5.gizlilik {
  font-size: 15px;
  color: #acacac;
  font-family: "Latinka Light";
}

h5.gizlilik a:nth-child(2) {
  text-decoration: underline !important;
}

.mouse-icon {
  display: inline-block;
  width: 26px;
  height: 40px;
  background: #e8e8e8;
  border-radius: 36px;
  margin-bottom: 30px;
  position: absolute;
  left: calc(50% - 13px);
  bottom: 75px;
}

.mouse-icon .dote {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-color);
  position: absolute;
  left: calc(50% - 2px);
  top: 8px;
  animation: mouse-anim 1.5s infinite;
}

@keyframes mouse-anim {
  50% {
    transform: translateY(6px);
  }

  70% {
    opacity: 0;
    transform: translateY(0px);
  }
}

.cerezler {
  position: fixed;
  left: 50%;
  bottom: 30px;
  background: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  box-shadow: 0px 0px 3px 3px rgb(221, 221, 221);
  transition: opacity 100ms linear;
  transform: translateX(-50%);
  z-index: 99;
}

.cerezler h5 {
  font-size: 14px;
  color: #0d2435;
  white-space: nowrap;
}

.cerezler h5 a {
  text-decoration: underline !important;
}

.cerez-btn {
  background: var(--blue-color);
  padding: 4px 10px;
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  margin-left: 40px;
  cursor: pointer;
  transition: all 200ms;
}

.cerez-btn:hover {
  background: #0b746e;
}

.uniq-wrapper {
  margin-top: 230px;
  position: relative;
}

.page-main-doted {
  position: absolute;
  left: -10px;
  bottom: -100px;
}
.uniq-text {
  padding: 0 8.5% 0 1%;
}
.uniq-text-one {
  font-size: 2.5em;
  font-family: "Recolate";
}
.uniq-text-second {
  font-size: 24px;
  line-height: 1.45em;
  color: #919191;
  margin: 20px 0 30px 0;
  font-family: "Latinka Regular";
}
.uniq-text .more-btn {
  display: inline-block;
  background: var(--blue-color);
  padding: 15px 37px;
  border-radius: 50px;
  margin: 0;

  color: #fff;
  font-family: "Century Gothic";
  font-size: 18px;
}
.uniq-shape-text {
  position: relative;
}
.uniq-shape-text .custom-text {
  margin-left: 45%;
  font-weight: 900;
  color: #ffff;

  font-size: 90px;
  letter-spacing: 40px;
  text-transform: uppercase;
  padding: 0 0 0.5%;
}
.image-item img {
  width: 100%;
  transform: translateX(100px) translateY(0);
  height: auto;
}
.uniq-shape-text .custom-text-alt {
  margin-left: 23%;
  font-size: 20px;
  display: block;
  text-align: center;
  color: #0fa9a2;
}
.custom-text-alt {
  margin-left: 3%;
  font-size: 18px;
  color: #0fa9a2;
}
.uniq-container-text {
  border-radius: 0 20px 0 0;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;

  height: 483px;
  position: relative;
}

.uniq-container-text h1 {
  font-size: 54px;
  font-weight: 500;
  padding: 0 3% 0 57%;
  text-align: end;
}
.custom-cnt {
  margin-right: 100%;
}
.custom-cnt-second {
  position: relative;
  display: none;
  padding: 0 6%;
}
.custom-cnt-second .more-div {
  margin: 10% 0;
}
.custom-cnt-second .more-btn {
  display: inline-block;

  background: var(--blue-color);
  padding: 20px 31px;
  border-radius: 50px;
  margin: 0;

  color: #fff;
  font-family: "Century Gothic";
  font-size: 18px;
}
.custom-cnt-second .more-txt-end {
  color: var(--blue-color);
  font-family: "Recolate";
  font-size: 50px;
}
.custom-cnt-second .custom-cnt-title {
  padding: 4% 0;
  text-align: start;
  font-size: 30px;
  font-family: "Latinka Light";
}
.custom-cnt-second .custom-cnt-blog {
  color: var(--blue-color);
  text-align: start;
  font-size: 20px;
}
.uniq-container-text::before {
  content: "";
  align-items: start;
  transform: translateX(200px) translateY(-55%);
  background: #d2eae9;
  position: absolute;
  height: 72%;

  border-radius: 0 85px 0;
  width: 640px;
  z-index: -1;
}

.uniq-container-text::after {
  content: "";
  width: 150px;
  height: 169px;
  background-image: url(../img/q-6.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 85% auto;
  top: 10px;
  transform: translateX(175px) translateY(-53px);
  right: 0;
  position: absolute;
  z-index: 99;
  display: inline-block;
}

.referans-row div {
  margin: 4% 0;
}
.referans-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.bq :first-child {
  margin-bottom: 100px;
}

.green-txt-end {
  color: #0fa9a2;
  padding: 0;
  height: 0;
  display: block;
  position: relative;
  left: 30px;
  font-weight: 400;
  font-family: "Recolate";
  font-size: 230px;
}
.text-child {
}
.green-txt-end-second {
  color: #0fa9a2;
  padding: 0;
  height: 0;
  font-weight: 400;
  font-family: "Recolate";
  font-size: 100px;
}
.lorem-text .lorem {
  font-family: "Recolate";
  font-size: 75px;
  line-height: 75px;
  font-weight: 600;
  margin: -80px 0 0;
}
.uniq-shape-text .text {
  position: relative;
}

.uniq-shape-text p {
  font-size: 2.5em;
  color: #0d2435;
  line-height: 1.5em;
  letter-spacing: 2px;
  margin-bottom: 0;
  font-family: "Latinka Light";
}

.uniq-shape-text p.shape-text-uniq {
  font-family: "Latinka Regular";
}

.uniq-shape-text .uniq-text-decor {
  position: absolute;
  width: 75px;
}

.uniq-shape-text .uniq-text-decor:first-child {
  top: 0px;
  left: -80px;
}

.uniq-shape-text .uniq-text-decor:last-child {
  right: 30px;
  bottom: -20px;
  scale: -1;
}

.uniq-shape-big-q {
  width: 50%;
  position: relative;
}

.uniq-shape-big-q img.big-q {
  position: absolute;
  top: -78%;
  right: -12%;
  width: 130%;
  z-index: -1;
}

.uniq-shape-big-q img.wave {
  position: absolute;
  top: -175px;
  right: 261px;
  width: 170px;
}

.uniq-shape-big-q img.line-circle {
  position: absolute;
  top: -100px;
  left: -45px;
  width: 180px;
}

.left-line {
  width: 800px;
  height: 800px;
  border-radius: 125px;
  position: absolute;
  z-index: 1;
  top: -19%;
  left: -25%;
  border: 1px solid #b1b1b1;
  rotate: 45deg;
  z-index: 1;
}

.left-line-last {
  z-index: -1;
  position: relative;
}

.uniq-strategy {
  margin-top: 100px;
}

.uniq-strategy .title {
  text-align: center;
  font-size: 3.3em;
  color: #0d2435;
  font-weight: 600;
  margin-bottom: 90px;
  font-family: "Recolate";
}

.strategy-container {
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.strategy-items-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.strategy-items-wrapper .row {
  padding: 30px 0 0 30px;
  --bs-gutter-x: 4rem;
}

.strategy-item {
  width: 50%;
  display: flex;
  padding: 0 40px;
  margin-bottom: 50px;
}
.strategy-item img {
  margin-left: auto !important;
  display: block;
}

.strategy-item .item-text {
  padding-left: 15px;
}

.strategy-item .item-text .item-text-title {
  font-size: 25px;

  color: #0d2435;
  font-family: "Noto Sans JP", sans-serif;
}
.strategy-custom-container {
  padding: 80px !important;
}

.strategy-item .item-text h3 {
  font-size: 24.5px;
  line-height: 1.4em;
  color: #919191;
  font-family: "Latinka Regular";
}

.right-colors {
  position: absolute;
  bottom: 85%;
  right: 13%;
}

.right-colors .item {
  position: absolute;
  z-index: 3;
  transform: translateX(100%);
  transition: transform 1s ease-in;
}

.right-colors .item.active {
  transform: translateX(0%);
}

.right-colors .item:nth-child(2) {
  top: 160px;
  z-index: 2;
  left: 40px;
  transition: transform 1.2s ease-in;
}

.right-colors .item:nth-child(3) {
  top: 320px;
  z-index: 1;
  left: 80px;
  transition: transform 1.4s ease-in;
}

@keyframes uniqShapeAnim {
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.tasks .swiper-pagination {
  width: 1% !important;
  list-style: none;
  flex-direction: column;
  display: inline-flex;
  top: 35% !important;
  align-items: flex-start;
  position: absolute;
}

.tasks .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #ffffffe3;
  position: relative;
  opacity: 1;

  margin: 15px 0 !important;
}
.tasks .swiper-pagination-bullet:hover {
  animation: ripple 0.5s linear infinite;
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0.1rem rgba(255, 255, 255, 0.379);
  }
  100% {
    box-shadow: 0 0 0 0.5rem #d8e2e1;
  }
}

.tasks .swiper-pagination-bullet-active {
  width: 60px;
  height: 20px;

  background: #ff4a5a !important;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  margin-top: -0.2% !important;
  -webkit-transition: width 0.3s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: width 0.3s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.tasks .swiper-slide {
  text-align: center;
  font-size: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.tasks .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tasks {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background: #d8e2e1;
  margin-top: 250px;
  display: flex;
  position: relative;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.tasks .container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding: 35px;
}
.tasks .row {
  --bs-gutter-x: 2rem;
}

.tasks.active {
  animation: uniqShapeAnim 1.5s forwards;
  animation-delay: 0.2s;
}
.tasks-image-box img {
  width: 100%;
}
.item-icon img {
  max-width: 50px;
  height: auto;
  right: 0;
  padding: 0;
  margin: 0;
}
.tasks .item {
  opacity: 0;
}

.tasks.active .tasks-text {
  animation: taskItemOpacity 0.5s forwards;
  animation-delay: 1s;
  align-items: center;
  padding: 20% 5%;
}
.tasks-text-one .anime-title-task {
  padding: 0;
  font-family: "Recolate";
  font-size: 65px;
  font-weight: 600;
}
.btn-div {
  padding: 10% 0 0;
  display: block;
}

@keyframes taskItemOpacity {
  100% {
    opacity: 1;
  }
}
.tasks-text h2 {
  font-family: "Latinka Regular";
  font-size: 40px;
  padding: 0 40% 0 0;
}

.tasks-text h3 {
  color: var(--blue-color);
  font-size: 3.2em;

  letter-spacing: 2px;
  margin: 0;
  line-height: 1.1;
  font-family: "Latinka Regular";
}

.tasks-text p {
  color: var(--blue-color);
  font-size: 20px;
  margin-top: 20px;
  letter-spacing: 1px;
}

.tasks-text img {
  width: 45%;
  margin-bottom: 20px;
}

.tasks .more-btn {
  display: inline-block;
  background: var(--blue-color);
  padding: 20px 35px;
  border-radius: 50px;
  margin: 0 auto;
  color: #fff;
  justify-content: start;
  font-family: "Century Gothic";
  font-size: 20px;
}
.tasks-second-col {
  padding: 0 10%;
}
.tasks .more-btn:hover {
  background: #0b746e;
}

.custom-reference-box {
  background: #d2eae9;
  border-radius: 110px;
  padding: 7% 0;
}
.text-box {
  margin: 0 0 5%;
}
.text-box h1 {
  font-weight: bold;
  font-family: "Recolate";
  font-size: 85px;
}
.text-box p {
  font-size: 25px;
  color: #0000006f;
}
.structure {
  margin-top: -300px !important;
  margin: 0 0 5%;
}
.custom-icon-flower {
  display: flex;

  transform: rotate(180deg);
}
.custom-icon-flower img {
  margin-left: auto;
  margin-right: auto;
  display: none;
  margin-top: 5%;
  animation-iteration-count: 5 !important;
  animation: 1.3s lefter forwards;
}
@keyframes lefter {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100px);
    opacity: 0;
  }
}
.structure .title {
  text-align: center;
  font-size: 3.5em;
  color: #0d2435;
  font-family: "Latinka Regular";
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.structure-min-sw {
  width: 550px;
  height: 100px;
  margin-top: 30px;
}

.structure-min-sw .min-sw-inner {
  display: flex;
}

.min-sw-title {
  margin-right: 50px;
  position: relative;
  color: #0d2435;
  font-size: 18px;
  letter-spacing: 3px;
  font-family: "Century Gothic";
  font-weight: 600;
}

.min-sw-title::after {
  content: "";
  position: absolute;
  top: 12px;
  right: -40px;
  width: 30px;
  height: 2px;
  background: #12a19a;
  border-radius: 2px;
}

.min-sw-p {
  color: #7e7e7e;
  font-size: 18px;
  font-family: "Latinka Regular";
}

.rc-container {
  background: #12a19a;
  padding: 75px 0 120px 0;
}

.rc-container .title {
  text-align: center;
  font-size: 2.8em;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 2px;
  font-family: "Latinka Regular";
}

.rc-container-inner {
  padding: 0 100px;
  margin-top: 65px;
  display: flex;
  flex-wrap: wrap;
}

.rc-item {
  width: 20%;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.rc-item .icon-wrap {
  display: flex;
  justify-content: center;
}

.rc-item .icon-wrap img {
  width: 180px;
}

.rc-item .text-wrap p {
  color: #fff;
  font-family: "Latinka Regular";
  font-size: 20px;
}

.rc-item .text-wrap h2 {
  color: #fff;
  font-size: 24px;
  font-family: "Latinka Regular";
  margin: 10px 0 20px 0;
}

footer .rower {
  margin: 30px 50px;
}
footer .rower > {
  padding: 0 !important;
}
.footer-logo img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  filter: invert(0);
  display: block;
}
footer {
  padding: 50px 0;
  background: #ff5555;
  position: relative;
}
footer .list-group {
  background: none;
}

footer .list-group-item {
  padding: 0.3rem 0;
  background: none;
  border: none;
}
footer .lgi-top {
  padding: 0 0 40px;
}
footer .list-group-item a {
  color: #ffffff;
  font-size: 23px;
}
footer .copy {
  position: absolute;
  right: 100px;
  bottom: 50px;
}

footer .copy p {
  color: #fff;
  margin: 0;
  font-family: "Century Gothic";
  font-size: 16px;
}

a {
  transition: all 0.2s;
  color: var(--blue-color);
}

a:hover {
  color: #0d2435;
}
.icon-cooler {
  font-size: 25px;
}
.icon-cooler .icon-box {
  text-align: end !important;
}
.icon-cooler i {
  font-size: 35px;
  margin: 0 2%;
  color: #ffff;
  border-radius: 50%;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

li.drop-down {
  position: relative;
}

li.drop-down .drop-ico {
  position: absolute;
  width: 22px;
  top: 3px;
  right: -28px;
}

/* .right-colors,
.uniq-shape-big-q img.big-q {
    display: none;
} */

.menu-btn {
  position: absolute;
  right: 80px;
  background: none;
  border: none;

  width: 44px;
  height: 44px;
  mix-blend-mode: multiply;
  z-index: 9;
  display: none;
}

.menu-btn .lines {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}

.menu-btn .line {
  background: #2e3038;
  width: 24px;
  height: 3px;
}

.menu-btn .lines.open {
  opacity: 1;
  padding: 13px 10px 14px;
}

.menu-btn .lines.close {
  opacity: 0;
}

.menu-btn .lines.close .line {
  margin: -1px 0 0 -12px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.menu-btn .lines.open .line:nth-child(2) {
  margin: 4px 0;
}

.menu-btn .lines.close .line:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-btn .lines.close .line:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-btn.active .lines.open {
  opacity: 0;
}

.menu-btn.active .lines.close {
  opacity: 1;
}

.menu-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f5f5f5;
  z-index: 98;
  display: none;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
  transition-delay: 0.4s;
}

.menu-main.active {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

.menu-nav {
  z-index: 1;
}

.menu-nav ul {
  padding-left: 0 !important;
}

.menu-nav ul li {
  text-align: center;
  margin: 15px 0;
}

.menu-nav ul li a {
  font-size: 2em;
}

.menu-nav li.drop-down .drop-ico {
  position: absolute;
  width: 28px;
  top: 14px;
  right: -46px;
}

.menu-mask {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #e6e6e6;
  z-index: 99;
  pointer-events: none;
  user-select: none;
  visibility: hidden;
}

.menu-mask.active {
  animation: menu-mask-animation 1s forwards;
}

@keyframes menu-mask-animation {
  0% {
    transform-origin: right;
    transform: scaleX(0);
    visibility: visible;
  }

  50% {
    transform-origin: right;
    transform: scaleX(1);
  }

  50.1% {
    transform-origin: left;
  }

  100% {
    transform-origin: left;
    transform: scaleX(0);
    visibility: hidden;
  }
}

/* .cerezler {
    display: none !important;
} */
/* 
.uniq-shape-big-q img.big-q {
    display: none;
}

.right-colors {
    display: none;
} */
