.top-section {
  padding-top: 20px;
  padding-bottom: 150px;
  font-family: 'Open Sans', sans-serif;
  color: #1e1e1e;
}

.top-section h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 12px;
}

.top-section p {
  font-size: 18px;
  font-weight: 400;
}

.btn-area {
  margin-bottom: 20px;
}

.btn-area p {
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 50px;
}

.site-btn {
  font-size: 26px;
  font-weight: 600;
  display: inline-block;
  padding: 14px 22px;
  max-width: 100%;
  width: 450px;
  text-align: center;
    border-radius: 45px;
}

.btn-1 {
  background-color: #090B1F;
  color: #ffffff;
  text-decoration: none;
}

.btn-1:hover {
  background-color: #12163F;
  color: #ffffff;
  text-decoration: none;
  transition: 0.35s ease;
}

.btn-2 {
  background-color: #090B1F;
  color: #ffffff;
  text-decoration: none;
}

.btn-2:hover {
  background-color: #12163F;
  color: #ffffff;
  text-decoration: none;
  transition: 0.35s ease;
}

.time-alert {
  border-radius: 10px;
  padding: 12px 20px;
  max-width: 100%;
  width: 450px;
  font-size: 16px;
  background-color: #D1D4F0;
}

.blob {
  background: #395EB7;
  border-radius: 50%;
  box-shadow: 0 0 0 0 #395EB7;
  margin: 0 6px;
  height: 12px;
  width: 12px;
  transform: scale(1);
  animation: pulse-animation 1.5s infinite;
  display: inline-block;
}

.blob.green {
  background: #39B74D;
  box-shadow: 0 0 0 0 #39B74D;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
}

.site-footer {
  font-family: 'p22-underground', sans-serif;
  color: #1e1e1e;
}

body.home {
  background: #b6e4ff;
}

.site-btn {
  background: #E30303;
}

.site-btn:hover {
  background: #AA1212;
}

.time-alert {
  color: black;
}

img {
  border-radius: 15px;
  max-height: 310px;
  object-fit: cover;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.container.title {
  text-align: center;
  margin-bottom: 60px;
}

.site-btn i {
  margin-right: 3px;
}

.container.content {
  margin-top: 80px;
}

.top-section h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.newcontent .vn {
  opacity: 0!important;
  visibility: hidden!important;
  color: transparent!important;
}

@media (max-width: 768px) {

  .top-section h1 {
    font-size: 36px;
  }
  
  .container.title {
    margin-bottom: 40px;
  }
  
}