@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Mukta:wght@200;300;400;500;600;700;800&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Playfair+Display:ital,wght@0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

body {
  color: #555555;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-repeat: no-repeat;
  background-size: cover;
  /*overflow: hidden;  Scroll'ı engeller 
  overflow-y: clip;*/
}

img {
  max-width: 100%;
}

.logo {
  padding-top: 60px;
}

button {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.currency-area {
  /*background-color: #101010;*/
  /*background-color: #A8A8A8;*/
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
}

@media screen and (max-width: 480px) {
  .currency-area {
    text-align: center;
    height: 92vh !important;
  }
  body {
  margin: 0;
    background-image: url("../images/bg-mobile.jpg");
  }.logo-image {
    height: 60px;
  }

  .float-left {
    float: center;
  }

  .float-right {
    float: center;
  }

  .iframe {
    width: 90%;
  }

  .iframe-container {
    height: 250px;
  }

  .desktop {
    display: none;
  }.mobile {
    display: block;
  }
}

@media screen and (min-width: 480px) {
  body {
    background-image: url("../images/bg.jpg");
    overflow: hidden;
    overflow-y: clip;
  }
  .logo-image {
    height: 90px;
  }

  .float-left {
    float: left;
  }

  .float-right {
    float: right;
  }

  .iframe {
    width: 100%;
  }.iframe-container {
    height: 500px;
  }.desktop {
    display: block;
  }.mobile {
    display: none;
  }
}

.footer {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;padding: 12px 5px;
      background: rgba(0, 0, 0, 0.3);
      color: #fff;
      display: flex;
      text-align: center;
      font-size: 12px;
      z-index: 1000;
    }