/* CSS Variables for consistent theming - Updated with #f0aa00 */
:root {
  --primary-color: #1a5f7a;
  /* Blue from original */
  --secondary-color: #f0aa00;
  /* New gold/orange color */
  --accent-color: #f0aa00;
  /* Using same for consistency */
  --light-color: #f8f9fa;
  --dark-color: #2c3e50;
  --text-color: #333;
  --border-radius: 12px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --secondary-dark: #d69900;
  /* Darker shade for hover */
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f7fa;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

/* Button Styles */
.cta-button,
.secondary-btn,
.login-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.cta-button {
  background-color: var(--secondary-color);
  color: white;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(240, 170, 0, 0.3);
}

.cta-button:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(240, 170, 0, 0.4);
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s;
}

.cta-button:hover::after {
  left: 100%;
}

.secondary-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 95, 122, 0.2);
}

.login-btn {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 25px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(240, 170, 0, 0.2);
}

.login-btn:hover {
  background-color: var(--secondary-dark);
  box-shadow: 0 6px 18px rgba(240, 170, 0, 0.3);
  transform: translateY(-3px);
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideInFromBottom 0.5s ease-out;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo img {
  width: 80px;
  height: 80px;
}

/* .logo h1 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    position: relative;
}

.logo span {
    color: var(--secondary-color);
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: width 0.3s;
}

.logo:hover h1::after {
    width: 100%;
} */
/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  padding: 5px 0;
  position: relative;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.nav-menu a.active {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(26, 95, 122, 0.85), rgba(26, 95, 122, 0.95)), url("https://images.unsplash.com/photo-1677442136019-21780ecad995?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 120px 0;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
  animation: shimmer 3s infinite linear;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero .cta-button {
  animation: fadeInUp 0.8s ease-out 0.6s both, pulse 2s ease-in-out infinite 1.5s;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.section-title h2 {
  color: var(--primary-color);
  font-size: 36px;
  display: inline-block;
  padding-bottom: 15px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
  animation: pulse 2s infinite;
}

/* Courses Section */
.courses-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.course-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-top: 4px solid var(--secondary-color);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.course-card:nth-child(1) {
  animation-delay: 0.1s;
}

.course-card:nth-child(2) {
  animation-delay: 0.2s;
}

.course-card:nth-child(3) {
  animation-delay: 0.3s;
}

.course-card:nth-child(4) {
  animation-delay: 0.4s;
}

.course-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(240, 170, 0, 0.2);
}

.course-img {
  height: 220px;
  background: linear-gradient(135deg, var(--primary-color), #2c8c99);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}

.course-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(240, 170, 0, 0.2), rgba(26, 95, 122, 0.2));
  opacity: 0;
  transition: opacity 0.5s;
}

.course-card:hover .course-img::before {
  opacity: 1;
}

.course-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s;
}

.course-card:hover .course-img img {
  transform: scale(1.1);
}

.course-content {
  padding: 30px;
}

.course-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 22px;
  transition: color 0.3s;
}

.course-card:hover .course-content h3 {
  color: var(--secondary-color);
}

.course-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 14px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.course-meta i {
  margin-right: 5px;
  color: var(--secondary-color);
}

/* Tutorials Section */
.tutorials-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.tutorials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="1" height="1" fill="%23f0f2f5"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.tutorials-section .container {
  position: relative;
  z-index: 1;
}

.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.play_btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.play_btn_wrap .play_btn {
  background: transparent;
  border: none !important;
  outline: none !important;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.play_btn_wrap svg {
  width: 50px;
  height: 50px;
  color: #ffffff;
}

.video_playing .play_btn_wrap {
  display: none !important;
}

.video-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid #eee;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}
.video-card:hover .play_btn_wrap {
  opacity: 1;
  z-index: 1;
}

.video-card:nth-child(1) {
  animation-delay: 0.1s;
}

.video-card:nth-child(2) {
  animation-delay: 0.2s;
}

.video-card:nth-child(3) {
  animation-delay: 0.3s;
}

.video-card:nth-child(4) {
  animation-delay: 0.4s;
}

.video-card:nth-child(5) {
  animation-delay: 0.5s;
}

.video-card:nth-child(6) {
  animation-delay: 0.6s;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(240, 170, 0, 0.15);
  border-color: var(--secondary-color);
}

.video-thumbnail {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary-color), #2c8c99);
  overflow: hidden;
}

.video-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(240, 170, 0, 0.4), rgba(26, 95, 122, 0.4));
  z-index: 1;
  pointer-events: none;
}

.video-thumbnail i {
  color: white;
  font-size: 60px;
  z-index: 2;
  transition: var(--transition);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.video-card:hover .video-thumbnail i {
  transform: scale(1.2);
  color: var(--secondary-color);
}

.video-info {
  padding: 25px;
}

.video-info h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.video-card:hover .video-info h3 {
  color: var(--secondary-color);
}

.video-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.duration {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}

.video-card:hover .duration {
  background-color: var(--primary-color);
  transform: scale(1.05);
}

.view-more {
  text-align: center;
  margin-top: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  padding: 35px 25px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-top: 3px solid var(--secondary-color);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(240, 170, 0, 0.15);
}

.feature-icon {
  background-color: rgba(240, 170, 0, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--secondary-color);
  font-size: 32px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--secondary-color);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 22px;
}

.feature-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-color), #2c8c99);
  color: white;
  text-align: center;
  border-radius: 30px 30px 0 0;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  animation: slideInFromBottom 0.8s ease-out;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--secondary-color);
  animation: shimmer 3s infinite linear;
}

.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
  opacity: 0.1;
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-section p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cta-section .cta-button {
  position: relative;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--secondary-color);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.footer-column:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-column h3 {
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  transition: width 0.3s;
}

.footer-column:hover h3::after {
  width: 100px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  transform: translateX(0);
  transition: transform 0.3s;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s;
}

.contact-info p:hover {
  transform: translateX(5px);
}

.contact-info i {
  color: var(--secondary-color);
  width: 20px;
  font-size: 18px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
  font-size: 18px;
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px) rotate(5deg);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #aaa;
  font-size: 14px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero h2 {
    font-size: 42px;
  }
  .section-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
  }
  .nav-menu {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero h2 {
    font-size: 36px;
  }
  .hero {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }
  .hero h2 {
    font-size: 30px;
  }
  .hero p {
    font-size: 18px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .courses-grid,
  .video-container,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cta-section h2 {
    font-size: 32px;
  }
  .cta-section {
    padding: 80px 0;
  }
}
@media (max-width: 576px) {
  .nav-menu {
    gap: 15px;
  }
  .nav-menu a {
    font-size: 14px;
  }
  .login-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
  .hero h2 {
    font-size: 26px;
  }
  .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .course-card,
  .video-card,
  .feature-card {
    padding: 20px;
  }
  .course-content,
  .video-info {
    padding: 20px;
  }
}
/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-box {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.video-box video {
  width: 100%;
  border-radius: 10px;
}

/* Login Overlay */
.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  z-index: 9999;
}

.login-overlay h3 {
  margin-bottom: 10px;
}

.login-overlay .login-btn {
  background: #ff4d4d;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 10px;
}

/* Close */
.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
}

.inauguration_wrap {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background: var(--white);
  overflow: hidden;
  display: none;
  opacity: 0;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.inauguration_wrap .leftcurtain,
.inauguration_wrap .rightcurtain {
  width: 50%;
  height: 100vh;
  top: 0;
  position: absolute;
  z-index: 2;
  transition: width 2s ease-in-out;
}

.inauguration_wrap .leftcurtain {
  left: 0;
}

.inauguration_wrap .rightcurtain {
  right: 0;
  z-index: 3;
}

.inauguration_wrap .textcurtain {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  z-index: 1;
  background: rgb(0, 0, 0);
}

.inauguration_wrap .textcurtain img {
  max-width: 96%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.inauguration_wrap .rightcurtain img,
.inauguration_wrap .leftcurtain img {
  width: 100%;
  height: 100%;
}

.inauguration_wrap .rope {
  position: absolute;
  top: 0;
  left: 85%;
  z-index: 4;
  cursor: pointer;
}

.inauguration_wrap .hide {
  display: none;
}/*# sourceMappingURL=style.css.map */