@font-face {
    font-family: 'GeneralSansRegular';
    src: url(/assets/fonts/GeneralSans-Regular.woff2)
}
@font-face {
    font-family: 'GeneralSansSemiBold';
    src: url(/assets/fonts/GeneralSans-Semibold.woff2)
}
@font-face {
    font-family: 'GeneralSansRegularItalic';
    src: url(/assets/fonts/GeneralSans-RegularItalic.woff2)
}
@font-face {
    font-family: 'GeneralSansLight';
    src: url(/assets/fonts/GeneralSans-Light.woff2)
}
@font-face {
    font-family: 'BoskaLight';
    src: url(/assets/fonts/Boska-Light.woff2)
}
@font-face {
    font-family: 'BoskaItalicLight';
    src: url(/assets/fonts/Boska-LightItalic.woff2)
}
@font-face {
    font-family: 'BoskaItalicBold';
    src: url(/assets/fonts/Boska-BoldItalic.woff2)
}
@font-face {
    font-family: 'BoskaItalicRegular';
    src: url(/assets/fonts/Boska-MediumItalic.woff2)
}
* {
    cursor: url('/storage/Artboard3.png'), auto !important;
    
}

body, html{
    font-family: 'GeneralSansRegular';
    background-color: #f6f5e9;
    overflow-x: hidden;
    cursor: url('/storage/Artboard2.png'), pointer  !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.six-info-container {
    /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); */
    border-bottom: 1px solid #bebebe;
    width: 100%;
    justify-self: center;
    cursor: url('/storage/Artboard2.png'), pointer !important;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column; /* Stack title and button container */
    align-items: center; /* Center title and button container */
    padding: 20px auto;
    background-color: #ffffff00;
    /* border-radius: 15px; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s;
    margin-top: 17px;
    /* border-radius: 15px; */
}


.six-section-title {
    font-size: 28px;
    color: #807dff;
    font-family: 'GeneralSansRegular';
    margin-bottom: 17px; /* Space between title and buttons */
    margin-top: 0;
}

.six-button-container {
    /* padding-bottom: 2%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Full width for the button container */
}

.button-with-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
    gap: 0;
}

.six-info-btn {
    height: 350px;
    width: 100%;
    padding: 5px;
    background-color: #fff;
    border: none;
    color: #807dff;
    text-align: center;
    font-size: 16px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    gap: 10px; /* Space between icon and text */
}

.six-info-btn i {
    font-size: 50px; /* Adjust icon size */
}

.six-info-btn:hover {
    filter: brightness(100%);
    transform: scale(1.05);
}

.six-info-btn.clicked {
    background-color: #807dff;
    border: 5px solid #807dff;
    color: #fff !important;
}


.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.visible {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* .six-info-btn:hover {
    filter: brightness(100%);
} */

.button-text {
    margin-top: 24.674px; /* Space between the button and the text */
    margin-bottom: 56.229px; /* Space between the button and the text */
    font-size: 20px;
    color: #1c1c1a;
    text-align: center;
}


.slider {
    width: 100%;
    height: auto;
    border-radius: 15px; 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    margin: auto;
    aspect-ratio: 18 / 7;
  }
  
  .slider .list {
    position:relative;
    width: max-content;
    height: 100%; /* Use 100% to inherit the height from parent */
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
  }
  
  .slider .list img {
    width: auto; /* Keep the original width of the image */
    height: 100%; /* Make the height match the parent's height */
    object-fit: contain; /* Ensure the image scales within its container without being cropped */
  }
  
  
  
  .slider .list .item{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .slider .buttons button{
    width: 10px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    border: none;
    font-size: 38px;
    font-family: monospace;
    font-weight: bold;
  }
  .slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .slider .dots li{
    list-style: none;
    width: 8px;
    height: 8px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
  }
  .slider .dots li.active{
    width: 80px;
  }
  .img-community{
    border-radius: 10px;
    position: relative;
    height: 700px;
    width: auto;
  }

