@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

.container {
    max-width: 1220px;
    padding: 0 10px;
    width: 100%;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

:root {
    --white: #ffffff;
    --button-color: rgba(255, 77, 1, 1);


    --ff: "Barlow", sans-serif;
}

section {
    padding: 72px 0;
}

.btn-1 {
    width: 170px;
    height: 75px;
    background: var(--button-color);
    border: none;
    color: var(--white);
    font-family: var(--ff);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-1:hover {
    background-color: var(--white);
    color: var(--button-color);
    border: 1px solid black;

}

@media all and (max-width: 768px) {
    .btn-1 {
        width: 110px;
        height: 50px;
        background: var(--button-color);
        border: none;
        color: var(--white);
        font-family: var(--ff);
        font-size: 16px;
        font-weight: 300;
        cursor: pointer;
    }
}


.btn-2 {
    width: 170px;
    height: 75px;
    line-height: 75px;
    background: none;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: var(--ff);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-2:hover {
    background-color: var(--white);
    color: var(--button-color);
    border: 1px solid black;

}

@media all and (max-width: 768px) {

    .btn-2 {
        width: 110px;
        height: 50px;
        line-height: 50px;
        background: none;
        border: 1px solid var(--white);
        color: var(--white);
        font-family: var(--ff);
        font-size: 16px;
        font-weight: 300;
        cursor: pointer;

    }
}

@media all and (max-width: 481px) {

    .btn-2 {
        width: 100%;

    }
}