/*-----------------------------------------------------------------
------------------------Learning Advantages------------------------
------------------------------------------------------------------*/

/* ==================== BASE SECTION STYLES ==================== */
.learningAdvantage {
    padding: 80px 0px;
    background: url('/webpage/img/banner/1.jpg');
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.learningAdvantage:before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    background-color: rgba(0, 33, 71, 0.88);
    height: 100%;
    width: 100%;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-transform: uppercase;
}

.section-title span {
    position: relative;
}

.section-title span:before {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: var(--global-yellow);
}

.learningAdvantage .row {
    position: relative;
}

.video-content .video-title {
    text-transform: uppercase;
}

.video-content .video-title span {
    position: relative;
}

.video-content .video-title span:before {
    content: "";
    position: absolute;
    bottom: -9px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--global-yellow);
}

.one h2 {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.one h2:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 25px;
    left: 50%;
    margin-left: -50px;
    background-color: var(--global-yellow);
}

.section-common-space {
    padding: 100px 0;
}



.section-header h2,
.one h2 {
    font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem) !important;
}

.section-title {
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.section-title span {
    position: relative;
}

.section-title span:before {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: var(--global-yellow);
}

.ft-wt-bold {
    font-weight: 700;
}

.flip-card-container {
    margin-top: clamp(2rem, 6vw, 7.5rem);
}

.features-item {
    background-color: #fff;
    padding: 40px 20px;
    position: relative;
    transition: 0.3s;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 350px;

}

.features-item:hover {
    box-shadow: 0 40px 70px 0 rgba(0, 0, 0, 0.22);
    cursor: pointer;
}

.features-item:hover .features-icon {
    color: #152a45;
    border-color: #152a45
}


.features-icon {
    font-size: 35px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: #fff;
    border-radius: 60px;
    border: 2px dashed #ffc702;
    box-shadow: 0 0 0 10px #fff;
    color: #ffc702;
    transition: 0.3s;
    margin-bottom: 25px;
}


.flip-card {
    background-color: transparent;
    width: 100%;
    height: 250px;
    perspective: 1000px;
    margin-bottom: 30px;

}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;

}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border: 3px solid #2d99f1;
    padding: 20px;
    box-sizing: border-box;
}

/*.flip-card-front {
  background-color: #fff;
}*/

.flip-card-front {
    background: url('/webpage/img/feature-bg.jpg');
    background-repeat: no-repeat;
    background-size: 150%;
    background-position: 63% 34%;
}

.flip-card-front .features-info h4 {
    font-size: 20px;
    font-weight: 600;
}

.flip-card-back {
    /*background-color: #ffe566;
  transform: rotateY(180deg);
  font-weight: 500;
  color: #342e17;*/

    background-color: #2d99f1;
    transform: rotateY(180deg);
    font-weight: 500;
    color: #fdfdfd;
}


@media only screen and (max-width: 992px) {
    .clear-problem>div:nth-child(3n+1) {
        clear: none;
    }
}

@media only screen and (max-width: 768px) {


    h4 {
        font-size: 17px;
    }

    h2 {
        font-size: 21px;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .section-title span:before {
        bottom: -10px;
    }
}

.clear-problem>div:nth-child(3n+1) {
    clear: left;
}