/*=========================================
 BUSINESS COMMUNICATIVE ENGLISH HERO
=========================================*/

.english-hero{
    padding:100px 0;
    overflow:hidden;
}

.english-container{
width:90%;
max-width:1250px;
margin:auto;

display:grid;
grid-template-columns:repeat(2,1fr);

gap:60px;
align-items:center;
}

.english-tag{
display:inline-block;
padding:10px 22px;
/* border:1px rgb(76, 130, 184) solid; */
background-color: greenyellow;
color:black;
border-radius:30px;
font-size: 11px;
font-weight:600;
margin-bottom:25px;
}

.english-content h1{
    font-size:50px;
    line-height:1.2;
    color:whitesmoke;
    margin-bottom:25px;
}

.english-content h1 span{
    display:block;
    color:greenyellow;
}

.english-content h3 {
    display:block;
    color:greenyellow;
    padding-bottom: 25px;
}

.english-content p{
    font-size:18px;
    line-height:1.9;
    color:white;
    margin-bottom:3;
}

/* Info Cards */

.english-info{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-bottom:35px;
}

.info-box{
display:flex;
align-items:center;
gap:15px;
padding:18px 20px;
/* border:1px rgb(76, 130, 184) solid; */
border-radius:15px;
box-shadow:0 10px 30px black;
transition:.3s;
text-align: left;
}

.info-box:hover{
transform:translateY(-8px);
box-shadow:1px 1px 10px greenyellow;  
border:0;
}

.info-box i{
font-size:28px;
color:greenyellow;
}

.info-box strong{
display:block;
color:greenyellow;
}

.info-box span{
font-size:14px;
color:white;
}

/* Buttons */

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
margin-bottom:35px;
}

.demo-btn{
padding:16px 30px;
border: 2px greenyellow solid;
color:white;
border-radius:50px;
font-size: 11px;
font-weight:600;
transition:.3s;
}

.demo-btn:hover{
background:greenyellow;
color:black;
}

.parents-btn{
padding:16px 30px;
border:2px greenyellow solid;
color:white;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.parents-btn:hover{
background:greenyellow;
color:black;
}

/* Badges */
/* 
.english-badges{
display:flex;
gap:12px;
flex-wrap:wrap;
}

.english-badges span{
background-color: whitesmoke;
color: black;
padding:12px 18px;
border-radius:30px;
box-shadow:0 8px 20px black;
font-size:14px;
font-weight:600;
}

.english-badges span:hover{
        box-shadow:inset 0px 8px 20px yellowgreen;
        color:greenyellow;
} */

/* Right Image */

.english-image{
    position:relative;
}

.english-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 45px rgba(0,0,0,.18);
}

/* Floating Cards */

.english-image .floating-card{
    position:absolute;
    background:rgba(0,0,0,.50);
    color:white;
    padding:15px 22px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    font-weight:600;
}

.english-image .top-card{
    top:25px;
    left:-35px;
}

.english-image .bottom-card{
    bottom:35px;
    right:-30px;
}

/*====================================
 Responsive
====================================*/

@media(max-width:992px){

.english-hero .course-container{
    grid-template-columns:1fr;
    text-align:center;
}

.english-hero .course-info{
    justify-content:center;
}

.english-hero .hero-buttons{
    justify-content:center;
}

.english-hero .course-badges{
    justify-content:center;
}

.english-image{
    margin-top:50px;
}

.english-image .top-card{
    left:10px;
}

.english-image .bottom-card{
    right:10px;
}

}

@media(max-width:768px){

.english-hero{
    padding:70px 0;
}

.english-hero .english-container{
    grid-template-columns:1fr;
    text-align:center;
}

.english-content h1{
    font-size:38px;
}

.english-content p{
    font-size:16px;
}

.english-info .info-box{
    width:80%;
    justify-content:start;
    align-content: center;
}

.english-hero .hero-buttons a{
    width:100%;
    text-align:center;
}

.english-hero .course-badges span{
    width:100%;
    text-align:center;
}

}

@media(max-width:480px){

.english-content h1{
    font-size:30px;
}

.english-image .floating-card{
    display:none;
}

}

/* ==========================================
   SECTION 1 : ENGLISH CAREER SKILL
=========================================== */

.english-career-section {
    width: 100%;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
=========================================== */

.english-career-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ==========================================
   HEADING
=========================================== */

.english-career-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 65px;
}

.english-section-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.english-career-heading h1 {
    color: whitesmoke;
    font-size: 55px;
    line-height: 1.2;
    margin: 0 0 22px;
    font-weight: 800;
}

.english-career-heading h1 span {
    color: greenyellow;
}

.english-career-heading p {
    max-width: 750px;
    margin: auto;
    color: white;
    font-size: 17px;
    line-height: 1.8;
}

/* ==========================================
   STATISTIC GRID
=========================================== */

.english-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ==========================================
   STATISTIC CARD
=========================================== */

.english-stat-card {
    position: relative;
    padding: 38px 32px;
    min-height: 280px;
    box-shadow: 0 10px 20px black;
    border: 1px solid rgba(173, 255, 47, .18);
    border-top: 5px solid greenyellow;
    border-radius: 22px;
    box-sizing: border-box;
    overflow: hidden;
    transition: all .4s ease;
    animation: englishCardAppear .8s ease both;
}

/* Staggered animation */

.english-stat-card:nth-child(1) {
    animation-delay: .1s;
}


.english-stat-card:nth-child(2) {
    animation-delay: .25s;
}


.english-stat-card:nth-child(3) {
    animation-delay: .4s;
}

/* ==========================================
   CARD HOVER
=========================================== */

.english-stat-card:hover {
    transform: translateY(-12px);
    border-color: greenyellow;
    box-shadow:0 10px 20px greenyellow;
}

/* ==========================================
   CARD NUMBER
=========================================== */

.english-card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    color: greenyellow;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* ==========================================
   PERCENTAGE
=========================================== */

.english-stat-number {
    color: greenyellow;
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
}

.english-stat-number span {
    color: yellowgreen;
    font-size: 35px;
}

/* ==========================================
   CARD LINE
=========================================== */

.english-stat-line {
    width: 55px;
    height: 4px;
    background: linear-gradient(
        90deg,
        greenyellow,
        yellowgreen
    );
    border-radius: 10px;
    margin-bottom: 25px;
    transition: .4s;
}


.english-stat-card:hover .english-stat-line {
    width: 100px;
}


/* ==========================================
   CARD DESCRIPTION
=========================================== */

.english-stat-card p {
    color: white;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}


/* ==========================================
   SOURCE
=========================================== */

.english-career-source {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    color: white;
    font-size: 13px;
    line-height: 1.7;
}


.english-career-source strong {
    color: greenyellow;
}


.english-career-source em {
    color: white;
}


/* ==========================================
   CARD DECORATION
=========================================== */

.english-stat-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -60px;
    bottom: -60px;
    border-radius: 50%;
    border: 1px solid rgba(173, 255, 47, .12);
    transition: .5s;
}

.english-stat-card:hover::after {
    width: 180px;
    height: 180px;
    border-color: rgba(173, 255, 47, .25);
}

/* ==========================================
   ANIMATION
=========================================== */

@keyframes englishCardAppear {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ==========================================
   TABLET
=========================================== */

@media (max-width: 992px) {

    .english-career-section {
        padding: 85px 0;
    }


    .english-career-heading h1 {
        font-size: 48px;
    }


    .english-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .english-stat-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        width: 100%;
        margin: auto;
    }

}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 768px) {

    .english-career-section {
        padding: 70px 0;
    }

    .english-career-container {
        width: 88%;
    }

    .english-career-heading {
        margin-bottom: 45px;
    }

    .english-section-tag {
        font-size: 9px;
        padding: 8px 16px;
    }

    .english-career-heading h1 {
        font-size: 38px;
    }

    .english-career-heading p {
        font-size: 15px;
        line-height: 1.75;
    }

    .english-stats-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .english-stat-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .english-stat-card {
        min-height: auto;
        padding: 32px 27px;
    }

    .english-stat-number {
        font-size: 48px;
    }

    .english-stat-number span {
        font-size: 30px;
    }

    .english-stat-card p {
        font-size: 15px;
    }

}

/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 480px) {

    .english-career-section {
        padding: 60px 0;
    }

    .english-career-container {
        width: 90%;
    }

    .english-career-heading h1 {
        font-size: 31px;
    }

    .english-career-heading p {
        font-size: 14px;
    }

    .english-stat-card {
        padding: 28px 23px;
        border-radius: 18px;
    }

    .english-stat-number {
        font-size: 42px;
    }

    .english-stat-number span {
        font-size: 27px;
    }

    .english-stat-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .english-career-source {
        font-size: 11px;
    }

}

/* ==========================================
   SECTION 2 : ENGLISH PRACTICAL SKILLS
=========================================== */

.english-practical-section {
    width: 100%;
    padding: 110px 0;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
=========================================== */

.english-practical-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ==========================================
   HEADING
=========================================== */

.english-practical-heading {
    text-align: center;
    /* max-width: 800px; */
    margin: 0 auto 65px;
}

.english-practical-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}


.english-practical-heading h2 {
    color: whitesmoke;
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 20px;
}


.english-practical-heading h2 span {
    color: greenyellow;
}


.english-practical-heading p {
    color: white;
    font-size: 17px;
    line-height: 1.8;
    margin: auto;
    max-width: 700px;
}

/* ==========================================
   SKILL LIST
=========================================== */

.english-skill-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    row-gap: 0;
    padding-left:160px;
}

/* ==========================================
   SKILL ITEM
=========================================== */

.english-skill-item {
    display: grid;
    grid-template-columns: 55px 3px 1fr;
    align-items: center;
    min-height: 85px;
    position: relative;
    transition: .35s ease;
    margin-left: 20px;
}

/* ==========================================
   NUMBER
=========================================== */

.english-skill-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid greenyellow;
    display: flex;
    align-items: center;
    justify-content: center;
    color: greenyellow;
    font-size: 12px;
    font-weight: 800;
    transition: .35s ease;
}

/* ==========================================
   VERTICAL ACCENT
=========================================== */

.english-skill-line {
    width: 2px;
    height: 45px;
    background: yellowgreen;
    opacity: .45;
    transition: .35s ease;
}

/* ==========================================
   TEXT
=========================================== */

.english-skill-text {
    padding-left: 22px;
    color: white;
    font-size: 16px;
    line-height: 1.6;
    transition: .35s ease;
}

/* ==========================================
   HOVER
=========================================== */

.english-skill-item:hover {
    transform: translateX(8px);
}

.english-skill-item:hover .english-skill-number {
    background: greenyellow;
    color: #000;
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(173,255,47,.25);
}

.english-skill-item:hover .english-skill-line {
    opacity: 1;
    background: greenyellow;
}

.english-skill-item:hover .english-skill-text {
    color: greenyellow;
}

/* ==========================================
   BOTTOM MESSAGE
=========================================== */

.english-practical-bottom {
    margin: 60px auto 0;
    max-width: 850px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 14px;
    border-left: 5px solid greenyellow;
    box-shadow: 0 10px 20px black;
}

.english-practical-bottom > span {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: greenyellow;
    box-shadow: 0 0 12px greenyellow;
}

.english-practical-bottom p {
    color: white;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.english-practical-bottom strong {
    color: greenyellow;
}

/* ==========================================
   TABLET
=========================================== */

@media (max-width: 768px) {

    .english-practical-section {
        padding: 80px 0;
    }

    .english-practical-container {
        width: 88%;
    }

    .english-practical-heading {
        margin-bottom: 45px;
    }

    .english-practical-heading h2 {
        font-size: 40px;
    }

    .english-practical-heading p {
        font-size: 15px;
    }

    .english-skill-list {
        grid-template-columns: 1fr;
        padding-left: 0px;
    }

    .english-skill-item {
        min-height: 75px;
    }

    .english-skill-text {
        font-size: 15px;
    }

    .english-practical-bottom {
        margin-top: 40px;
        padding: 22px;
    }

    .english-practical-bottom p {
        font-size: 15px;
    }

}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 480px) {

    .english-practical-section {
        padding: 65px 0;
    }

    .english-practical-container {
        width: 90%;
    }

    .english-practical-tag {
        font-size: 9px;
        padding: 8px 15px;
    }

    .english-practical-heading h2 {
        font-size: 31px;
    }

    .english-practical-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .english-skill-item {
        grid-template-columns: 45px 2px 1fr;
        min-height: 70px;
    }

    .english-skill-number {
        width: 34px;
        height: 34px;
        font-size: 10px;
    }

    .english-skill-line {
        height: 38px;
    }

    .english-skill-text {
        padding-left: 15px;
        font-size: 14px;
    }

    .english-skill-item:hover {
        transform: translateX(4px);
    }

    .english-practical-bottom {
        padding: 18px;
        gap: 12px;
    }

    .english-practical-bottom p {
        font-size: 14px;
        line-height: 1.6;
    }

}

/* ==========================================
   SECTION 3 : COMMUNICATION SHAPES OPPORTUNITY
=========================================== */

.communication-section {
    width: 100%;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
=========================================== */

.communication-container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

/* ==========================================
   LEFT CONTENT
=========================================== */

.communication-content {
    animation: communicationLeft 1s ease both;
}

.communication-label {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

/* ==========================================
   TITLE
=========================================== */

.communication-content h2 {
    margin: 0;
    color: whitesmoke;
    font-size: 54px;
    line-height: 1.2;
    font-weight: 800;
}

.communication-content h2 span {
    display: block;
    color: greenyellow;
}

/* ==========================================
   DIVIDER
=========================================== */

.communication-divider {
    width: 85px;
    height: 4px;
    background: linear-gradient(
        90deg,
        greenyellow,
        yellowgreen
    );
    border-radius: 10px;
    margin: 30px 0;
}

/* ==========================================
   FIRST PARAGRAPH
=========================================== */

.communication-content p {
    max-width: 520px;
    margin: 0;
    color: white;
    font-size: 18px;
    line-height: 1.9;
}

.communication-content strong {
    color: yellowgreen;
}

/* ==========================================
   RIGHT TEXT
=========================================== */

.communication-text {
    padding-left: 45px;
    border-left: 2px solid rgba(173,255,47,.25);
    animation: communicationRight 1s ease both;
}

/* ==========================================
   SYMBOL
=========================================== */

.communication-symbol {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid greenyellow;
    border-radius: 50%;
    color: greenyellow;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 25px;
    transition: .4s ease;
}

.communication-text:hover .communication-symbol {
    background: greenyellow;
    color: #000;
    transform: rotate(90deg);
}

/* ==========================================
   SECOND PARAGRAPH
=========================================== */

.communication-text p {
    margin: 0;
    color: white;
    font-size: 19px;
    line-height: 2;
}

/* ==========================================
   ANIMATION
=========================================== */

@keyframes communicationLeft {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes communicationRight {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* ==========================================
   TABLET
=========================================== */

@media (max-width: 992px) {

    .communication-section {
        padding: 90px 0;
    }

    .communication-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .communication-content {
        text-align: center;
    }

    .communication-content h2 {
        font-size: 46px;
    }


    .communication-divider {
        margin: 25px auto;
    }

    .communication-content p {
        max-width: 700px;
        margin: auto;
    }

    .communication-text {
        max-width: 750px;
        margin: auto;
    }

}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 768px) {

    .communication-section {
        padding: 75px 0;
    }

    .communication-container {
        width: 88%;
        gap: 40px;
    }

    .communication-content h2 {
        font-size: 38px;
    }

    .communication-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .communication-text {
        padding-left: 25px;
    }

    .communication-text p {
        font-size: 16px;
        line-height: 1.85;
    }

}

/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 480px) {

    .communication-section {
        padding: 60px 0;
    }

    .communication-container {
        width: 90%;
    }

    .communication-label {
        font-size: 9px;
        padding: 8px 15px;
    }

    .communication-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .communication-divider {
        width: 60px;
        height: 3px;
        margin: 22px auto;
    }


    .communication-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .communication-text {
        padding-left: 18px;
    }

    .communication-symbol {
        width: 45px;
        height: 45px;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .communication-text p {
        font-size: 14px;
        line-height: 1.8;
    }

}

/* ==========================================
   ACCESSIBILITY
=========================================== */

@media (prefers-reduced-motion: reduce) {

    .communication-content,
    .communication-text {
        animation: none;
    }

}

/* ==========================================
   SECTION 3 : WHAT YOU WILL PRACTISE
=========================================== */

.practice-section {
    width: 100%;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
=========================================== */

.practice-container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

/* ==========================================
   HEADING
=========================================== */

.practice-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 75px;
    animation: practiceHeading 1s ease both;
}

.practice-label {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.practice-heading h2 {
    margin: 0 0 25px;
    color: whitesmoke;
    font-size: 55px;
    line-height: 1.2;
    font-weight: 800;
}

.practice-heading h2 span {
    color: greenyellow;
}


.practice-heading > p {
    margin: auto;
    max-width: 720px;
    color: white;
    font-size: 17px;
    line-height: 1.9;
}


/* ==========================================
   PRACTICE LIST
=========================================== */

.practice-list {
    position: relative;
    max-width: 950px;
    margin: auto;
}

/* ==========================================
   VERTICAL LINE
=========================================== */

.practice-list::before {
    content: "";
    position: absolute;
    left: 43px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        greenyellow,
        yellowgreen,
        transparent
    );
    opacity: .45;
}

/* ==========================================
   PRACTICE ITEM
=========================================== */

.practice-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 35px;
    position: relative;
    padding: 0 0 45px;
    animation: practiceItem 0.8s ease both;
}

.practice-item:last-child {
    padding-bottom: 0;
}

/* ==========================================
   NUMBER
=========================================== */

.practice-number {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2d32;
    border: 2px solid greenyellow;
    border-radius: 50%;
    color: greenyellow;
    font-size: 20px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    transition: .4s ease;
}

.practice-item:hover .practice-number {
    background: greenyellow;
    color: #000;
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 0 25px rgba(173,255,47,.3);
}

/* ==========================================
   CONTENT
=========================================== */

.practice-content {
    padding-top: 8px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 35px;
}

.practice-item:last-child .practice-content {
    border-bottom: none;
}

.practice-content h3 {
    margin: 0 0 12px;
    color: yellowgreen;
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: .3s ease;
}

.practice-item:hover .practice-content h3 {
    color: greenyellow;
}

.practice-content p {
    margin: 0;
    max-width: 700px;
    color: white;
    font-size: 16px;
    line-height: 1.85;
}

/* ==========================================
   ANIMATIONS
=========================================== */

@keyframes practiceHeading {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes practiceItem {

    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* ==========================================
   TABLET
=========================================== */

@media (max-width: 992px) {

    .practice-section {
        padding: 90px 0;
    }

    .practice-heading h2 {
        font-size: 46px;
    }

    .practice-list {
        max-width: 850px;
    }

    .practice-item {
        grid-template-columns: 75px 1fr;
        gap: 30px;
    }

    .practice-number {
        width: 75px;
        height: 75px;
        font-size: 17px;
    }

    .practice-list::before {
        left: 37px;
    }

}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 768px) {

    .practice-section {
        padding: 75px 0;
    }

    .practice-container {
        width: 88%;
    }

    .practice-heading {
        margin-bottom: 55px;
    }

    .practice-heading h2 {
        font-size: 38px;
    }

    .practice-heading > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .practice-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding-bottom: 35px;
    }

    .practice-number {
        width: 60px;
        height: 60px;
        font-size: 14px;
    }

    .practice-list::before {
        left: 29px;
    }

    .practice-content {
        padding-bottom: 25px;
    }

    .practice-content h3 {
        font-size: 18px;
    }

    .practice-content p {
        font-size: 15px;
        line-height: 1.75;
    }

}

/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 480px) {

    .practice-section {
        padding: 60px 0;
    }

    .practice-container {
        width: 90%;
    }

    .practice-label {
        font-size: 9px;
        padding: 8px 15px;
    }

    .practice-heading h2 {
        font-size: 30px;
    }

    .practice-heading > p {
        font-size: 14px;
    }

    .practice-item {
        grid-template-columns: 48px 1fr;
        gap: 15px;
        padding-bottom: 30px;
    }

    .practice-number {
        width: 48px;
        height: 48px;
        font-size: 12px;
        border-width: 1.5px;
    }

    .practice-list::before {
        left: 23px;
    }

    .practice-content {
        padding-bottom: 20px;
    }

    .practice-content h3 {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .practice-content p {
        font-size: 13px;
        line-height: 1.7;
    }

}

/* ==========================================
   REDUCED MOTION
=========================================== */

@media (prefers-reduced-motion: reduce) {

    .practice-heading,
    .practice-item {
        animation: none;
    }

    .practice-number {
        transition: none;
    }

}

/* ==========================================
   SECTION 4 : SPEAK. PRACTISE. IMPROVE.
=========================================== */

.speak-practise-section {
    width: 100%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
=========================================== */

.speak-practise-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

/* ==========================================
   LEFT INTRO
=========================================== */

.speak-practise-intro {
    animation: speakIntro 1s ease both;
}

.speak-practise-label {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

/* ==========================================
   TITLE
=========================================== */

.speak-practise-intro h2 {
    margin: 0;
    color: whitesmoke;
    font-size: 55px;
    line-height: 1.15;
    font-weight: 800;
}

.speak-practise-intro h2 span {
    display: block;
    color: greenyellow;
}

/* ==========================================
   LINE
=========================================== */

.speak-line {
    width: 85px;
    height: 4px;
    margin: 30px 0;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        greenyellow,
        yellowgreen
    );
}

.speak-line1 {
    width: 85px;
    height: 4px;
    background-color: greenyellow;
    /* margin: 30px 0;
    border-radius: 10px;
    background: yellowgreen
    ; */
}
/* ==========================================
   DESCRIPTION
=========================================== */

.speak-practise-intro p {
    max-width: 480px;
    margin: 0;
    color: white;
    font-size: 17px;
    line-height: 1.9;
}

/* ==========================================
   RIGHT LIST
=========================================== */

.speak-practise-list {
    position: relative;
    padding-left: 35px;
    border-left: 2px solid rgba(173,255,47,.25);
    animation: speakList 1s ease both;
}

/* ==========================================
   ITEM
=========================================== */

.speak-item {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 58px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: .35s ease;
    position: relative;
}

.speak-item:last-child {
    border-bottom: none;
}

/* ==========================================
   NUMBER
=========================================== */

.speak-number {
    min-width: 34px;
    color: greenyellow;
    font-size: 12px;
    font-weight: 800;
    transition: .3s ease;
}

/* ==========================================
   TEXT
=========================================== */

.speak-text {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    transition: .3s ease;
}

/* ==========================================
   HOVER
=========================================== */

.speak-item:hover {
    padding-left: 12px;
}

.speak-item:hover .speak-number {
    color: yellowgreen;
    transform: scale(1.15);
}

.speak-item:hover .speak-text {
    color: greenyellow;
}

/* ==========================================
   ANIMATIONS
=========================================== */

@keyframes speakIntro {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes speakList {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* ==========================================
   TABLET
=========================================== */

@media (max-width: 992px) {

    .speak-practise-section {
        padding: 90px 0;
    }

    .speak-practise-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .speak-practise-intro {
        text-align: center;
    }

    .speak-line {
        margin: 25px auto;
    }

    .speak-practise-intro p {
        max-width: 700px;
        margin: auto;
    }

    .speak-practise-list {
        max-width: 750px;
        width: 100%;
        margin: auto;
        box-sizing: border-box;
    }

}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 768px) {

    .speak-practise-section {
        padding: 75px 0;
    }

    .speak-practise-container {
        width: 88%;
        gap: 40px;
    }

    .speak-practise-intro h2 {
        font-size: 40px;
    }

    .speak-practise-intro p {
        font-size: 16px;
        line-height: 1.8;
    }

    .speak-practise-list {
        padding-left: 25px;
    }

    .speak-item {
        min-height: 55px;
        gap: 15px;
    }

    .speak-number {
        min-width: 28px;
        font-size: 11px;
    }

    .speak-text {
        font-size: 15px;
    }

}

/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 480px) {

    .speak-practise-section {
        padding: 60px 0;
    }

    .speak-practise-container {
        width: 90%;
    }

    .speak-practise-label {
        font-size: 9px;
        padding: 8px 15px;
    }

    .speak-practise-intro h2 {
        font-size: 31px;
    }

    .speak-practise-intro p {
        font-size: 14px;
        line-height: 1.75;
    }

    .speak-line {
        width: 60px;
        height: 3px;
        margin: 20px auto;
    }

    .speak-practise-list {
        padding-left: 18px;
    }

    .speak-item {
        min-height: 52px;
        gap: 12px;
    }

    .speak-number {
        min-width: 25px;
        font-size: 10px;
    }

    .speak-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .speak-item:hover {
        padding-left: 5px;
    }

}

/* ==========================================
   REDUCED MOTION
=========================================== */

@media (prefers-reduced-motion: reduce) {

    .speak-practise-intro,
    .speak-practise-list {
        animation: none;
    }

    .speak-item {
        transition: none;
    }
}

/* ==========================================
   SECTION 5 : WHAT EMPLOYERS NEED
=========================================== */

.employer-needs-section {
    width: 100%;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
=========================================== */

.employer-needs-container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

/* ==========================================
   HEADING
=========================================== */

.employer-heading {
    text-align: center;
    margin-bottom: 70px;
}

.employer-label {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.employer-heading h2 {
    margin: 0;
    color: whitesmoke;
    font-size: 55px;
    line-height: 1.2;
    font-weight: 800;
}

.employer-heading h2 span {
    color: greenyellow;
}

/* ==========================================
   MAIN LAYOUT
=========================================== */

.employer-layout {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 75px;
}

/* ==========================================
   MAIN CONTENT
=========================================== */

.employer-main {
    border-left: 3px solid greenyellow;
    padding-left: 35px;
}

.employer-main p {
    margin: 0 0 30px;
    color: white;
    font-size: 18px;
    line-height: 1.95;
}

.employer-main p:last-child {
    margin-bottom: 0;
}

.employer-main strong {
    color: yellowgreen;
}

/* ==========================================
   STAT
=========================================== */

.employer-stat {
    padding: 35px;
    border-top: 2px solid greenyellow;
    border-bottom: 2px solid yellowgreen;
    text-align: center;
    transition: .4s ease;
}

.employer-stat:hover {
    transform: translateY(-7px);
    box-shadow:0 15px 35px rgba(173,255,47,.15);
}

.stat-number {
    display: block;
    color: greenyellow;
    font-size: 72px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 20px;
}

.stat-line {
    display: block;
    width: 55px;
    height: 3px;
    background: yellowgreen;
    margin: 0 auto 20px;
}

.employer-stat p {
    margin: 0;
    color: white;
    font-size: 14px;
    line-height: 1.8;
}

/* ==========================================
   HUMAN COMMUNICATION
=========================================== */

.human-communication {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: center;
    padding: 45px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

/* ==========================================
   ICON
=========================================== */

.human-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid greenyellow;
    border-radius: 50%;
    color: greenyellow;
    font-size: 35px;
    transition: .4s ease;
}

.human-communication:hover .human-icon {
    background: greenyellow;
    color: #000;
    transform: rotate(90deg);
}

/* ==========================================
   HUMAN TITLE
=========================================== */

.human-content h3 {
    margin: 0 0 25px;
    color: whitesmoke;
    font-size: 30px;
    line-height: 1.3;
}

.human-content h3 span {
    color: yellowgreen;
}

/* ==========================================
   HUMAN POINTS
=========================================== */

.human-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.human-points p {
    margin: 0;
    color: white;
    font-size: 16px;
    line-height: 1.8;
    padding-left: 20px;
    border-left: 2px solid greenyellow;
}

/* ==========================================
   TABLET
=========================================== */

@media (max-width: 992px) {

    .employer-needs-section {
        padding: 90px 0;
    }

    .employer-heading h2 {
        font-size: 46px;
    }


    .employer-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .employer-main {
        max-width: 800px;
        margin: auto;
    }

    .employer-stat {
        max-width: 500px;
        width: 100%;
        margin: auto;
        box-sizing: border-box;
    }

}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 768px) {

    .employer-needs-section {
        padding: 75px 0;
    }

    .employer-needs-container {
        width: 88%;
    }

    .employer-heading {
        margin-bottom: 50px;
    }

    .employer-heading h2 {
        font-size: 38px;
    }

    .employer-main {
        padding-left: 22px;
    }

    .employer-main p {
        font-size: 16px;
        line-height: 1.8;
    }

    .stat-number {
        font-size: 58px;
    }

    .human-communication {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 35px 0;
    }

    .human-icon {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .human-content h3 {
        font-size: 25px;
    }

    .human-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .human-points p {
        font-size: 15px;
    }

}

/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 480px) {
    .employer-needs-section {
        padding: 60px 0;
    }

    .employer-needs-container {
        width: 90%;
    }

    .employer-label {
        font-size: 9px;
        padding: 8px 15px;
    }

    .employer-heading h2 {
        font-size: 30px;
    }

    .employer-main {
        padding-left: 17px;
        border-left-width: 2px;
    }

    .employer-main p {
        font-size: 14px;
        line-height: 1.75;
    }

    .employer-stat {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 50px;
    }

    .employer-stat p {
        font-size: 13px;
    }

    .human-communication {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .human-icon {
        width: 48px;
        height: 48px;
        font-size: 23px;
    }

    .human-content h3 {
        font-size: 22px;
    }

    .human-points p {
        font-size: 14px;
        padding-left: 15px;
    }
}

/* ==========================================
   REDUCED MOTION
=========================================== */

@media (prefers-reduced-motion: reduce) {

    .employer-stat,
    .human-icon {
        transition: none;
    }

}


/* ==========================================
   SECTION 6 : CAREER AREAS
=========================================== */

.career-areas-section {
    width: 100%;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
=========================================== */

.career-areas-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ==========================================
   HEADING
=========================================== */

.career-areas-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.career-areas-label {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 23px;
}

.career-areas-heading h2 {
    margin: 0 0 25px;
    color: whitesmoke;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
}

.career-areas-heading h2 span {
    display: block;
    color: greenyellow;
}

.career-areas-heading p {
    max-width: 720px;
    margin: auto;
    color: white;
    font-size: 17px;
    line-height: 1.9;
}

/* ==========================================
   CAREER LIST
=========================================== */

.career-areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 70px;
    border-top: 1px solid rgba(255,255,255,.1);
}

/* ==========================================
   CAREER ITEM
=========================================== */

.career-area {
    min-height: 78px;
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    position: relative;
    transition: .35s ease;
    cursor: default;
}

/* ==========================================
   NUMBER
=========================================== */

.career-area-number {
    color: yellowgreen;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: .3s ease;
}

/* ==========================================
   CAREER NAME
=========================================== */

.career-area-name {
    color: white;
    font-size: 17px;
    font-weight: 500;
    transition: .3s ease;
}

/* ==========================================
   HOVER INDICATOR
=========================================== */

.career-area::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    width: 4px;
    height: 0;
    background: greenyellow;
    transform: translateY(-50%);
    border-radius: 10px;
    transition: .35s ease;
}

.career-area:hover {
    padding-left: 15px;
}

.career-area:hover::before {
    height: 35px;
}

.career-area:hover .career-area-number {
    color: greenyellow;
}

.career-area:hover .career-area-name {
    color: greenyellow;
}

/* ==========================================
   FOOTER
=========================================== */

.career-areas-footer {
    max-width: 800px;
    margin: 55px auto 0;
    text-align: center;
}

.career-footer-line {
    display: block;
    width: 65px;
    height: 3px;
    margin: 0 auto 22px;
    background: linear-gradient(
        90deg,
        greenyellow,
        yellowgreen
    );
    border-radius: 10px;
}

.career-areas-footer p {
    margin: 0;
    color: white;
    font-size: 16px;
    line-height: 1.8;
}

/* ==========================================
   TABLET
=========================================== */

@media (max-width: 992px) {

    .career-areas-section {
        padding: 90px 0;
    }

    .career-areas-heading h2 {
        font-size: 45px;
    }

    .career-areas-list {
        column-gap: 40px;
    }

    .career-area {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .career-area-name {
        font-size: 16px;
    }

}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 768px) {

    .career-areas-section {
        padding: 75px 0;
    }

    .career-areas-container {
        width: 88%;
    }

    .career-areas-heading {
        margin-bottom: 50px;
    }

    .career-areas-heading h2 {
        font-size: 37px;
    }

    .career-areas-heading p {
        font-size: 15px;
        line-height: 1.8;
    }

    .career-areas-list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .career-area {
        min-height: 68px;
        grid-template-columns: 45px 1fr;
    }

    .career-area-name {
        font-size: 15px;
    }


    .career-areas-footer {
        margin-top: 45px;
    }


    .career-areas-footer p {
        font-size: 15px;
    }

}

/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 480px) {

    .career-areas-section {
        padding: 60px 0;
    }


    .career-areas-container {
        width: 90%;
    }


    .career-areas-label {
        font-size: 9px;
        padding: 8px 15px;
    }

    .career-areas-heading h2 {
        font-size: 29px;
        line-height: 1.3;
    }

    .career-areas-heading p {
        font-size: 14px;
        line-height: 1.75;
    }

    .career-area {
        min-height: 62px;
        grid-template-columns: 38px 1fr;
        gap: 10px;
    }

    .career-area-number {
        font-size: 10px;
    }

    .career-area-name {
        font-size: 14px;
        line-height: 1.5;
    }

    .career-area:hover {
        padding-left: 8px;
    }

    .career-area:hover::before {
        height: 28px;
    }

    .career-areas-footer p {
        font-size: 13px;
        line-height: 1.75;
    }

}

/* ==========================================
   REDUCED MOTION
=========================================== */

@media (prefers-reduced-motion: reduce) {

    .career-area {
        transition: none;
    }

    .career-area::before {
        transition: none;
    }

}

/* ==========================================
   SECTION 7 : WHY NXTGENBUDDY ORBIT DESIGN
=========================================== */

/* .why-nxt-orbit {
    width: 100%;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
} */

/* ==========================================
   CONTAINER
=========================================== */

/* .why-nxt-orbit-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
} */

/* ==========================================
   HEADING
=========================================== */
/* 
.why-nxt-orbit-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 90px;
}

.why-nxt-orbit-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.why-nxt-orbit-heading h2 {
    margin: 0 0 22px;
    color: whitesmoke;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
}

.why-nxt-orbit-heading h2 span {
    color: greenyellow;
}


.why-nxt-orbit-heading p {
    margin: auto;
    max-width: 700px;
    color: white;
    font-size: 17px;
    line-height: 1.9;
} */

/* ==========================================
   ORBIT AREA
=========================================== */
/* 
.why-nxt-orbit-area {
    width: 100%;
    max-width: 1150px;
    height: 720px;
    margin: auto;
    position: relative;
} */

/* ==========================================
   ORBIT RINGS
=========================================== */
/* 
.orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-ring-one {
    width: 450px;
    height: 450px;
    border: 1px solid rgb(96, 126, 36);
}

.orbit-ring-two {
    width: 650px;
    height: 650px;
    border: 1px dashed rgba(154,205,50);
} */

/* ==========================================
   CENTER
=========================================== */
/* 
.orbit-center {
    width: 210px;
    height: 210px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid greenyellow;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 5;
    box-shadow:0 0 45px rgba(173,255,47)    ;
}

.orbit-center span {
    color: greenyellow;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.orbit-center strong {
    color: greenyellow;
    font-size: 25px;
    line-height: 1.2;
}

.orbit-center small {
    color: white;
    font-size: 11px;
    line-height: 1.5;
    margin-top: 10px;
} */

/* ==========================================
   ORBIT ITEMS
=========================================== */
/* 
.orbit-item {
    position: absolute;
    width: 230px;
    padding: 18px 20px;
    border-bottom: 2px solid rgba(173,255,47,.35);
    transition: .4s ease;
    z-index: 6;
    box-shadow: 0 10px 20px black;
}

.orbit-item:hover {
    border-bottom-color: greenyellow;
    transform: scale(1.04);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
} */

/* ==========================================
   NUMBER
=========================================== */
/* 
.orbit-number {
    display: block;
    color: greenyellow;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
} */


/* ==========================================
   ITEM HEADING
=========================================== */
/* 
.orbit-item h3 {
    margin: 0 0 9px;
    color: greenyellow;
    font-size: 17px;
    line-height: 1.4;
}

.orbit-item:hover h3 {
    color: greenyellow;
} */

/* ==========================================
   ITEM PARA
=========================================== */
/* 
.orbit-item p {
    margin: 0;
    color: white;
    font-size: 13px;
    line-height: 1.7;
} */

/* ==========================================
   ITEM POSITIONS
=========================================== */

/* Top Left */

/* .orbit-item-1 {
    top: 10px;
    left: 30px;
} */

/* Top Right */

/* .orbit-item-2 {
    top: 10px;
    right: 30px;
} */

/* Upper Left */

/* .orbit-item-3 {
    top: 205px;
    left: 0;
} */

/* Upper Right */

/* .orbit-item-4 {
    top: 185px;
    right: 0;
} */

/* Lower Left */
/* 
.orbit-item-5 {
    bottom: 165px;
    left: 0;
} */

/* Lower Right */

/* .orbit-item-6 {
    bottom: 220px;
    right: 0;
} */

/* Bottom Left */

/* .orbit-item-7 {
    bottom: 0px;
    left: 5%;
} */

/* Bottom Right */

/* .orbit-item-8 {
    bottom: 10px;
    right: 10px;
    width:270px;
} */

/* ==========================================
   TABLET
=========================================== */
/* 
@media (max-width: 1100px) {

    .why-nxt-orbit-heading h2 {
        font-size: 50px;
    }

    .why-nxt-orbit-area {
        height: 760px;
    }

    .orbit-ring-two {
        width: 580px;
        height: 580px;
    }

    .orbit-ring-one {
        width: 400px;
        height: 400px;
    }

    .orbit-item {
        width: 205px;
    }

} */

/* ==========================================
   TABLET / SMALL LAPTOP
=========================================== */
/* 
@media (max-width: 900px) {

    .why-nxt-orbit {
        padding: 90px 0;
    }

    .why-nxt-orbit-area {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .orbit-ring {
        display: none;
    }

    .orbit-center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        grid-column: 1 / -1;
        margin: 0 auto 20px;
    }

    .orbit-item {
        position: relative;
        width: auto;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        min-height: 170px;
        box-sizing: border-box;
    }
} */

/* ==========================================
   MOBILE
=========================================== */
/* 
@media (max-width: 650px) {

    .why-nxt-orbit {
        padding: 75px 0;
    }

    .why-nxt-orbit-container {
        width: 88%;
    }

    .why-nxt-orbit-heading {
        margin-bottom: 55px;
    }

    .why-nxt-orbit-heading h2 {
        font-size: 39px;
    }

    .why-nxt-orbit-heading p {
        font-size: 15px;
        line-height: 1.8;
    }

    .why-nxt-orbit-area {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .orbit-center {
        width: 170px;
        height: 170px;
        margin-bottom: 25px;
    }

    .orbit-center strong {
        font-size: 21px;
    }

    .orbit-item {
        min-height: auto;
        padding: 23px;
    }

    .orbit-item h3 {
        font-size: 17px;
    }

    .orbit-item p {
        font-size: 13px;
    }

} */

/* ==========================================
   SMALL MOBILE
=========================================== */
/* 
@media (max-width: 400px) {

    .why-nxt-orbit {
        padding: 60px 0;
    }


    .why-nxt-orbit-container {
        width: 90%;
    }


    .why-nxt-orbit-tag {
        font-size: 8px;
        padding: 8px 14px;
    }


    .why-nxt-orbit-heading h2 {
        font-size: 31px;
    }

    .why-nxt-orbit-heading p {
        font-size: 14px;
    }

    .orbit-center {
        width: 145px;
        height: 145px;
    }

    .orbit-center strong {
        font-size: 18px;
    }

    .orbit-center small {
        font-size: 10px;
    }

    .orbit-item {
        padding: 20px;
    }

    .orbit-item h3 {
        font-size: 16px;
    }

    .orbit-item p {
        font-size: 12px;
    }

} */

/* ==========================================
   REDUCED MOTION
=========================================== */
/* 
@media (prefers-reduced-motion: reduce) {

    .orbit-item {
        transition: none;
    }

} */

/* ==========================================
   SECTION 8 : THIS PROGRAM IS FOR
=========================================== */
/* 
.program-for-section {
    width: 100%;
    padding: 110px 0;
    overflow: hidden;
    position: relative;
} */

/* ==========================================
   CONTAINER
=========================================== */

/* .program-for-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
} */

/* ==========================================
   HEADING
=========================================== */
/* 
.program-for-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 75px;
}

.program-for-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.program-for-heading h2 {
    color: whitesmoke;
    font-size: 55px;
    line-height: 1.15;
    margin: 0 0 20px;
    font-weight: 800;
}

.program-for-heading h2 span {
    color: greenyellow;
}


.program-for-heading p {
    color: white;
    font-size: 17px;
    line-height: 1.8;
    margin: auto;
} */

/* ==========================================
   MAIN CONTENT
=========================================== */
/* 
.program-for-content {
    display: grid;
    grid-template-columns: 1fr 280px 1fr;
    gap: 50px;
    align-items: center;
} */

/* ==========================================
   LIST
=========================================== */

/* .program-for-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
} */

/* ==========================================
   LIST ITEM
=========================================== */
/* 
.program-for-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 17px 20px;
    border-bottom: 1px solid rgba(173,255,47,.18);
    transition: .35s ease;
}

.program-for-item:hover {
    padding-left: 28px;
    border-bottom-color: greenyellow;
}

.program-for-item span {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid greenyellow;
    color: greenyellow;
    font-size: 11px;
    font-weight: 800;
}

.program-for-item p {
    margin: 0;
    color: white;
    font-size: 16px;
    line-height: 1.5;
}

.program-for-item:hover p {
    color: greenyellow;
} */

/* ==========================================
   CENTER
=========================================== */
/* 
.program-for-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-for-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 2px solid greenyellow;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    box-shadow:
        0 0 0 12px rgb(56, 80, 20),
        0 20px 50px rgba(0,0,0,.3);
    transition: .4s ease;
    margin-top: 40px;
}

.program-for-circle:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 0 18px rgba(173,255,47,.05),
        0 20px 60px rgba(173,255,47,.12);
}

.program-for-circle i {
    font-size: 40px;
    color: greenyellow;
    margin-bottom: 18px;
}

.program-for-circle strong {
    color: #fff;
    font-size: 22px;
    line-height: 1.3;
}

.program-for-circle strong span {
    display: block;
    color: yellowgreen;
}

.program-for-circle small {
    color: white;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 12px;
    max-width: 180px;
} */

/* ==========================================
   LARGE TABLET
=========================================== */
/* 
@media (max-width: 1050px) {

    .program-for-content {
        grid-template-columns: 1fr 230px 1fr;
        gap: 25px;
    }

    .program-for-circle {
        width: 220px;
        height: 220px;
    }

    .program-for-item {
        padding: 15px;
    }

} */

/* ==========================================
   TABLET
=========================================== */
/* 
@media (max-width: 850px) {

    .program-for-section {
        padding: 90px 0;
    }

    .program-for-heading h2 {
        font-size: 45px;
    }

    .program-for-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .program-for-center {
        grid-column: 1 / -1;
        grid-row: 1;
        margin-bottom: 15px;
    }

    .program-for-list {
        grid-row: 2;
    }

    .program-for-circle {
        width: 230px;
        height: 230px;
    }

} */

/* ==========================================
   MOBILE
=========================================== */
/* 
@media (max-width: 650px) {

    .program-for-section {
        padding: 70px 0;
    }

    .program-for-container {
        width: 88%;
    }

    .program-for-heading {
        margin-bottom: 50px;
    }

    .program-for-heading h2 {
        font-size: 38px;
    }

    .program-for-heading p {
        font-size: 15px;
    }

    .program-for-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .program-for-center {
        grid-column: auto;
        grid-row: auto;
        margin-bottom: 25px;
    }

    .program-for-list {
        grid-row: auto;
    }

    .program-for-circle {
        width: 200px;
        height: 200px;
    }

    .program-for-circle i {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .program-for-circle strong {
        font-size: 19px;
    }

    .program-for-item {
        padding: 15px 8px;
    }

    .program-for-item:hover {
        padding-left: 15px;
    }

    .program-for-item p {
        font-size: 15px;
    }

    .program-for-item span {
        width: 34px;
        height: 34px;
        font-size: 10px;
    }

} */

/* ==========================================
   SMALL MOBILE
=========================================== */
/* 
@media (max-width: 400px) {

    .program-for-heading h2 {
        font-size: 31px;
    }

    .program-for-heading p {
        font-size: 14px;
    }

    .program-for-circle {
        width: 175px;
        height: 175px;
        padding: 20px;
    }

    .program-for-circle i {
        font-size: 27px;
    }

    .program-for-circle strong {
        font-size: 17px;
    }

    .program-for-circle small {
        font-size: 10px;
    }

    .program-for-item p {
        font-size: 14px;
    }

} */


/*==========================================
      SECTION 15 : FINAL CTA
==========================================*/

.final-cta{
    padding:50px 20px;
    background:yellowgreen;
    color:black;
    text-align:center;
}

.final-cta-container{
    width:90%;
    max-width:900px;
    margin:auto;
}

.final-cta h2{
    font-size:46px;
    margin:20px 0;
    line-height:1.3;
    color:black;
}

.final-cta p{
    font-size:18px;
    color:black;
    line-height:1.8;
    max-width:750px;
    margin:0 auto 45px;
    /* text-align:justify; */
}

.final-cta .section-tag{
    display:inline-block;
    background:white;
    color:black;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
    text-align: center;
}

/* Buttons */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* Secondary */

.cta-primary, .cta-secondary{
    border:2px solid #fff;
    color:black;
    padding:16px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.cta-primary:hover, .cta-secondary:hover{
    background:#fff;
    color:#0F172A;
}

/* Icons */

.cta-buttons i{
    margin-right:8px;
}

/*=========================
      Tablet
=========================*/

@media(max-width:768px){

.final-cta{
padding:80px 20px;
}

.final-cta h2{
font-size:36px;
}

.final-cta p{
font-size:16px;
}

.cta-buttons{
flex-direction:column;
align-items:center;
}

.cta-primary,
.cta-whatsapp,
.cta-secondary{

width:100%;
max-width:350px;
text-align:center;
}
}

/*=========================
      Mobile
=========================*/

@media(max-width:480px){

.final-cta h2{
font-size:30px;
}

.final-cta p{
font-size:15px;
line-height:1.7;
}
}