/* =========================================================
   SELİN ATEŞ
   STYLE.CSS
========================================================= */

:root {

    --black: #050505;
    --black-2: #090909;
    --white: #f4f4f4;
    --gray: #777;
    --gray-dark: #303030;
    --red: #ff2018;
    --red-dark: #9d0905;

    --display:
        "Oswald",
        Arial Narrow,
        sans-serif;

    --body:
        "Inter",
        Arial,
        sans-serif;

    --mono:
        "DM Mono",
        monospace;

}


* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background:
        var(--black);

    color:
        var(--white);

    font-family:
        var(--body);

    overflow-x: hidden;

}


body.menu-open {

    overflow: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font: inherit;

}


img {

    max-width: 100%;

    display: block;

}


/* =========================================================
   CURSOR
========================================================= */

.cursor {

    position: fixed;

    width: 8px;
    height: 8px;

    background:
        var(--red);

    border-radius:
        50%;

    pointer-events:
        none;

    z-index:
        9999;

    transform:
        translate(-50%, -50%);

    box-shadow:
        0 0 10px var(--red),
        0 0 25px rgba(255,32,24,.5);

}


.cursor-glow {

    position: fixed;

    width: 80px;
    height: 80px;

    border:
        1px solid
        rgba(255,32,24,.18);

    border-radius:
        50%;

    pointer-events:
        none;

    z-index:
        9998;

    transform:
        translate(-50%, -50%);

}


/* =========================================================
   HEADER
========================================================= */

.header {

    position:
        fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 80px;

    padding:
        0 45px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    z-index:
        1000;

    background:
        linear-gradient(
            to bottom,
            rgba(5,5,5,.85),
            transparent
        );

}


.logo {

    position:
        relative;

    font-family:
        var(--display);

    font-size:
        20px;

    letter-spacing:
        .06em;

}


.logo span {

    position:
        absolute;

    width: 5px;
    height: 5px;

    background:
        var(--red);

    border-radius:
        50%;

    right:
        -10px;

    top:
        4px;

    box-shadow:
        0 0 8px var(--red);

}


.desktop-nav {

    display:
        flex;

    gap:
        25px;

}


.desktop-nav a {

    position:
        relative;

    font-family:
        var(--mono);

    font-size:
        8px;

    letter-spacing:
        .08em;

    color:
        #666;

    transition:
        color .3s ease;

}


.desktop-nav a:hover,
.desktop-nav a.active {

    color:
        #fff;

}


.desktop-nav a.active::after {

    content:
        "";

    position:
        absolute;

    left: 0;
    right: 0;

    bottom:
        -8px;

    height:
        1px;

    background:
        var(--red);

    box-shadow:
        0 0 7px var(--red);

}


.header-right {

    display:
        flex;

    align-items:
        center;

    gap:
        25px;

}


.language {

    display:
        flex;

    gap:
        7px;

    align-items:
        center;

    font-family:
        var(--mono);

    font-size:
        8px;

    color:
        #555;

}


.language button {

    border: 0;

    background:
        transparent;

    color:
        #555;

    cursor:
        pointer;

}


.language button.active {

    color:
        #fff;

}


.menu-button {

    display:
        none;

    width:
        32px;

    border:
        0;

    background:
        transparent;

    cursor:
        pointer;

}


.menu-button span {

    display:
        block;

    height:
        1px;

    background:
        #fff;

    margin:
        6px 0;

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    position:
        fixed;

    inset:
        0;

    background:
        #050505;

    z-index:
        900;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    opacity:
        0;

    visibility:
        hidden;

    transition:
        opacity .4s ease,
        visibility .4s ease;

}


.mobile-menu.active {

    opacity:
        1;

    visibility:
        visible;

}


.mobile-menu nav {

    display:
        flex;

    flex-direction:
        column;

    gap:
        18px;

    text-align:
        center;

}


.mobile-menu nav a {

    font-family:
        var(--display);

    font-size:
        36px;

    color:
        #555;

}


.mobile-menu nav a:hover {

    color:
        var(--red);

}


.mobile-menu-bg {

    position:
        absolute;

    font-family:
        var(--display);

    font-size:
        40vw;

    color:
        rgba(255,255,255,.015);

    pointer-events:
        none;

}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {

    position:
        relative;

    width:
        100%;

    min-height:
        100vh;

    overflow:
        hidden;

}


.section-number {

    position:
        absolute;

    top:
        110px;

    left:
        45px;

    font-family:
        var(--mono);

    font-size:
        10px;

    color:
        #555;

}


.section-label {

    position:
        absolute;

    top:
        110px;

    left:
        95px;

    font-family:
        var(--mono);

    font-size:
        8px;

    letter-spacing:
        .16em;

}


.section-label::before {

    content:
        "";

    display:
        inline-block;

    width:
        25px;

    height:
        1px;

    background:
        var(--red);

    margin:
        0 15px 3px 0;

    box-shadow:
        0 0 8px var(--red);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height:
        100vh;

    background:
        #050505;

}


.hero-grid {

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size:
        80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

}


.hero-info {

    position:
        absolute;

    top:
        28%;

    left:
        45px;

    display:
        flex;

    gap:
        12px;

    font-family:
        var(--mono);

    font-size:
        8px;

    line-height:
        1.7;

    color:
        #777;

}


.red-line {

    width:
        25px;

    height:
        1px;

    margin-top:
        6px;

    background:
        var(--red);

    box-shadow:
        0 0 10px var(--red);

}


.hero-location {

    position:
        absolute;

    top:
        28%;

    right:
        45px;

    font-family:
        var(--mono);

    font-size:
        8px;

    line-height:
        1.7;

    text-align:
        right;

    color:
        #555;

}


.hero-image {

    position:
        absolute;

    left:
        50%;

    top:
        48%;

    width:
        min(38vw, 500px);

    transform:
        translate(-50%, -50%);

    z-index:
        2;

}


.hero-image::after {

    content:
        "";

    position:
        absolute;

    inset:
        10%;

    background:
        var(--red);

    filter:
        blur(80px);

    opacity:
        .12;

    z-index:
        -1;

}


.hero-image img {

    width:
        100%;

    filter:
        grayscale(100%)
        contrast(1.1);

}


.hero-name {

    position:
        absolute;

    left:
        50%;

    top:
        48%;

    width:
        100%;

    transform:
        translate(-50%, -50%);

    z-index:
        5;

    pointer-events:
        none;

}


.hero-name span {

    display:
        block;

    font-family:
        var(--display);

    font-size:
        clamp(90px, 14vw, 220px);

    line-height:
        .72;

    font-weight:
        600;

    letter-spacing:
        -.035em;

    color:
        #fff;

}


.hero-name span:last-child {

    text-align:
        right;

    padding-right:
        8%;

}


.signature {

    position:
        absolute;

    right:
        18%;

    bottom:
        25%;

    font-family:
        cursive;

    font-size:
        30px;

    color:
        #ddd;

    transform:
        rotate(-10deg);

    z-index:
        8;

}


.hero-description {

    position:
        absolute;

    left:
        45px;

    bottom:
        18%;

    font-family:
        var(--display);

    font-size:
        clamp(24px, 3vw, 48px);

    line-height:
        .95;

    color:
        #ddd;

}


.hero-specialties {

    position:
        absolute;

    right:
        45px;

    bottom:
        18%;

    font-family:
        var(--mono);

    font-size:
        8px;

    line-height:
        1.8;

    text-align:
        right;

    color:
        #555;

}


.hero-scroll {

    position:
        absolute;

    left:
        50%;

    bottom:
        25px;

    transform:
        translateX(-50%);

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        10px;

    font-family:
        var(--mono);

    font-size:
        7px;

    color:
        #555;

}


.scroll-line {

    width:
        1px;

    height:
        35px;

    background:
        #333;

    overflow:
        hidden;

}


.scroll-line i {

    display:
        block;

    width:
        100%;

    height:
        50%;

    background:
        var(--red);

    animation:
        scrollLine 1.5s infinite;

}


@keyframes scrollLine {

    0% {
        transform:
            translateY(-100%);
    }

    100% {
        transform:
            translateY(200%);
    }

}


.hero-counter {

    position:
        absolute;

    right:
        45px;

    bottom:
        25px;

    font-family:
        var(--mono);

    font-size:
        7px;

    color:
        #444;

}


/* =========================================================
   ABOUT
========================================================= */

.about {

    padding:
        160px 45px;

    background:
        #080808;

}


.about-content {

    max-width:
        1300px;

    margin:
        auto;

    min-height:
        70vh;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    align-items:
        center;

    gap:
        100px;

}


.about-copy h2 {

    font-family:
        var(--display);

    font-size:
        clamp(45px, 6vw, 90px);

    line-height:
        .9;

    font-weight:
        500;

}


.about-copy h2 span {

    color:
        var(--red);

}


.about-copy p {

    max-width:
        430px;

    margin-top:
        40px;

    font-size:
        14px;

    line-height:
        1.8;

    color:
        #888;

}


.small-link {

    display:
        inline-flex;

    margin-top:
        30px;

    gap:
        15px;

    font-family:
        var(--mono);

    font-size:
        8px;

    color:
        #aaa;

}


.about-image {

    position:
        relative;

}


.about-image img {

    width:
        100%;

    filter:
        grayscale(100%);

}


.image-red-glow {

    position:
        absolute;

    width:
        180px;

    height:
        180px;

    right:
        0;

    bottom:
        0;

    background:
        var(--red);

    filter:
        blur(100px);

    opacity:
        .15;

}


/* =========================================================
   PROJECTS
========================================================= */

.featured {

    padding:
        160px 45px;

}


.all-projects {

    position:
        absolute;

    top:
        110px;

    right:
        45px;

    font-family:
        var(--mono);

    font-size:
        8px;

    color:
        #777;

}


.project-grid {

    max-width:
        1300px;

    margin:
        120px auto 0;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        20px;

}


.project-card {

    position:
        relative;

    min-height:
        450px;

    background:
        #0b0b0b;

    border:
        1px solid #1c1c1c;

    padding:
        25px;

    overflow:
        hidden;

    transition:
        transform .5s ease,
        border-color .5s ease;

}


.project-card:hover {

    transform:
        translateY(-10px);

    border-color:
        #333;

}


.project-number {

    position:
        absolute;

    top:
        20px;

    left:
        20px;

    font-family:
        var(--mono);

    font-size:
        8px;

    color:
        #555;

}


.project-placeholder {

    height:
        310px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #111;

}


.project-placeholder span {

    font-family:
        var(--display);

    font-size:
        40px;

    color:
        #222;

}


.project-info {

    margin-top:
        20px;

}


.project-info h3 {

    font-family:
        var(--display);

    font-size:
        22px;

}


.project-info p {

    margin-top:
        5px;

    font-family:
        var(--mono);

    font-size:
        7px;

    color:
        #555;

}


.project-arrow {

    position:
        absolute;

    right:
        20px;

    bottom:
        20px;

    color:
        var(--red);

}


/* =========================================================
   EXPERIENCE
   SCROLL MOTION
========================================================= */

.sa-experience {

    position:
        relative;

    min-height:
        100vh;

    background:
        #050505;

    overflow:
        hidden;

    padding:
        0 45px;

}


.sa-exp-header {

    position:
        absolute;

    top:
        110px;

    left:
        45px;

    z-index:
        20;

    display:
        flex;

    align-items:
        center;

    gap:
        20px;

}


.sa-exp-number {

    font-family:
        var(--mono);

    font-size:
        10px;

    color:
        #555;

}


.sa-exp-label {

    font-family:
        var(--mono);

    font-size:
        8px;

    letter-spacing:
        .16em;

}


.sa-exp-label::before {

    content:
        "";

    display:
        inline-block;

    width:
        25px;

    height:
        1px;

    margin:
        0 15px 3px 0;

    background:
        var(--red);

    box-shadow:
        0 0 8px var(--red);

}


/* =========================================================
   BIG NUMBER
========================================================= */

.sa-exp-bg-number {

    position:
        absolute;

    z-index:
        1;

    left:
        50%;

    top:
        53%;

    transform:
        translate(-50%, -50%);

    font-family:
        var(--display);

    font-size:
        min(52vw, 650px);

    font-weight:
        700;

    line-height:
        .7;

    color:
        rgba(255,255,255,.012);

    -webkit-text-stroke:
        1px rgba(255,255,255,.05);

    pointer-events:
        none;

    user-select:
        none;

    transition:
        color .5s ease,
        transform .6s ease,
        opacity .25s ease;

}


.sa-experience:has(
    .sa-exp-card.sa-exp-active
) .sa-exp-bg-number {

    color:
        rgba(255,32,24,.025);

    -webkit-text-stroke:
        1px rgba(255,32,24,.12);

}


/* =========================================================
   STAGE
========================================================= */

.sa-exp-stage {

    position:
        absolute;

    left:
        45px;

    right:
        45px;

    top:
        50%;

    transform:
        translateY(-50%);

    z-index:
        10;

    display:
        grid;

    grid-template-columns:
        repeat(5, 1fr);

    border-top:
        1px solid #222;

    border-bottom:
        1px solid #222;

}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.sa-exp-card {

    position:
        relative;

    height:
        320px;

    padding:
        30px;

    border-right:
        1px solid #202020;

    cursor:
        pointer;

    opacity:
        .38;

    transform:
        scale(.96);

    transition:
        opacity .5s ease,
        transform .65s cubic-bezier(.16,1,.3,1),
        background .5s ease;

}


.sa-exp-card:last-child {

    border-right:
        0;

}


/* =========================================================
   ACTIVE
========================================================= */

.sa-exp-card.sa-exp-active {

    opacity:
        1;

    transform:
        translateY(-18px)
        scale(1.05);

    background:
        linear-gradient(
            180deg,
            rgba(255,32,24,.07),
            transparent
        );

    z-index:
        5;

}


/* =========================================================
   INDEX
========================================================= */

.sa-exp-index {

    display:
        block;

    font-family:
        var(--display);

    font-size:
        16px;

    color:
        #444;

    transition:
        color .4s ease,
        transform .4s ease;

}


.sa-exp-card.sa-exp-active
.sa-exp-index {

    color:
        var(--red);

    transform:
        translateX(5px);

}


/* =========================================================
   CONTENT
========================================================= */

.sa-exp-content {

    position:
        absolute;

    left:
        30px;

    right:
        20px;

    bottom:
        70px;

}


.sa-exp-content > span {

    display:
        block;

    font-family:
        var(--mono);

    font-size:
        7px;

    letter-spacing:
        .15em;

    color:
        #555;

    margin-bottom:
        12px;

}


.sa-exp-card.sa-exp-active
.sa-exp-content > span {

    color:
        var(--red);

}


.sa-exp-content h3 {

    font-family:
        var(--display);

    font-size:
        clamp(20px, 2vw, 30px);

    line-height:
        .95;

    font-weight:
        500;

    color:
        #777;

    transition:
        color .4s ease;

}


.sa-exp-card.sa-exp-active
.sa-exp-content h3 {

    color:
        #fff;

}


.sa-exp-content p {

    margin-top:
        12px;

    font-size:
        11px;

    color:
        #666;

}


.sa-exp-card.sa-exp-active
.sa-exp-content p {

    color:
        #ddd;

}


.sa-exp-content small {

    display:
        block;

    margin-top:
        8px;

    font-family:
        var(--mono);

    font-size:
        7px;

    line-height:
        1.5;

    color:
        #444;

}


/* =========================================================
   LIGHT
========================================================= */

.sa-exp-light {

    position:
        absolute;

    left:
        0;

    bottom:
        0;

    width:
        0;

    height:
        1px;

    background:
        var(--red);

    box-shadow:
        0 0 10px var(--red),
        0 0 25px var(--red);

    transition:
        width .6s cubic-bezier(.16,1,.3,1);

}


.sa-exp-card.sa-exp-active
.sa-exp-light {

    width:
        100%;

}


/* =========================================================
   DOT
========================================================= */

.sa-exp-dot {

    position:
        absolute;

    left:
        30px;

    bottom:
        -6px;

    width:
        10px;

    height:
        10px;

    border-radius:
        50%;

    background:
        #333;

    border:
        2px solid #050505;

    transition:
        background .4s ease,
        box-shadow .4s ease,
        transform .4s ease,
        width .4s ease,
        height .4s ease;

}


.sa-exp-card.sa-exp-active
.sa-exp-dot {

    width:
        15px;

    height:
        15px;

    transform:
        translate(-2px, 2px);

    background:
        var(--red);

    box-shadow:
        0 0 8px var(--red),
        0 0 20px rgba(255,32,24,.8),
        0 0 45px rgba(255,32,24,.35);

    animation:
        expPulse 1.4s infinite;

}


@keyframes expPulse {

    0%,
    100% {

        box-shadow:
            0 0 7px var(--red),
            0 0 18px rgba(255,32,24,.5);

    }

    50% {

        box-shadow:
            0 0 12px var(--red),
            0 0 30px rgba(255,32,24,.85),
            0 0 55px rgba(255,32,24,.3);

    }

}


/* =========================================================
   PROGRESS
========================================================= */

.sa-exp-progress {

    position:
        absolute;

    left:
        50%;

    bottom:
        80px;

    transform:
        translateX(-50%);

    z-index:
        30;

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    font-family:
        var(--mono);

    font-size:
        7px;

    color:
        #444;

}


.sa-exp-progress span.active {

    color:
        var(--red);

}


.sa-exp-progress i {

    width:
        30px;

    height:
        1px;

    background:
        #292929;

}


/* =========================================================
   FOOTER
========================================================= */

.sa-exp-footer {

    position:
        absolute;

    left:
        45px;

    right:
        45px;

    bottom:
        25px;

    display:
        flex;

    justify-content:
        space-between;

    font-family:
        var(--mono);

    font-size:
        7px;

    color:
        #444;

}


/* =========================================================
   EDUCATION
========================================================= */

.education {

    padding:
        160px 45px;

    background:
        #080808;

}


.education-content {

    max-width:
        1200px;

    margin:
        100px auto 0;

    position:
        relative;

}


.education-item {

    display:
        grid;

    grid-template-columns:
        80px 1fr;

    padding:
        40px 0;

    border-bottom:
        1px solid #222;

}


.education-item > span {

    font-family:
        var(--mono);

    font-size:
        9px;

    color:
        var(--red);

}


.education-item h3 {

    font-family:
        var(--display);

    font-size:
        clamp(25px, 4vw, 55px);

    font-weight:
        500;

}


.education-item p {

    margin-top:
        8px;

    font-family:
        var(--mono);

    font-size:
        9px;

    color:
        #666;

}


.education-shape {

    position:
        absolute;

    right:
        5%;

    top:
        20%;

    width:
        150px;

    height:
        150px;

    border:
        1px solid #333;

    transform:
        rotate(45deg);

}


.education-shape div {

    position:
        absolute;

    inset:
        25px;

    border:
        1px solid var(--red);

}


.education-shape div:last-child {

    inset:
        50px;

}


/* =========================================================
   SERVICES
========================================================= */

.services {

    padding:
        160px 45px;

}


.services-grid {

    max-width:
        1300px;

    margin:
        120px auto 0;

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.service-card {

    min-height:
        300px;

    padding:
        30px;

    border:
        1px solid #222;

    transition:
        background .4s ease,
        transform .4s ease;

}


.service-card:hover {

    background:
        #0c0c0c;

    transform:
        translateY(-8px);

}


.service-card span {

    font-family:
        var(--mono);

    font-size:
        9px;

    color:
        var(--red);

}


.service-card h3 {

    margin-top:
        70px;

    font-family:
        var(--display);

    font-size:
        25px;

}


.service-card p {

    margin-top:
        15px;

    font-size:
        11px;

    line-height:
        1.7;

    color:
        #666;

}


/* =========================================================
   PACKAGES
========================================================= */

.packages {

    padding:
        160px 45px;

    background:
        #080808;

}


.packages-grid {

    max-width:
        1300px;

    margin:
        120px auto 0;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        20px;

}


.package-card {

    min-height:
        360px;

    padding:
        35px;

    border:
        1px solid #222;

    transition:
        transform .4s ease,
        border-color .4s ease;

}


.package-card:hover {

    transform:
        translateY(-10px);

    border-color:
        #444;

}


.package-card > span {

    font-family:
        var(--mono);

    font-size:
        8px;

    color:
        var(--red);

}


.package-card h3 {

    margin-top:
        70px;

    font-family:
        var(--display);

    font-size:
        50px;

}


.package-card p {

    margin-top:
        15px;

    max-width:
        280px;

    font-size:
        11px;

    line-height:
        1.7;

    color:
        #666;

}


.package-card a {

    display:
        inline-block;

    margin-top:
        35px;

    font-family:
        var(--mono);

    font-size:
        8px;

    color:
        #aaa;

}


.featured-package {

    border-color:
        var(--red);

    box-shadow:
        inset 0 0 50px rgba(255,32,24,.025);

}


/* =========================================================
   CONTACT
========================================================= */

.contact {

    padding:
        160px 45px;

    min-height:
        90vh;

}


.contact-content {

    max-width:
        1300px;

    margin:
        120px auto 0;

    display:
        grid;

    grid-template-columns:
        2fr 1fr;

    gap:
        100px;

}


.contact-copy > span {

    font-family:
        var(--mono);

    font-size:
        8px;

    color:
        var(--red);

}


.contact-copy h2 {

    margin-top:
        25px;

    font-family:
        var(--display);

    font-size:
        clamp(70px, 11vw, 170px);

    line-height:
        .8;

}


.contact-copy strong {

    color:
        var(--red);

    font-weight:
        500;

}


.contact-button {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        25px;

    margin-top:
        50px;

    padding:
        15px 20px;

    border:
        1px solid #333;

    font-family:
        var(--mono);

    font-size:
        8px;

    transition:
        background .3s ease,
        border-color .3s ease;

}


.contact-button:hover {

    background:
        var(--red);

    border-color:
        var(--red);

}


.contact-side {

    align-self:
        end;

}


.contact-side p {

    max-width:
        280px;

    font-size:
        12px;

    line-height:
        1.8;

    color:
        #666;

}


.contact-side a {

    display:
        inline-block;

    margin-top:
        25px;

    color:
        #ddd;

    font-family:
        var(--mono);

    font-size:
        9px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding:
        25px 45px;

    border-top:
        1px solid #1c1c1c;

    display:
        flex;

    justify-content:
        space-between;

    font-family:
        var(--mono);

    font-size:
        7px;

    color:
        #444;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .desktop-nav {

        display:
            none;

    }


    .menu-button {

        display:
            block;

    }


    .hero-image {

        width:
            70vw;

    }


    .hero-name span {

        font-size:
            19vw;

    }


    .about-content {

        grid-template-columns:
            1fr;

        gap:
            50px;

    }


    .project-grid {

        grid-template-columns:
            1fr;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .packages-grid {

        grid-template-columns:
            1fr;

    }


    .contact-content {

        grid-template-columns:
            1fr;

    }

}


/* =========================================================
   MOBILE EXPERIENCE
========================================================= */

@media (max-width: 700px) {

    .header {

        padding:
            0 20px;

    }


    .section-number {

        left:
            20px;

    }


    .section-label {

        left:
            65px;

    }


    .hero-info {

        left:
            20px;

    }


    .hero-location {

        right:
            20px;

    }


    .hero-description {

        left:
            20px;

        bottom:
            15%;

    }


    .hero-specialties {

        right:
            20px;

    }


    .hero-image {

        width:
            85vw;

    }


    .about,
    .featured,
    .education,
    .services,
    .packages,
    .contact {

        padding-left:
            20px;

        padding-right:
            20px;

    }


    /* EXPERIENCE */

    .sa-experience {

        min-height:
            auto;

        padding:
            130px 20px 70px;

    }


    .sa-exp-header {

        left:
            20px;

        top:
            100px;

    }


    .sa-exp-bg-number {

        font-size:
            70vw;

    }


    .sa-exp-stage {

        position:
            relative;

        top:
            auto;

        left:
            auto;

        right:
            auto;

        transform:
            none;

        display:
            block;

        margin-top:
            100px;

        border-top:
            1px solid #222;

        border-bottom:
            0;

    }


    .sa-exp-card {

        height:
            200px;

        border-right:
            0;

        border-bottom:
            1px solid #222;

        padding:
            25px;

        opacity:
            .45;

    }


    .sa-exp-card.sa-exp-active {

        transform:
            translateX(8px)
            scale(1.02);

    }


    .sa-exp-content {

        left:
            25px;

        bottom:
            50px;

    }


    .sa-exp-dot {

        left:
            25px;

        bottom:
            -6px;

    }


    .sa-exp-progress {

        display:
            none;

    }


    .sa-exp-footer {

        position:
            relative;

        left:
            auto;

        right:
            auto;

        bottom:
            auto;

        margin-top:
            25px;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .education-shape {

        opacity:
            .3;

        transform:
            scale(.7)
            rotate(45deg);

    }


    .footer {

        padding:
            20px;

        flex-direction:
            column;

        gap:
            8px;

    }

}


/* =========================================================
   RED SELECTION
========================================================= */

::selection {

    background:
        var(--red);

    color:
        white;

}
