
.btn1{
    font-size: 20px;
    font-weight: 600;
    background-color: var(--primary1);
    outline: none;
    color: #fff;
    border: solid 1px #fff;
    border-radius: 10px;
    padding: 12px 24px;
    align-items: center;
    width: fit-content;
    text-decoration: none;
}

.btn2{
    font-size: 20px;
    font-weight: 200;
    background-color: var(--primary1);
    outline: none;
    color: #fff;
    border: solid 1px #fff;
    border-radius: 10px;
    padding: 0px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    height: 50px;
}

.btn3{
    width: auto;
    font-size: 16px;
    font-weight: 200;
    outline: none;
    background-color: transparent;
    border: solid 2px #555;
    border-radius: 10px;
    padding: 0px 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    height: 50px;
}

.btn4 {
    font-size: 20px;
    font-weight: 600;
    background-color: var(--primary1);
    outline: none;
    color: #fff;
    border: solid 1px #fff;
    border-radius: 10px;
    padding: 0px 24px;
    align-items: center;
    height: 50px;
    display: flex;
    margin: 0px auto;
    width: 100%;
    justify-content: space-around;
}

.btn5 {
    font-size: 20px;
    font-weight: 600;
    outline: none;
    border: solid 2px #555;
    background-color: transparent;
    border-radius: 10px;
    padding: 0px 24px;
    align-items: center;
    height: 50px;
    display: flex;
    margin: 0px auto;
    width: 100%;
    justify-content: space-around;
}

.btn6{
    font-size: 20px;
    font-weight: 200;
    background-color: var(--accent1);
    outline: none;
    color: #fff;
    border: solid 1px #fff;
    border-radius: 10px;
    padding: 0px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    height: 50px;
}

.btn4 span, .btn5 span{
    font-size: 18px;
    font-weight: 200;
}

.btn1:hover,
.btn2:hover,
.btn4:hover {
    background-color: var(--accent1);
    cursor: pointer;
}

.btn3:hover,
.btn5:hover,
.btn6:hover {
    background-color: var(--primary1);
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .btn1 {
        width: 320px;
        font-size: 16px;
        margin: 0px auto;
    }
    
    .btn2, .btn3, .btn6 {
        width: 220px;
        font-size: 16px;
        font-weight: 200;
    }

    .btn4, .btn5 {
        font-size: 14px;
        font-weight: 600;
        gap: 8px;
    }
    
    .btn4 span, .btn5 span{
        font-size: 14px;
        font-weight: 200;
    }
}

@media screen and (max-width: 1023px) {
    .btn4,
    .btn5 {
        font-size: 16px;
        font-weight: 600;
    }

    .btn4 span,
    .btn5 span {
        font-size: 16px;
        font-weight: 200;
    }
}