/*********************
START: PLANS
*********************/
.plans {
    margin-block-end: var(--space-section);
}

/* plans--title */
.plans--title {
    width: 100%;
    max-width: 890px;
    margin-inline: auto;
}

.plans--title h2 {
    font-weight: 700;
    line-height: var(--line-height130);
}

.plans--title p {
    font-weight: 700;
    line-height: var(--line-height130);
    font-weight: 400;
    line-height: var(--line-height140);
    margin-block: 1.5rem 5rem;
}


/* plans--list */
.plans--list .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 1rem;
    color: var(--text-color-2);
    margin-block-end: 2.5rem;
}

.plans--list .title h3 {
    font-weight: 700;
    line-height: var(--line-height130);
}

.plans--list .title p {
    font-weight: 600;
    line-height: var(--line-height120);
}

/* plans--list ul */
.plans--list ul {
    display: flex;
    flex-wrap: wrap;
}

.plans--list>ul>li {
    position: relative;
    padding: 2rem 2rem 7rem 2rem;
    margin: 12px;
    flex-basis: calc(33.33% - 24px);
    border-radius: var(--border-radius25);
}

/* icon */
.plans--list>ul>li .icon {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.9rem;
    background-color: var(--baseLight-color);
    border-bottom-right-radius: var(--border-radius20);
}

.plans--list>ul>li .icon img {
    width: 50px;
    height: auto;
}

.plans--list>ul>li .icon .curved-corner-topRight,
.plans--list>ul>li .icon .curved-corner-bottomLeft {
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: absolute;
}

.plans--list>ul>li .icon .curved-corner-topRight {
    top: 0;
    right: -50px;
}

.plans--list>ul>li .icon .curved-corner-bottomLeft {
    bottom: -50px;
    left: 0;
}

.plans--list>ul>li .icon .curved-corner-topRight::before,
.plans--list>ul>li .icon .curved-corner-bottomLeft::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    top: 0;
    right: 0;
    box-shadow: -25px -25px 0 0 var(--baseLight-color);
}

/* h4 */
.plans--list>ul>li h4 {
    font-weight: 600;
    margin-inline-end: 3rem;
}

/* h5 */
.plans--list>ul>li h5 {
    font-weight: 700;
    color: var(--text-color-2);
    text-align: center;
    margin-block: 2.5rem 1.25rem;
}

/* p */
.plans--list>ul>li p {
    font-weight: 400;
    text-align: justify;
    color: var(--text-color-2);
    line-height: var(--line-height150);
}

/* ol */
.plans--list>ul>li ol {
    margin-block-start: 2rem;
}

.plans--list>ul>li ol>li {
    font-weight: 600;
    line-height: var(--line-height130);
    color: var(--text-color-2);
    padding-inline-start: 1.5rem;
    padding-block: 1rem;
    position: relative;
    list-style: none;
}

.plans--list>ul>li ol>li:not(:last-child)::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(48, 50, 58, 0) 0%, rgba(48, 50, 58, 0.5) 50%, rgba(48, 50, 58, 0) 100%);
}

.plans--list>ul>li ol>li::after {
    position: absolute;
    content: "";
    width: 17px;
    height: 19px;
    right: 0;
    top: 1.1rem;
    background-repeat: no-repeat;
}

/* btn */
.plans--list>ul>li .btn {
    width: max-content;
    padding-inline: 3.75rem;
    margin-inline: auto;
    font-weight: 600;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
}


/* plans--real */
.plans--real {
    margin-block-end: 5rem;
}

.plans--real>ul>li {
    background-color: #F7F5EB;
}

.plans--real>ul>li h4 {
    color: var(--secondary-color);
}

.plans--list.plans--real>ul>li ol>li::after {
    background-image: url("../img/icons/supTitle-icon-gold.svg");
}

.plans--real>ul>li .btn--secondary:hover {
    color: var(--text-color-2);
    border: 1px solid var(--text-color-2);
}

/* plans--legal */
.plans--legal>ul>li {
    background-color: #EDF0FA;
}

.plans--legal>ul>li h4 {
    color: var(--primary-color-2);
}

.plans--list.plans--legal>ul>li ol>li::after {
    background-image: url("../img/icons/supTitle-icon-dark.svg");
}

/* .plans--real>ul>li a.btn--primary:hover{
    color: var(--text-color-2);
    border: 1px solid var(--text-color-2);
} */

/* custom modal */
.modal-content {
    padding-block: 3.75rem 2.5rem;
	padding-inline: 2rem;
    height: auto;
}

.modal-body .modal--title {
    font-weight: 600;
    line-height: var(--line-height130);
    text-align: right;
    margin-block: 0 1.5rem;
    color: var(--text-color-2);
}


.modal-body form label {
    color: var(--text-color-2) !important;
    font-weight: 500;
    line-height: var(--line-height140);
}

.modal-body form input[type="text"],
.modal-body form input[type="email"],
.modal-body form textarea {
    border: 1px solid rgba(48, 50, 58, 0.3) !important;
    background-color: var(--baseLight-color);
    box-shadow: none;
    color: #999696 !important;
}


.modal-body form textarea {
    min-height: 96px !important;
    border-radius: var(--border-radius20) !important;
}

.modal-body form input[type="text"],
.modal-body form input[type="email"],
.modal-body form input[type="submit"] {
    border-radius: var(--border-radius60) !important;
}

.modal-body form input[type="submit"] {
    padding-inline: 2rem !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}

.gform_required_legend {
    display: none;
}

/* plans--real modal */
.plans--real .modal-content {
    background-color: #F7F5EB;
}

.plans--real .modal-body form input[type="submit"] {
    color: var(--text-color-2) !important;
    background-color: var(--secondary-color-2) !important;
    border: 1px solid var(--secondary-color-2) !important;
}

.plans--real .modal-body form input[type="submit"]:hover {
    background-color: transparent !important;
    border: 1px solid var(--text-color-2) !important;
}

/* plans--legal modal */
.plans--legal .modal-content {
    background-color: #EDF0FA;
}

.plans--legal .modal-body form input[type="submit"] {
    color: var(--baseLight-color) !important;
    background-color: var(--primary-color-2) !important;
    border: 1px solid var(--primary-color-2) !important;
}

.plans--legal .modal-body form input[type="submit"]:hover {
    background-color: transparent !important;
    color: var(--primary-color-2) !important;
}

.modal .gfield_label.gform-field-label{
	font-weight: 500 !important;
}

.gform-theme--foundation .gform_fields{
	row-gap: 1rem !important;
}

/*********************
END: PLANS
*********************/

/*********************
START: STEPS
*********************/
.steps {
    overflow-y: hidden;
    position: relative;
    padding-block: 7.5rem;
    background-color: var(--primary-color);
    margin-block-end: var(--space-section);
}

.steps::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../img/bg-vector-steps.svg");
    filter: brightness(0) invert(0.7);
    opacity: 0.1;
}

.steps--content h3 {
    font-weight: 700;
    line-height: var(--line-height150);
}

.steps--content>p {
    width: 70%;
    font-weight: 400;
    line-height: var(--line-height150);
    margin-block-start: 2rem;
}

.steps--content ul {
    display: flex;
    flex-wrap: wrap;
    margin-block-start: 3.75rem;
}

.steps--content ul li {
    padding: 2rem;
    position: relative;
    margin: 16px;
    flex-basis: calc(33.33% - 32px);
    border-radius: var(--border-radius25);
    background-color: var(--baseLight-color);
}

.steps--content ul li h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: var(--line-height150);
    margin-inline-start: 4.5rem;
}

.steps--content ul li p {
    margin-block-start: 2.5rem;
}

.steps--content ul li .icon .number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background-color: var(--secondary-color);
    color: var(--baseLight-color);
    line-height: var(--line-height150);
    font-size: var(--text-2xl);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.steps--content ul li .icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    background-color: var(--primary-color);
    border-bottom-left-radius: var(--border-radius20);
}

.steps--content ul li .icon img {
    width: 37px;
    height: auto;
}

.steps--content ul li .icon .curved-corner-topLeft,
.steps--content ul li .icon .curved-corner-bottomRight {
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: absolute;
}

.steps--content ul li .icon .curved-corner-topLeft {
    top: 0;
    left: -50px;
}

.steps--content ul li .icon .curved-corner-bottomRight {
    bottom: -50px;
    right: 0;
}

.steps--content ul li .icon .curved-corner-topLeft:before,
.steps--content ul li .icon .curved-corner-bottomRight::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    top: 0;
    right: 0;
    box-shadow: 25px -25px 0 0 var(--primary-color);
}

/*********************
END: STEPS
*********************/


/*********************
START: DESCRIPTION
*********************/
.description {
    margin-block-end: var(--space-section);
}

.additionalInformation h2 {
	text-align: center;
    font-weight: 700;
    line-height: var(--line-height130);
    margin-block-end: 2.5rem;
}

.additionalInformation p {
    font-weight: 400;
    text-align: justify;
    margin-block-end: 1rem;
    line-height: var(--line-height160);
}


.additionalInformation--video {
    position: relative;
    height: 600px;
    padding: 1rem;
    background-color: #EDF0FA;
    border-radius: var(--border-radius25);
    margin-block: 120px;
    max-width: 900px;
    margin-inline: auto;
}

.additionalInformation--video video {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius25);
}

.additionalInformation--video .overlay {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    margin-inline: auto;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 40px;
    background-color: rgba(48, 50, 58, 0.5);
    border: 16px solid #EDF0FA;
}

.additionalInformation--video .overlay.active {
    display: none;
}

.additionalInformation--video .playerVideo {
    cursor: pointer;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

/* descriptionPlans */
.descriptionPlans--list {
    border-radius: var(--border-radius25);
    padding: 5rem 3.75rem;
}

.descriptionPlans--real {
    background-color: #F7F5EB;
    margin-block-end: 5rem;
}

.descriptionPlans--real ul li div {
    color: var(--secondary-color);
}

.descriptionPlans--legal {
    background-color: #EDF0FA;
}

.descriptionPlans--legal ul li div {
    color: var(--primary-color-2);
}

.descriptionPlans--list h2 {
    font-weight: 700;
	text-align: center;
    line-height: var(--line-height130);
}

/* .descriptionPlans--list .point {
    font-weight: 700;
	text-align: justify;
    line-height: var(--line-height160);
    padding-block-end: 3.75rem;
	margin-block-start: -1.25rem;
} */

.descriptionPlans--list ul>li {
    position: relative;
}

.descriptionPlans--list ul>li:not(:last-child):before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(48, 50, 58, 0) 0%, rgba(48, 50, 58, 0.5) 50%, rgba(48, 50, 58, 0) 100%);
}

.descriptionPlans--list ul>li h3 {
    font-weight: 700;
    line-height: var(--line-height160);
    margin-block: 3.75rem 1.5rem;
}

.descriptionPlans--list ul>li p {
    font-weight: 500;
	text-align: justify;
    line-height: var(--line-height160);
}

.descriptionPlans--list ul>li>ol {
    margin-block-start: 2.5rem;
    list-style: none;
}

.descriptionPlans--list ul>li>ol li:not(:last-child) {
    padding-block-end: 2.5rem;
}

.descriptionPlans--list ul>li>ol li:last-child {
    padding-block-end: 3.75rem;
}

.descriptionPlans--list ul>li:last-child>ol li:last-child {
    padding-block-end: 0;
}

.descriptionPlans--list ul>li ol>li h4 {
    font-weight: 600;
    line-height: var(--line-height160);
    margin-block-end: 1rem;
}

/* related-posts-more */
 .related-posts-more {
    background: #EDF0FA;
    padding: 2rem;
    margin-block: var(--space-section-blogContent-showCase);
    border-radius: var(--border-radius25);
    font-size: var(--text-xl);
    position: relative;
    min-height: 120px;
}

 .related-posts-more:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 44px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/vector-bg-read-more.svg);
}

.related-posts-more a span {
    color: var(--primary-color-2);
}

.related-posts-more a b {
    position: relative;
    font-weight: 600 !important;
}

 .related-posts-more a b:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--baseDark-color);
}

/* video */
 .wp-video{
	width: 100% !important;
	border: 16px solid #EDF0FA;
	border-radius: var(--border-radius25);
	margin-block: 3rem;
	max-width: 800px !important;
    margin-inline: auto;
}

.wp-video-shortcode video, video.wp-video-shortcode{
	width: 100% !important;
	vertical-align: middle;
}

.mejs-container, .mejs-container .mejs-controls, .mejs-embed, .mejs-embed body{
	border-radius:7px;
}
/*********************
END: DESCRIPTION
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {

    .plans--title h2,
    .steps--content h3 {
        font-size: 50px;
    }

    .plans--list .title h3,
    .additionalInformation h2,
    .descriptionPlans--list h2{
        font-size: 40px;
    }

    .plans--list .title p,
    .plans--list>ul>li h4,
    .descriptionPlans--list ul li div {
        font-size: 26px;
    }

    .plans--list>ul>li h5,
    .descriptionPlans--list ul>li h3 {
        font-size: 34px;
    }

    .plans--list>ul>li ol>li {
        font-size: var(--text-lg);
    }

    /* steps */
    .steps--content ul li h4 {
        font-size: 22px;
    }

    .plans--title p,
    .steps--content>p {
        font-size: var(--text-2xl);
    }

    /* description */
    .additionalInformation p,
    .descriptionPlans--list ul>li p {
        font-size: var(--text-xl);
    }

    .descriptionPlans--list ul>li ol>li h4 {
        font-size: var(--text-3xl);
    }
	
	.related-posts-more a b {
        font-size: var(--text-2xl);
    }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {

    .plans--title h2,
    .steps--content h3 {
        font-size: var(--text-4xl);
    }

    .plans--list .title h3,
    .additionalInformation h2,
    .descriptionPlans--list h2 {
        font-size: var(--text-4xl);
    }

    .plans--list .title p,
    .plans--list>ul>li h4,
    .descriptionPlans--list ul li div {
        font-size: var(--text-xl);
    }

    .plans--list>ul>li h5,
    .descriptionPlans--list ul>li h3 {
        font-size: var(--text-3xl);
    }

    .steps--content ul li h4 {
        font-size: var(--text-xl);
    }

    .plans--title p,
    .steps--content>p {
        font-size: var(--text-xl);
    }

    /* description */
    .additionalInformation p,
    .descriptionPlans--list ul>li p {
        font-size: var(--text-lg);
    }

    .descriptionPlans--list ul>li ol>li h4 {
        font-size: var(--text-2xl);
    }
	
	.related-posts-more a b {
        font-size: var(--text-xl);
    }
}

@media screen and (max-width: 1319px) {

    .plans--title h2,
    .steps--content h3 {
        font-size: var(--text-4xl);
    }

    .plans--title p {
        font-size: var(--text-xl);
    }

    .plans--list .title h3,
    .additionalInformation h2,
    .descriptionPlans--list h2 {
        font-size: var(--text-3xl);
    }

    .plans--list .title p,
    .plans--list>ul>li h4,
    .descriptionPlans--list ul li div {
        font-size: var(--text-lg);
    }

    .plans--list>ul>li {
        margin: 8px;
        flex-basis: calc(33.33% - 16px);
        padding-inline: 1.5rem;
    }

    .plans--list>ul>li h5,
    .descriptionPlans--list ul>li h3 {
        font-size: var(--text-3xl);
    }

    /* steps */
    .steps--content ul li h4 {
        font-size: var(--text-xl);
    }

    .steps--content ul li {
        margin: 12px;
        flex-basis: calc(33.33% - 24px);
    }

    .steps--content>p {
        width: 80%;
        font-size: var(--text-xl);
    }

    /* description */
    .additionalInformation p,
    .descriptionPlans--list ul>li p {
        font-size: var(--text-lg);
    }

    .descriptionPlans--list ul>li ol>li h4 {
        font-size: var(--text-2xl);
    }
	
	.related-posts-more a b {
        font-size: var(--text-lg);
    }
}

@media screen and (max-width: 1200px) {

    .plans--list .title h3,
    .plans--list>ul>li h5,
    .additionalInformation h2,
    .descriptionPlans--list h2,
    .descriptionPlans--list ul>li h3 {
        font-size: var(--text-2xl);
    }

    /* steps */
    .steps--content ul li {
        margin: 8px;
        flex-basis: calc(33.33% - 16px);
    }

}

@media screen and (max-width: 992px) {

    .plans--title p,
    .steps--content>p {
        width: 100%;
        font-size: var(--text-lg);
    }

    .plans--list>ul>li h5,
    .descriptionPlans--list ul>li h3 {
        font-size: var(--text-2xl);
    }

    .plans--list>ul>li {
        flex-basis: calc(50% - 16px);
        padding-inline: 2rem;
    }

    /* steps */
    .steps--content ul li {
        margin: 8px;
        flex-basis: calc(50% - 16px);
    }
/* 
	.gform-theme--foundation #field_8_3,
	.gform-theme--foundatio #field_8_1{
		 grid-column: span 6 !important;
	}
	
	.gform-theme--foundatio #field_8_4{
		 grid-column: span 12 !important;
	} */
}

@media screen and (max-width: 768px) {

    .plans--list>ul>li h5,
    .descriptionPlans--list ul>li h3 {
        font-size: var(--text-xl);
    }

    /* steps */
    .steps--content ul li {
        flex-basis: calc(100% - 16px);
    }

    /* description */
	.descriptionPlans--list {
		padding: 4rem 2.5rem;
	}
	
    .additionalInformation p,
    .descriptionPlans--list ul>li p {
        font-size: var(--text-base);
    }

    .descriptionPlans--list ul>li ol>li h4 {
        font-size: var(--text-xl);
    }
	
	.modal-body .modal--title{
		margin-block: 0 1rem;
	}
	
	.modal-content {
    	padding-block: 2.5rem 2rem;
	}
}

@media screen and (max-width: 640px) {
    .plans--list>ul li {
        flex-basis: calc(100% - 16px);
    }
}

@media screen and (max-width: 576px) {

    .plans--title h2,
    .steps--content h3 {
        font-size: var(--text-3xl);
    }

    .plans--list .title p,
    .plans--list>ul>li h4,
    .descriptionPlans--list ul li div {
        font-size: var(--text-xl);
    }
	
	.descriptionPlans--list {
		padding: 3rem 2rem;
	}

    .descriptionPlans--list ul>li ol>li h4 {
        font-size: var(--text-lg);
    }
	
	.related-posts-more a b {
        font-size: var(--text-base);
    }
	
}

@media screen and (max-width: 425px) {

    .plans--title h2,
    .steps--content h3 {
        font-size: var(--text-2xl);
    }

    .plans--title p,
    .steps--content>p {
        font-size: var(--text-base);
    }

    .plans--list>ul li {
        padding-inline: 1.5rem;
    }

    /* steps */
    .steps--content ul li h4 {
        font-size: var(--text-lg);
    }

	.descriptionPlans--list {
		padding: 2.5rem 1.5rem;
	}
	
	.descriptionPlans--list ul li div{
        font-size: var(--text-lg);
    }
}

@media screen and (max-width: 375px) {
	.descriptionPlans--list ul li div {
        font-size: var(--text-base);
    }
}

/*********************
END: MEDIA
*********************/