@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: url(../images/bg-pc.jpg) no-repeat center center;
  background-size: cover;
  min-height: 100vh;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
.bg-popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(51, 152, 218, 0.902);
  opacity: 0;
  transition: all 0.5s ease;
}
.box-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 18px 0 31px;
  width: 100%;
  max-width: 765px;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 1s ease;
  text-align: center;
}
.logo {
  margin-bottom: 16px;
}
h1 {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 59px;
  text-align: center;

  color: #0B518D;
  margin-bottom: 23px;
}
.list-item {
  background: linear-gradient(180deg, #3092D8 0%, #055191 100%);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  max-width: 637px;
  margin-left: auto;
  margin-right: auto;
  padding: 31px 60px 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 0;
  text-align: left;
}
.list-item span {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  text-transform: capitalize;

  color: #FFFFFF;
  position: relative;

}
.list-item span:nth-child(1), .list-item span:nth-child(4) {
  width: 63%;
}
.list-item span:before {
  content: " ";
  position: absolute;
  left: -27px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #7CDC24;
}
button {
  outline: none;
  color: #fff;
  border: none;
  background: #DB1313;
  box-shadow: 0px 3px 23px rgba(0, 10, 98, 0.26);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding: 17px 40px;
  margin-top: -25px;
  margin-bottom: 18px;
}

button span {
  display: block;
  width: 100%;
  height: 100%;
  font-style: normal;
  font-weight: 700;
  font-size: 34.1472px;
  line-height: 40px;
  /* identical to box height */

  text-align: center;
  text-transform: uppercase;

  color: #FFFFFF;

}

button:before,
button:after {
  position: absolute;
  content: '';
  height: 0%;
  width: 2px;
  background: #DB1313;
  transition: all 0.5s ease;
}

button:before {
  right: 0;
  top: 0;
}

button:after {
  left: 0;
  bottom: 0;
}

button:hover {
  color: #DB1313;
  background: rgb(255, 187, 0);
}

button:hover:before {
  height: 100%;
}

button:hover:after {
  height: 100%;
}

button span:before,
button span:after {
  position: absolute;
  content: '';
  background: #DB1313;
  transition: all 0.5s ease;
}

button span:before {
  left: 0;
  top: 0;
  width: 0%;
  height: 2px;
}

button span:after {
  right: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
}
button span:hover {
  color: #DB1313;
}
button span:hover:before {
  width: 100%;
  color: #DB1313;
}

button span:hover:after {
  width: 100%;
}
p {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  text-align: center;

  color: #128BDC;
}
.close {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.mb {
  display: none;
}
@media screen and (max-width: 600px) {
  .mb {
    display: inline-block;
  }
  .pc {
    display: none;
  }
  body {
    background: url(../images/bg-mb.jpg) no-repeat center center;
    background-size: cover;
  }
  .box-popup {
    padding: 13px 0 16px;
    max-width: 383px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.28);
  }
  .logo img {
    max-width: 142px;
  }
  .logo {
    margin-bottom: 17px;
  }
  h1 {
    font-size: 28px;
    line-height: 33px;
    margin-bottom: 13px;
  }
  .list-item {
    background: linear-gradient(180deg, #3092D8 0%, #055191 100%);
    box-shadow: 0px 4px 20px rgb(0 0 0 / 25%);
    max-width: 353px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 85px 30px 102px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 7px 0;
    text-align: left;
  }
  .list-item span {
    font-size: 18.9408px;
    line-height: 22px;
  }
  .list-item span:nth-child(1), .list-item span:nth-child(3) {
    width: 100%;
  }
  .list-item span:before {
    content: " ";
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7CDC24;
  }
  button span {
    font-size: 24.1472px;
    line-height: 29px;
  }
  button {
    outline: none;
    color: #fff;
    border: none;
    background: #DB1313;
    box-shadow: 0px 3px 23px rgb(0 10 98 / 26%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 29px;
    margin-top: -25px;
    margin-bottom: 12px;
  }
  p {
    font-size: 14px;
    line-height: 16px;
  }
  .close img {
    max-width: 17px;
  }
  .close {
    bottom: -33px;
  }
}
@media screen and (max-width: 400px){
  .box-popup {
      max-width: 360px;
  }
}
@media screen and (max-width: 350px){
  .box-popup {
      padding: 13px 0 16px;
      max-width: 300px;
      background: #FFFFFF;
      box-shadow: 0px 4px 10px rgb(0 0 0 / 28%);
  }
  h1 {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 13px;
  }
  .list-item {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 40px 30px 70px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 7px 0;
    text-align: left;
  }
  button span {
    font-size: 20.1472px;
    line-height: 26px;
  }
  p {
    font-size: 12px;
    line-height: 14px;
  }
}