@font-face {
  font-family: "Konnect Light";
  src: url("../fonts/KonnectLight.eot");
  src: url("../fonts/KonnectLight.eot?#iefix") format("embedded-opentype"), url("../fonts/KonnectLight.woff2") format("woff2"), url("../fonts/KonnectLight.woff") format("woff"), url("../fonts/KonnectLight.ttf") format("truetype"), url("../fonts/KonnectLight.svg#Konnect Light") format("svg");
}
@font-face {
  font-family: "Konnect Medium";
  src: url("../fonts/KonnectMedium.eot");
  src: url("../fonts/KonnectMedium.eot?#iefix") format("embedded-opentype"), url("../fonts/KonnectMedium.woff2") format("woff2"), url("../fonts/KonnectMedium.woff") format("woff"), url("../fonts/KonnectMedium.ttf") format("truetype"), url("../fonts/KonnectMedium.svg#Konnect Medium") format("svg");
}
* { /* Safari/Chrome, other WebKit */ /* Firefox, other Gecko */
  box-sizing: border-box;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s ease 0.1s;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #424242;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  background: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #0c1117;
}

.button,
.button-border {
  display: block;
  padding: 10px 20px;
  background-color: #ffde1f;
  color: #0d1118;
  font-size: 15px;
  letter-spacing: -0.6px;
  transition: all 0.4s ease 0.1s;
  border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
@media (min-width: 868px) {
  .button,
  .button-border {
    padding: 15px 60px;
    font-size: 18px;
  }
}

.button:hover {
  background-color: #fff;
}

.button-border {
  background-color: transparent;
  outline: 2px solid #ffde1f;
  color: #fff;
}
.button-border:hover {
  background-color: #fff;
  outline-color: #fff;
  color: #0d1118;
}

.container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  height: 100vh;
  padding: 20px;
}
@media (min-width: 1640px) {
  .container {
    width: 1640px;
    padding: 45px 0px;
  }
}

header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 576px) {
  header {
    flex-direction: row;
  }
}
header .header-left {
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  header .header-left {
    padding-bottom: 0px;
  }
}
header .header-left img {
  width: 100%;
  height: auto;
  max-width: 245px;
  max-height: 41px;
}
header .header-right {
  display: flex;
  justify-content: end;
  gap: 15px;
  align-items: center;
}
.lang-box {
  display: flex;
  align-items: center;
  padding: 15px;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s ease 0.1s;
}
@media (min-width: 868px) {
  .lang-box {
    font-size: 18px;
  }
}

.drop-down {
  position: relative;
}
.drop-down .dd-section {
  padding-right: 4px;
  background-image: url(../images/down-arrow.png);
  background-repeat: no-repeat;
  background-size: 8px 8px;
  background-position: center right;
}
@media (min-width: 868px) {
  .drop-down .dd-section {
    padding-right: 8px;
    background-size: 13px 13px;
  }
}
.drop-down .dd-hover {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  background-color: #404252;
  border-radius: 7px;
}
.drop-down .dd-hover .lang-box:hover {
  background-color: #282932;
  border-radius: 7px;
}
.drop-down.show .dd-section {
  background-image: url(../images/up-arrow.png);
}
.drop-down.show .dd-hover {
  display: block;
}

main {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  padding-top: 80px;
  padding: 80px 10px 0px 10px;
}
@media (min-width: 868px) {
  main {
    flex-direction: row;
    justify-content: space-between;
    gap: 100px;
    padding: 130px 70px 0px 70px;
  }
}
main .main-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}
@media (min-width: 868px) {
  main .main-left {
    padding-bottom: 0px;
  }
}
main .main-left .head-line {
  order: 1;
}
main .main-left .head-line h1 {
  font-family: "Konnect Medium";
  font-size: 13vw;
  color: #ffde1f;
  font-weight: 100;
  margin: 0px;
  text-align: center;
}
@media (min-width: 576px) {
  main .main-left .head-line h1 {
    font-size: 10vw;
  }
}
@media (min-width: 868px) {
  main .main-left .head-line h1 {
    text-align: left;
    font-size: 6vw;
  }
}
main .main-left .head-line span {
  display: block;
  color: #fff;
  font-size: 11vw;
  text-align: center;
}
@media (min-width: 576px) {
  main .main-left .head-line span {
    font-size: 8vw;
  }
}
@media (min-width: 868px) {
  main .main-left .head-line span {
    font-size: 4vw;
    text-align: left;
  }
}
main .main-left .icon-container {
  display: flex;
  justify-content: left;
  gap: 10px;
  flex-wrap: wrap;
  order: 3;
  padding-top: 50px;
}
@media (min-width: 868px) {
  main .main-left .icon-container {
    align-items: center;
    justify-content: left;
    flex-wrap: nowrap;
    gap: 35px;
    order: 2;
    padding: 45px 0px;
  }
}
main .main-left .icon-container .icon-box {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Konnect Light";
  font-size: 14px;
  color: #ababc3;
  font-weight: 100;
}
main .main-left .icon-container .icon-box img {
  max-width: 40px;
  height: auto;
}
@media (min-width: 868px) {
  main .main-left .icon-container .icon-box {
    font-size: 16px;
  }
}
main .main-left .button-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  order: 2;
  align-items: center;
  padding-top: 50px;
  font-size: 12px;
}
@media (min-width: 868px) {
  main .main-left .button-container {
    order: 3;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 35px;
    padding: 15px 0px;
  }
}
main .main-left .button-container img {
  max-width: 221px;
  height: auto;
}
@media (min-width: 868px) {
  main .main-left .button-container img {
    width: 100%;
  }
}
main .main-left .button-container .desktop,
main .main-left .button-container .ios,
main .main-left .button-container .android {
  cursor: pointer;
  display: none;
}
main .main-right {
  height: auto;
  background: url(../images/gorsel.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 16/16;
}
@media (min-width: 868px) {
  main .main-right {
    aspect-ratio: inherit;
    flex: 1;
    height: inherit;
  }
}
@media (min-width: 992px) {
  main .main-right {
    flex: 2;
  }
}
@media (min-width: 1180px) {
  main .main-right {
    flex: 1;
  }
}
@media (min-width: 868px) {
  main .mobile-hide-button {
    display: none;
  }
}
main .mobile-hide-button .button-container .button-box {
  cursor: pointer;
  display: none;
  text-align: center;
  color: #ababc3;
}

.button-box {
  color: #ababc3;
}

footer .footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  color: #91929b;
  font-weight: 100;
  font: normal normal normal 14px/17px Helvetica;
  letter-spacing: -0.42px;
  padding: 140px 0 50px 0px;
  text-align: center;
}
@media (min-width: 868px) {
  footer .footer-top {
    flex-direction: row;
    text-align: left;
  }
}
@media (min-width: 992px) {
  footer .footer-top {
    padding: 140px 0 50px 0px;
  }
}
footer .footer-top img {
  width: 100%;
  min-width: 95px;
  height: auto;
}
footer .footer-bottom {
  display: none;
}
@media (min-width: 868px) {
  footer .footer-bottom {
    display: block;
  }
}
footer .footer-bottom img {
  width: 100%;
  height: auto;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(16, 20, 27, 0.8);
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-content: center;
      position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  padding: 20px;
  width: 80%;
  max-width: 525px;
  background: #252433 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  opacity: 1;
  text-align: center;
  border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.modal-content .modal-title {
  font-family: "Konnect Medium";
  font-weight: 100;
  font-size: 28px;
  color: #ffffff;
  padding-bottom: 15px;
}
.modal-content .modal-desc {
  font-family: "Konnect Light";
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 100;
  color: #bbc5de;
}
.modal-content .modal-desc span {
  color: #ffde1f;
}
.modal-content .modal-images {
  padding: 30px 0px;
}
.modal-content .modal-images img {
  width: 100%;
  height: auto;
  max-width: 230px;
}
.modal-content .modal-note,
.modal-content .close:hover {
  font-family: "Konnect Light";
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 100;
  color: #bbc5de;
}
.modal-content .modal-time {
  font-family: "Konnect Light";
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 100;
  color: #bbc5de;
  text-align: center;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  display: block;
  text-align: center;
  line-height: 50px;
  position: absolute;
  top: -50px;
  right: -50px;
  width: 50px;
  height: 50px;
  /* UI Properties */
  background: #252433 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #ffc910;
  opacity: 1;
  border-radius: 50%;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.install-app-btn-container {
  display: none;
}

.loader-content {
  display: flex;
  justify-content: center;
  padding-top: 15px;
}
.loader-content .loader {
  width: 60px;
  aspect-ratio: 4;
  background: radial-gradient(circle closest-side, #fff 90%, #252433) 0/33.3333333333% 100% space;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  animation: l1 1s steps(4) infinite;
}
@keyframes l1 {
  to {
    -webkit-clip-path: inset(0 -34% 0 0);
            clip-path: inset(0 -34% 0 0);
  }
}/*# sourceMappingURL=style.css.map */