/* =====================================================
   🌈 Theme Variables (Dark + Light)
===================================================== */
:root {
  /* === Dark Theme (default) === */
  --color-bg-body: #0b081f;
  --color-bg-header: #0b1a33;
  --color-bg-navbar: #ffffff;
  --color-bg-auth-dark: #000;
  --color-bg-auth-light: #fff;
  --color-bg-sidebar: #121527;
  --color-bg-submenu-hover: #1d2140;
  --color-bg-footer: rgba(11, 12, 48, 0.56);
  --color-bg-language: #13294b;

  --color-text-main: #ffffff;
  --color-text-dark: #000000;
  --color-text-nav: #120d32;
  --color-text-hover: #1c6b8d;

  --color-border-light: rgba(255, 255, 255, 0.2);
  --color-border-sidebar: #272b4a;

  --transition-fast: 0.3s ease;
  --font-main: Arial, sans-serif;
}

/* === Light Theme === */
body.light-theme {
  --color-bg-body: #f5f5f5;
  --color-bg-header: #e9ecf3;
  --color-bg-navbar: #ffffff;
  --color-bg-auth-dark: #222;
  --color-bg-auth-light: #fff;
  --color-bg-sidebar: #ffffff;
  --color-bg-submenu-hover: #e6e8f2;
  --color-bg-footer: #f0f0f5;
  --color-bg-language: #dce2f7;

  --color-text-main: #121527;
  --color-primary-color: rgb(32,34,36);
  --color-text-dark: #000;
  --color-text-nav: #121527;
  --color-text-hover: #162e57;

  --color-border-light: rgba(0, 0, 0, 0.1);
  --color-border-sidebar: rgba(0, 0, 0, 0.1);
}


a{
  text-decoration: none;
  color: var(--color-text-main);
}
/* 
header {
  background-color: pink ;
} */

/* ===== Header Left ===== */
.header-left {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  /* background-color: red; */
  margin-left: -60px;
}
/* @media screen (min-width:1400px){
  .header-left {
    margin-left: -60px;
  }
} */
/* ===== Menu Button ===== */
.menu-btn {
  font-size: 20px;
  cursor: pointer;
  padding: 0px 7px;
  border-radius: 4px;
  background: var(--color-bg-auth-light);
  color: var(--color-bg-auth-dark);
  border: 1px solid #ccc;
}

/* ===== Search Icon ===== */
.search-icon {
  font-size: 18px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  /* background: var(--color-bg-auth-light); */
  color: var(--color-bg-auth-light);
  /* border: 1px solid #ccc; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Theme Toggle Button ===== */
.theme-toggle {
  background: var(--color-bg-auth-light);
  color: var(--color-text-dark);
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.theme-toggle:hover {
  transform: scale(1.1);
  background: var(--color-text-hover);
  color: var(--color-bg-auth-light);
}
/* =====================================================
   🌐 Reset
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

body {
  background: var(--color-bg-body);
  height: 100vh;
}

/* =====================================================
   🧭 Header / Navbar
===================================================== */
header {
  background-image: url('./img/h-bg.png');
  background-position: center;
  background-color: var(--color-bg-header);
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 995;
}

.logo {
  width: 30%;
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text-dark);
  padding: 4px 8px;
  letter-spacing: 2px;
  gap: 5px;
}

.logo .bbc {
    background-color: var(--color-bg-auth-light);
    width: 30px;
    height: 30px;
    justify-content: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Navbar ===== */
nav.navbar {
  margin-top: 65px;
  width: 100%;
  height: 30px;
  background-color: var(--color-bg-navbar);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

nav.navbar a {
  color: var(--color-text-nav);
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  transition: var(--transition-fast);
  background-color: var(--color-bg-navbar);
  padding: 0 5px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav.navbar a:hover {
  color: var(--color-text-main);
  background-color: var(--color-text-nav);
}

/* =====================================================
   🔒 Auth Buttons + Dropdown
===================================================== */
.auth-buttons {
  overflow: visible;
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
  /* background-color: red; */
  margin-right: 20px;
}

.auth-buttons button.Register,
.auth-buttons button.sign {
  display: inline-flex;
  padding: 8px 10px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition-fast);
}

.auth-buttons button.Register {
  background: var(--color-bg-auth-dark);
  color: var(--color-bg-auth-light);
}

.auth-buttons button.sign {
  background: var(--color-bg-auth-light);
  color: var(--color-bg-auth-dark);
}

.auth-buttons button:hover {
  opacity: 0.85;
}

/* Mobile Icon */
.auth-icon {
  display: none;
  font-size: 14px;
  cursor: pointer;
  background: var(--color-bg-auth-light);
  color: var(--color-bg-auth-dark);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
}

/* Dropdown */
.auth-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 40px;
  right: 0;
  background: var(--color-bg-sidebar);
  padding: 5px 0;
  border-radius: 6px;
  width: 140px;
  z-index: 9999;
}

.auth-dropdown button {
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: var(--color-text-main);
  cursor: pointer;
  font-size: 14px;
}

.auth-dropdown button:hover {
  background: var(--color-bg-submenu-hover);
}

/* =====================================================
   📚 Sidebar
===================================================== */
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: var(--color-bg-sidebar);
  color: var(--color-text-main);
  padding: 20px;
  transition: left 0.4s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.sidebar.open {
  left: 0;
}

.sidebar .close-btn {
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text-main);
  align-self: flex-end;
  margin-bottom: 15px;
}

.search-box {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.search-box input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--color-border-light);
  outline: none;
  font-size: 14px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 8px 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background var(--transition-fast);
  border-bottom: 0.5px solid var(--color-border-sidebar);
  font-size: 0.9rem;
}

.sidebar ul li:hover {
  background: var(--color-bg-submenu-hover);
}

.submenu {
  display: none;
  padding: 5px 0 5px 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.submenu li a {
  color: #4b4b4b;
  font-size: 0.8rem;
  text-decoration: none;
  display: block;
  transition: color var(--transition-fast);
}

.submenu li a:hover {
  color: var(--color-text-main);
}

.arrow {
  font-size: 12px;
  color: #aaa;
}

.has-submenu.open .submenu {
  display: block;
  background: var(--color-bg-sidebar);
}

.has-submenu.open .arrow {
  transform: rotate(180deg);
  color: var(--color-text-main);
  transition: transform 0.3s;
}

.active {
  border-left: 6px solid var(--color-text-main);
}

/* 🌍 Footer Base */
.bbc-footer {
  background-color: var(--color-bg-footer, #111);
  background-image: url('./img/h-bg.png');
  background-position: center;
  background-size: cover;
  backdrop-filter: blur(8px);
  color: var(--color-text-main, #fff);
  padding: 40px 30px;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

/* --- Footer Menu (Top) --- */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-border-light, rgba(255,255,255,0.2));
  padding-bottom: 10px;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu a {
  text-decoration: none;
  color: var(--color-text-main, #fff);
  font-weight: 500;
  transition: 0.3s;
}

.footer-menu a:hover {
  color: var(--color-text-hover, #f90);
}

/* --- Follow BBC --- */
.follow-bbc {
  padding-top: 30px;
  text-align: left;
}

.follow-bbc h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--color-text-main, #fff);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-icons a {
  color: var(--color-text-main, #fff);
  font-size: 1.3rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--color-text-hover, #f90);
  transform: scale(1.15);
}

/* --- Language Dropdown --- */
.language-dropdown {
  margin-top: 25px;
  text-align: left;
  position: relative;
}

.language-dropdown button {
  background-color: var(--color-bg-language, #222);
  border: none;
  color: var(--color-text-main, #fff);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.language-dropdown button:hover {
  background-color: var(--color-text-hover, #f90);
  color: #111;
}

/* --- Language Panel --- */
.language-panel {
  display: none;
  background-color: var(--color-bg-language, #222);
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  animation: fadeIn 0.4s ease;
}

.language-panel.active {
  display: block;
}

.language-content {
  text-align: center;
  padding: 40px 20px;
}

.language-content h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.language-content p {
  font-size: 1rem;
  margin: 20px 0 40px 0;
  opacity: 0.9;
}

.language-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  list-style: none;
  text-align: left;
  padding: 29px 100px;
}

.language-list a {
  color: var(--color-text-main, #fff);
  text-decoration: none;
  transition: 0.3s;
}

.language-list a:hover {
  color: var(--color-text-hover, #f90);
}

/* --- Footer Links Section --- */
.footer-links-section {
  margin-top: 40px;
}

.footer-links-section ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin-bottom: 10px;
}

.footer-links-section a {
  color: var(--color-text-main, #fff);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links-section a:hover {
  color: var(--color-text-hover, #f90);
}

.footer-links-section p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 10px;

}

/* --- Footer Bottom --- */
.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--color-border-light, rgba(255,255,255,0.2));
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* --- Animation --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   📐 Custom Section Layout
===================================================== */
.custom-section {
  width: 100%;
  max-width: 1200px;
  margin: 100px auto 40px;
  padding: 50px 0;
}

.custom-section .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  height: auto;
}

.custom-section .col {
  flex: 1;
  min-width: 200px;
  padding: 0;
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.custom-section .col:hover a h1, .col:hover a h3{
  text-decoration: underline;
}

.custom-section .col img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--color-border-light);
}
.col .col-img{
  height: 120px !important;
}

.custom-section .col a img:hover{
  opacity: 0.8;
} 

.custom-section .col h3 {
  color: var(--color-text-main);
  margin-top: 15px;
  font-size: 1.2rem;
}

.custom-section .col p {
  color: var(--color-text-main);
  opacity: 0.8;
  line-height: 1.6;
  font-size: 15px;
  margin-top: 10px;
}
.col a h1{
  color: var(--color-primary-color);
}

/* First row - 3 columns */
.custom-section .row:first-child .col {
  flex: 1 1 calc(25% - 15px);
}

/* First row - Second column bigger */
.custom-section .row:first-child .col:nth-child(2) {
  flex: 2 1 calc(50% - 15px);
}
.custom-section .row:first-child .col:nth-child(2) img{
  height: 100%;
}

/* Second row - 5 columns */
.custom-section .row:last-child .col {
  flex: 1 1 calc(20% - 16px);
}

/* ========= section-2 start ============ */
.section-2{
  width: 100%;
  height: auto;
  padding: 0 70px;
}
.section-2 a{
  margin: 10px 0 20px;
  font-size: 18px;
  display: block;
}
.section-2 a:hover{
  text-decoration: underline;
}
.section-2-subsection{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
  gap: 20px;
}
.section-2-subdiv{
  height: 350px;
}
.section-2-subdiv img{
  width: 100%;
}
.section-2-subdiv h3{
  font-size: 17px;
  display: block;
  margin: 10px 0;
  color: var(--color-text-main);
}
.section-2-subdiv p{
  color: var(--color-text-main);
  font-size: 15px;
}
.section-2-subdiv:hover h3{
  text-decoration: underline !important;
}
/* ========= section-2 end ============ */

/* ========= section-3 start ============ */
.section-3{
  width: 100%;
  height: auto;
  background: var(--color-bg-submenu-hover);
  margin-top: 20px;
  padding: 0 70px;
}

.section-3-subsection{
  width: 100%;
  height: 100vh !important;
  position: relative;
  overflow-y: scroll;
}
.section-3-subsection::before{
  content: '';
  position: absolute;
  left: 0;
  top: 4%;
  width: 100%;
  height: 2px;
  background: var(--color-text-main);
}

.section-3-subsection h3{
  margin-top: 50px;
  color: var(--color-text-main);
}

.section-3-subdiv{
  width: 100%;
  height: 100%;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.section-3-subdiv div:nth-child(1){
  width: 70%;
  height: 100%;
  position: relative;
}

.section-3-subdiv img{
  width: 100%;
  height: 84%;
}


.section-3-subdiv div:nth-child(2){
  width: 30%;
  height: 100%;
}
#sm-box{
  overflow-y: scroll;
}

.section-3-subdiv div:nth-child(2) h4{
  font-weight: bolder;
  color: var(--color-text-main);
  margin-bottom: 10px;
}

.section-3-div2{
  width: 100% !important;
  height: 180px !important;
  display: flex;
  gap: 15px;
  border-bottom: 1px solid var(--color-text-main);
  margin-bottom: 10px;
}
.section-3-div2-subdiv{ 
  width: 50% !important;
}

.section-3-div2 div img{
  height: 100px;
}
.section-3-div2 div h3{
  margin: 0;
}

.subdiv-content{
  width: 100% !important;
  height: 100px !important;
  margin-top: 20px;
}
.subdiv-content p{
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--color-text-main);
}
/* ========= section-3 end ============ */

/* ========= section-4 start ============ */
.section-4{
  width: 100%;
  height: auto;
  padding: 30px 70px;
}

.section-4-grid-container{
  width: 100%;
  height: auto;
  position: relative;
}
.section-4-grid-container::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
}
.section-4-grid-container h3{
  color: var(--color-text-main);
  padding: 10px 0;
  text-transform: uppercase;
}

.section-4-row1{
  width: 100%;
  height: auto;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(9, 11%);
  gap: 20px;
}
.section-4-row1 div{
  height: 100%;
}

.section-4-row1 div:nth-child(1){
  grid-column-start: 1;
  grid-column-end: 4;
}
.section-4-row1 div:nth-child(1):hover h1{
  text-decoration: underline;
}

.section-4-row1 div:nth-child(1) p{
  margin: 15px 0;
  font-size: 18px;
}
.section-4-row1 div:nth-child(1) button{
  border: 2px solid var(--color-bg-language);
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}
.section-4-row1 div:nth-child(1) button:hover{
  background: var(--color-bg-submenu-hover);
  color: var(--color-text-main);
  border: 0;
}

.section-4-row1 div:nth-child(2){
  grid-column-start: 4;
  grid-column-end: 9;
}
.section-4-row1 div:nth-child(2) img{
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.section-4-row1 div:nth-child(2) img:hover{
  opacity: 0.8;
}

.section-4-row1 div:nth-child(3){
  grid-column-start: 1;
  grid-column-end: 3;
}
.section-4-row1 div:nth-child(3) p, h2{
  color: var(--color-text-main);
}
.section-4-row1 div:nth-child(3) p{
  font-size: 15px;
  margin: 15px 0;
}
.section-4-row1 div:nth-child(3):hover h2{
  text-decoration: underline;
}


.section-4-row1 div:nth-child(4){
  grid-column-start: 3;
  grid-column-end: 7;
}
.section-4-row1 div:nth-child(4) img{
  width: 100%;
  height: 100%;
}

.section-4-row1 div:nth-child(5){
  grid-column-start: 7;
  grid-column-end: 9;
}
.section-4-row1 div:nth-child(5):hover h3{
  text-decoration: underline;
}

.section-4-row1 div:nth-child(5) img{
  width: 100%;
}
.section-4-row1 div:nth-child(5) p{
  color: var(--color-text-main);
  font-size: 15px;
}

.section-4-row1 div:nth-child(6){
  grid-column-start: 1;
  grid-column-end: 3;
}
.section-4-row1 div:nth-child(6) img{
  width: 100%;
}
.section-4-row1 div:nth-child(6) h4{
  color: var(--color-text-main);
  font-size: 22px;
}
.section-4-row1 div:nth-child(6) p{
  font-size: 17px;
  color: var(--color-text-main);
  margin-top: 15px;
}
.section-4-row1 div:nth-child(6):hover h4{
  text-decoration: underline;
}

.section-4-row1 div:nth-child(7){
  grid-column-start: 3;
  grid-column-end: 5;
}
.section-4-row1 div:nth-child(7) img{
  width: 100%;
}
.section-4-row1 div:nth-child(7) h4{
  color: var(--color-text-main);
  font-size: 22px;
}
.section-4-row1 div:nth-child(7) p{
  font-size: 17px;
  color: var(--color-text-main);
  margin-top: 15px;
}
.section-4-row1 div:nth-child(7):hover h4{
  text-decoration: underline;
}

.section-4-row1 div:nth-child(8){
  grid-column-start: 5;
  grid-column-end: 7;
}
.section-4-row1 div:nth-child(8) img{
  width: 100%;
}
.section-4-row1 div:nth-child(8) h4{
  color: var(--color-text-main);
  font-size: 22px;
}
.section-4-row1 div:nth-child(8) p{
  font-size: 17px;
  color: var(--color-text-main);
  margin-top: 15px;
}
.section-4-row1 div:nth-child(8):hover h4{
  text-decoration: underline;
}

.section-4-row1 div:nth-child(9){
  grid-column-start: 7;
  grid-column-end: 9;
}
.section-4-row1 div:nth-child(9) img{
  width: 100%;
}
.section-4-row1 div:nth-child(9) h4{
  color: var(--color-text-main);
  font-size: 22px;
}
.section-4-row1 div:nth-child(9) p{
  font-size: 17px;
  color: var(--color-text-main);
  margin-top: 15px;
}
.section-4-row1 div:nth-child(9):hover h4{
  text-decoration: underline;
}
/* ========= section-4 end ============ */

/* ========= section-5 start ============ */
.section-5{
  width: 100%;
  height: 70vh;
  padding: 20px 70px;
}

.section-5-subdiv{
  width: 100%;
  height: 100%;
  position: relative;
}
.section-5-subdiv::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
}

.control-btns{
  display: flex;
  justify-content: space-between;
}

.control-buttons{
  width: 60px;
  display: flex;
  justify-content: space-between;
}
.control-buttons button{
  font-size: 35px;
  background-color: transparent;
  border: 0;
  color: var(--color-text-main);
}

.section-5-subdiv h3{
  color: var(--color-text-main);
  margin: 15px 0;
}

.section-5-list{
  width: 100%;
  height: auto;
  list-style: none;
  display: flex;
  gap: 15px;
  overflow-x: scroll;
}
.section-5-list li{
  width: 24%;
  height: 340px;
}

.section-5-list li img{
  width: 100%;
}
/* ========= section-5 end ============ */


/* ========= section-6 start ============ */
.section-6{
  width: 100%;
  height: auto;
  padding: 20px 70px;
}
.section-6-subdiv{
  width: 100%;
  height: auto;
  position: relative;
}
.section-6-subdiv::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
}
.section-6-subdiv h4{
  padding: 15px 0 !important;
  color: var(--color-text-main);
  text-transform: uppercase;
}

.section-6-grid-box{
  width: 100%;
  height: auto;
  margin-top: 10px;
}
.section-6-grid-box-subdiv{
  width: 100%;
  height: 200px;
  display: grid;
  grid-template-columns: repeat(3, 31.5%);
  gap: 30px;
  margin-bottom: 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--color-text-main);
}
.section-6-grid-box-subdiv:hover h2{
  text-decoration: underline;
}

.section-6-grid-box-subdiv div:nth-child(1){
  grid-column-start: 1;
  grid-column-end: 3;
  padding-left: 150px;
}
.section-6-grid-box-subdiv div:nth-child(1) h2{
  color: var(--color-text-main);
}
.section-6-grid-box-subdiv div:nth-child(1) p{
  color: var(--color-text-main);
  margin-top: 20px;
}



.section-6-grid-box-subdiv div:nth-child(2){
  grid-column-start: 3;
  grid-column-end: 4;
}
.section-6-grid-box-subdiv div:nth-child(2) img{
  width: 100%;
  height: 90%;
}
/* ========= section-6 end ============ */


/* ========= section culture start */
.culture-img{
  height: 70% !important;
}

.culture-row-2{
  display: grid !important;
  grid-template-columns: repeat(4, 23.8%) !important;
}
.culture-row-2 .col:nth-child(1){
  grid-column-start: 1 !important;
  grid-column-end: 2 !important;
}
.culture-row-2 .col:nth-child(2){
  grid-column-start: 4 !important;
  grid-column-end: 5 !important;
}

.culture-row-3{
  height: 200px;
  margin: 0;
}
.culture-row-3-subsection{
  display: grid !important;
  grid-template-columns: repeat(4, 24%) !important;
}

.culture-row-4-subdiv{
  height: 70vh;
  display: grid !important;
  grid-template-columns: repeat(2, 49%) !important;
  gap: 20px;
  /* overflow: hidden !important; */
}
.culture-row-4-subdiv > div{
  height: auto !important;
  width: 100% !important;
}

.culture-row-4-subdiv > div img{
  width: 100%;
  height: 70%;
}

.culture-row-4-contentbox{
  width: 100% !important;
  margin: 0 !important;
  position: relative;
  bottom: 30px;
  color: var(--color-text-main);
}

.culture-row-4-contentbox p{
  font-size: 14px;
  margin-top: 15px;
}

.culture-row-5-grid-container div img{
  width: 100% !important;
}
.culture-row-5-grid-container div p{
  font-size: 15px !important;
  margin-top: 5px !important;
}

.culture-row-5-grid-container div:nth-child(1){
  grid-column-start: 1;
  grid-column-end: 3;
}

.culture-row-5-grid-container div:nth-child(2){
  grid-column-start: 3;
  grid-column-end: 5;
}
.culture-row-5-grid-container div:nth-child(2) img, .culture-row-5-grid-container div:nth-child(3) img, .culture-row-5-grid-container div:nth-child(4) img{
  width: 100%;
  height: 42%;
}
 .culture-row-5-grid-container div:nth-child(1) h3, .culture-row-5-grid-container div:nth-child(2) h3, .culture-row-5-grid-container div:nth-child(3) h3, .culture-row-5-grid-container div:nth-child(4) h3{
  font-size: 18px;
  height: 100px;
}




.culture-row-5-grid-container div:nth-child(3){
  grid-column-start: 5;
  grid-column-end: 7;
}


.culture-row-5-grid-container div:nth-child(4){
  grid-column-start: 7;
  grid-column-end: 9;
}

.culture-row-5-grid-container div:nth-child(5){
  grid-column-start: 1;
  grid-column-end: 3;
}

.culture-row-5-grid-container div:nth-child(6){
  grid-column-start: 3;
  grid-column-end: 5;
}
/* ========= section culture end */


/* ========= section travel start */
.travel-row{
  display: grid;
  grid-template-columns: repeat(4, 23.8%);
  gap: 20px;
}

.travel-row-4{
  width: 100%;
  height: auto;
}

.travel-row .col:nth-child(1){
  width: 100% !important;
  height: auto;
  grid-column-start: 1;
  grid-column-end: 5;
}

.travel-row .col h1{
  color: var(--color-text-main);
  text-align: center;
  margin: 20px 0;
  font-size: 40px;
}


.travel-row .col:nth-child(1) img{
  height: 60%;
}
.travel-content-box h3{
  font-size: 30px !important;
  margin: 20px 0;
}
.travel-content-box p{
  font-size: 18px !important;
  padding-right: 30%;
}

.travel-row .col:nth-child(2){
  height: auto;
  grid-column-start: 1;
  grid-column-end: 3;
}

.travel-row .col:nth-child(3){
  height: auto;
  grid-column-start: 3;
  grid-column-end: 5;
}

.travel-row .col:nth-child(3) img, .travel-row .col:nth-child(2) img{
  width: 100%;
  height: 70%;
}


.travel-section3-subsection{
  overflow: hidden;
  width: 100%;
  height: auto !important;
}

.travel-grid-container{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 32.2%);
  gap: 20px;
  margin-top: 20px;
}

.travel-grid-container-2{
  display: grid;
  grid-template-columns: repeat(5, 19%);
  gap: 20px;
  padding-bottom: 20px;
}

.travel-grid-container-2 div h3{
  margin-top: 20px;
  font-size: 18px !important;
}

.travel-grid-container div{
  cursor: pointer;
}
.travel-grid-container div:hover h3{
  text-decoration: underline;
}

.travel-grid-container div img{
  width: 100%;
  height: 50%;
}

.travel-row4-content-box h3{
  font-size: 20px;
  height: 50px;
  margin-top: 40px;
}
.travel-row4-content-box p{
  font-size: 17px;
}
/* ========= section travel end */
/* ========= section art start */
.art-row{
  border: 2px solid rebeccapurple;
  display: grid;
  grid-template-columns: repeat(4, 15%);
  gap: 20px;
}

.art-row .col:nth-child(1){
  grid-column-start: 1;
  grid-column-end: 6;
    height: 70vh !important;
}

.art-row .col:nth-child(1) img{
  height: 60%;
  border: 2px solid rebeccapurple;
}

.art-row .col:nth-child(2){
  grid-column-start: 1;
  grid-column-end: 3;
}
.art-row .col:nth-child(3){
  grid-column-start: 3;
  grid-column-end: 5;
}



/* ========= section art end */