/***********
  LOGIN
************/

#login {
    padding: 44px 15px;
    border-bottom: 1px solid #f3f3f3;
}

#loginWrap {
    max-width: 1140px;
    margin: 0 auto;
}

.loginTxt {
    text-align: center;
}

#loginBody {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 32px auto 0;
    gap: 32px;
}

.loginBodyForm {
    background-color: white;
    padding: 20px 15px 24px;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.loginBodyFormTitle {
    font-size: 16px;
}

.loginBodyFormWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.loginBodyFormInput {
    padding: 4px 8px;
}

.loginBodyFormSubmit {
}

#loginForgot {
    text-align: center;
    margin: 20px auto 0;
    font-weight: 400;
}

#loginForgot a {
    color: var(--red);
}

#loginForgot a:hover {
    text-decoration: underline;
}

@media (max-width: 1000px) {
    #loginBody {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .loginBodyFormWrap {
        grid-template-columns: 1fr;
    }
}

/***********
  PLANS
************/

#plans {
    padding: 44px 15px;
    border-bottom: 1px solid #f3f3f3;
}

#plansWrap {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#plansTxt {
    margin-top: 15px;
    font-size: 18px;
}

#plansBody {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px auto 0;
    max-width: 760px;
    width: 100%;
}

.plansBodyItem {
    text-align: center;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    padding: 30px 20px;
    background-color: white;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    transition: .3s ease;
}

.plansBodyItem:hover {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.plansBodyItemCircle {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--red);
    border-radius: 50%;
}

.plansBodyItemCircleLogo {
    width: 30px;
    height: auto;
    color: white;
}

.plansBodyItemTitle {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 12px;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 12px;
}

.plansBodyItemPrice {
    font-size: 19px;
    margin-bottom: 15px;
}

.plansBodyItemDescription {
    font-size: 15px;
    margin-bottom: 15px;
}

.plansBodyItemLink {
    font-size: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    justify-content: center;
    color: var(--red);
}

.plansBodyItemLinkIcon {
    height: 15px;
    width: auto;
}

@media (max-width: 1000px) {
    #plansBody {
        grid-template-columns: 1fr;
    }

    .plansBodyItem {
        box-shadow: 0 0 0;
    }
}

/***********
  TESTIMONIALS
************/

#testimonials {
    padding: 44px 15px 20px;
}

#testimonialsWrap {
    max-width: 1140px;
    margin: 0 auto;
}

#testimonialsTxt {
    font-size: 18px;
    text-align: center;
    margin-top: 15px;
}

#testimonialsBody {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin-top: 30px;
}

.testimonialsBodyItem {

}

.testimonialsBodyItemContainer {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
}

.testimonialsBodyItemWrap {
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid black;

}

.testimonialsBodyItemImg {
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid white;
}

.testimonialsBodyItemContent {
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    color: black;
}

.testimonialsBodyItemContentTxt {

}

.testimonialsBodyItemContentName {
    text-align: right;
    margin-top: 4px;
}

.testimonialsBodyItemLine {
    margin: 8px 0 15px;
}

.testimonialsLink {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--red);
    font-size: 15px;
    width: fit-content;
    margin: 0 auto;
}

.testimonialsLinkArrow {
    height: 15px;
    width: auto;
}

.testimonialsLink:hover {
    text-decoration: underline;
}

@media (max-width: 1000px) {
    #testimonials {
        padding-bottom: 20px;
    }

    #testimonialsBody {
        grid-template-columns: 1fr;
        gap: 0;
    }
}