@import url('https://fonts.googleapis.com/css2?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');


:root {
  --main-color: rgb(252, 143, 0);
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

a {
  text-decoration: none;
}

.display-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrap-dl-app {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background: url("../assets/images/bg.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: center;
}

@media (max-width: 480px) {
  .wrap-dl-app {
    background-size: cover;
  }
}

@media (max-width: 768px) {
  .dl-app {
    padding-bottom: 10px;
  }
}

.dl-app_logo {
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .dl-app_logo {
    width: 480px;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .dl-app_logo {
    width: 400px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .dl-app_logo {
    max-width: 92%;
    width: 300px;
    margin-top: 40px;
  }
}

.dl-app_btn-1 {
  width: 75%;
  height: 80px;
  min-width: 350px;
  max-width: 430px;
  margin: 0px auto;
  background: url("../assets/images/bgBtn.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-weight: 900;
  font-size: 35px;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0px 10px;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .dl-app_btn-1 {
    font-size: 30px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .dl-app_btn-1 {
    font-size: 24px;
    line-height: 25px;
    height: 70px;
    max-width: 100%;
    min-width: 85%;
  }
}

.dl-app_title {
  font-weight: 900;
  font-size: 64px;
  line-height: 75px;
  text-align: center;
  color: #26A9E0;
  margin-top: 150px;
}

@media (max-width: 1024px) {
  .dl-app_title {
    font-size: 45px;
    line-height: 60px;
  }
}

@media (max-width: 768px) {
  .dl-app_title {
    font-size: 35px;
    line-height: 40px;
    margin-top: 110px;
  }
}

@media (max-width: 480px) {
  .dl-app_title {
    font-size: 28px;
    line-height: 30px;
    margin-top: 80px;
  }
}

.dl-app_list-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 35px;
  margin: 35px 0;
}

@media (max-width: 480px) {
  .dl-app_list-btn {
    padding: 5px;
  }
}

.dl-app_item-btn {
  width: 390px;
  height: 68px;
  display: flex;
  background: url("../assets/images/bgBtn2.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  cursor: pointer;
  font-weight: 900;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #26A9E0;
  border: none;
}

@media (max-width: 768px) {
  .dl-app_item-btn {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .dl-app_item-btn {
    width: 100%;
    height: 64px;
  }
}

.dl-app_item-btn>span {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dl-app_item-btn>img {
  position: relative;
  left: 10px;
  top: -12px;
  width: 100px;
  width: 70px;
  height: 70px;
}


.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 200px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  width: 50%;
  position: relative;
  aspect-ratio: 16/9;
}

.modal-content video {
  display: block;
}

@media (max-width: 768px) {
  .modal-content {
    width: 90%;
  }
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 999;
}

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


/*# sourceMappingURL=main.css.map */