* {
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    color: #404040;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto !important;

    -webkit-tap-highlight-color: transparent;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

@media (min-width: 1280px) {
    body {
        font-size: 18px;
        line-height: 26px;
    }
}

*:first-child {
    margin-top: 0;
}

*:only-child,
*:last-child {
    margin-bottom: 0;
}

/* ONLY FOR PAGE 404 */
.page-404-section {
    background-color: #701346;
    padding: 140px 20px;
}

.page-404-section .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.page-404-section .wrap h1 {
    color: #FFF;
    font-family: Lato;
    font-weight: 700;
    font-style: italic;
    font-size: 38px;
    line-height: 46px;
    text-align: center;
    text-transform: capitalize
}

.page-404-section .icon-wrap {
    display: flex;
    height: 60px;
    width: 138px;
}

.page-404-section .wrap p {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
}

.page-404-section .wrap a {
    color: #000 !important;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .page-404-section {
        padding: 40px 20px;
    }

    .page-404-section .wrap h1 {
        font-size: 30px;
        line-height: 38px;
        text-align: center;
    }

    .page-404-section .wrap p {
        font-size: 18px;
        line-height: 26px;
    }

    .page-404-section .wrap {
        gap: 24px;
    }

    .page-404-section .wrap a {
        display: block;
    }
}

.mobile-img {
    display: none !important;
}

@media (max-width: 767px) {
    .mobile-img {
        display: block !important;
    }

    .desktop-img {
        display: none !important;
    }
}

/* =========================================================
   Doctor card shortcode — [venus_doctor]
   Figma node 7153:23058
   ========================================================= */
.doctor-card {
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    align-items: center;
}

.doctor-card .doctor-card__avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
    display: block;
}

.doctor-card .doctor-card__avatar .doctor-card__avatar-img,
.doctor-card .doctor-card__avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.doctor-card .doctor-card__details {
    display: flex;
    flex-flow: column nowrap;
    gap: 6px;
    min-width: 0;
}

.doctor-card .doctor-card__name {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    line-height: 32px;
    text-transform: capitalize;
    font-variation-settings: 'wdth' 100;
}

.doctor-card .doctor-card__name a {
    color: inherit;
    font: inherit;
    text-decoration: none;
    font-style: inherit;
}

.doctor-card .doctor-card__verified {
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.doctor-card .doctor-card__verified svg {
    width: 100%;
    height: 100%;
    display: block;
}

.doctor-card .doctor-card__title {
    margin: 0;
    color: #701446;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
}

.doctor-card .doctor-card__credentials {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    gap: 4px 0;
}

.doctor-card .doctor-card__credential {
    position: relative;
    margin: 0;
    padding: 0 12px;
    color: #000;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
}

.doctor-card .doctor-card__credential:first-child {
    padding-left: 0;
}

.doctor-card .doctor-card__credential:last-child {
    padding-right: 0;
}

.doctor-card .doctor-card__credential + .doctor-card__credential::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 8px;
    margin-top: -4px;
    background: #000;
}

@media (max-width: 767px) {
    .doctor-card {
        gap: 12px;
        align-items: flex-start;
    }

    .doctor-card .doctor-card__details {
        gap: 4px;
        flex: 1 1 0;
    }

    .doctor-card .doctor-card__name {
        font-size: 20px;
        line-height: 28px;
        align-items: flex-start;
        gap: 0;
    }

    .doctor-card .doctor-card__verified {
        width: 16px;
        height: 16px;
    }

    .doctor-card .doctor-card__title {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: 0.72px;
    }

    .doctor-card .doctor-card__credential {
        font-size: 10px;
        line-height: 16px;
        padding: 0 8px;
    }

    .doctor-card .doctor-card__credential + .doctor-card__credential::before {
        height: 6px;
        margin-top: -3px;
    }
}
