* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}a {
    color: inherit;
    text-decoration: none;
}.dev-nav-study {
    flex: 1 0 auto;
}.container {
    width: 1167px;
    max-width: 100%;
    margin: auto;
}html,body {
    font-family: Arial, sans-serif;
    min-height: 100%;
    height: 100%;
    scroll-behavior: auto;
    color: #000000;
}header,footer {
    width: 100%;
}svg {
    height: 30px;
    width: 30px;
}.dev-framework-wrap {
    display: flex;
    height: 100%;
    flex-direction: column;
    min-height: 100%;
}.dev-lang-learn {
    flex: 0 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.dev-education-history {
    perspective: 1000px;
    background: linear-gradient(135deg, rgb(239,217,217) 0%, rgb(220,185,185,0.5) 100%);
    padding: 7rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}.dev-education-history::before {
    height: 70%;
    width: 60%;
    content: "";
    background: repeating-linear-gradient(
        45deg,
        rgb(197,154,154,0.5),
        rgb(197,154,154,0.5) 5px,
        transparent 5px,
        transparent 20px
    );
    position: absolute;
    z-index: 1;
    transform: rotateZ(-15deg) rotateX(45deg) rotateY(15deg);
    opacity: 0.2;
    top: -20%;
    right: -10%;
}.dev-education-history::after {
    border: 5px solid rgb(220,185,185,0.5);
    left: -5%;
    opacity: 0.3;
    height: 50%;
    content: "";
    transform: rotateZ(15deg) rotateX(30deg) rotateY(-10deg);
    z-index: 1;
    position: absolute;
    width: 40%;
    bottom: -15%;
}.dev-education-history .dev-learner-reflections {
    margin: 0 auto;
    position: relative;
    transform-style: preserve-3d;
    justify-content: center;
    align-items: center;
    display: flex;
    max-width: 1000px;
    z-index: 2;
}.dev-education-history .dev-pic-holder {
    transform: 
        translateZ(60px) 
        rotateY(15deg) 
        rotateX(5deg);
    position: absolute;
    border-radius: 10px;
    z-index: 3;
    box-shadow: 20px 20px 30px -10px rgba(0, 0, 0, 0.5);
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 80%, 
        80% 100%, 
        0% 100%
    );
    height: 380px;
    width: 300px;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    left: 15%;
}.dev-education-history .dev-pic-holder:hover {
    transform: 
        translateZ(80px) 
        rotateY(5deg) 
        rotateX(0deg);
    filter: brightness(1.1);
    box-shadow: 30px 30px 40px -10px rgba(0, 0, 0, 0.5);
}.dev-education-history .dev-exp-section {
    position: relative;
    margin-left: auto;
    box-shadow: 15px 15px 30px -5px rgba(0, 0, 0, 0.5);
    padding: 2.5rem 2.5rem 2.5rem 8rem;
    border-radius: 12px;
    background: #ffffff;
    transform: 
        translateZ(30px) 
        rotateY(-10deg) 
        rotateX(3deg);
    width: 550px;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}.dev-education-history .dev-exp-section::before {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    border-radius: 12px;
    transition: all 0.5s ease;
    background: rgb(220,185,185,0.5);
    z-index: -1;
    left: 15px;
    top: 15px;
    opacity: 0.3;
}.dev-education-history .dev-exp-section:hover {
    transform: 
        translateZ(40px) 
        rotateY(-5deg) 
        rotateX(0deg);
    box-shadow: 25px 25px 40px -5px rgba(0, 0, 0, 0.5);
}.dev-education-history .dev-exp-section:hover::before {
    top: 8px;
    opacity: 0.5;
    left: 8px;
}.dev-education-history .name {
    color: rgb(220,185,185);
    animation: slide-up 0.7s forwards 0.2s;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 0.7rem;
    font-size: 34px;
    z-index: 2;
    position: relative;
    font-weight: 700;
}.dev-education-history .dev-exp-section > div:nth-child(2) {
    animation: slide-up 0.7s forwards 0.4s;
    position: relative;
    opacity: 0;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 20px;
    color: rgb(197,154,154);
    transform: translateY(30px);
    z-index: 2;
}.dev-education-history .dev-past-experience {
    z-index: 2;
    position: relative;
    font-size: 14px;
    opacity: 0;
    font-style: italic;
    line-height: 1.7;
    transform: translateY(30px);
    font-weight: 400;
    color: #000000;
    animation: slide-up 0.7s forwards 0.6s;
}@keyframes slide-up {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dev-education-history .dev-past-experience::after {
    color: rgb(197,154,154,0.5);
    right: 0;
    opacity: 0.4;
    z-index: -1;
    position: absolute;
    font-size: 6rem;
    bottom: -50px;
    font-family: serif;
    content: "";
}@keyframes floating {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.dev-education-history .dev-learner-reflections:hover .dev-pic-holder {
    animation: floating 6s ease-in-out infinite;
}

@media (max-width: 1100px) {.dev-education-history .dev-learner-reflections {
    flex-direction: column;
    align-items: center;
}.dev-education-history .dev-pic-holder {
    height: 320px;
    width: 250px;
    position: relative;
    margin-bottom: 4rem;
    left: auto;
    transform: 
            translateZ(30px) 
            rotateY(0deg) 
            rotateX(0deg);
}.dev-education-history .dev-exp-section {
    margin-left: 0;
    transform: 
            translateZ(20px) 
            rotateY(0deg) 
            rotateX(0deg);
    width: 100%;
    padding: 2rem;
}}.dev-program-overview {
    position: relative;
    justify-content: center;
    display: flex;
    background: rgb(239,217,217);
    padding: 4rem 2rem;
    align-items: center;
    overflow: hidden;
    min-height: 100vh;
}.dev-program-overview .dev-program-flow {
    transform: translateY(-50%);
    border-bottom-left-radius: 150px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.08);
    position: absolute;
    border-top-left-radius: 150px;
    top: 50%;
    height: 70vh;
    z-index: 1;
    right: 0;
    overflow: hidden;
    width: 45%;
}.dev-program-overview .dev-program-flow::before {
    width: 100px;
    position: absolute;
    pointer-events: none;
    background: linear-gradient(90deg, rgb(239,217,217), transparent);
    z-index: 2;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
}.dev-program-overview .dev-learn-coding {
    flex-direction: column;
    width: 100%;
    display: flex;
    height: 500%;
    animation: carousel-vertical 25s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}.dev-program-overview .dev-program-flow:hover .dev-learn-coding {
    animation-play-state: paused;
}.dev-program-overview .dev-class-map {
    flex-shrink: 0;
    width: 100%;
    position: relative;
    height: 20%;
}.dev-program-overview .dev-class-map img {
    transition: transform 0.7s ease;
    object-fit: cover;
    height: 100%;
    object-position: center;
    width: 100%;
    filter: brightness(1.05) contrast(1.08);
}.dev-program-overview .dev-class-map:hover img {
    transform: scale(1.05);
}.dev-program-overview .container {
    display: flex;
    z-index: 2;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    justify-content: flex-start;
    position: relative;
}.dev-program-overview .dev-instructor-bio {
    padding-right: 10%;
    width: 60%;
}.dev-program-overview .dev-lesson-map {
    padding: 3.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    background: #ffffff;
    position: relative;
    border-radius: 14px;
}.dev-program-overview .dev-lesson-map::before {
    border-radius: 10px;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    position: absolute;
    content: "";
    border: 1px solid rgb(220,185,185,0.5);
    top: 1.5rem;
    pointer-events: none;
    left: 1.5rem;
    opacity: 0.3;
}.dev-program-overview .dev-lesson-map h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: rgb(220,185,185);
}.dev-program-overview .dev-lesson-map p {
    font-size: 12px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 2rem;
}.dev-program-overview .dev-lesson-map .dev-inquiry-help {
    text-decoration: none;
    overflow: hidden;
    display: inline-block;
    font-size: 20px;
    padding: 0.9rem 2.25rem;
    background: rgb(220,185,185);
    color: #ffffff;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    z-index: 1;
    transition: all 0.3s ease;
    font-weight: 600;
}.dev-program-overview .dev-lesson-map .dev-inquiry-help::before {
    height: 100%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    z-index: -1;
    width: 100%;
    top: 0;
    transform: translateX(-100%);
    left: 0;
    transition: transform 0.6s ease;
    position: absolute;
}.dev-program-overview .dev-lesson-map .dev-inquiry-help:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}.dev-program-overview .dev-lesson-map .dev-inquiry-help:hover::before {
    transform: translateX(100%);
}

@keyframes carousel-vertical {
    0%, 16% {
        transform: translateY(0);
    }
    20%, 36% {
        transform: translateY(-20%);
    }
    40%, 56% {
        transform: translateY(-40%);
    }
    60%, 76% {
        transform: translateY(-60%);
    }
    80%, 96% {
        transform: translateY(-80%);
    }
    100% {
        transform: translateY(0);
    }
}

@media (min-width: 768px) and (max-width: 991px) {.dev-program-overview {
    padding: 3rem 2rem;
}.dev-program-overview .dev-program-flow {
    border-top-left-radius: 100px;
    width: 40%;
    height: 60vh;
    border-bottom-left-radius: 100px;
}.dev-program-overview .dev-instructor-bio {
    width: 65%;
    padding-right: 5%;
}.dev-program-overview .dev-lesson-map {
    padding: 2.5rem;
}.dev-program-overview .dev-lesson-map::before {
    height: calc(100% - 2rem);
    top: 1rem;
    width: calc(100% - 2rem);
    left: 1rem;
}.dev-program-overview .dev-lesson-map h3 {
    font-size: calc(38px * 0.9);
}

}

@media (max-width: 767px) {.dev-program-overview {
    padding: 3rem 1.5rem;
    min-height: auto;
    display: block;
}.dev-program-overview .dev-program-flow {
    transform: none;
    position: relative;
    margin-bottom: 2rem;
    top: auto;
    height: 40vh;
    right: auto;
    width: 100%;
    border-bottom-right-radius: 50px;
    border-radius: 0;
    border-bottom-left-radius: 50px;
}.dev-program-overview .dev-program-flow::before {
    bottom: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(0deg, rgb(239,217,217), transparent);
    top: auto;
}.dev-program-overview .dev-learn-coding {
    width: 500%;
    flex-direction: row;
    height: 100%;
    animation: carousel-horizontal-mobile 20s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}.dev-program-overview .dev-class-map {
    width: 20%;
    height: 100%;
}.dev-program-overview .container {
    justify-content: center;
    width: 100%;
}.dev-program-overview .dev-instructor-bio {
    padding-right: 0;
    width: 100%;
    max-width: 500px;
}.dev-program-overview .dev-lesson-map {
    padding: 2rem 1.5rem;
}.dev-program-overview .dev-lesson-map::before {
    left: 0.75rem;
    width: calc(100% - 1.5rem);
    top: 0.75rem;
    height: calc(100% - 1.5rem);
}.dev-program-overview .dev-lesson-map h3 {
    font-size: 23px;
}.dev-program-overview .dev-lesson-map p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: calc(12px * 0.9);
}.dev-program-overview .dev-lesson-map .dev-inquiry-help {
    text-align: center;
    width: 100%;
    padding: 0.8rem 1.5rem;
}@keyframes carousel-horizontal-mobile {
        0%, 16% {
            transform: translateX(0);
        }
        20%, 36% {
            transform: translateX(-20%);
        }
        40%, 56% {
            transform: translateX(-40%);
        }
        60%, 76% {
            transform: translateX(-60%);
        }
        80%, 96% {
            transform: translateX(-80%);
        }
        100% {
            transform: translateX(0);
        }
    }
}.dev-cookieDisclosurePanel {
    background: rgb(239,217,217);
    z-index: 90;
    width: 100%;
    position: fixed;
    border-top: 2px solid rgb(220,185,185);
    bottom: 0;
}.dev-data-comply {
    display: flex;
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
}.dev-cookieDisclosurePanel h5 {
    font-size: 22px;
    margin-bottom: 6px;
}.dev-cookieDisclosurePanel p {
    font-size: 18px;
}.dev-cookie-data {
    margin-right: 10px;
    flex-shrink: 0;
}.dev-cookie-data svg, .dev-cookie-data svg path, .dev-cookie-data img {
    width: 100px;
    fill: rgb(220,185,185);
    height: 100px;
}.dev-cookie-explained {
    color: rgb(220,185,185);
    min-width: 120px;
    margin-left: 10px;
    font-size: 24px;
    line-height: 35px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    border-bottom: 2px solid rgb(220,185,185);
}.dev-cookieDisclosurePanel p a {
    text-decoration: none;
    color: rgb(220,185,185);
}#dev-cookie-box-window {
    display: none;
}#dev-cookie-box-window:checked ~ .dev-cookieDisclosurePanel {
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width: 1200px) {.dev-cookieDisclosurePanel {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.dev-cookie-data {
    display: none;
}.dev-data-comply {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}.dev-cookieDisclosurePanel h5 {
    text-align: center;
}.dev-cookieDisclosurePanel p {
    text-align: center;
}.dev-data-settings {
    margin-bottom: 20px;
}body .dev-framework-wrap .dev-cookie-explained {
    margin-left: 0;
}}
.dev-framework-wrap .dev-data-comply {
    justify-content: flex-end;
}.dev-framework-wrap .dev-cookie-explained {
    background: rgb(220,185,185);
    padding: 10px;
    color: #ffffff;
    font-size: 20px;
    margin-left: 30px;
}.dev-framework-wrap .dev-data-settings {
    text-align: right;
}
@media only screen and (max-width: 800px)  {.dev-framework-wrap .dev-cookie-explained {
    margin-bottom: 10px;
    margin-left: 0;
}}.dev-tyWrapper {
    position: relative;
    background: linear-gradient(135deg, rgb(220,185,185,0.5) 0%, rgb(239,217,217) 40%, rgb(197,154,154,0.5) 100%);
    overflow: hidden;
    padding: 6rem 0;
}.dev-tyWrapper::before {
    opacity: 0.5;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    z-index: 1;
    animation: pulse 8s infinite alternate ease-in-out;
    background: radial-gradient(circle at 75% 25%, rgb(255, 255, 255, 0.5) 0%, transparent 60%);
    left: 0;
    width: 100%;
}.dev-tyWrapper::after {
    height: 150%;
    width: 150%;
    opacity: 0.04;
    left: -25%;
    background: repeating-linear-gradient(45deg, rgb(220,185,185,0.5) 0px, transparent 2px, transparent 10px);
    position: absolute;
    transform: rotate(-5deg);
    top: -25%;
    z-index: 0;
    animation: patternShift 20s infinite linear;
    content: "";
}.dev-tyWrapper .container {
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1140px;
    position: relative;
}.dev-tyWrapper h2 {
    margin-bottom: 3rem;
    transform: translateY(20px);
    font-weight: 700;
    font-size: 29px;
    font-family: Arial, sans-serif;
    position: relative;
    text-align: center;
    color: #000000;
    opacity: 0;
    animation: fadeUpIn 0.8s 0.2s forwards ease-out;
}.dev-tyWrapper h2::after {
    width: 80px;
    left: 50%;
    animation: expandLine 1.2s 0.6s forwards cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    background: linear-gradient(90deg, rgb(220,185,185), rgb(197,154,154));
    bottom: -15px;
    transform: translateX(-50%) scaleX(0);
    content: "";
    height: 4px;
}.dev-tyWrapper .dev-instructor-bio {
    transform: perspective(1000px) rotateX(2deg);
    padding: 3rem;
    animation: fadeIn 1s 0.5s both ease-out;
    background: #ffffff;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.1);
    transform-origin: center top;
    transition: transform 0.5s;
    border-radius: 10px;
    position: relative;
}.dev-tyWrapper .dev-instructor-bio::before {
    opacity: 0.3;
    left: 50%;
    border-radius: 10px;
    position: absolute;
    background: linear-gradient(180deg, rgb(220,185,185,0.5) 0%, transparent 80%);
    top: -8px;
    width: 95%;
    content: "";
    height: 100%;
    filter: blur(12px);
    transform: translateX(-50%);
    z-index: -1;
}.dev-tyWrapper .dev-instructor-bio:hover {
    transform: perspective(1000px) rotateX(0deg);
}.dev-tyWrapper ul {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
}.dev-tyWrapper ul::before {
    position: absolute;
    left: -20px;
    background: linear-gradient(to bottom, rgb(220,185,185), rgb(197,154,154));
    top: 0;
    content: "";
    animation: growHeight 1.5s 1s forwards ease-in-out;
    width: 4px;
    height: 0;
}.dev-tyWrapper li {
    padding-left: 0;
    transform: translateX(20px);
    animation: slideIn 0.8s 0.8s forwards cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    position: relative;
}.dev-tyWrapper li::before {
    opacity: 0;
    background: linear-gradient(135deg, rgb(197,154,154) 0%, rgb(220,185,185) 100%);
    top: -5px;
    transform: scale(0);
    box-shadow: 0 5px 15px -5px rgb(197,154,154,0.5);
    animation: popIn 0.4s 1.2s forwards cubic-bezier(0.25, 1.8, 0.5, 1);
    border-radius: 50%;
    left: -40px;
    content: "";
    width: 32px;
    position: absolute;
    height: 32px;
}.dev-tyWrapper li span {
    opacity: 0;
    font-size: 16px;
    display: block;
    font-family: Arial, sans-serif;
    position: relative;
    animation: fadeIn 1s 1.2s forwards ease-out;
    line-height: 1.7;
    color: #000000;
    letter-spacing: 0.01em;
}.dev-tyWrapper li span::first-letter {
    font-weight: 700;
    color: rgb(220,185,185);
    font-size: 1.4em;
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        transform: translateX(-50%) scaleX(0);
    }
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes growHeight {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes patternShift {
    from {
        transform: rotate(-5deg) translateX(0);
    }
    to {
        transform: rotate(-5deg) translateX(100px);
    }
}

@media (max-width: 992px) {.dev-tyWrapper {
    padding: 5rem 0;
}.dev-tyWrapper h2 {
    margin-bottom: 2.5rem;
    font-size: calc(29px * 0.9);
}.dev-tyWrapper .dev-instructor-bio {
    padding: 2.5rem;
}
}

@media (max-width: 768px) {.dev-tyWrapper {
    padding: 4rem 0;
}.dev-tyWrapper h2 {
    line-height: 1.4;
    margin-bottom: 2rem;
    font-size: calc(29px * 0.8);
}.dev-tyWrapper .dev-instructor-bio {
    transform: perspective(1000px) rotateX(1deg);
    padding: 2rem;
}.dev-tyWrapper ul::before {
    left: -15px;
}.dev-tyWrapper li::before {
    left: -30px;
    width: 24px;
    height: 24px;
}
}

@media (max-width: 576px) {.dev-tyWrapper {
    padding: 3rem 0;
}.dev-tyWrapper h2 {
    margin-bottom: 1.5rem;
    font-size: calc(29px * 0.7);
}.dev-tyWrapper .dev-instructor-bio {
    padding: 1.5rem;
    transform: none;
}.dev-tyWrapper ul::before {
    left: -12px;
}.dev-tyWrapper li::before {
    width: 20px;
    left: -25px;
    top: -2px;
    height: 20px;
}.dev-tyWrapper li span {
    line-height: 1.6;
    font-size: calc(16px * 0.95);
}}.dev-company-info {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
}.dev-company-info::before {
    z-index: 1;
    top: 0;
    content: "";
    bottom: 0;
    right: 0;
    position: absolute;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
    left: 0;
}.dev-company-info::after {
    filter: blur(40px);
    width: 40%;
    background: rgb(220,185,185);
    content: "";
    z-index: 0;
    right: -5%;
    position: absolute;
    top: -5%;
    opacity: 0.1;
    height: 40%;
    transform: rotate(-15deg);
}.dev-company-info .container {
    padding: 0 20px;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}.dev-company-info .dev-description-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.98) 100%);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    padding: 50px 60px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    transform: translateY(0);
}.dev-company-info .dev-description-card::before {
    position: absolute;
    height: 100%;
    background: linear-gradient(to bottom, rgb(220,185,185) 0%, rgb(197,154,154) 100%);
    transform-origin: left center;
    left: 0;
    width: 6px;
    top: 0;
    content: "";
    transition: transform 0.5s ease;
}.dev-company-info .dev-description-card:hover {
    transform: translateY(-8px);
}.dev-company-info .dev-description-card:hover::before {
    transform: scaleY(1.05);
}.dev-company-info h1 {
    font-weight: 700;
    transform: translateX(0);
    color: #000000;
    font-size: 41px;
    position: relative;
    transition: transform 0.5s ease;
    margin-bottom: 40px;
}.dev-company-info h1::after {
    width: 80px;
    position: absolute;
    background: linear-gradient(90deg, rgb(220,185,185) 0%, rgb(197,154,154) 100%);
    height: 3px;
    bottom: -15px;
    transition: width 0.4s ease-out, transform 0.4s ease-out;
    transform-origin: left center;
    content: "";
    left: 0;
}.dev-company-info .dev-description-card:hover h1::after {
    transform: translateX(5px);
    width: 120px;
}.dev-company-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}.dev-company-info li {
    margin-bottom: 15px;
}.dev-company-info h4 {
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: rgb(220,185,185);
    font-size: calc(21px + 2px);
}.dev-company-info h4::before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    background: rgb(197,154,154);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    bottom: -8px;
    left: 0;
}.dev-company-info .dev-description-card:hover h4::before {
    width: 100%;
}.dev-company-info span {
    display: block;
    column-gap: 40px;
    line-height: 1.8;
    opacity: 0.9;
    column-count: 1;
    font-family: Arial, sans-serif;
    position: relative;
    transition: opacity 0.3s ease;
    font-size: 16px;
    color: #000000;
}.dev-company-info .dev-description-card:hover span {
    opacity: 1;
}

@media (min-width: 768px) {.dev-company-info span {
    column-count: 2;
}.dev-company-info .dev-description-card {
    margin-left: 5%;
    width: 90%;
}
}

@media (min-width: 992px) {.dev-company-info {
    padding: 150px 0;
}.dev-company-info .dev-description-card {
    width: 80%;
    padding: 60px 70px;
    margin-left: 10%;
}.dev-company-info span {
    column-count: 2;
}.dev-company-info h1 {
    margin-bottom: 50px;
}
}

@media (max-width: 767px) {.dev-company-info {
    padding: 80px 0;
}.dev-company-info .dev-description-card {
    padding: 30px 25px;
}.dev-company-info h1 {
    font-size: calc(41px - 4px);
    margin-bottom: 30px;
}.dev-company-info h1::after {
    width: 60px;
    bottom: -10px;
}.dev-company-info h4 {
    font-size: 21px;
    margin-bottom: 15px;
}.dev-company-info span {
    line-height: 1.6;
    font-size: calc(16px - 1px);
}
}

@media (max-width: 480px) {.dev-company-info {
    padding: 60px 0;
}.dev-company-info .dev-description-card {
    padding: 25px 20px;
}.dev-company-info h1 {
    font-size: calc(41px - 8px);
}.dev-company-info .dev-description-card::before {
    width: 4px;
}}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dev-company-info .dev-description-card {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}.dev-company-info h1 {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}.dev-company-info h4 {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}.dev-company-info span {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}footer {
    width: 100%;
    position: relative;
}.dev-lang-learn {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    position: relative;
    color: #000000;
    padding: 80px 0 30px;
}.dev-lang-learn::before {
    bottom: 0;
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    background-image: repeating-linear-gradient(
        to right,
        rgb(220,185,185),
        rgb(220,185,185) 10px,
        transparent 10px,
        transparent 20px
    );
    height: 1px;
}footer .dev-about-learn {
    position: relative;
    z-index: 1;
}footer .dev-edu-help {
    flex-wrap: wrap;
    margin-bottom: 70px;
    justify-content: space-between;
    height: 100px;
    overflow: hidden;
    display: flex;
    position: relative;
}footer .info_item {
    background-color: rgb(197,154,154);
    cursor: pointer;
    margin-right: 1px;
    height: 100px;
    position: relative;
    flex: 1;
    overflow: hidden;
    padding: 0 25px;
    align-items: center;
    display: flex;
    transition: all 0.5s ease;
    min-width: 250px;
}footer .info_item:last-child {
    margin-right: 0;
}footer .info_item:hover {
    flex: 1.5;
    background-color: rgb(220,185,185);
}footer .info_item::after {
    content: "";
    top: 0;
    height: 100%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    right: 0;
    width: 1px;
}footer .info_item:last-child::after {
    display: none;
}footer .info_item svg {
    fill: #ffffff;
    height: 24px;
    flex-shrink: 0;
    z-index: 2;
    margin-right: 15px;
    width: 24px;
    position: relative;
}footer .info_item p,
footer .info_item a {
    text-decoration: none;
    position: relative;
    z-index: 2;
    max-width: 100%;
    color: #ffffff;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 17px;
}footer .info_item::before {
    position: absolute;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    transition: opacity 0.5s ease;
    top: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    content: "";
}footer .info_item:hover::before {
    opacity: 1;
}footer .text_main_holder {
    flex-wrap: nowrap;
    padding: 0 20px;
    scroll-snap-type: x mandatory;
    margin: 0 -20px;
    overflow-x: auto;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    display: flex;
    scrollbar-width: none;
}footer .text_main_holder::-webkit-scrollbar {
    display: none;
}footer .dev-main-navbar, footer .dev-top-section, footer .subscribe_holder {
    flex: 0 0 100%;
    border-radius: 27px;
    padding: 30px;
    margin-right: 30px;
    transition: all 0.4s ease;
    scroll-snap-align: start;
    min-width: 280px;
    position: relative;
    height: 450px;
    max-width: 500px;
}footer .dev-main-navbar {
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;
    background-color: rgb(239,217,217);
    flex-direction: column;
}footer .dev-main-navbar svg {
    height: 50px;
    width: auto;
    margin-bottom: 30px;
}footer .dev-vr-labs {
    color: #000000;
    max-width: 300px;
    font-size: 13px;
    line-height: 1.6;
}footer .dev-top-section {
    overflow: hidden;
    justify-content: center;
    position: relative;
    color: #ffffff;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(197,154,154,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(220,185,185,0.5) 0%, transparent 40%);
    display: flex;
    background-color: rgb(197,154,154);
    flex-direction: column;
}footer .dev-top-section::after {
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 92%, rgba(255, 255, 255, 0.05) 93%, transparent 94%),
        linear-gradient(135deg, transparent 92%, rgba(255, 255, 255, 0.05) 93%, transparent 94%);
    pointer-events: none;
    background-size: 30px 30px;
    right: 0;
    opacity: 0.3;
    content: "";
    top: 0;
}footer .dev-top-section h5 {
    display: inline-block;
    letter-spacing: 1px;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
}footer .dev-top-section h5::after {
    background-color: rgb(220,185,185);
    width: 30px;
    bottom: -10px;
    position: absolute;
    content: "";
    height: 2px;
    left: 0;
}footer .dev-nav-tutor {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    max-height: 280px;
    height: auto;
}footer .dev-nav-tutor a {
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    transition: all 0.3s ease;
}footer .dev-nav-tutor a:hover {
    border-bottom-color: rgb(220,185,185);
    color: #ffffff;
    padding-left: 10px;
}footer .subscribe_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(220,185,185);
    color: #ffffff;
}footer .subscribe_holder h5 {
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}footer .subscribe_holder p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
}footer .input_holder {
    flex-direction: column;
    gap: 15px;
    display: flex;
}footer .input_holder input[type="email"] {
    color: #ffffff;
    font-size: 17px;
    border-radius: 10px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 15px;
}footer .input_holder input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .dev-sub-url {
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    background-color: rgb(197,154,154);
    font-size: 14px;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 15px;
    border: none;
    border-radius: 10px;
}footer .dev-sub-url:hover {
    background-color: rgb(197,154,154,0.5);
}footer .dev-footer-edu {
    position: relative;
    padding-top: 20px;
    margin-top: 40px;
}footer .dev-footer-edu::before {
    left: 20%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5), transparent);
    top: 0;
    content: "";
    position: absolute;
    right: 20%;
    height: 1px;
}footer .dev-scholar-cta {
    text-align: center;
    font-size: 13px;
    color: #000000;
}

@media (min-width: 992px) {footer .text_main_holder {
    flex-wrap: wrap;
    margin: 0;
    scroll-snap-type: none;
    padding: 0;
    overflow-x: visible;
    gap: 30px;
}footer .dev-main-navbar, footer .dev-top-section, footer .subscribe_holder {
    min-width: 0;
    flex: 1;
    margin-right: 0;
    height: 500px;
}
}

@media (max-width: 991px) {footer .info_item {
    min-width: 200px;
}footer .dev-main-navbar::before,
    footer .dev-top-section::before,
    footer .subscribe_holder::before {
    font-size: 3rem;
}
}

@media (max-width: 767px) {footer .dev-lang-learn {
    padding: 60px 0 30px;
}footer .dev-edu-help {
    height: auto;
    margin-bottom: 40px;
    flex-direction: column;
}footer .info_item {
    margin-bottom: 1px;
    margin-right: 0;
    width: 100%;
}footer .info_item:hover {
    padding-left: 35px;
    flex: 1;
}footer .dev-main-navbar, footer .dev-top-section, footer .subscribe_holder {
    min-height: 350px;
    padding: 25px 20px;
    height: auto;
}
}

@media (max-width: 576px) {footer .dev-lang-learn {
    padding: 50px 0 20px;
}footer .dev-main-navbar::before,
    footer .dev-top-section::before,
    footer .subscribe_holder::before {
    top: 15px;
    font-size: 2rem;
    left: 15px;
}footer .dev-nav-tutor {
    max-height: 220px;
    height: auto;
}footer .dev-main-navbar, footer .dev-top-section, footer .subscribe_holder {
    min-height: 300px;
    padding: 20px 15px;
}footer .dev-top-section h5, footer .subscribe_holder h5 {
    margin-bottom: 15px;
    font-size: calc(20px - 2px);
}footer .subscribe_holder p {
    margin-bottom: 20px;
}footer .input_holder input[type="email"],
    footer .dev-sub-url {
    padding: 12px;
}}.dev-title-portal {
    overflow: hidden;
    width: 100%;
    background: rgb(239,217,217);
    position: relative;
}.dev-title-portal::before {
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 70% 30%,
        rgb(197,154,154,0.5) 0%,
        transparent 60%
    );
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}.dev-title-portal::after {
    width: 100%;
    background: radial-gradient(
        circle at 30% 70%,
        rgb(220,185,185,0.5) 0%,
        transparent 60%
    );
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    content: "";
    position: absolute;
}.dev-title-portal .dev-instructor-bio {
    width: 100%;
    z-index: 2;
    height: 80vh;
    position: relative;
}.dev-title-portal .dev-course-front {
    width: 100%;
    left: 0;
    overflow: hidden;
    top: 0;
    height: 80vh;
    position: absolute;
}.dev-title-portal .dev-course-front input {
    display: none;
}.dev-title-portal .dev-course-base {
    height: 100%;
    width: 500%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}.dev-title-portal .dev-learn-entry {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 20%;
}.dev-title-portal .dev-learn-entry::before {
    background: linear-gradient(
        135deg,
        rgb(220,185,185,0.5) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.4) 60%,
        rgb(197,154,154,0.5) 100%
    );
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    height: 100%;
    opacity: 0.85;
    z-index: 2;
    position: absolute;
}.dev-title-portal .dev-learn-entry img {
    transition: transform 2s ease;
    transform: translateZ(0) scale(1.1);
    object-fit: cover;
    height: 100%;
    filter: brightness(0.8) contrast(1.1);
    width: 100%;
    will-change: transform;
}.dev-title-portal .dev-learn-base {
    z-index: 10;
    position: absolute;
    bottom: 40px;
    display: flex;
    left: 40px;
    gap: 15px;
}.dev-title-portal .dev-learn-base label {
    height: 15px;
    background: transparent;
    cursor: pointer;
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: relative;
    transition: all 0.4s ease;
    width: 15px;
}.dev-title-portal .dev-learn-base label::before {
    transition: transform 0.3s ease;
    border-radius: 50%;
    inset: 2px;
    transform: scale(0);
    content: "";
    background: #ffffff;
    position: absolute;
}.dev-title-portal .dev-learn-base label:hover::before {
    transform: scale(0.6);
}.dev-title-portal .dev-description-card {
    width: 95%;
    position: absolute;
    padding: 0 0 50px 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    max-width: 1000px;
}.dev-title-portal .dev-description-card .container {
    clip-path: polygon(
        3% 0,
        100% 0,
        100% 100%,
        0 100%
    );
    padding: 3rem;
    position: relative;
    background: linear-gradient(
        -135deg,
        rgb(220,185,185) 0%,
        rgb(197,154,154) 100%
    );
}.dev-title-portal .dev-description-card .container::before {
    z-index: -1;
    clip-path: polygon(
        3% 0,
        100% 0,
        100% 100%,
        0 100%
    );
    background: #ffffff;
    right: 5px;
    top: 5px;
    position: absolute;
    bottom: 5px;
    content: "";
    left: 5px;
}.dev-title-portal .dev-description-card h1 {
    color: rgb(220,185,185);
    font-weight: 700;
    font-size: 41px;
    margin-bottom: 1.2rem;
    border-left: 4px solid rgb(220,185,185);
    padding-left: 15px;
}.dev-title-portal .dev-description-card h3 {
    color: rgb(197,154,154);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 1.8rem;
}.dev-title-portal .dev-description-card p {
    color: #000000;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    max-width: 100%;
    font-size: 18px;
}.dev-title-portal input:nth-of-type(1):checked ~ .dev-course-base {
    transform: translateX(0);
}.dev-title-portal input:nth-of-type(2):checked ~ .dev-course-base {
    transform: translateX(-20%);
}.dev-title-portal input:nth-of-type(3):checked ~ .dev-course-base {
    transform: translateX(-40%);
}.dev-title-portal input:nth-of-type(4):checked ~ .dev-course-base {
    transform: translateX(-60%);
}.dev-title-portal input:nth-of-type(5):checked ~ .dev-course-base {
    transform: translateX(-80%);
}.dev-title-portal input:nth-of-type(6):checked ~ .dev-course-base {
    transform: translateX(-100%);
}.dev-title-portal input:nth-of-type(7):checked ~ .dev-course-base {
    transform: translateX(-120%);
}.dev-title-portal input:nth-of-type(8):checked ~ .dev-course-base {
    transform: translateX(-140%);
}.dev-title-portal input:nth-of-type(9):checked ~ .dev-course-base {
    transform: translateX(-160%);
}.dev-title-portal input:nth-of-type(10):checked ~ .dev-course-base {
    transform: translateX(-180%);
}.dev-title-portal input:nth-of-type(1):checked ~ .dev-learn-base label:nth-child(1)::before,
.dev-title-portal input:nth-of-type(2):checked ~ .dev-learn-base label:nth-child(2)::before,
.dev-title-portal input:nth-of-type(3):checked ~ .dev-learn-base label:nth-child(3)::before,
.dev-title-portal input:nth-of-type(4):checked ~ .dev-learn-base label:nth-child(4)::before,
.dev-title-portal input:nth-of-type(5):checked ~ .dev-learn-base label:nth-child(5)::before,
.dev-title-portal input:nth-of-type(6):checked ~ .dev-learn-base label:nth-child(6)::before,
.dev-title-portal input:nth-of-type(7):checked ~ .dev-learn-base label:nth-child(7)::before,
.dev-title-portal input:nth-of-type(8):checked ~ .dev-learn-base label:nth-child(8)::before,
.dev-title-portal input:nth-of-type(9):checked ~ .dev-learn-base label:nth-child(9)::before,
.dev-title-portal input:nth-of-type(10):checked ~ .dev-learn-base label:nth-child(10)::before {
    transform: scale(1);
}.dev-title-portal input:nth-of-type(1):checked ~ .dev-learn-base label:nth-child(1),
.dev-title-portal input:nth-of-type(2):checked ~ .dev-learn-base label:nth-child(2),
.dev-title-portal input:nth-of-type(3):checked ~ .dev-learn-base label:nth-child(3),
.dev-title-portal input:nth-of-type(4):checked ~ .dev-learn-base label:nth-child(4),
.dev-title-portal input:nth-of-type(5):checked ~ .dev-learn-base label:nth-child(5),
.dev-title-portal input:nth-of-type(6):checked ~ .dev-learn-base label:nth-child(6),
.dev-title-portal input:nth-of-type(7):checked ~ .dev-learn-base label:nth-child(7),
.dev-title-portal input:nth-of-type(8):checked ~ .dev-learn-base label:nth-child(8),
.dev-title-portal input:nth-of-type(9):checked ~ .dev-learn-base label:nth-child(9),
.dev-title-portal input:nth-of-type(10):checked ~ .dev-learn-base label:nth-child(10) {
    transform: scale(1.2);
    background: rgb(220,185,185);
    border-color: rgb(220,185,185);
}.dev-title-portal input:nth-of-type(1):checked ~ .dev-course-base .dev-learn-entry:nth-child(1) img,
.dev-title-portal input:nth-of-type(2):checked ~ .dev-course-base .dev-learn-entry:nth-child(2) img,
.dev-title-portal input:nth-of-type(3):checked ~ .dev-course-base .dev-learn-entry:nth-child(3) img,
.dev-title-portal input:nth-of-type(4):checked ~ .dev-course-base .dev-learn-entry:nth-child(4) img,
.dev-title-portal input:nth-of-type(5):checked ~ .dev-course-base .dev-learn-entry:nth-child(5) img,
.dev-title-portal input:nth-of-type(6):checked ~ .dev-course-base .dev-learn-entry:nth-child(6) img,
.dev-title-portal input:nth-of-type(7):checked ~ .dev-course-base .dev-learn-entry:nth-child(7) img,
.dev-title-portal input:nth-of-type(8):checked ~ .dev-course-base .dev-learn-entry:nth-child(8) img,
.dev-title-portal input:nth-of-type(9):checked ~ .dev-course-base .dev-learn-entry:nth-child(9) img,
.dev-title-portal input:nth-of-type(10):checked ~ .dev-course-base .dev-learn-entry:nth-child(10) img {
    transform: translateZ(0) scale(1);
}

@media (max-width: 1199px) {.dev-title-portal .dev-description-card {
    width: 95%;
    padding-bottom: 70px;
    max-width: 900px;
}.dev-title-portal .dev-description-card .container {
    padding: 2rem;
}
}

@media (max-width: 991px) {.dev-title-portal .dev-instructor-bio {
    height: 70vh;
}.dev-title-portal .dev-course-front {
    height: 70vh;
}.dev-title-portal .dev-description-card {
    width: 98%;
    max-width: 900px;
    padding-bottom: 40px;
}.dev-title-portal .dev-description-card .container {
    padding: 2.2rem;
}.dev-title-portal .dev-description-card h1 {
    font-size: calc(41px * 0.9);
}.dev-title-portal .dev-description-card h3 {
    font-size: calc(20px * 0.9);
}.dev-title-portal .dev-learn-base {
    bottom: 25px;
    gap: 12px;
    left: 30px;
}.dev-title-portal .dev-learn-base label {
    width: 12px;
    height: 12px;
}
}

@media (max-width: 767px) {.dev-title-portal .dev-instructor-bio {
    height: 60vh;
}.dev-title-portal .dev-course-front {
    height: 60vh;
}.dev-title-portal .dev-description-card {
    padding-bottom: 40px;
    width: 98%;
    max-width: 700px;
}.dev-title-portal .dev-description-card .container {
    padding: 1.8rem;
}.dev-title-portal .dev-description-card h1 {
    border-left-width: 3px;
    font-size: calc(41px * 0.85);
    padding-left: 12px;
}.dev-title-portal .dev-description-card h3 {
    font-size: calc(20px * 0.85);
    margin-bottom: 1.2rem;
}.dev-title-portal .dev-description-card p {
    line-height: 1.6;
    font-size: calc(18px * 0.95);
}.dev-title-portal .dev-learn-base {
    bottom: 20px;
    gap: 10px;
    left: 25px;
}.dev-title-portal .dev-learn-base label {
    height: 10px;
    width: 10px;
}
}

@media (max-width: 575px) {.dev-title-portal .dev-instructor-bio {
    flex-direction: column;
    height: 90vh;
    display: flex;
}.dev-title-portal .dev-course-front {
    position: relative;
    height: 50%;
}.dev-title-portal .dev-description-card {
    padding: 0.5rem;
    position: relative;
    max-width: 100%;
    height: 50%;
    width: 100%;
}.dev-title-portal .dev-description-card .container {
    padding: 1.5rem;
    height: 100%;
    clip-path: none;
    display: flex;
    flex-direction: column;
}.dev-title-portal .dev-description-card .container::before {
    clip-path: none;
}.dev-title-portal .dev-description-card h1 {
    margin-bottom: 0.6rem;
    font-size: calc(41px * 0.8);
}.dev-title-portal .dev-description-card h3 {
    margin-bottom: 1rem;
    font-size: calc(22px * 1.1);
}.dev-title-portal .dev-description-card p {
    font-size: calc(18px * 0.9);
    line-height: 1.5;
}.dev-title-portal .dev-learn-base {
    gap: 8px;
    transform: translateX(-50%);
    left: 50%;
    flex-direction: row;
    bottom: 15px;
}.dev-title-portal .dev-learn-base label {
    width: 8px;
    height: 8px;
}
}

@media (max-width: 480px) {.dev-title-portal .dev-description-card .container {
    padding: 1rem;
}.dev-title-portal .dev-description-card h1 {
    padding-left: 10px;
    border-left-width: 2px;
}
}

@media (max-height: 700px) and (min-width: 576px) {.dev-title-portal .dev-instructor-bio {
    height: 85vh;
}.dev-title-portal .dev-course-front {
    height: 85vh;
}.dev-title-portal .dev-description-card {
    padding-bottom: 80px;
}
}

@media (max-height: 600px) and (min-width: 576px) {.dev-title-portal .dev-instructor-bio {
    height: 90vh;
}.dev-title-portal .dev-course-front {
    height: 90vh;
}.dev-title-portal .dev-description-card {
    padding-bottom: 70px;
}
}

@media (orientation: landscape) and (max-height: 500px) and (min-width: 576px) {.dev-title-portal .dev-instructor-bio {
    height: 100vh;
}.dev-title-portal .dev-course-front {
    height: 100vh;
}.dev-title-portal .dev-description-card {
    padding-bottom: 60px;
}}.dev-training-results {
    padding: 70px 0;
    background: linear-gradient(110deg, rgb(239,217,217) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
}.dev-training-results::before {
    transform: translate(30%, -30%);
    height: 400px;
    content: "";
    filter: blur(60px);
    top: 0;
    right: 0;
    width: 400px;
    opacity: 0.4;
    animation: float 15s ease-in-out infinite alternate;
    position: absolute;
    background: radial-gradient(circle, rgb(220,185,185,0.5) 0%, transparent 70%);
}.dev-training-results::after {
    content: "";
    bottom: 0;
    opacity: 0.4;
    position: absolute;
    width: 400px;
    transform: translate(-30%, 30%);
    left: 0;
    animation: float 20s ease-in-out infinite alternate-reverse;
    background: radial-gradient(circle, rgb(197,154,154,0.5) 0%, transparent 70%);
    height: 400px;
    filter: blur(60px);
}@keyframes float {
  0% {
    transform: translate(-30%, 30%) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-20%, 20%) scale(1.1);
    opacity: 0.5;
  }
}

.dev-training-results .container {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 1;
}.dev-training-results .dev-instructor-bio {
    grid-template-columns: 0.8fr 1.2fr;
    display: grid;
    gap: 30px;
    position: relative;
}.dev-training-results .dev-pic-holder {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    transform: rotate(-1deg);
    position: relative;
    object-fit: cover;
    z-index: 1;
    box-shadow: 
    15px 15px 30px rgba(0, 0, 0, 0.1),
    -5px -5px 20px rgba(255, 255, 255, 0.6);
}.dev-training-results .dev-pic-holder:hover {
    box-shadow: 
    20px 20px 40px rgba(0, 0, 0, 0.15),
    -8px -8px 25px rgba(255, 255, 255, 0.8);
    transform: rotate(0) scale(1.02);
}.dev-training-results .dev-description-card {
    transform: translateY(10px);
    background: #ffffff;
    position: relative;
    padding: 30px 25px;
    box-shadow: 
    10px 10px 30px rgba(0, 0, 0, 0.08),
    -5px -5px 20px rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    z-index: 2;
}.dev-training-results .dev-description-card::before {
    opacity: 0.3;
    top: -5px;
    content: "";
    border-radius: 20px;
    filter: blur(10px);
    left: -5px;
    right: -5px;
    background: linear-gradient(135deg, rgb(220,185,185,0.5), rgb(197,154,154,0.5));
    z-index: -1;
    bottom: -5px;
    position: absolute;
}.dev-training-results h3 {
    position: relative;
    border-bottom: 2px dashed rgb(220,185,185,0.5);
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    padding-bottom: 10px;
    color: rgb(220,185,185);
}.dev-training-results h3::after {
    width: 30px;
    z-index: -1;
    content: "";
    top: -15px;
    position: absolute;
    right: -15px;
    opacity: 0.3;
    height: 30px;
    border-radius: 50%;
    background: rgb(197,154,154,0.5);
}.dev-training-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}.dev-training-results li {
    margin-bottom: 15px;
    transform: translateX(0);
    position: relative;
    transition: all 0.3s ease;
}.dev-training-results li:last-child {
    margin-bottom: 0;
}.dev-training-results li::before {
    top: 0;
    width: 3px;
    background: linear-gradient(to bottom, rgb(220,185,185), rgb(197,154,154));
    position: absolute;
    left: -10px;
    border-radius: 3px;
    height: 0;
    transition: height 0.3s ease;
    content: "";
}.dev-training-results li:hover {
    transform: translateX(8px);
}.dev-training-results li:hover::before {
    height: 100%;
}.dev-training-results li p {
    color: #000000;
    display: flex;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    margin: 0;
    border-radius: 10px;
    gap: 12px;
    font-size: 15px;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 
    3px 3px 10px rgba(0, 0, 0, 0.03),
    -2px -2px 5px rgba(255, 255, 255, 0.8);
    padding: 10px 12px;
}.dev-training-results li:hover p {
    box-shadow: 
    5px 5px 15px rgba(0, 0, 0, 0.05),
    -3px -3px 8px rgba(255, 255, 255, 1);
}.dev-training-results svg {
    transition: all 0.3s ease;
    background: #ffffff;
    flex-shrink: 0;
    width: 20px;
    border: 1px solid rgb(220,185,185,0.5);
    height: 20px;
    padding: 8px;
    border-radius: 10px;
}.dev-training-results svg path {
    fill: rgb(220,185,185);
    transition: fill 0.3s ease;
}.dev-training-results li:hover svg {
    transform: rotate(10deg);
    background: linear-gradient(135deg, rgb(220,185,185), rgb(197,154,154));
    border-color: transparent;
}.dev-training-results li:hover svg path {
    fill: #ffffff;
}

@media (max-width: 992px) {.dev-training-results {
    padding: 60px 0;
}.dev-training-results .dev-instructor-bio {
    gap: 20px;
    grid-template-columns: 1fr;
}.dev-training-results .dev-pic-holder {
    object-fit: cover;
    transform: rotate(0);
    width: 100%;
    max-height: 350px;
}.dev-training-results .dev-description-card {
    transform: translateY(0);
}
}

@media (max-width: 768px) {.dev-training-results {
    padding: 50px 0;
}.dev-training-results .dev-pic-holder {
    max-height: 280px;
}.dev-training-results h3 {
    font-size: calc(36px * 0.9);
}
}

@media (max-width: 576px) {.dev-training-results {
    padding: 40px 0;
}.dev-training-results .dev-pic-holder {
    max-height: 220px;
}.dev-training-results .dev-description-card {
    padding: 20px 15px;
}.dev-training-results h3 {
    margin-bottom: 20px;
    font-size: calc(36px * 0.85);
}.dev-training-results li {
    margin-bottom: 12px;
}.dev-training-results li p {
    padding: 8px 10px;
    font-size: calc(15px * 0.95);
    gap: 10px;
}.dev-training-results svg {
    width: 18px;
    height: 18px;
    padding: 6px;
}}.dev-pricing-layout {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}.dev-pricing-layout::before {
    z-index: 1;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    right: 0;
    top: 0;
    position: absolute;
    left: 0;
    content: "";
}.dev-pricing-layout .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}.dev-pricing-layout .dev-premium-grid {
    perspective: 1000px;
}.dev-pricing-layout h2 {
    font-size: 28px;
    margin-bottom: 25px;
    transform: translateZ(50px);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
}.dev-pricing-layout h2::after {
    background: rgb(220,185,185);
    bottom: -10px;
    left: 50%;
    width: 80px;
    position: absolute;
    box-shadow: 0 0 15px rgb(220,185,185,0.5);
    content: "";
    height: 3px;
    transform: translateX(-50%);
}.dev-pricing-layout .dev-fee-schemes {
    line-height: 1.6;
    max-width: 800px;
    color: #ffffff;
    opacity: 0.9;
    margin: 0 auto 60px;
    font-size: 14px;
    text-align: center;
}.dev-pricing-layout .dev-payment-deals {
    margin: 0;
    display: grid;
    gap: 30px;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.dev-pricing-layout .dev-plan-fees {
    text-decoration: none;
    transform-style: preserve-3d;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
    display: block;
}.dev-pricing-layout .dev-class-cost {
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        15px 15px 30px rgba(0, 0, 0, 0.3),
        -15px -15px 30px rgba(255, 255, 255, 0.02),
        inset 2px 2px 5px rgba(255, 255, 255, 0.05),
        inset -2px -2px 5px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    padding: 8px;
    border-radius: 8px;
}.dev-pricing-layout .dev-class-cost::before {
    background-size: 200% 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 45%, rgba(255,255,255,0.1) 55%, transparent 60%);
    bottom: -5px;
    opacity: 0;
    animation: shimmer 3s infinite linear;
    right: -5px;
    transition: opacity 0.4s ease;
    left: -5px;
    top: -5px;
    position: absolute;
    content: "";
    z-index: -1;
}.dev-pricing-layout .dev-group-rates {
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    display: flex;
    padding: 35px 25px;
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    flex-direction: column;
}.dev-pricing-layout .dev-group-rates h4 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 19px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
}.dev-pricing-layout .dev-group-rates h4::after {
    background: rgb(220,185,185);
    left: 0;
    transition: width 0.3s ease;
    height: 2px;
    position: absolute;
    bottom: 0;
    content: "";
    width: 40px;
}.dev-pricing-layout .dev-group-rates p {
    line-height: 1.6;
    opacity: 0.8;
    flex-grow: 1;
    font-size: calc(14px - 2px);
    margin-bottom: 25px;
    color: #ffffff;
}.dev-pricing-layout .dev-trial-pricing {
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.1);
    align-self: flex-start;
    font-size: calc(19px + 4px);
    position: relative;
    color: #ffffff;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgb(220,185,185) 0%, rgb(197,154,154) 100%);
    display: inline-block;
    overflow: hidden;
}.dev-pricing-layout .dev-trial-pricing::before {
    content: "";
    left: -100%;
    width: 100%;
    transition: 0.5s;
    top: 0;
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}.dev-pricing-layout .dev-plan-fees:hover {
    transform: translateY(-10px) rotateX(5deg);
}.dev-pricing-layout .dev-plan-fees:hover .dev-class-cost {
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.4),
        -20px -20px 40px rgba(255, 255, 255, 0.03),
        inset 2px 2px 5px rgba(255, 255, 255, 0.05),
        inset -2px -2px 5px rgba(0, 0, 0, 0.15);
}.dev-pricing-layout .dev-plan-fees:hover .dev-class-cost::before {
    opacity: 1;
}.dev-pricing-layout .dev-plan-fees:hover .dev-group-rates h4::after {
    width: 80px;
}.dev-pricing-layout .dev-plan-fees:hover .dev-trial-pricing::before {
    left: 100%;
}.dev-pricing-layout .dev-plan-fees:hover .dev-group-rates {
    transform: translateZ(20px);
    border-color: rgba(255,255,255,0.1);
}

@keyframes shimmer {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 200%;
    }
}

@media (max-width: 1200px) {.dev-pricing-layout {
    padding: 100px 0;
}.dev-pricing-layout .dev-payment-deals {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}.dev-pricing-layout .dev-group-rates {
    padding: 30px 20px;
}
}

@media (max-width: 768px) {.dev-pricing-layout {
    padding: 80px 0;
}.dev-pricing-layout h2 {
    font-size: calc(28px - 4px);
}.dev-pricing-layout .dev-fee-schemes {
    margin-bottom: 40px;
}.dev-pricing-layout .dev-payment-deals {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 450px;
}.dev-pricing-layout .dev-group-rates h4 {
    font-size: calc(19px - 1px);
}.dev-pricing-layout .dev-trial-pricing {
    font-size: calc(19px + 2px);
    padding: 10px 20px;
}
}

@media (max-width: 480px) {.dev-pricing-layout {
    padding: 60px 0;
}.dev-pricing-layout h2 {
    font-size: calc(28px - 6px);
}.dev-pricing-layout .dev-fee-schemes {
    margin-bottom: 30px;
    font-size: calc(14px - 1px);
}.dev-pricing-layout .dev-group-rates {
    padding: 25px 15px;
}.dev-pricing-layout .dev-group-rates p {
    font-size: calc(14px - 3px);
    margin-bottom: 20px;
}.dev-pricing-layout .dev-trial-pricing {
    font-size: calc(19px + 0px);
    padding: 8px 15px;
}
}

@media (hover: none) {.dev-pricing-layout .dev-plan-fees:hover {
    transform: none;
}.dev-pricing-layout .dev-class-cost {
    box-shadow: 
            5px 5px 15px rgba(0, 0, 0, 0.2),
            -5px -5px 15px rgba(255, 255, 255, 0.02);
}.dev-pricing-layout .dev-plan-fees:active {
    transform: scale(0.98);
}}.dev-learning-system {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(239,217,217) 0%, rgb(197,154,154,0.5) 100%);
    position: relative;
    overflow: hidden;
}.dev-learning-system::before {
    position: absolute;
    z-index: 1;
    opacity: 0.7;
    transform: translateX(20%) skewX(-15deg);
    content: "";
    height: 100%;
    top: 0;
    animation: gradientShift 8s ease-in-out infinite alternate;
    background: linear-gradient(225deg, rgb(220,185,185,0.5) 0%, transparent 90%);
    width: 35%;
    right: 0;
}.dev-learning-system::after {
    bottom: 0;
    animation: gradientMove 12s linear infinite;
    width: 100%;
    height: 6px;
    left: 0;
    background: linear-gradient(90deg, rgb(197,154,154) 0%, rgb(220,185,185) 50%, rgb(197,154,154) 100%);
    position: absolute;
    z-index: 2;
    content: "";
}.dev-learning-system .container {
    max-width: 1200px;
    z-index: 3;
    padding: 0 2rem;
    margin: 0 auto;
    position: relative;
}.dev-learning-system .dev-instructor-bio {
    grid-template-columns: 1fr;
    display: grid;
    transform: perspective(1000px) rotateY(2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    padding: 3rem;
    background: rgba(255, 255, 255, 0.85);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}.dev-learning-system .dev-instructor-bio:hover {
    transform: perspective(1000px) rotateY(0deg);
}.dev-learning-system .dev-instructor-bio::before {
    filter: blur(5px);
    z-index: -1;
    background: linear-gradient(45deg, rgb(220,185,185) 0%, transparent 40%, transparent 60%, rgb(197,154,154) 100%);
    top: -10px;
    content: "";
    right: -10px;
    bottom: -10px;
    left: -10px;
    opacity: 0.6;
    position: absolute;
    transform: translate3d(0, 0, -50px);
}.dev-learning-system h3 {
    font-weight: 700;
    transform-origin: left center;
    margin-bottom: 1.5rem;
    color: #000000;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out forwards;
    font-size: calc(34px * 0.85);
    position: relative;
}.dev-learning-system h3::after {
    transform-origin: left;
    transform: scaleX(0);
    left: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    height: 3px;
    content: "";
    width: 60%;
    bottom: -8px;
    background: rgb(220,185,185);
    position: absolute;
}.dev-learning-system .dev-instructor-bio:hover h3::after {
    transform: scaleX(1);
}.dev-learning-system p {
    color: #000000;
    opacity: 0;
    position: relative;
    font-size: 18px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    font-family: Arial, sans-serif;
    margin-bottom: 0;
}.dev-learning-system p span {
    z-index: 2;
    display: block;
    position: relative;
}.dev-learning-system p::before {
    width: 40px;
    height: 40px;
    opacity: 0.3;
    top: -10px;
    content: "";
    transform: rotate(45deg);
    left: -20px;
    background: rgb(197,154,154,0.5);
    z-index: 1;
    border-radius: 10px;
    position: absolute;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        opacity: 0.5;
        transform: translateX(20%) skewX(-15deg);
    }
    100% {
        opacity: 0.8;
        transform: translateX(25%) skewX(-18deg);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@media screen and (min-width: 768px) {.dev-learning-system {
    padding: 8rem 0;
}.dev-learning-system .dev-instructor-bio {
    padding: 4rem;
    gap: 2rem;
    grid-template-columns: 1fr;
}.dev-learning-system h3 {
    font-size: 34px;
    margin-bottom: 2rem;
}.dev-learning-system::before {
    width: 45%;
}
}

@media screen and (min-width: 992px) {.dev-learning-system .dev-instructor-bio {
    transform: perspective(1500px) rotateY(3deg);
}.dev-learning-system h3 {
    font-size: calc(34px * 1.1);
}.dev-learning-system p {
    font-size: calc(18px * 1.05);
    line-height: 1.9;
}
}

@media screen and (max-width: 767px) {.dev-learning-system {
    padding: 4rem 0;
}.dev-learning-system .dev-instructor-bio {
    transform: perspective(800px) rotateY(1deg);
    padding: 2.5rem 1.5rem;
}.dev-learning-system h3 {
    margin-bottom: 1.25rem;
    font-size: calc(34px * 0.75);
}.dev-learning-system p {
    font-size: calc(18px * 0.95);
    line-height: 1.7;
}.dev-learning-system::before {
    transform: translateX(20%) skewX(-10deg);
    width: 25%;
}
}

@media (prefers-reduced-motion: reduce) {.dev-learning-system .dev-instructor-bio,
    .dev-learning-system .dev-instructor-bio:hover,
    .dev-learning-system::before,
    .dev-learning-system h3::after {
    transition: none;
    transform: none;
    animation: none;
}.dev-learning-system h3,
    .dev-learning-system p {
    opacity: 1;
    animation: none;
}}header {
    padding: 0;
    position: relative;
    background: linear-gradient(135deg, rgb(220,185,185,0.5) 0%, rgb(239,217,217) 100%);
    margin-top: 0;
    z-index: 100;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: visible;
}header::before {
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0.4;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 8%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 12%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 10%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 15%),
        radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 8%);
    width: 100%;
    content: '';
    z-index: 0;
    height: 100%;
}header::after {
    opacity: 0.6;
    left: 0;
    position: absolute;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(220,185,185,0.5), 
        transparent
    );
    content: '';
    height: 10px;
    bottom: 0;
}header .dev-main-learning {
    justify-content: space-between;
    padding: 1.3rem 3rem;
    display: flex;
    position: relative;
    z-index: 5;
    align-items: center;
}header .dev-main-navbar {
    border-radius: 50% 30% 60% 40% / 40% 50% 30% 50%;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
    padding: 1rem;
    overflow: hidden;
    transition: all 0.6s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    margin-right: 2rem;
    flex: 0 0 auto;
}header .dev-main-navbar:hover {
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.7), 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-radius: 60% 40% 30% 70% / 50% 30% 60% 40%;
}header .dev-header-master {
    position: relative;
    display: block;
    transition: all 0.4s ease;
}header .dev-header-master img {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
    max-height: 38px;
}header .dev-top-section {
    display: flex;
    z-index: 2;
    margin: 0;
    list-style: none;
    position: relative;
    padding: 0;
}header .dev-top-section::before {
    border-radius: 70% 30% 50% 40% / 40% 60% 30% 50%;
    position: absolute;
    width: 110%;
    transition: all 0.6s ease;
    height: 110%;
    left: -5%;
    content: '';
    opacity: 0.1;
    top: -5%;
    background: linear-gradient(135deg, rgb(220,185,185,0.5) 0%, transparent 100%);
    z-index: -1;
}header .dev-top-section:hover::before {
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.2;
}header .dev-header-site {
    margin: 0 0.5rem;
    position: relative;
}header .dev-header-site a {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    font-size: 16px;
    padding: 0.8rem 1.3rem;
    font-weight: 600;
    align-items: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    color: #000000;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 60% 40% 40% 60% / 40% 50% 50% 60%;
}header .dev-header-site a::before {
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    width: 100%;
    transform: scale(1.1);
    top: 0;
    position: absolute;
    height: 100%;
    content: '';
    left: 0;
    background: linear-gradient(135deg, rgb(220,185,185,0.5) 0%, rgb(197,154,154,0.5) 100%);
}header .dev-header-site a:hover {
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px) scale(1.05);
}header .dev-header-site a:hover::before {
    opacity: 1;
    transform: scale(1);
}header .dev-header-site::after {
    height: 6px;
    border-radius: 50%;
    bottom: -8px;
    opacity: 0.7;
    background: rgb(220,185,185);
    position: absolute;
    left: 50%;
    width: 6px;
    transform: translateX(-50%) scale(0);
    transition: transform 0.4s ease;
    content: '';
}header .dev-header-site:hover::after {
    transform: translateX(-50%) scale(1);
}header .dev-main-learning::before {
    border-radius: 50%;
    position: absolute;
    width: 200px;
    content: '';
    right: -100px;
    top: -100px;
    opacity: 0.1;
    height: 200px;
    filter: blur(30px);
    background: radial-gradient(circle, rgb(220,185,185,0.5) 0%, transparent 70%);
}header .dev-main-learning::after {
    background: radial-gradient(circle, rgb(197,154,154,0.5) 0%, transparent 70%);
    border-radius: 50%;
    content: '';
    left: -75px;
    filter: blur(30px);
    height: 150px;
    width: 150px;
    position: absolute;
    bottom: -75px;
    opacity: 0.1;
}.dev-nav-study {
    z-index: 1;
    position: relative;
    background: rgb(239,217,217);
    padding-top: 2rem;
}

@keyframes morphing {
    0%, 100% { border-radius: 60% 40% 30% 70% / 50% 30% 60% 40%; }
    33% { border-radius: 40% 60% 70% 30% / 30% 40% 30% 70%; }
    66% { border-radius: 30% 60% 70% 40% / 60% 30% 70% 40%; }
}

@media (min-width: 1400px) {header .dev-main-learning {
    margin: 0 auto;
    max-width: 1320px;
}header .dev-header-site {
    margin: 0 0.7rem;
}header .dev-header-site a {
    padding: 0.8rem 1.6rem;
}
}

@media (max-width: 991px) {header .dev-main-learning {
    flex-wrap: wrap;
    padding: 1rem 2rem;
}header .dev-main-navbar {
    margin-bottom: 0;
    margin-right: 0;
    padding: 0.7rem;
}header .dev-top-section {
    justify-content: flex-end;
    margin-top: 1rem;
    flex-basis: 100%;
}header .dev-header-site a {
    padding: 0.6rem 1rem;
    font-size: calc(16px - 1px);
}header .dev-top-section::before {
    display: none;
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .dev-main-learning {
    padding: 0.8rem 1.5rem;
}header .dev-main-navbar {
    max-width: 140px;
    border-radius: 40% 60% 50% 50% / 40% 50% 50% 40%;
    padding: 0.6rem;
}header .dev-header-master img {
    max-height: 35px;
}header .dev-top-section {
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    margin-top: 0.8rem;
}header .dev-top-section::-webkit-scrollbar {
    height: 3px;
}header .dev-top-section::-webkit-scrollbar-thumb {
    background: rgb(220,185,185,0.5);
    border-radius: 10px;
}header .dev-header-site {
    flex: 0 0 auto;
    margin: 0 0.2rem;
}header .dev-header-site a {
    white-space: nowrap;
    padding: 0.5rem 0.8rem;
    border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%;
    font-size: calc(16px - 2px);
}header .dev-header-site::after {
    display: none;
}header::after {
    height: 5px;
}
}

@media (max-width: 479px) {header .dev-main-learning {
    padding: 0.7rem 1.2rem;
}header .dev-main-navbar {
    padding: 0.5rem;
    max-width: 120px;
}header .dev-header-site a {
    padding: 0.4rem 0.6rem;
    font-size: calc(16px - 3px);
}}.dev-connect-with-us {
    z-index: 1;
    position: relative;
    padding: 100px 0;
    background: rgb(239,217,217);
    overflow: hidden;
}.dev-connect-with-us::before {
    left: 0;
    position: absolute;
    opacity: 0.3;
    top: 0;
    content: '';
    background: linear-gradient(45deg, transparent 48%, rgb(220,185,185,0.5) 49%, rgb(220,185,185,0.5) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgb(197,154,154,0.5) 49%, rgb(197,154,154,0.5) 51%, transparent 52%);
    background-size: 60px 60px;
    width: 100%;
    z-index: 0;
    height: 100%;
}.dev-connect-with-us::after {
    background-size: 100px 100px;
    left: 0;
    width: 100%;
    background: 
        linear-gradient(90deg, rgb(239,217,217) 6px, transparent 6px),
        linear-gradient(0deg, rgb(239,217,217) 6px, transparent 6px);
    position: absolute;
    top: 0;
    content: '';
    opacity: 0.2;
    z-index: 0;
    height: 100%;
}.dev-connect-with-us .dev-pic-holder {
    top: 0;
    width: 100%;
    left: 0;
    z-index: 0;
    position: absolute;
    filter: grayscale(0.7) hue-rotate(25deg);
    opacity: 0.15;
    height: 100%;
}.dev-connect-with-us .container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}.dev-connect-with-us h3 {
    transform: skew(-5deg);
    text-align: center;
    position: relative;
    font-size: 48px;
    font-family: Arial, sans-serif;
    margin-bottom: 60px;
    color: #000000;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}.dev-connect-with-us h3::before {
    height: 5px;
    content: '';
    background: linear-gradient(90deg, rgb(220,185,185), rgb(197,154,154));
    bottom: -15px;
    transform: translateX(-50%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    position: absolute;
    left: 50%;
    width: 100px;
}.dev-connect-with-us .dev-query-support {
    position: relative;
    flex-wrap: wrap;
    display: flex;
    z-index: 1;
}.dev-connect-with-us .dev-connect-list {
    padding: 60px;
    border-radius: 0;
    position: relative;
    transform: skew(-3deg);
    box-shadow: -10px 10px 0 rgba(0, 0, 0, 0.1);
    background: #ffffff;
    z-index: 2;
    flex: 1 1 60%;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}.dev-connect-with-us .dev-connect-list::before {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    right: 20px;
    pointer-events: none;
    top: 20px;
    content: '';
    bottom: 20px;
    left: 20px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    position: absolute;
}.dev-connect-with-us .dev-connect-list #contact {
    transform: skew(3deg);
}.dev-connect-with-us .dev-connect-list h3 {
    text-align: left;
    transform: skew(0);
    margin-bottom: 40px;
    font-size: 22px;
    color: #000000;
    font-weight: 700;
}.dev-connect-with-us .dev-connect-list h3::before {
    height: 3px;
    width: 60px;
    clip-path: none;
    left: 0;
    transform: none;
}.dev-connect-with-us .dev-connect-list input[type="text"],
.dev-connect-with-us .dev-connect-list textarea {
    background-color: #ffffff;
    border: 2px solid rgb(220,185,185);
    transition: all 0.3s ease;
    font-size: 13px;
    color: #000000;
    border-radius: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    width: 100%;
}.dev-connect-with-us .dev-connect-list input[type="text"]:focus,
.dev-connect-with-us .dev-connect-list textarea:focus {
    background-color: rgba(0, 0, 0, 0.02);
    box-shadow: 8px 8px 0 rgb(220,185,185,0.5);
    transform: translate(-3px, -3px);
    outline: none;
}.dev-connect-with-us .dev-connect-list textarea {
    height: 140px;
    resize: vertical;
}.dev-connect-with-us .dev-connect-list .dev-query-info {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}.dev-connect-with-us .dev-connect-list .dev-query-info input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.dev-connect-with-us .dev-connect-list .dev-query-info label {
    padding-left: 35px;
    cursor: pointer;
    color: #000000;
    position: relative;
    line-height: 1.5;
    font-size: calc(13px - 2px);
}.dev-connect-with-us .dev-connect-list .dev-query-info label::before {
    top: 0;
    position: absolute;
    border: 2px solid rgb(220,185,185);
    left: 0;
    height: 24px;
    transition: all 0.3s ease;
    content: '';
    background-color: #ffffff;
    width: 24px;
}.dev-connect-with-us .dev-connect-list .dev-query-info input[type="checkbox"]:checked + label::before {
    background-color: rgb(220,185,185);
}.dev-connect-with-us .dev-connect-list .dev-query-info input[type="checkbox"]:checked + label::after {
    top: 5px;
    border-bottom: 2px solid #ffffff;
    width: 6px;
    position: absolute;
    content: '';
    transform: rotate(45deg);
    border-right: 2px solid #ffffff;
    left: 9px;
    height: 12px;
}.dev-connect-with-us .dev-connect-list .dev-query-info a {
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
    color: rgb(220,185,185);
    font-weight: 600;
}.dev-connect-with-us .dev-connect-list .dev-query-info a::after {
    position: absolute;
    transform: scaleX(0);
    height: 2px;
    width: 100%;
    left: 0;
    transform-origin: left;
    background-color: rgb(220,185,185);
    transition: transform 0.3s ease;
    bottom: -2px;
    content: '';
}.dev-connect-with-us .dev-connect-list .dev-query-info a:hover {
    color: rgb(197,154,154);
}.dev-connect-with-us .dev-connect-list .dev-query-info a:hover::after {
    transform: scaleX(1);
    background-color: rgb(197,154,154);
}.dev-connect-with-us .dev-connect-list .dev-inquiry-help {
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: rgb(220,185,185);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
    padding: 18px 40px;
    position: relative;
    font-size: 17px;
    color: #ffffff;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}.dev-connect-with-us .dev-connect-list .dev-inquiry-help:hover {
    background: rgb(197,154,154);
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}.dev-connect-with-us .dev-message-message {
    position: relative;
    padding: 60px 60px 60px 80px;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
    flex: 1 1 40%;
    margin-left: -40px;
    color: #ffffff;
    background: rgb(239,217,217);
}.dev-connect-with-us .dev-message-message::before {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    content: '';
}.dev-connect-with-us .dev-message-message::after {
    position: absolute;
    bottom: 20px;
    top: 20px;
    right: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    left: 20px;
    content: '';
}.dev-connect-with-us .dev-message-message h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    color: #000000;
    margin-bottom: 40px;
    font-size: 22px;
}.dev-connect-with-us .dev-message-message h4::after {
    bottom: -15px;
    width: 60px;
    background: rgb(220,185,185);
    content: '';
    position: absolute;
    left: 0;
    height: 3px;
}.dev-connect-with-us .dev-message-message .dev-request-map {
    padding: 0;
    list-style: none;
    margin: 0;
}.dev-connect-with-us .dev-message-message .dev-request-map li {
    position: relative;
    padding-bottom: 20px;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
    margin-bottom: 30px;
}.dev-connect-with-us .dev-message-message .dev-request-map li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}.dev-connect-with-us .dev-message-message .dev-request-map li svg {
    width: 24px;
    margin-right: 20px;
    flex-shrink: 0;
    height: 24px;
}.dev-connect-with-us .dev-message-message .dev-request-map li svg path {
    fill: rgb(220,185,185);
}.dev-connect-with-us .dev-message-message .dev-request-map li:hover svg path {
    transition: fill 0.3s ease;
    fill: rgb(197,154,154);
}.dev-connect-with-us .dev-message-message .dev-request-map li span {
    font-size: 13px;
    line-height: 1.5;
    color: #000000;
}.dev-connect-with-us .dev-message-message .dev-request-map li a {
    transition: all 0.3s ease;
    color: #000000;
    text-decoration: none;
}.dev-connect-with-us .dev-message-message .dev-request-map li a:hover {
    color: rgb(220,185,185);
}

@media (max-width: 992px) {.dev-connect-with-us {
    padding: 70px 0;
}.dev-connect-with-us .dev-query-support {
    flex-direction: column;
}.dev-connect-with-us .dev-connect-list {
    padding: 40px;
    flex: 1 1 100%;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
}.dev-connect-with-us .dev-message-message {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
    padding: 40px;
    margin-left: 0;
    flex: 1 1 100%;
    margin-top: -20px;
}
}

@media (max-width: 768px) {.dev-connect-with-us {
    padding: 50px 0;
}.dev-connect-with-us h3 {
    margin-bottom: 40px;
    font-size: calc(33px);
    letter-spacing: 2px;
}.dev-connect-with-us .dev-connect-list h3,
    .dev-connect-with-us .dev-message-message h4 {
    margin-bottom: 30px;
    font-size: calc(22px - 2px);
}.dev-connect-with-us .dev-connect-list input[type="text"],
    .dev-connect-with-us .dev-connect-list textarea {
    padding: 15px;
    margin-bottom: 20px;
}.dev-connect-with-us .dev-connect-list textarea {
    height: 120px;
}.dev-connect-with-us .dev-connect-list .dev-inquiry-help {
    padding: 15px 30px;
}.dev-connect-with-us .dev-message-message .dev-request-map li {
    padding-bottom: 15px;
    margin-bottom: 20px;
}.dev-connect-with-us .dev-message-message .dev-request-map li svg {
    margin-right: 15px;
    height: 20px;
    width: 20px;
}
}

@media (max-width: 576px) {.dev-connect-with-us {
    padding: 40px 0;
}.dev-connect-with-us .dev-connect-list,
    .dev-connect-with-us .dev-message-message {
    box-shadow: none;
    transform: skew(0);
    padding: 30px 20px;
    clip-path: none;
}.dev-connect-with-us .dev-connect-list #contact {
    transform: skew(0);
}.dev-connect-with-us .dev-connect-list::before,
    .dev-connect-with-us .dev-message-message::after {
    clip-path: none;
}.dev-connect-with-us .dev-message-message {
    margin-top: 0;
}.dev-connect-with-us h3 {
    transform: skew(0);
    font-size: calc(33px - 6px);
}.dev-connect-with-us .dev-connect-list .dev-query-info label {
    font-size: calc(13px - 3px);
}.dev-connect-with-us .dev-connect-list .dev-inquiry-help {
    clip-path: none;
}}.dev-privacy-silo {
    padding: 50px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    margin: 0 auto;
    background: #ffffff;
    max-width: 1100px;
    overflow: hidden;
    color: #000000;
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.5);
}.dev-privacy-silo::before,
.dev-privacy-silo::after {
    z-index: -1;
    content: '';
    background: rgb(197,154,154,0.5);
    position: absolute;
    border-radius: 50%;
}.dev-privacy-silo::before {
    height: 200px;
    width: 200px;
    top: -50px;
    right: -50px;
}.dev-privacy-silo::after {
    height: 300px;
    width: 300px;
    left: -100px;
    bottom: -100px;
}.dev-privacy-silo h1 {
    font-weight: 700;
    margin-top: 20px;
    border-bottom: 3px dashed rgb(220,185,185);
    font-size: 38px;
    padding-bottom: 10px;
    color: rgb(220,185,185);
    margin-bottom: 30px;
}.dev-privacy-silo h2 {
    margin-top: 30px;
    position: relative;
    border-left: 8px double rgb(197,154,154);
    color: rgb(197,154,154);
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
    padding-left: 20px;
}.dev-privacy-silo h2::before {
    transform: translateY(-50%);
    border-radius: 50%;
    left: -15px;
    width: 10px;
    content: '';
    background: rgb(220,185,185);
    top: 50%;
    position: absolute;
    height: 10px;
}.dev-privacy-silo ul {
    border: 1px solid rgb(197,154,154,0.5);
    border-radius: 10px;
    margin: 20px 0;
    background: rgb(197,154,154,0.5);
    list-style: none;
    padding-left: 20px;
}.dev-privacy-silo ul li {
    line-height: 1.6;
    font-size: 12px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}.dev-privacy-silo ul li::before {
    transform: translateY(-50%);
    color: rgb(220,185,185);
    position: absolute;
    content: '•';
    font-size: 1.5em;
    top: 50%;
    left: 0;
}.dev-privacy-silo p, .dev-privacy-silo span, .dev-privacy-silo div {
    color: #000000;
    font-size: 12px;
    line-height: 1.8;
    border-radius: 10px;
    padding: 10px;
    border-left: 4px solid rgb(220,185,185,0.5);
    margin-bottom: 20px;
    background: rgb(220,185,185,0.5);
}.dev-privacy-silo h3, .dev-privacy-silo h4, .dev-privacy-silo h5, .dev-privacy-silo h6 {
    margin-bottom: 15px;
    color: rgb(220,185,185);
    padding-left: 15px;
    margin-top: 25px;
    border-left: 5px solid rgb(220,185,185);
    position: relative;
    font-size: 18px;
    font-weight: 600;
}.dev-privacy-silo h3::after, .dev-privacy-silo h4::after, .dev-privacy-silo h5::after, .dev-privacy-silo h6::after {
    bottom: -5px;
    height: 2px;
    position: absolute;
    left: 0;
    width: 20px;
    content: '';
    background: rgb(197,154,154);
}

@media only screen and (max-width: 800px) {.dev-privacy-silo {
    padding: 30px;
}.dev-privacy-silo h1 {
    font-size: calc(18px - 4px);
}.dev-privacy-silo h2 {
    font-size: calc(18px - 3px);
}.dev-privacy-silo h3, .dev-privacy-silo h4, .dev-privacy-silo h5, .dev-privacy-silo h6 {
    font-size: calc(18px - 2px);
}.dev-privacy-silo p, .dev-privacy-silo span, .dev-privacy-silo div, .dev-privacy-silo ul li {
    font-size: calc(12px - 2px);
}
}