body{
    width: 100%;
}
.contentPage{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Inter", sans-serif;
}
.contentImgs{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}
.banner{
    width: 100%;
}
.banner img{
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.profileImg{
    position: absolute;
    bottom: -98px;
}
.profileImg img{
    width: 168px;
    height: 168px;
    background-color: var(--background);
    object-fit: contain;
    border-radius: 100%;
}
.infoProfile{
    margin-top: 120px;
}
.nameCompany{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
.location{
    margin-top: 12px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    color: gray;
}
.location img{
    width: 22px;
    height: 22px;
    margin-right: 8px;
}
.location span{
    display: flex;
    align-items: center;
}
.location a{
    text-decoration: none;
    color: var(--elements);
    margin-top: 4px;
}

.section{
    margin-top: 38px;
    padding-top: 44px;
    width: 95%;
    border-top: 1px solid rgb(206, 206, 206);
}
.titleSection{
    font-size: 22px;
    font-weight: 600;
}
.rowServices{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.colService{
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 20px;
    width: 100%;
    max-width: 248px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    border: 1px solid rgb(206, 206, 206);
    border-radius: 12px;
    font-weight: 600;
    box-sizing: border-box;
    padding-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
}
.imgService{
    width: 100%;
}
.imgService img{
    width: 100%;
    object-fit: cover;
}
.titleService{
    margin-top: 16px;
}
.timeService{
    margin-top: 8px;
    display: flex;
    align-items: center;
}
.timeService img{
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.rowServices .colService:first-child{
    margin-left: 0px;
}
.rowServices .colService:last-child{
    margin-right: 0px;
}
.serviceSelected{
    background-color: var(--elements);
    color: white;
}
.serviceSelected .timeService img{
    filter: brightness(0%) invert(100%);
}
.alertSection{
    margin-top: 18px;
    margin-left: 8px;
    color: red;
    font-weight: 600;
    font-size: 18px;
    display: none;
}

.contentCalendar{
    width: 100%;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrowCalendar{
    width: 50px;
    height: 50px;
}
.arrowCalendar img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    cursor: pointer;
}
.contentCalendar .arrowCalendar:first-child{
    margin-right: 78px;
}
.contentCalendar .arrowCalendar:last-child{
    margin-left: 78px;
}
.contentCalendar .arrowCalendar:first-child img{
    display: none;
}
.containerCalendar{
    display: flex;
    justify-content: center;
}
.calendar{
    width: 630px;
}
.titleCalendar{
    font-size: 20px;
    font-weight: 600;
    color: gray;
    text-align: center;
}
.rowWeekDays{
    margin-top: 8px;
    width: 100%;
    height: 28px;
    border-top: 1px solid rgb(206, 206, 206);
    border-bottom: 1px solid rgb(206, 206, 206);
    display: flex;
    align-items: center;
}
.weekDay{
    font-size: 16px;
    font-weight: 600;
    color: gray;
    width: 74px;
    margin-left: 8px;
    margin-right: 8px;
    text-align: center;
}
.monthDays{
    margin-top: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.monthDay{
    width: 74px;
    height: 28px;
    margin-bottom: 4px;
    margin-left: 8px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: gray;
    cursor: pointer;
}
.daySelected{
    background-color: var(--elements);
    color: white;
    font-weight: 600;
}
.dayAvailable{
    color: var(--elements);
    font-weight: 600;
}

.rowHours{
    margin-top: 18px;
    margin-bottom: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.colHour{
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 20px;
    width: 100%;
    height: 58px;
    max-width: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid rgb(206, 206, 206);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}
.hourSelected{
    background-color: var(--elements);
    color: white;
    border: 0px;
}

.form{
    margin-top: 18px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.inputForm{
    display: flex;
    flex-direction: column;
    width: 60%;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--elements);
}
.inputForm input{
    margin-top: 4px;
    width: 100%;
    height: 36px;
    border: 1px solid rgb(206, 206, 206);
    border-radius: 10px;
    box-sizing: border-box;
    padding-left: 18px;
    padding-right: 18px;
    transition: border 0.4s;
}
.inputForm input:focus{
    outline: none;
    border: 1px solid var(--elements);
}
.btnForm{
    margin-top: 12px;
    width: 60%;
}
.btnForm button{
    width: 100%;
    height: 42px;
    background-color: var(--elements);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    border: 0px;
    cursor: pointer;
}

.btnC{
    margin-top: 28px;
    margin-bottom: 28px;
}

.popup{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: white;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
    z-index: 9999;
}
.imgPopup img{
    width: 210px;
    height: 210px;
    object-fit: contain;
}
.titlePopup{
    margin-top: 26px;
    font-size: 34px;
    font-weight: 600;
}
.textPopup{
    margin-top: 14px;
    font-size: 18px;
}


@media screen and (max-width: 980px){
    .banner img{
        height: 360px;
    }
    .profileImg{
        bottom: -168px;
    }
    .profileImg img{
        width: 298px;
        height: 298px;
    }
    .infoProfile{
        margin-top: 186px;
    }
    .nameCompany{
        font-size: 38px;
    }
    .location{
        font-size: 30px;
    }
    .location img{
        width: 36px;
        height: 36px;
    }

    .section{
        margin-top: 48px;
        padding-top: 64px;
        border-width: 2px;
    }
    .titleSection{
        font-size: 40px;
    }
    .rowServices{
        margin-top: 28px;
        margin-bottom: 20px;
    }
    .colService{
        max-width: 360px;
        font-size: 24px;
        margin-top: 42px;
        text-align: center;
        box-sizing: border-box;
    }
    .alertSection{
        font-size: 28px;
    }

    .calendar{
        width: 770px;
        margin-top: 20px;
    }
    .arrowCalendar img{
        width: 78px;
        height: 78px;
    }
    .contentCalendar .arrowCalendar:first-child{
        margin-right: 32px;
    }
    .contentCalendar .arrowCalendar:last-child{
        margin-left: 32px;
    }
    .titleCalendar{
        font-size: 34px;
    }
    .rowWeekDays{
        margin-top: 12px;
        height: 42px;
        border-width: 2px;
    }
    .weekDay{
        width: 94px;
        font-size: 22px;
    }
    .monthDays{
        margin-top: 20px;
    }
    .monthDay{
        width: 94px;
        height: 42px;
        font-size: 22px;
    }

    .rowHours{
        margin-top: 28px;
        margin-bottom: 20px;
    }
    .colHour{
        max-width: 310px;
        height: 86px;
        font-size: 28px;
        text-align: center;
        box-sizing: border-box;
        padding-left: 12px;
        padding-right: 12px;
    }

    .form{
        margin-top: 32px;
    }
    .inputForm{
        width: 90%;
        font-size: 26px;
        margin-bottom: 36px;
    }
    .inputForm input{
        height: 58px;
        margin-top: 8px;
        font-size: 24px;
        border-radius: 14px;
    }
    .btnForm{
        width: 90%;
    }
    .btnForm button{
        height: 68px;
        font-size: 30px;
    }

    .imgPopup img{
        width: 380px;
        height: 380px;
    }
    .titlePopup{
        margin-top: 38px;
        font-size: 54px;
    }
    .textPopup{
        margin-top: 22px;
        font-size: 32px;
        width: 80%;
        text-align: center;
    }
}