
/* =========================================================
   PAGE
========================================================= */

.internship-page {
    width: 100%;

    min-height: 100vh;

    padding:  20px 35px;

    background: #ffffff;

    box-sizing: border-box;
}


/* =========================================================
   HERO
========================================================= */

.internship-hero {
    position: relative;

    width: 100%;
    max-width: 1200px;

    min-height: 370px;

    margin: 0 auto;

    display: flex;

    overflow: hidden;

    background: #ffffff;
}


/* =========================================================
   HERO LEFT
========================================================= */

.hero-left {
    position: relative;

    z-index: 5;

    width: 47%;

    min-height: 370px;

    padding: 42px 25px 25px 32px;

    box-sizing: border-box;

    background: #ffffff;
}


/* =========================================================
   HERO LABEL
========================================================= */

.hero-label {
    margin-bottom: 10px;

    font-family: Arial, sans-serif;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 0.5px;

    color: #ed7b16;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-left h1 {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size:38px;

    line-height: 1.18;

    font-weight: 700;

    color: #101828;
}


.hero-left h1 span {
    color: #174bb5;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 445px;

    margin: 12px 0 20px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.55;

    font-weight: 400;

    color: #263247;
}


/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features {
    display: flex;

    align-items: flex-start;

    gap: 17px;
}


/* =========================================================
   FEATURE
========================================================= */

.hero-feature {
    width: 78px;

    min-width: 78px;

    text-align: center;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.25;

    font-weight: 600;

    color: #1b2638;
}


/* =========================================================
   FEATURE ICON
========================================================= */

.feature-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 5px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #f5f8ff;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.04);
}


.feature-icon i {
    font-size: 22px;
}


.feature-icon.blue i {
    color: #1553c5;
}


.feature-icon.orange i {
    color: #ed7b16;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {
    position: relative;

    width: 100%;

    min-height: 400px;

    

    overflow: hidden;

    z-index: 2;

    /*
       Creates the large curved left edge
    */
    clip-path: ellipse(
        100% 115%
        at 58% 50%
    );
}


.hero-image img {
    position: absolute;

    top: 0;
    right: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center center;
}


/* =========================================================
   INTERNSHIP PROGRAM
========================================================= */

.internship-program {
    width: 100%;

    max-width: 1080px;

    margin: 0 auto;

    padding: 12px 0 0;

    text-align: center;

    font-family: Arial, sans-serif;
}


/* =========================================================
   PROGRAM LABEL
========================================================= */

.program-label {
    display: block;

    margin-top: 0;

    font-size: 18px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.6px;

    color: #ed7b16;
}


/* =========================================================
   STAR
========================================================= */

.program-star {
    margin-top: 2px;

    font-size: 12px;

    line-height: 1;

    color: #ed7b16;
}


/* =========================================================
   PROGRAM TITLE
========================================================= */

.internship-program h2 {
    margin: 6px 0 3px;

    font-size: 26px;

    line-height: 1.25;

    font-weight: 700;

    color: #101828;
}


.internship-program h2 span {
    color: #174bb5;
}


/* =========================================================
   SUBTITLE
========================================================= */

.program-subtitle {
    margin: 0 0 15px;

    font-size: 14px;

    line-height: 1.4;

    color: #30394b;
}


.program-subtitle strong {
    color: #ed7b16;
}


/* =========================================================
   INTERNSHIP OPTIONS
========================================================= */

.internship-options {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    text-align: left;
}


/* =========================================================
   INTERNSHIP CARD
========================================================= */

.internship-card {
    min-height: 120px;

    padding: 15px 20px;

    display: flex;

    align-items: center;

    gap: 17px;

    border-radius: 9px;

    box-sizing: border-box;
}


/* =========================================================
   ONLINE CARD
========================================================= */

.online-card {
    border: 1px solid #d5e0f7;

    background:
        linear-gradient(
            110deg,
            #f6f9ff,
            #ffffff
        );
}


/* =========================================================
   OFFLINE CARD
========================================================= */

.offline-card {
    border: 1px solid #f3d9c4;

    background:
        linear-gradient(
            110deg,
            #fffaf5,
            #fff5ed
        );
}


/* =========================================================
   CARD ICON
========================================================= */

.card-icon {
    width: 82px;
    height: 82px;

    min-width: 82px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1.5px solid #8baeea;

    background: #ffffff;

    color: #1553c5;

    font-size: 32px;
}


.orange-icon {
    border-color: #f0bd8e;

    color: #ed6b0c;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.card-content {
    flex: 1;

    min-width: 0;
}


.card-content h3 {
    margin: 0 0 5px;

    font-size: 19px;

    line-height: 1.2;

    font-weight: 700;

    color: #1553c5;
}


.offline-card .card-content h3 {
    color: #ed6b0c;
}


.card-content p {
    margin: 0 0 7px;

    max-width: 430px;

    font-size: 12px;

    line-height: 1.45;

    color: #293348;
}


/* =========================================================
   PAID BADGE
========================================================= */

.paid-badge {
    display: inline-block;

    padding: 4px 11px;

    border-radius: 20px;

    font-size: 13px;

    line-height: 1.2;

    font-weight: 700;

    color: #ffffff;
}


.blue-badge {
    background: #1553c5;
}


.orange-badge {
    background: #ed6b0c;
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.internship-note {
    width: 100%;

    min-height: 43px;

    margin-top: 10px;

    padding: 7px 18px;

    display: flex;

    align-items: center;

    gap: 14px;

    box-sizing: border-box;

    border: 1px solid #e2e8f5;

    border-radius: 8px;

    background: #f8faff;

    text-align: left;
}


/* =========================================================
   NOTE ICON
========================================================= */

.note-icon {
    width: 38px;

    min-width: 38px;

    text-align: center;

    font-size: 27px;

    color: #1553c5;
}


/* =========================================================
   NOTE TEXT
========================================================= */

.internship-note p {
    margin: 0;

    font-size: 14px;

    line-height: 1.4;

    font-weight: 500;

    color: #263247;
}


/* =========================================================
   FOOTER SAFETY
========================================================= */

footer {
    position: relative !important;

    width: 100%;

    clear: both;

    z-index: 50;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .internship-page {
        padding-left: 15px;
        padding-right: 15px;
    }


    .internship-hero {
        min-height: 350px;
    }


    .hero-left {
        min-height: 350px;

        padding: 35px 20px 25px 25px;
    }


    .hero-image {
        min-height: 350px;
    }


    .hero-left h1 {
        font-size:14px;
    }


    .hero-description {
        font-size: 13px;
    }


    .hero-features {
        gap: 10px;
    }


    .internship-program h2 {
        font-size: 21px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .internship-page {
        padding: 0 12px 30px;
    }


    /* HERO BECOMES VERTICAL */

    .internship-hero {
        width: 100%;

        min-height: auto;

        display: flex;

        flex-direction: column;

        overflow: visible;
    }


    .hero-left {
        width: 100%;

        min-height: auto;

        padding: 30px 18px 25px;
    }


    .hero-left h1 {
        font-size: 27px;
    }


    .hero-description {
        max-width: 100%;

        font-size: 14px;
    }


    .hero-features {
        justify-content: space-between;

        gap: 5px;
    }


    .hero-feature {
        width: 68px;

        min-width: 68px;
    }


    .feature-icon {
        width: 55px;
        height: 55px;
    }


    /* IMAGE */

    .hero-image {
        width: 100%;

        height: 280px;

        min-height: 280px;

        margin-left: 0;

        clip-path: none;
    }


    .hero-image img {
        position: absolute;

        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    /* PROGRAM */

    .internship-program {
        padding-top: 20px;
    }


    .internship-program h2 {
        font-size: 21px;

        line-height: 1.3;
    }


    /* CARDS */

    .internship-options {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .internship-card {
        min-height: 130px;

        padding: 15px;
    }


    .card-icon {
        width: 68px;
        height: 68px;

        min-width: 68px;

        font-size: 26px;
    }


    .card-content h3 {
        font-size: 17px;
    }


    .card-content p {
        font-size: 11px;
    }


    /* NOTE */

    .internship-note {
        align-items: flex-start;

        padding: 10px 12px;
    }


    .note-icon {
        width: 30px;

        min-width: 30px;

        font-size: 23px;
    }


    .internship-note p {
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .hero-left h1 {
        font-size: 24px;
    }


    .hero-description {
        font-size: 13px;
    }


    .hero-features {
        gap: 2px;
    }


    .hero-feature {
        width: 65px;

        min-width: 65px;

        font-size: 9px;
    }


    .feature-icon {
        width: 52px;
        height: 52px;
    }


    .hero-image {
        height: 240px;

        min-height: 240px;
    }


    .internship-program h2 {
        font-size: 19px;
    }


    .program-subtitle {
        font-size: 12px;
    }
}
/* =========================================================
   TRAINING PROGRAM SECTION
========================================================= */

.lakhsai-training-section {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 10px 40px 35px;

    box-sizing: border-box;

    background: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   TRAINING HEADING
========================================================= */

.training-heading {
    width: 100%;

    text-align: center;

    margin-bottom: 20px;
}


/* =========================================================
   ORANGE LABEL
========================================================= */

.training-label {
    font-size: 18px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.7px;

    color: #ed7b16;
}


/* =========================================================
   DIVIDER
========================================================= */

.training-divider,
.how-divider {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin: 4px auto 5px;
}


.training-divider span,
.how-divider span {
    width: 70px;

    height: 2px;

    background: #f0d3ad;
}


.training-divider i,
.how-divider i {
    font-size: 15px;

    color: #ed7b16;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.training-heading h2 {
    margin: 0;

    font-size: 32px;

    line-height: 1.25;

    font-weight: 700;

    color: #101828;
}


.training-heading h2 span {
    color: #174bb5;
}


/* =========================================================
   SUBTITLE
========================================================= */

.training-heading p {
    margin: 6px 0 0;

    font-size: 17px;

    line-height: 1.4;

    color: #273247;
}


/* =========================================================
   PROGRAM GRID
========================================================= */

.training-program-grid {
    width: 100%;

    max-width: 1370px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px 22px;
}


/* =========================================================
   PROGRAM CARD
========================================================= */

.training-program-card {
    min-height: 185px;

    padding: 14px 18px;

    display: flex;

    align-items: center;

    gap: 15px;

    box-sizing: border-box;

    border-radius: 13px;

    border: 1px solid;

    background: #ffffff;

    overflow: hidden;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.training-program-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07);
}


/* =========================================================
   CARD COLORS
========================================================= */

.php-card,
.python-card {
    border-color: #d7e1f4;

    background:
        linear-gradient(
            110deg,
            #f8faff,
            #ffffff
        );
}


.mobile-card {
    border-color: #f0dcca;

    background:
        linear-gradient(
            110deg,
            #fffaf6,
            #ffffff
        );
}


.marketing-card {
    border-color: #d7e7df;

    background:
        linear-gradient(
            110deg,
            #f9fdfb,
            #ffffff
        );
}


.mern-card {
    border-color: #ded8f1;

    background:
        linear-gradient(
            110deg,
            #faf9ff,
            #ffffff
        );
}


.analytics-card {
    border-color: #f1dfce;

    background:
        linear-gradient(
            110deg,
            #fffaf6,
            #ffffff
        );
}


/* =========================================================
   PROGRAM IMAGE
========================================================= */

.program-image {
    width: 180px;

    min-width: 180px;

    height: 145px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.program-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;
}


/* =========================================================
   PROGRAM CONTENT
========================================================= */

.program-content {
    flex: 1;

    min-width: 0;
}


.program-content h3 {
    margin: 0 0 8px;

    font-size:16px;

    line-height: 1.2;

    font-weight: 700;

    color: #174bb5;
}


.mobile-card .program-content h3,
.analytics-card .program-content h3 {
    color: #e26422;
}


.marketing-card .program-content h3 {
    color: #168c52;
}


.mern-card .program-content h3 {
    color: #5321b8;
}


.program-content p {
    margin: 0 0 10px;

    font-size: 14px;

    line-height: 1.48;

    color: #171d29;
}


/* =========================================================
   PAID INTERNSHIP
========================================================= */

.paid-internship {
    display: inline-block;

    padding: 7px 16px;

    border-radius: 20px;

    font-size: 13px;

    line-height: 1;

    font-weight: 700;

    color: #ffffff;

    white-space: nowrap;
}


.blue-pill {
    background: #1553c5;
}


.orange-pill {
    background: #ed6b0c;
}


.green-pill {
    background: #11934f;
}


.purple-pill {
    background: #5a1bc4;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-it-works {
    width: 100%;

    max-width: 1370px;

    margin: 26px auto 0;
}


/* =========================================================
   HOW HEADING
========================================================= */

.how-heading {
    text-align: center;

    margin-bottom: 10px;
}


.how-label {
    font-size: 18px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.6px;

    color: #ed7b16;
}


/* =========================================================
   STEPS CONTAINER
========================================================= */

.steps-container {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;
}


/* =========================================================
   PROCESS STEP
========================================================= */

.process-step {
    display: flex;

    align-items: center;

    gap: 15px;

    flex: 1;

    min-width: 0;
}


/* =========================================================
   PROCESS ICON
========================================================= */

.process-icon {
    width: 108px;

    min-width: 108px;

    height: 108px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 2px solid;

    font-size: 42px;
}


/* =========================================================
   PROCESS COLORS
========================================================= */

.blue-process {
    color: #1553c5;

    border-color: #b5ccef;

    background: #f9fbff;
}


.orange-process {
    color: #ed6b0c;

    border-color: #f3cfaa;

    background: #fffaf5;
}


.green-process {
    color: #159354;

    border-color: #bfe1ce;

    background: #f7fcf9;
}


.purple-process {
    color: #5721b8;

    border-color: #d2c2ed;

    background: #fbf9ff;
}


/* =========================================================
   PROCESS CONTENT
========================================================= */

.process-content {
    min-width: 0;
}


.process-content h3 {
    margin: 0 0 7px;

    font-size: 19px;

    line-height: 1.2;

    font-weight: 700;
}


.process-content p {
    margin: 0;

    font-size: 15px;

    line-height: 1.45;

    color: #293348;
}


/* =========================================================
   STEP COLORS
========================================================= */

.process-step:nth-child(1) h3 {
    color: #174bb5;
}


.process-step:nth-child(3) h3 {
    color: #e26422;
}


.process-step:nth-child(5) h3 {
    color: #159354;
}


.process-step:nth-child(7) h3 {
    color: #5721b8;
}


/* =========================================================
   ARROWS
========================================================= */

.process-arrow {
    width: 45px;

    min-width: 45px;

    text-align: center;

    font-size: 30px;

    color: #1553c5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .lakhsai-training-section {
        padding-left: 20px;
        padding-right: 20px;
    }


    .training-heading h2 {
        font-size: 28px;
    }


    .training-heading p {
        font-size: 15px;
    }


    .training-program-grid {
        gap: 14px;
    }


    .training-program-card {
        padding: 12px;
    }


    .program-image {
        width: 125px;

        min-width: 125px;

        height: 125px;
    }


    .program-content h3 {
        font-size: 18px;
    }


    .program-content p {
        font-size: 13px;
    }


    .paid-internship {
        font-size: 11px;

        padding: 6px 12px;
    }


    .process-icon {
        width: 80px;

        min-width: 80px;

        height: 80px;

        font-size: 30px;
    }


    .process-content h3 {
        font-size: 16px;
    }


    .process-content p {
        font-size: 12px;
    }


    .process-arrow {
        width: 30px;

        min-width: 30px;

        font-size: 23px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .lakhsai-training-section {
        padding: 25px 15px 35px;
    }


    .training-label {
        font-size: 14px;
    }


    .training-divider span,
    .how-divider span {
        width: 45px;
    }


    .training-heading h2 {
        font-size: 24px;

        line-height: 1.3;
    }


    .training-heading p {
        font-size: 13px;

        line-height: 1.5;
    }


    /* TWO COLUMNS ON TABLET / LARGE MOBILE */

    .training-program-grid {
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }


    .training-program-card {
        min-height: 145px;

        padding: 12px;

        gap: 8px;

        flex-direction: column;

        text-align: center;
    }


    .program-image {
        width: 110px;

        min-width: 110px;

        height: 90px;
    }


    .program-content h3 {
        font-size: 16px;

        margin-bottom: 5px;
    }


    .program-content p {
        font-size: 11px;

        line-height: 1.4;
    }


    .paid-internship {
        padding: 6px 10px;

        font-size: 10px;
    }


    /* HOW IT WORKS */

    .how-it-works {
        margin-top: 30px;
    }


    .how-label {
        font-size: 14px;
    }


    .steps-container {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 25px 15px;
    }


    .process-step {
        gap: 10px;

        align-items: center;
    }


    .process-icon {
        width: 65px;

        min-width: 65px;

        height: 65px;

        font-size: 25px;
    }


    .process-content h3 {
        font-size: 14px;

        margin-bottom: 4px;
    }


    .process-content p {
        font-size: 10px;
    }


    .process-arrow {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .lakhsai-training-section {
        padding-left: 10px;
        padding-right: 10px;
    }


    .training-heading h2 {
        font-size: 21px;
    }


    .training-heading p {
        font-size: 12px;
    }


    /* ONE CARD PER ROW */

    .training-program-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .training-program-card {
        min-height: 150px;

        display: flex;

        flex-direction: row;

        text-align: left;

        padding: 12px 15px;
    }


    .program-image {
        width: 115px;

        min-width: 115px;

        height: 115px;
    }


    .program-content h3 {
        font-size: 17px;
    }


    .program-content p {
        font-size: 12px;
    }


    /* PROCESS */

    .steps-container {
        grid-template-columns: 1fr;
    }


    .process-step {
        width: 100%;
    }


    .process-icon {
        width: 75px;

        min-width: 75px;

        height: 75px;

        font-size: 28px;
    }


    .process-content h3 {
        font-size: 16px;
    }


    .process-content p {
        font-size: 12px;
    }
}

/* =========================================
   INTERNSHIP SECTION
========================================= */

.internship-section {
    width: 100%;
    padding: 15px 0 20px;
    background: #fff;
}


/* =========================================
   MAIN BANNER
========================================= */

.internship-banner {
    width: calc(100% - 40px);
    max-width: 1075px;
    height: 172px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #f7f9fe;

    border: 1px solid #dce5f1;
    border-radius: 13px;

    box-sizing: border-box;
}


/* =========================================
   LEFT SIDE
========================================= */

.internship-left {
    width: 54%;

    padding-left: 55px;

    box-sizing: border-box;

    position: relative;
    z-index: 2;
}

.internship-left h2 {
    margin: 0 0 6px;

    color: #101828;

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 26px;
    font-weight: 700;

    line-height: 1.25;

    letter-spacing: -0.4px;
}

.internship-left p {
    margin: 0 0 17px;

    color: #111827;

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.4;
}

.internship-left p span {
    color: #1555bd;
}


/* =========================================
   BUTTON
========================================= */

.internship-button {
    width: 268px;
    height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    background: #0d55c7;
    color: #fff;

    border-radius: 11px;

    text-decoration: none;

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 16px;
    font-weight: 600;

    box-sizing: border-box;

    transition: 0.2s ease;
}

.internship-button:hover {
    background: #0849b1;
}

.internship-button span {
    font-size: 22px;
    line-height: 1;

    margin-top: -2px;
}


/* =========================================
   RIGHT IMAGE
========================================= */

.internship-right {
    width: 46%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    box-sizing: border-box;
}

.internship-right img {
    display: block;

    width: 100%;
    max-width: 485px;

    height: auto;
    max-height: 170px;

    object-fit: contain;

    object-position: center;
}


/* =========================================
   URL BELOW BANNER
========================================= */

.internship-link {
    width: 495px;
    max-width: calc(100% - 40px);

    height: 43px;

    margin: 7px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    box-sizing: border-box;

    border: 2px solid #9eb5e1;
    border-radius: 25px;

    background: #fff;

    color: #124ba9;

    text-decoration: none;

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 18px;
    font-weight: 600;

    transition: 0.2s ease;
}

.internship-link:hover {
    border-color: #6d91d1;
    background: #f8faff;
}

.globe {
    width: 22px;
    height: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #164fae;

    font-size: 25px;
    line-height: 1;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .internship-banner {
        height: 165px;
    }

    .internship-left {
        width: 56%;
        padding-left: 32px;
    }

    .internship-right {
        width: 44%;
    }

    .internship-left h2 {
        font-size: 22px;
    }

    .internship-left p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .internship-button {
        width: 235px;
        height: 44px;

        font-size: 14px;
    }

    .internship-right img {
        max-width: 400px;
    }

    .internship-link {
        font-size: 15px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .internship-section {
        padding: 12px 0 18px;
    }

    .internship-banner {
        width: calc(100% - 24px);
        height: auto;
        min-height: 340px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        border-radius: 12px;
    }

    .internship-left {
        width: 100%;

        padding:
            25px
            22px
            10px;

        box-sizing: border-box;
    }

    .internship-left h2 {
        font-size:22px;
        line-height: 1.3;
    }

    .internship-left p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .internship-button {
        width: 100%;
        max-width: 270px;
        height: 44px;
    }

    .internship-right {
        width: 100%;
        height: 150px;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .internship-right img {
        width: 90%;
        max-width: 430px;
        max-height: 150px;
    }

    .internship-link {
        width: calc(100% - 24px);
        max-width: none;

        height: 42px;

        font-size: 12px;

        gap: 7px;
    }

    .globe {
        font-size: 21px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .internship-left h2 {
        font-size: 12px;
    }

    .internship-left p {
        font-size: 13px;
    }

    .internship-button {
        max-width: 100%;
    }

    .internship-right {
        height: 135px;
    }

    .internship-right img {
        max-height: 135px;
    }

    .internship-link {
        font-size: 10px;
    }
}
