@import url('https://fonts.googleapis.com/css2?family=Poppins: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: "Poppins", sans-serif;
}

:root {
    --themeColor: #F84E38;
    --secondaryColor: #29283E;
    --bhWhite: #E7E5EF;
}

.container {
    width: calc(100% - 2rem);
    max-width: 1200px;
    margin-inline: auto;
}

.lineBox {
    height: 14px;
    width: 100%;
    background: var(--themeColor);
}

.navBox {
    display: flex;
    justify-content: end;
    padding-top: 32px;
    margin-bottom: 22px;
}

.btn {
    padding: 15px 20px;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none ;
    cursor: pointer;
}

.btnSignUp {
    background: var(--themeColor);
    color: #fff;
}

.btnSignIn {
    color: var(--secondaryColor);
    margin-left: 14px;
    padding-right: 50px;
    background: url(./img/arrow.png) no-repeat  85% center , var(--bhWhite);
    background-size: 26px;
}

h1 {
    text-align: center;
    font-size: 6.8rem;
    line-height: 1.1;
    color: var(--secondaryColor);
    font-weight: 600;
}

h2 {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--secondaryColor);
}

span {
    color: var(--themeColor);
}

.iconBox {
    margin-inline: auto;
    width: fit-content;
    margin-bottom: 32px;
}

.right {
    width: 80px;
    height: 80px;
    padding: 10px;
    border-radius: 30px;
    background: var(--themeColor);
    margin-right: 22px;
}

.bottomBtnBox {
    width: fit-content;
    margin-inline: auto;
    margin-top: 36px;
}

.bottomBtnBox > button {
    border: 3px solid rgb(212, 212, 212);
    background: none;
    color: rgb(104, 104, 104);
    margin-inline: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all ease-in-out 300ms
}

.bottomBtnBox > button:hover {
    border-color: var(--themeColor);
    color: var(--themeColor);
}

@media screen and (max-width: 740px) {
    .br1 {
        display: none;
    }   

    h1 {
        font-size: 5rem;
    }
}

@media screen and (max-width: 670px) {
    .bottomBtnBox {

    }

    .bottomBtnBox .btn {
        margin: 10px;
    }
}