/*
** Main
*/
.main {
    padding-top: 120px;
    width: 100%;
    display: flex;
    align-items: center;
}

.main .row {
    display: flex;
    align-items: center;
}

.main-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 10px;
}

.main-subtitle {
    margin-bottom: 30px;
}

.main-underline {
    display: inline-block;
    position: relative;
}

.main-underline:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 13px;
    bottom: 10px;
    left: 0;
    background-color: #7255d9;
    z-index: -1;
}

.main-subjects {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 35px;
}

.main-subject {
    width: 30%;
    height: 45px;
    border-radius: 50px;
    border: 2px solid #7255d9;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-details {
    border-radius: 25px;
    box-shadow: 0px 4px 35px 0px rgba(114, 85, 217, 0.2);
}

.main-welcome-img {
    width: 100%;
}

.main-details-features {
    background-color: #fff;
    padding: 25px;
}

.main-details-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 15px;
    font-weight: 500;
}

.main-details-item img {
    width: 25px;
    margin-right: 10px;
}

.main-details-item span {
    margin: 0 5px;
}

.main-details-action {
    padding: 0 25px 25px 25px;
    background-color: #fff;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.main-img-block {
    position: relative;
}

.main-shadow {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: 300px;
    background-color: rgba(114, 85, 217, 0.5);
    filter: blur(100px);
    z-index: -1;
}

.main-btn {
    padding-right: 50px;
    padding-left: 50px;
}

.main-feedback {
    width: 258px;
    text-align: center;
}

/*
** Features
*/
.features {
    margin-top: 92px;
}

.features-title {
    font-weight: 700;
}

.feature-card {
    margin-top: 30px;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #fff;
    box-shadow: 0px 4px 35px 0px rgba(114, 85, 217, 0.2);
    padding: 35px;
    border-radius: 30px;
}

.feature-card img {
    width: 85px;
    height: 85px;
    margin-bottom: 15px;
}

.feature-card h4 {
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-card p {
    margin-bottom: 0;
}

/*
** About
*/
.about {
    margin-top: 95px;
}

.about .row {
    display: flex;
    align-items: center;
}

.welcome-about-img {
    position: relative;
}

.welcome-about-img img {
    width: 100%;
}

.about-shadow {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: 300px;
    background-color: rgba(114, 85, 217, 0.5);
    filter: blur(100px);
    z-index: -1;
}

.about-title {
    font-weight: 700;
    margin-bottom: 75px;
}

.about-item {
    margin: 35px 0;
}

.about-item h4 {
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-item span {
    width: 35px;
}

.about-item p {
    padding-left: 35px;
}

.about .btn-lg {
    margin-top: 35px;
}

.about-btn {
    padding-left: 50px;
    padding-right: 50px;
}

/*
** Disciplines
*/
.disciplines {
    margin-top: 30px;
}

.discipline-title {
    font-weight: 700;
}

.discipline-card {
    margin-top: 30px;
    height: 250px;
    border-radius: 25px;
    background-color: #fff;
    padding: 25px;
    box-shadow: 0px 4px 35px 0px rgba(114, 85, 217, 0.2);
    color: #213c5a;
}

.discipline-card .discipline-card-img {
    width: 100%;
    height: 150px;
}

.discipline-card .discipline-card-img img {
    height: 100px;
}

.discipline-card h5 {
    font-weight: 700;
}

.test-choose-discipline {
    cursor: pointer;
    user-select: none;
}

.test-choose-discipline:hover {
    transition: 0.3s;
    background-color: #7255d9;
    color: #fff !important;
}

/*
** Footer start
*/
.footer-start {
    margin-top: 140px;
}

.footer-start-block {
    width: 100%;
    height: 400px;
    background-color: #081242;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    color: #fff;
}

.footer-start-img {
    width: 45%;
}

.footer-start-img img {
    width: 100%;
    margin-top: -61px;
}

.footer-start-text {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 35px;
}

.footer-start-text h1 {
    font-weight: 700;
}

.footer-start-text a {
    width: 400px;
}

.modal-form label {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.modal-form label input {
    border-radius: 50px;
    outline: none;
    border: 1px solid #dee2e6;
    color: #000;
    transition: 0.3s ease;
    height: 40px;
    padding-left: 15px;
}

.modal-form label input:focus {
    border: 1px solid #0e0e0e;
}

/* FAQ */
.faq {
    margin-top: 95px;
    margin-bottom: 100px;
}

.faq h1 {
    font-size: 52px;
}

.faq .accordion-item {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid black;
    padding: 15px 0;
    background: transparent !important;
}

.faq button {
    border-radius: 0 !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: 0 0 0 transparent !important;
    font-size: 21px;
    padding-left: 0 !important;
    font-weight: 600 !important;
    color: initial !important;
}

.faq .line {
    width: 100%;
    height: 1px;
    background-color: black;
}

.faq a {
    color: black;
    font-weight: 900;
    text-decoration: none;
}

.faq p {
    font-weight: 100;
}

.bold {
    font-weight: 900;
}

/* Feedback */
.feedback {
    margin-top: 95px;
}

.owl-carousel .owl-item img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 50%;
}

.feedback .feature-card {
    box-shadow: none;
    height: 385px;
}

.feedback .feature-card h6 {
    margin-bottom: 15px;
    color: #a8a8a8;
    font-size: 14px;
}

.profesor-icon {
    font-size: 50px;
}

/* Pricing */

.plan-style-4 {
    margin: 15px auto;
    overflow: hidden;
    position: relative;
    text-align: center;
    -webkit-box-shadow: 0px 0px 30px #eee;
    box-shadow: 0px 0px 30px #eee;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 30px;
}
.plan-style-4:hover {
    -webkit-box-shadow: 0px 0px 30px #ccc;
    box-shadow: 0px 0px 30px #ccc;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}
.plan-style-4 .plan-header {
    padding: 25px 0 20px 0;
    position: relative;
    background: #fff;
}
.plan-style-4 .plan-header .plan-label {
    font-size: 14px;
    line-height: 40px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    width: 281px;
    text-align: center;
    display: block;
    position: absolute;
    right: -100px;
    top: 15px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: rotate(-45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
.plan-style-4 .plan-header .plan-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 20px 0 30px 0;
    width: 100px;
    height: 100px;
    display: block;
    border: 5px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 35px;
}
.plan-style-4 .plan-header .plan-title {
    margin: 101px 0 -3px 0;
    line-height: 41px;
    font-size: 20px;
    color: #555;
    font-weight: 400;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.plan-style-4 .plan-price {
    position: relative;
}
.plan-style-4 .plan-price:after {
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/price_style_4.png);
    background-size: 100% 100%;
    background-position: bottom;
}
.plan-style-4 .plan-price .price {
    margin-bottom: 0;
    padding: 22px 0 10px 0;
    font-size: 55px;
    font-weight: 900;
    line-height: 45px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.plan-style-4 .plan-price .price span {
    padding: 0 5px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.plan-style-4 .plan-list {
    margin-bottom: 0;
    padding: 17px 0 20px 0;
    background-color: #fff;
    z-index: 1;
}
.plan-style-4 .plan-list li {
    margin: 0 15px;
    position: relative;
    list-style-type: none;
    font-size: 13px;
    color: #888;
    font-weight: 400;
    line-height: 35px;
}
.plan-style-4 .plan-list .tooltip-info {
    cursor: pointer;
}
.plan-style-4 .plan-list .tooltip-hover-text {
    color: #555;
    font-weight: 600;
}
.plan-style-4 .tooltip-info .tooltiptext {
    visibility: hidden;
    width: 150px;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    letter-spacing: 0.02rem;
    color: #fff;
    text-align: center;
    line-height: 20px;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 2;
    bottom: 35px;
    left: 45%;
    margin-left: -60px;
}
.plan-style-4 .tooltip-info .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}
.plan-style-4 .tooltip-info:hover .tooltiptext {
    visibility: visible;
}
.plan-style-4 .plan-bottom {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.plan-style-4 .plan-button {
    padding: 13px 30px;
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    background-size: 300% 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
}
.plan-style-4 .plan-button:hover {
    background-position: 100% 0;
    color: #fff;
    -webkit-box-shadow: 0px 20px 20px #eee;
    box-shadow: 0px 20px 20px #eee;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.plan-style-4 .plan-header {
    border-bottom: 5px solid #4c3bb3;
}
.plan-style-4 .plan-header .plan-label {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#b76cd2),
        to(#4c3bb3)
    );
    background: linear-gradient(to right, #b76cd2, #4c3bb3);
}
/* .plan-style-4 .plan-header .plan-icon {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#b76cd2),
        to(#4c3bb3)
    );
    background: linear-gradient(to right, #b76cd2, #4c3bb3);
} */
.plan-style-4 .plan-price {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#b76cd2),
        to(#4c3bb3)
    );
    background: linear-gradient(to right, #b76cd2, #4c3bb3);
}
.plan-style-4:hover .plan-title {
    color: #4c3bb3;
}
.plan-style-4 .plan-button {
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#b76cd2),
        color-stop(#4c3bb3),
        color-stop(#4c3bb3),
        to(#b76cd2)
    );
    background-image: linear-gradient(
        to right,
        #b76cd2,
        #4c3bb3,
        #4c3bb3,
        #b76cd2
    );
}

.plan-icon img {
    height: 65px;
    width: 100%;
    object-fit: contain;
    margin-top: -4px;
}

.pricing {
    margin-top: 90px;
    margin-bottom: 60px;
}

@media(max-width: 767px) {
    .feature-card {
        padding: 25px;
        height: 330px;
    }
    .feature-card h4{
        font-size: 18px;
    }
    .faq h1{
        font-size: 32px;
    }
}
@media(max-width: 575px) {
    .feature-card {
        height: 270px;
    }
    .feature-card h4{
        font-size: 20px;
    }
}
@media(max-width: 420px){
    .about-item h4{
        display: block;
    }
}

@media(max-width: 380px) {
    .feature-card {
        height: 290px;
    }
}
