*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    background-color: #F7F7F7;
}

/*--- -- ------ -- ---*/
/*--- -- HEADER -- ---*/
/*--- -- ------ -- ---*/

header{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo,
.header-op{
    padding: 10px;
}

.header-logo img{
    width: 201px;
    max-width: 100%;
}

.header-op{
    display: flex;
    flex-wrap: nowrap;
}

.header-op img{
    width: 48px;
}

@media screen and (max-width: 300px) {
    .header-op img{
        width: 38px;
    }
}

/*--- -- ------- -- ---*/
/*--- -- SECTION -- ---*/
/*--- -- ------- -- ---*/

section{
    width: 100%;
    display: flex;
    justify-content: center;
}

.wrapper{
    width: 500px;
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section p{
    width: 405px;
    max-width: 100%;
    font-size: 13.6px;
    margin-bottom: 20px;
}

picture img{
    width: 405px;
    max-width: 100%;
    margin-bottom: 10px;
}

/*--- -- --- -- ---*/
/*--- -- BOX -- ---*/
/*--- -- --- -- ---*/

.box,
.box-form{
    border-radius: 5px;
    border-color: #D1D0D0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.22);
    width: 365px;
    max-width: 100%;
    height: 220px;
    text-align: center;
    margin: 4.25px 0;
}

.box-icon img{
    width: 21px;
}

.box span{
    font-weight: 600;
    font-size: 15px;
}

.box select{
    width: 343px;
    max-width: 90%;
    height: 50px;
    padding: 6px 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(128, 128, 128, 0.336);
}

.box-btn button,
.box-btn input{
    background-color: #f8dc23;
    border: none;
    margin-bottom: 10px;
    padding: 12px 72px;
    border-radius: 23px;
    text-transform: uppercase;
    font-weight: 600;
}

/*--- -- ------ -- ---*/
/*--- -- FOOTER -- ---*/
/*--- -- ------ -- ---*/

footer{
    background-color: #EFEDED;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: auto;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
}

footer img:nth-child(2){
    padding-top: 6px;
}

footer img:nth-child(3){
    padding-bottom: 3px;
}

@media screen and (max-width: 350px) {
    footer{
        gap: 10px;
    }

    footer img:nth-child(1){
        width: 49px;
    }

    footer img:nth-child(2){
        width: 75px;
    }

    footer img:nth-child(3){
        width: 53px;
    }

    footer img:nth-child(4){
        width: 43px;
    }
}

@media screen and (max-width: 250px) {
    footer{
        gap: 0px;
    }
}