@font-face {
  font-family: 'Arista';
  src: url('../font/Arista.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Blog';
  src: url('../font/BloggerSans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.font1{
  font-family: "Arista";
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #040404;
  color: #fff;
  position: relative;
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: -1;
}

.background-video {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background-video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

a {
  color: #18d26e;
  text-decoration: none;
}

a:hover {
  color: #35e888;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Blog";

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: ease-in-out 0.3s;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 997;
  overflow-y: auto;
}

#header * {
  transition: ease-in-out 0.3s;
}

#header h1 {
  font-size: 60px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #d2b618;
}

#header h1 a,
#header h1 a:hover {
  color: #fff;
  line-height: 1;
  display: inline-block;
}

#header h2 {
  font-size: 18px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}

#header h2 span {
  color: #fff;
  border-bottom: 2px solid #d2b618;
  padding-bottom: 6px;
}

#header img {
  padding: 0;
  margin: 0;
}

#header .social-links {
  margin-top: 40px;
  display: flex;
}

#header .social-links a {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

#header .social-links a:hover {
  background: #d2b618;
}

@media (max-width: 992px) {
  #header h1 {
    font-size: 36px;
  }

  #header h2 {
    font-size: 20px;
    line-height: 30px;
  }

  #header .social-links {
    margin-top: 15px;
  }

  #header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Header Top */
#header.header-top {
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
}

#header.header-top .social-links,
#header.header-top .song-playlist,
#header.header-top h2 {
  display: none;
}

#header.header-top h1 {
  margin-right: auto;
  font-size: 36px;
}

#header.header-top .container {
  display: flex;
  align-items: center;
}

#header.header-top .navbar {
  margin: 0;
}

@media (max-width: 768px) {
  #header.header-top {
    height: 60px;
  }

  #header.header-top h1 {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-top: 35px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li+li {
  margin-left: 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #d2b618;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: fixed;
  right: 15px;
  top: 15px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
  margin-top: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 45px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.navbar-mobile li {
  padding: 12px 20px;
}

.navbar-mobile li+li {
  margin: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  font-size: 16px;
  position: relative;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 140px;
  bottom: 100%;
  opacity: 0;
  transition: ease-in-out 0.4s;
  z-index: 2;
}

section.section-show {
  top: 100px;
  bottom: auto;
  opacity: 1;
  padding-bottom: 45px;
}

section .container {
  background: rgba(0, 0, 0, 0.85);
  padding: 30px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  section {
    top: 120px;
  }

  section.section-show {
    top: 80px;
  }
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #d2b618;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: -15px 0 15px 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-me .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #d2b618;
}

.about-me .content ul {
  list-style: none;
  padding: 0;
}

.songs-list ul {
  list-style: none;
  padding: 0;
}

.songs-list ul li {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.songs-list i {
  font-size: 16px;
  margin-right: 5px;
  color: #d2b618;
  line-height: 0;
}

.about-me .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about-me .content ul strong {
  margin-right: 10px;
}

.about-me .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #d2b618;
  line-height: 0;
}

.about-me .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 3px 10px 3px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #d2b618;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #d2b618;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
}

.portfolio-details .container {
  padding-top: 20px;
  padding-bottom: 40px;
}

.portfolio-details .portfolio-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-info {
  padding-top: 45px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-info p {
  font-size: 15px;
  padding: 15px 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-info {
    padding-top: 20px;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d2b618;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  padding: 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.contact .info-box i.bx {
  font-size: 24px;
  color: #d2b618;
  border-radius: 50%;
  padding: 14px;
  float: left;
  background: rgba(255, 255, 255, 0.1);
}

.contact .info-box h3 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  margin: 10px 0 8px 68px;
}

.contact .info-box p {
  padding: 0;
  color: #fff;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 68px;
}

.contact .info-box .social-links {
  margin: 5px 0 0 68px;
  display: flex;
}

.contact .info-box .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  margin-right: 12px;
  transition: 0.3s;
}

.contact .info-box .social-links a:hover {
  color: #d2b618;
}

.contact .php-email-form {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  background: #d2b618;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #d2b618;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  transition: 0.3s;
  color: #fff;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  background-color: rgba(255, 255, 255, 0.11);
}

.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button {
  background: #d2b618;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button:hover {
  background: #d2b618;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 992px) {
  .credits {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
  }
}

.credits a {
  color: #d2b618;
  transition: 0.3s;
}

.credits a:hover {
  color: #fff;
}

.play-btn {
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  display: block;
  position: relative;
  height: 40px;
  border: 2px solid #F7CA18;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.download-btn {
  height: 40px;
  border-radius: 40px;
  border: 2px solid green;
  background-color: transparent;
  color: white;
}

.spotify-popup {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.spotify-popup iframe {
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.tab-change-btn {
  text-decoration: none;
  color: #d2b618;
  background-color: transparent;
  text-align: center;
}

.tab-change-btn:hover {
  color: #fff;
}

.song-box {
  width: 98%;
  border-radius: 15px;
  text-align: start;
  display: flex;
  justify-content: center;
  background-color: #383838;
  flex-direction: column;
}

.song-img {
  width: 65%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

.song-text-box {
  line-height: 1.1;
}

.song-bt1 {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  font-weight: bold;
  border: none;
  font-family: "Poppins";
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.song-bt2 {
  width: 60%;
  height: 40px;
  border-radius: 20px;
  font-weight: bold;
  border: none;
  font-family: "Poppins";
  background-color: transparent;
  border: 1px solid;
  border-color: #d4b711;
  color: #a18b0d;
}

.news-more-bt {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 80%;
}

.news-more-bt a {
  width: 200px;
  height: 40px;
  background-color: transparent;
  border-radius: 20px;
  border: white solid;
  border-width: 2px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.news-social-bt {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.news-social-bt a {
  width: 20%;
  height: auto;
  background-color: transparent;
  border-radius: 10px;
  border: white solid;
  border-width: 2px;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}


.song-details {
  background: rgba(0, 0, 0, 0.9);
  border-radius: 20px;
}

.song-details-main {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

@media (max-width: 1200px) {
  .song-details-main .section-title {
    padding: 30px;
  }

  .song-details-main .section-title p {
    font-size: 30px;
  }
}

.song-details .song-icon {
  display: grid;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  text-align: center;
}

.song-details-text {
  text-align: center;
  font-size: 14px;
}

@media (min-width: 992px) {
  .song-details {
    padding: 30px;
  }
}

.song-d-img {
  width: 75%;
  height: auto;
  border-radius: 20px;
}

.lyrics-d {
  width: 100%;
  min-height: 600px;
  background-color: transparent;
  color: white;
  border: none;
  text-align: center;
  margin-top: 20px;

}

.lyrics-d::-webkit-scrollbar {
  display: none;
}

.lyrics-d {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.back-bt1 {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: rgb(36, 35, 35);
  color: #d2b618;
  font-size: 30px;
}

.text-limit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.text-limit-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text-limit-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-limit-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

.audio-bg {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.copyright-text a {
  color: #d2b618;
  cursor: pointer;
  font-size: 12px;
}

.copyright-text span {
  font-size: 12px;
}

@media (max-width: 1200px) {
  .copyright-text a {
    font-size: 9px;
  }

  .copyright-text span {
    font-size: 9px;
  }
}

.lpbody h2 {
  font-family: "Poppins";
  font-weight: bold;
  text-transform: capitalize;
}

.lpbody h5 {
  font-family: "Poppins";
  color: rgb(163, 163, 163);
}

.lpbody span {
  font-size: 20px;
  font-weight: bold;
}

.lpbody button {
  background-color: #18d26e;
  height: 40px;
  border: none;
  border-radius: 10px;
  font-family: "Poppins";
  font-weight: bold;
  color: black;
  font-size: 18px;
}

.unConImg {
  width: 70%;
  height: auto;
}

@media (max-width:992px) {
  .unConImg {
    width: 100%;
    height: auto;
  }
}

.pagination-transparent .page-item .page-link {
  background-color: transparent;
  border-color: white;
  color: #ffffff;
  /* Optional: You can change the color to fit your design */
}

.pagination-transparent .page-item .page-link:hover,
.pagination-transparent .page-item .page-link:focus {
  background-color: transparent;
  border-color: white;
  color: #cecece;
  /* Optional: You can change the color to fit your design */
}

.pagination-transparent .page-item.active .page-link {
  background-color: transparent;
  border-color: white;
  color: #ffffff;
  /* Optional: You can change the color to fit your design */
}

.see-more-btn {
  padding: 10px 30px;
  background-color: rgb(31, 30, 30);
  border-radius: 10px;
  color: white;
}


.btn-download {
  cursor: pointer;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  margin: 11px 3px 10px 3px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.btn-download:hover {
  background-color: red;
  color: #fff;
}

.eventImage {
  border-radius: 10px;
  height: 400px;
  object-fit: cover;
}



@media screen and (max-width: 350px) {
  .song-bt2 {
    font-size: 10px;
  }

  .contact .info-box p {
    font-size: 10px;
    /* Adjust this value to your desired smaller text size */
  }
}

.allSong-details {
  background-color: #383838;
  border-radius: 15px;
}

.allSong-details img {
  width: 50%;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.allSong-details h4 {
  font-weight: bold;
}

.allSong-details button {
  width: 80%;
  height: 40px;
  border-radius: 10px;
  background-color: transparent;
  border: #d2b618 solid 2px;
  font-weight: bold;
  color: #eee;
}

.freame-container {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 56.25%;
}


.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 98%;
  height: 100%;
}

.slide-in-bottom {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.7s cubic-bezier(0.390, 0.575, 0.565, 1.000),
              transform 0.7s cubic-bezier(0.390, 0.575, 0.565, 1.000);
}

.slide-in-bottom:nth-child(1) {
  animation: slide-in 0.7s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.slide-in-bottom:nth-child(2) {
  animation: slide-in 0.7s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.2s both;
}

.slide-in-bottom:nth-child(3) {
  animation: slide-in 0.7s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.4s both;
}

.slide-in-bottom:nth-child(4) {
  animation: slide-in 0.7s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.6s both;
}

.slide-in-bottom:nth-child(5) {
  animation: slide-in 0.7s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.8s both;
}
.slide-in-bottom:nth-child(6) {
  animation: slide-in 0.7s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}
.slide-in-bottom:nth-child(7) {
  animation: slide-in 0.7s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1.2s both;
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


#cont-main{
  width: 100%;
  height: 100vh;
  position: absolute;
  overflow: hidden;
}

.dot{
  width:35px;
  height:35px;
  position:absolute;
  background: url(http://img.babathe.com/upload/specialDisplay/htmlImage/2019/20190104_rose2.png);
  background-size: 100% 100%;
}
.dot2{
  width:35px;
  height:35px;
  position:absolute;
  background: url(http://img.babathe.com/upload/specialDisplay/htmlImage/2019/20190104_rose.png);
  background-size: 100% 100%;
}
.dot3{
  width:35px;
  height:35px;
  position:absolute;
  background: url(http://img.babathe.com/upload/specialDisplay/htmlImage/2019/20190104_rose3.png);
  background-size: 100% 100%;
}

.youtube-div{
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}
