@font-face {
    font-family: 'Bettina';
    src: url(../fonts/bettina-signature-font/BettinaSignature-BWrRB.otf);
}
@font-face {
    font-family: 'Moonhouse';
    src: url(../fonts/moonhouse-font/Moonhouse-yE5M.ttf);
}
@font-face {
    font-family: 'Manrope Regular';
    src: url(../fonts/Manrope/static/Manrope-Regular.ttf);
}
@font-face {
    font-family: 'Manrope Light';
    src: url(../fonts/Manrope/static/Manrope-ExtraLight.ttf);
}
@font-face {
    font-family: 'Manrope SemiBold';
    src: url(../fonts/Manrope/static/Manrope-SemiBold.ttf);
}
@font-face {
    font-family: 'Manrope Bold';
    src: url(../fonts/Manrope/static/Manrope-Bold.ttf);
}
html,
 body {
    position: relative;
    height: 100%;
}
body, div, h1, h2, h3, h4, h5, h6, p, ol, ul, blockquote, figure,span{
    margin:0;
    padding:0;
    font-weight: normal;
    font-size: unset;
    letter-spacing: 0;
}
body {
    font-family: 'Manrope Regular', Arial, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    background-color:#524343;
    color:#fff;
    height:100vh;
}
.flex{
    display:flex;
}
.space{
    justify-content: space-between;
}
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-wrapper{
    position: absolute;
    top:30px;
    right:30px;
    cursor:pointer;
    display: flex;
    align-items: center;
}
.logo-screens {
    position: absolute;
    top: 20px;
    left: 30px;
    max-width: 89px;
}
img{
    width:100%;
    max-width: 100%;
    object-fit: cover;
}
header{
    position: absolute;
    z-index: 2;
    width: 100%;
}
.menu-wrapper span{
    font-size: 20px;
    font-family: 'Manrope Regular',sans-serif;
}
.blob-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}

svg {
    width: 100%;
    height: 100%;
}

path {
    fill: #887878;
}
.main-img img{
    position: absolute;
    width: 35%;
    max-width: 350px;
    object-fit: contain;
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 40px;
    height: 2px;
    border-radius: 15px;
}
.swiper-pagination-bullet-active{
    background: #fff;
}
.scroll{
    position: absolute;
    bottom: 150px;
    right: 30px;
    max-width: 100px;
    z-index: 2;
    align-items: center;
    opacity: 0.5;
}
.scroll img{
    max-width: 50px;
    filter: invert(1);
}
.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical>.swiper-pagination-bullets{
    right:30px;
}
.about-wrapper{
    width: 50%;
    padding-right: 150px;
}
.swiper-slide h2{
    width:50%;
    font-size: 30px;
}
.about-wrapper p{
    padding:20px 0;
}
.accordion {
    display: flex;
    width: 100%;
    aspect-ratio: 3;
    overflow: hidden;
}
.panel {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: flex 0.5s ease;
  cursor: pointer;
  position: relative;
}

/* Overlay background (dark layer) */
.panel::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.panel.active::after {
  background-color: #1e1d1db9;
}

/* Title (centered) */
.panel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  font-family: 'Manrope Bold', sans-serif;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  white-space: pre-wrap;
  pointer-events: none;
}

.panel.active::before {
  content: attr(data-title);
  opacity: 1;
}

/* Link (bottom center) */
.project-link {
  display: none;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 16px;
  font-family: 'Manrope Regular', sans-serif;
  text-decoration: underline;
  z-index: 3;
  pointer-events: auto;
}

/* Show link for active panel on all devices */
.panel.active .project-link {
  display: block;
}

/* Panel sizes */
.panel.active {
  flex: 4;
  opacity: 1;
}

.panel:not(.active) {
  flex: 1;
  opacity: 0.7;
}
.projects-wrapper{
    width:100%;
}
.projects-wrapper h3{
    padding-bottom: 2%;
}
.menu-wrapper img{
    max-width: 30px;
    filter: invert(1);
}
.contact form input{
    display: block;
    font-size:16px;
    width:48%;
    border:none;
    outline: none;
    border-bottom:1px solid #3a3030;
    color:#fff;
    padding:15px 0;
    margin-top: 10px;
    background: transparent;
}
.contact form{
    display: flex;
    flex-wrap: wrap;
    width:80%;
    margin:0 auto;
    padding-top:35px;
    justify-content: space-between;
}
.contact form textarea{
    width:100%;
    font-size:18px;
    font-family: 'Manrope Regular',sans-serif;
    padding: 20px 0;
    border: none;
    outline: none;
    border-bottom: 1px solid #3a3030;
    margin-top: 10px;
    background: transparent;
    color:#fff;
}
.contact input[type="submit"]{
    color:#fff;
    font-family: 'Manrope Regular',sans-serif;
    outline:none;
    border:none;
    width:fit-content;
    padding:20px;
    margin-left: auto;
    font-size: 18px;
    cursor: pointer;
    text-decoration: underline;
}
.contact-details h4{
    font-size: 16px;
    text-align: center;
    padding-bottom: 20px;
}
.swiper-slide.contact{
    flex-direction: column;
    justify-content: space-around;
}
.footer-wrapper p ,.footer-wrapper span{
    font-size:12px;
    padding:10px 0;
    border-top:1px solid #3a3030
}
.swiper-slide.contact h3{
    padding-top:100px;
}
.about-wrapper ul{
    padding:20px 0;
}
li{
    list-style-type: none;
    padding:5px 0;
}
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
    margin-right:10px;
}

.switch[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
    border-radius: 25px;
    background-color: #D14F3A;
}

.slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 3px;
    bottom: 3px;
    background-color: #B58ACF;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #887878;
}

input:checked + .slider:before {
    transform: translateX(25px);
    background-color: #524343;
}
.scroll-bar-img {
  transition: transform 0.3s ease;
}
a{
    color:#fff;
}
.about-wrapper p,
.about-wrapper li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-wrapper.animate p,
.about-wrapper.animate li {
  opacity: 1;
  transform: translateY(0);
}

.about-wrapper.animate p:nth-of-type(1) { transition-delay: 0s; }
.about-wrapper.animate p:nth-of-type(2) { transition-delay: 0.5s; }
.about-wrapper.animate p:nth-of-type(3) { transition-delay: 1s; }
.about-wrapper.animate ul li:nth-of-type(1) { transition-delay: 1.5s; }
.about-wrapper.animate ul li:nth-of-type(2) { transition-delay: 2s; }
.about-wrapper.animate ul li:nth-of-type(3) { transition-delay: 2.5s; }
.about-wrapper.animate ul li:nth-of-type(4) { transition-delay: 3s; }
.about-wrapper.animate p:nth-of-type(4) { transition-delay: 3.5s; }


.swiper,
.swiper-slide {
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

.cya11y-menu-btn{
    width:30px!important;
    height:30px!important;
}
@media screen and (max-width: 1200px){
    .about-wrapper {
        padding-right: 80px;
        width: 65%;
        font-size:16px;
    }
    .swiper-slide h2 {
        width: 35%;
        font-size: 25px;
    }
}
@media screen and (max-width:900px){
    .about-wrapper p {
        padding: 5px 0;
    }
}
@media screen and (max-width: 768px){
    .about-wrapper {
        width: 95%;
        padding-right: 0;
        font-size: 14px;
    }
    .swiper-slide h2{
        font-size: 20px;
        padding-bottom: 20px;
    }
    .swiper-slide.about{
        flex-direction: column;
    }
    .accordion{
        flex-direction: column;
        aspect-ratio: 1.5;
    }

  .panel {
    flex: unset;
    height: 200px;
  }

  .panel.active {
    flex: unset;
    height: 300px;
  }


  .panel::before {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    font-family: 'Manrope Bold', sans-serif;
    text-align: center;
    z-index: 2;
  }

  .panel .project-link {
    display: block;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-decoration: underline;
    z-index: 2;
  }
}
@media screen and (max-width: 600px){
    .logo-screens{
        top: 15px;
        left: 10px;
    }
    .main-img img{
        width: 70%;
    }
    .accordion{
        aspect-ratio:1;
    }
    .about-wrapper ul{
        padding:10px 0;
    }
    .about-wrapper p::nth-of-type(2){
        display:none;
    }
    .contact form{
        width:95%;
    }
    .contact form textarea{
        min-height: 100px!important;
    }
    .footer-wrapper{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}