:root{
    --primary-clr: /*#c48f56*/ #ff7d1a;
    --dark: #181818;
    --text: #b0b0b0;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: var(--dark);
    font-family: sans-serif;
    color: var(--text);
}

main{
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
}

h1{
    color: var(--primary-clr);
    text-transform: uppercase;
    margin-bottom: 40px;
    font-size: 35px;
}

.accordion .item{
    border-bottom: 1px solid #2a2a2a;
}

.accordion-header{
    width: 100%;
    height: 60px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.accordion-header:hover .line1{
    background-color: var(--primary-clr);
}

.accordion-header:hover .line2{
    background-color: var(--primary-clr);
}

.accordion-header:hover{
    color: var(--primary-clr);
}

.accordion-content{
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.accordion-content p{
    padding: 10px 0 20px 0;
    line-height: 1.6;
}

.toggle-indicator{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transform: rotateX(180deg);
    transition: all 0.4s ease;
}

.toggle-indicator .line1, .line2{
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: white;
}

.line1{
    transform: rotate(-45deg);
    left: 15.25px;
    transition: all 0.2s ease;
}

.line2{
    transform: rotate(45deg);
    right: 15.25px;
    transition: all 0.2s ease;    
}

.accordion-header.active .toggle-indicator{
    transform: rotateX(0deg);
}

.home-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: none;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.2s ease;
    margin-top: 50px;
    user-select: none;
    cursor: pointer;
    height: 50px;
    overflow: hidden;
    z-index: 1;    
}

.home-btn:hover a{
    color: black;
}

.home-btn:hover::before{
    transform: translateY(0);
}

.home-btn::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    left: 0;
    top: 0;
    transform: translateY(50px);
    transition: all 0.2s ease;
    z-index: -1;
}

.home-btn a{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    transition: all 0.2s ease;
    padding: 30px;   
    text-decoration: none; 
}

::-webkit-scrollbar {
  width: 12px;
  scrollbar-width: thin;
  scrollbar-color: #555 #1e1e1e;
  cursor: pointer;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 10px;
  border: 3px solid #1e1e1e;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #777;
  background-color: var(--primary-clr);
}

@media screen and (max-width: 1535px) {}
@media screen and (max-width: 1279px) {}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 767px) {}
@media screen and (max-width: 479px) {
    main{
        padding-left: 20px!important;
        padding-right: 20px!important;
    }
    h1{
        font-size: 24px;
        white-space: wrap;
    }
    button span{
        font-size: 14px;
        white-space: wrap;
    }
    .toggle-indicator{
        position: absolute;
        right: 10px;
    }
}
@media screen and (max-width: 376px) {
    h1{
        font-size: 20px;
    }
    button span{
        width: 300px;
    }
}