
:root {
    --edm-accent-1: #b266ff;
    --edm-accent-2: #6b4dff;
    --edm-accent-soft: rgba(178, 102, 255, 0.18);
    --edm-btn-radius: 999px;
    --edm-btn-font-size: 13px;
}

html {
    width: 100%;
    min-height: 100%;
    overflow-x: clip;
    background: #050812;
}

body {
    width: 100%;
    min-height: 100%;
    overflow-x: clip;
    font-family: 'Titillium Web', sans-serif;
    padding-top: 70px;
    background: #050812;
}


a,
a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
}

.mb30 {
    margin-bottom: 30px;
}

.mt100 {
    margin-top: 100px;
}

.service_icon {
    margin-top: -30px;
}

.btn,
.btn-default,
.hero-main-btn,
.hero-side-btn,
.user-btn,
.course-card-footer .btn,
.main-filter-btn,
.reset-filter-btn,
.profile-card .btn,
.login-btn,
.register-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 26px;
    border-radius: var(--edm-btn-radius);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);


    font-size: var(--edm-btn-font-size);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-decoration: none;

    cursor: pointer;
    outline: none;

    transition:
            background 0.22s ease,
            color 0.22s ease,
            border-color 0.22s ease,
            box-shadow 0.22s ease,
            transform 0.12s ease;
}

.btn:hover,
.btn-default:hover,
.hero-main-btn:hover,
.hero-side-btn:hover,
.user-btn:hover,
.course-card-footer .btn:hover,
.main-filter-btn:hover,
.reset-filter-btn:hover,
.profile-card .btn:hover,
.login-btn:hover,
.register-btn:hover,
.btn:focus,
.btn-default:focus {
    background: linear-gradient(120deg, var(--edm-accent-1), var(--edm-accent-2));
    border-color: transparent;
    box-shadow: 0 12px 32px var(--edm-accent-soft);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn:active,
.btn-default:active,
.hero-main-btn:active,
.hero-side-btn:active,
.user-btn:active,
.course-card-footer .btn:active,
.main-filter-btn:active,
.reset-filter-btn:active,
.profile-card .btn:active,
.login-btn:active,
.register-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.btn-ghost,
.hero-secondary-btn {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.32);
    color: #ffffff;
}

.btn-ghost:hover,
.hero-secondary-btn:hover {
    background: rgba(178, 102, 255, 0.30);
    border-color: rgba(178, 102, 255, 0.70);
    box-shadow: 0 14px 36px rgba(178, 102, 255, 0.22);
    color: #ffffff;
    transform: translateY(-1px);
}




.cc_container {
    padding: 10px !important;
}


.cc_message {
    font-size: 14px !important;
}




@-webkit-keyframes st-slide-in {
    0% {
        -webkit-transform: translateX(100px);
    }

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

@keyframes st-slide-in {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }

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

@-webkit-keyframes st-bounce-in {
    0% {
        -webkit-transform: scale(0);
    }

    60% {
        -webkit-transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes st-bounce-in {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    60% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.hvr-underline-from-center {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.hvr-underline-from-center::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    pointer-events: none;
}

.hvr-underline-from-center:hover::before,
.hvr-underline-from-center:focus::before,
.hvr-underline-from-center:active::before {
    transform: scaleX(1);
    opacity: 1;
}


#st-main-nav .menu a.is-active::before {
    transform: scaleX(1);
    opacity: 1;
}

.hero-section-2 .headlines-wrapper .typed-cursor,
.typed-headline .typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
    color: #ffffff;
}

.hero-section-2 .headlines-wrapper .typed-cursor {
    font-size: 76px;
    line-height: 76px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-section-2 {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-h));
    min-height: calc(100vh - var(--header-h));
    margin-top: 0;
    text-align: center;
    background: url("../../images/hero-dark.webp") center/cover no-repeat;
    overflow: clip;
}

.hero-section-2 .container-fluid,
.hero-section-2 .row,
.hero-section-2 .col-lg-12 {
    height: 95%;
}

.hero-section-2 .col-lg-12,
.hero-section-2 .col-lg-10 {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    pointer-events: none;


}
.hero-section-2 .col-lg-12 a,
.hero-section-2 .col-lg-12 button,
.hero-section-2 .col-lg-12 input,
.hero-section-2 .col-lg-12 textarea,
.hero-section-2 .col-lg-12 select,
.hero-section-2 .col-lg-12 label {
    pointer-events: auto;
}






.hero-section-2 .hero-content h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 25px;
}
.hero-section-2 .hero-content p {
    font-size: 26px;
    line-height: 1.65;
}



.hero-section-2 #particles-js {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    z-index: 1;
    pointer-events: auto;
    background: transparent !important;
}

.hero-section-2 #particles-js canvas {
    pointer-events: auto;
    background: transparent !important;
}


.hero-section-2 .headlines-wrapper {
    margin: 0 auto 14px;
}

.hero-section-2 .skilltechtypetext {
    color: #ffffff;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.2;
}


.hero-section-2 h3{
    line-height: 1.3;
    font-size: 28px;
    color: #ffffff;
    font-weight: 400;
    margin: 12px auto 0;
    text-shadow: 0 6px 18px rgba(0,0,0,.55);
}

.hero-section-2 .second-headline span{
    font-weight: 700;
    color: var(--edm-accent-1);
}

.hero-section-2 .second-headline span {
    font-weight: 700;
}


.image-section {
    width: 100%;
    height: 700px;
    background: url(../../images/image-section.webp) 50% 50% fixed;
    background-size: cover;
    padding-top: 260px;
    padding-bottom: 260px;
}




.image-section h3 {
    line-height: 1.1;
    font-size: 44px;
    color: #f9fafb;
    font-weight: 400;
    margin-top: 0;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9);
}

.image-section h3 span {
    font-weight: 700;
    color: #a95bff;
}

.image-section h4 {
    line-height: 32px;
    font-size: 24px;
    color: #38bdf8;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}





.image-section .btn-lg {
    width: 180px;
    height: 50px;
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    margin-top: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);

}

.image-section .hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.image-section .hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.image-section .hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: #ffffff;
    background-color: #40464f;
}

.image-section .hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.our-work-section {
    height: auto;
    width: 100%;
}

.our-work-section .see-work {
    height: 100px;
    padding: 25px 0;
    text-align: center;
    background-color: #0c161e;
    color: #ffffff;
}

.our-work-section .see-work h2 {
    line-height: 50px;
    font-size: 44px;
    margin: 0;
    font-weight: 700;
}

.our-work-section .new-style {
    height: 50px;
    text-align: center;
    background-color: #2c363f;
    color: #808E9E;
    border-top: 1px solid #505963;
    padding: 14px 0 18px;
}

.our-work-section .new-style p {
    line-height: 18px;
    font-size: 18px;
    margin: 0;
}

.our-work-section .new-style p a {
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.our-work-section .new-style p a:hover,
.our-work-section .new-style p a:active,
.our-work-section .new-style p a:visited {
    color: #ffffff;
}

.our-work-section .portfolio-images {
    height: 100%;
    padding: 0;
}

.our-work-section .portfolio-images .col-md-3 {
    padding: 0;
}

.portfolio-images .col-md-3 .portfolio-img {
    height: 100%;
    overflow: hidden;
}

.portfolio-img .img-responsive {
    max-width: 110%;
    margin-left: -10px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.portfolio-images .col-md-3 .portfolio-img:hover .img-responsive {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
}

.portfolio-img:hover {
    cursor: pointer;
}

.portfolio-img .sweep-left {
    width: 0;
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out;
}

.portfolio-img .sweep-right {
    height: 6px;
    width: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out;
}

.portfolio-img:hover .sweep-left,
.portfolio-img:hover .sweep-right {
    width: 100%;
}

.portfolio-img .sweep-layer {
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding-top: 35%;
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 0;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.portfolio-img:hover .sweep-layer {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.sweep-icon a .fa {
    font-size: 57px;
    -webkit-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

.sweep-icon a:hover .fa {
    color: #ffffff;
}

.sweep-layer h3 a {
    color: #ffffff;
    font-size: 20px;
    -webkit-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

.sweep-layer p {
    color: #848484;
    font-size: 17px;
    font-weight: 300;
}

.about-section {
    height: auto;
    text-align: center;
    background: #0c161e;
    padding-bottom: 80px;
}

.about-text {
    padding-top: 100px;
    height: auto;
}

.about-text video {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 35px auto 0;
}


.about-text h2 {
    line-height: 44px;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 200;
    color: #ffffff;
}

.about-text h2 span {
    font-weight: 700;
    color: #ffffff;
}

.about-text p {
    line-height: 26px;
    font-size: 16px;
    color: #9EC6D8;
    font-weight: 300;
    margin-bottom: 40px;
}

.about-icons {
    margin-top: 30px;
}

.about-icons li {
    height: 40px;
    overflow: hidden;
}

.about-icons li .icon {
    padding: 4px 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.about-icons li .icon .material-icons {
    font-size: 32px;
}

.about-icons li .text {
    display: inline-block;
    height: 40px;
    padding: 12px 0;
    font-size: 16px;
    line-height: 16px;
    color: #9EC6D8;
    overflow: auto;
}

.about-images {
    height: 440px;
    position: relative;
}

.about-images .image-left,
.about-images .image-right {
    display: inline-block;
    margin-top: 46px;
}

.about-images .image-left {
    margin-right: 170px;
}

.about-images .image-right {
    margin-left: 170px;
}

.about-images .image-center {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.quote-section {
    height: 530px;
    z-index: 1001;
    position: relative;
}

.quote-headline {
    height: 136px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 53px 0;
}

.quote-headline h4 {
    line-height: 30px;
    font-size: 25px;
    margin: 0;
    font-weight: 200;
}

.quote-headline h4 span {
    font-weight: 700;
}

.quote-bottom {
    width: 100%;
    height: 400px;
    background: #848383 url('../../images/quote-background.webp') 40% 90% fixed;
    text-align: center;
    padding-top: 137px;
    padding-bottom: 137px;
}

.quote-bottom .container h3 {
    line-height: 46px;
    font-size: 37px;
    color: #FFFFFF;
    font-weight: 200;
    margin-top: 0;
}

.quote-bottom .container h3 span {
    font-weight: 700;
}

.quote-bottom .container p {
    font-size: 17px;
    line-height: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 0;
}

.quote-bottom .container p span {
    text-transform: none;
    color: #A4C2D6;
}

.services-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #101c26;
}

.service-headline {
    padding-right: 120px;
    padding-left: 120px;
    margin-bottom: 80px;
    text-align: center;
}

.service-headline h2 {
    line-height: 44px;
    font-size: 37px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 200;
    margin-top: 0;
}

.service-headline h2 span {
    font-weight: 700;
}

.service-headline p {
    line-height: 26px;
    font-size: 16px;
    color: #7EACBC;
    font-family: 'Source Sans Pro', sans-serif;
}

.service-content {
    text-align: center;
    overflow: hidden;
}

.service-content .left,
.service-content .service-image,
.service-content .right {
    display: inline-block;
}

.service-content .left,
.service-content .right {
    overflow: hidden;
    height: 530px;
    padding-top: 70px;
}

.service,
.service-2 {
    height: 100px;
    display: table;
}

.service .icons,
.service .text,
.service-2 .icons,
.service-2 .text {
    display: inline-block;
}

.service .text {
    width: 250px;
    text-align: right;
    margin-right: 30px;
}

.service-2 .text {
    width: 250px;
    text-align: left;
    margin-left: 30px;
}

.service .icons,
.service-2 .icons {
    display: table-cell;
    vertical-align: top;
}

.service .icons i,
.service-2 .icons i {
    font-size: 37px;
}

.service-image {
    padding: 0;
    margin: 0 10px;
    width: 260px;
    height: 530px;
    overflow: hidden;
}

.service .text a,
.service-2 .text a {
    color: #A4C2D6;
    font-size: 17px;
    line-height: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.service .text p,
.service-2 .text p {
    line-height: 23px;
    font-size: 15px;
    color: #77A3B2;
}

.call-to-section {
    height: auto;
    width: 100%;
    background: url('../../images/low-poly.webp') no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    padding-top: 146px;
    padding-bottom: 146px;
}

.call-to-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.call-to-section h3 {
    line-height: 56px;
    font-size: 47px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 200;
    margin-top: 0;
}

.call-to-section h3 span {
    font-weight: 700;
}

.call-to-section p {
    line-height: 26px;
    font-size: 19px;
    color: #ffffff;
    font-weight: 300;
}

.call-to-section .btn-default {
    height: 50px;
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    margin-top: 20px;
}

.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.call-to-section .hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.call-to-section .hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: #ffffff;
    background: -webkit-gradient(linear, left top, right top, from(#2E4054), to(#456A93));
    background: linear-gradient(to right, #2E4054, #456A93 100%);
    border-color: #456B93;
}

.call-to-section .hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.skills-section {
    width: 100%;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
    background: #0c161e;
}

.skills-headline {
    margin-bottom: 80px;
}

.skills-headline h4 {
    line-height: 29px;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 200;
}

.skills-headline h4 span {
    font-weight: 700;
}

.skills-headline p {
    line-height: 26px;
    font-size: 16px;
    color: #9EC6D8;
    font-weight: 300;
}

.bar-wrapper {
    margin-bottom: 30px;
    overflow: hidden;
}

.bar-wrapper .col-md-3 {
    line-height: 16px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    padding-left: 70px;
    color: #4D748C;
}

.bar-wrapper .col-md-8 {
    border-top: 1px solid #4D748C;
    padding-top: 5px;
    padding-left: 0;
}

.progressBar {
    width: 100%;
    -webkit-animation-name: progressBar;
    animation-name: progressBar;
}

@-webkit-keyframes progressBar {
    0% {
        opacity: 1;
        position: relative;
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: scale(.01, 1);
        transform: scale(.01, 1);
    }
    100% {
        position: relative;
        -webkit-transform-origin: left center;
        transform-origin: left center;
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes progressBar {
    0% {
        opacity: 1;
        position: relative;
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: scale(.01, 1);
        transform: scale(.01, 1);
    }
    100% {
        position: relative;
        -webkit-transform-origin: left center;
        transform-origin: left center;
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.bar-wrapper .col-md-8 .progressBar {
    height: 6px;
}

.bar-wrapper .col-md-8 .first-bar {
    width: 75%;
}

.bar-wrapper .col-md-8 .second-bar {
    width: 90%;
}

.bar-wrapper .col-md-8 .third-bar {
    width: 95%;
}

.bar-wrapper .col-md-8 .fourth-bar {
    width: 95%;
}

.bar-wrapper .col-md-8 .fifth-bar {
    width: 59%;
}

.bar-wrapper .col-md-1 {
    color: #4D748C;
    line-height: 19px;
    font-size: 19px;
    font-weight: 700;
}

.contact-section {
    height: 830px;
    padding-top: 60px;
    text-align: center;
    background: url('../../images/contact-hero.webp') 0 50% fixed;
}

.contact-headline {
    margin-bottom: 50px;
    padding: 0 86px;
}

.contact-headline h3 {
    line-height: 56px;
    font-size: 47px;
    color: #ffffff;
    font-weight: 200;
}

.contact-headline h3 span {
    font-weight: 700;
}

.contact-headline p {
    line-height: 26px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
}

.contact-content {
    text-align: center;
    padding: 10px 70px;
    overflow: auto;
}

.contact-info,
.contact-form {
    width: 45%;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.contact-info {
    margin-right: 30px;
    padding: 30px 30px;
    text-align: left;
    font-weight: 300;
}

.contact-form {
    padding: 30px 30px;
    text-align: left;
}

.contact-info .contact-header,
.bottom-info h4,
.contact-form h4 {
    font-size: 21px;
    line-height: 25px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 200;
}

.contact-info .contact-header span,
.bottom-info h4 span,
.contact-form h4 span {
    font-weight: 700;
}

.info-line .info-icon {
    display: inline-block;
    width: 30px;
    text-align: center;
    margin-right: 10px;
}

.info-line .info-icon i {
    font-size: 21px;
}

.info-line .info-text {
    display: inline-block;
    margin-bottom: 10px;
}

.info-line .info-text p {
    line-height: 26px;
    font-size: 16px;
    color: #ffffff;
}

.social-icons li a {
    display: table;
    width: 40px;
    height: 40px;
    text-align: center;
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.social-icons li a i {
    display: table-cell;
    vertical-align: middle;
    font-size: 17px;
    color: #ffffff;
}

.bottom-info p {
    margin-top: 20px;
    line-height: 24px;
    font-size: 15px;
    color: #ffffff;
    font-family: 'Titilium Web', sans-serif;
    padding-right: 50px;
}

.contact-form {
    margin-left: 30px;
}

.contact-form h4 {
    margin: 0;
}

.contact-form form {
    margin-top: 30px;
}

.contact-form .form-control {
    border-color: #73858E;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.contact-form .form-control:focus {
    border-color: #859aa4;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-form .form-control:hover {
    border-color: #c7c7c7;
}

.contact-form .form-group label {
    color: #ffffff;
}

.contact-form .form-group input {
    height: 40px;
}

.contact-form .form-group textarea {
    resize: none;
}

.contact-form .btn-default {
    background-color: transparent;
    border: 2px solid #ffffff;
    width: 170px;
    height: 40px;
    color: #ffffff;
    font-size: 16px;
    border-radius: 0;
    font-weight: 700;
    margin-top: 20px;
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}


footer {
    height: 140px;
    background-color: #0c161e;
    text-align: center;
    padding-top: 60px;
    clear: both;
}

footer p {
    color: #697982;
    font-size: 14px;
    line-height: 17px;
}

footer p a {
    color: #87A1AD;
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

/* 13. Portfolio Item
--------------------------------- */

.portfolio-item {
    height: 100%;
    width: 100%;
    margin-top: -100px;
    background: url('../../images/portfolio-item.webp') 100% 100% fixed;
    background-size: cover;
    position: relative;
}

.portfolio-item .container-fluid .col-md-12.quote-bottom {
    background-color: transparent;
}

.portfolio-item .container-fluid,
.portfolio-item .row,
.portfolio-item .col-lg-12 {
    height: 100%;
}

.portfolio-item #particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.portfolio-headline {
    height: 125px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    border-top: 1px solid #5f5f5f;
}

.portfolio-headline .container {
    height: 100%;
    padding-top: 16px;
    padding-bottom: 20px;
}

.portfolio-headline .btn-default {
    width: 180px;
    height: 50px;
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding-top: 17px;
    padding-bottom: 17px;
    margin-top: 24px;
}

.portfolio-headline .hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.portfolio-headline .hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.portfolio-headline .hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: #ffffff;
    background-color: #40464f;
}

.portfolio-headline .hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.portfolio-item .typed-headline {
    display: inline-block;
}

.service-item .typed-headline {
    margin-bottom: 20px;
}

.portfolio-item .typed-headline .skilltechtypetext {
    font-size: 50px;
    line-height: 60px;
    color: #FFFFFF;
    font-weight: 700;
}

.portfolio-item .typed-headline .typed-cursor {
    line-height: 60px;
    font-size: 50px;
}

.portfolio-item .typed-headline p {
    font-weight: 300;
    color: #7EACBC;
    font-size: 16px;
    margin-top: 6px;
}

.portfolio-item-details {
    background: url("../../images/image-section.webp");
    padding: 45px 0;
    background-size: cover;
}

.portfolio-item-details2 {
    padding: 0px 0;
}


.portfolio-item-details .portfolio-text {
    background: transparent;
    padding: 30px;
}

.portfolio-item-details .portfolio-text p {
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
}

.portfolio-useful-links,
.portfolio-download-links {
    display: inline-block;
}

.portfolio-form {
    clear: both;
}

.portfolio-form,
.portfolio-useful-links {
    padding: 30px;
}

.portfolio-item-details .portfolio-text h3,
.portfolio-form h3,
.portfolio-useful-links h3,
.portfolio-download-links h3 {
    margin-top: 0;
    color: #ffffff;
    font-weight: 200;
    margin-bottom: 30px;
}

.portfolio-item-details .portfolio-text h3 span,
.portfolio-form h3 span,
.portfolio-useful-links h3 span,
.portfolio-download-links h3 span {
    font-weight: 700;
}

.portfolio-form .form-control {
    border-color: #73858E;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.portfolio-form .form-control:focus {
    border-color: #859aa4;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portfolio-form .form-control:hover {
    border-color: #c7c7c7;
}

.portfolio-form .form-group label {
    color: #ffffff;
}

.portfolio-form .form-group input {
    height: 40px;
}

.portfolio-form .form-group textarea {
    resize: none;
}

.portfolio-form .btn-default {
    background-color: transparent;
    border: 2px solid #ffffff;
    width: 170px;
    height: 40px;
    color: #ffffff;
    font-size: 16px;
    border-radius: 0;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 30px;
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.portfolio-info {
    margin-top: 10px;
    list-style: none;
    padding-top: 70px;
}

.portfolio-info li {
    width: 100%;
    height: 32px;
}

.portfolio-info p {
    display: inline-block;
}

.portfolio-info .first {
    color: #26ecdd;
    line-height: 27px;
    font-size: 17px;
    margin: 0;
    width: 170px;
}

.portfolio-info .second {
    line-height: 24px;
    font-size: 17px;
    color: #ffffff;
    margin-top: 7px;
}

.portfolio-icons li a {
    width: 50px;
    height: 50px;
    text-align: center;
    display: table;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.portfolio-icons li a i {
    font-size: 30px;
    display: table-cell;
    vertical-align: middle;
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.portfolio-icons li a:hover i {
    color: #ffffff;
}

.service-item {
    height: 100%;
    width: 100%;
    margin-top: -100px;
    background: url('../../images/service-item.webp') fixed;
    background-size: cover;
    position: relative;
}

.service-item-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
}

.service-item .row .typed-headline {
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 20%;
}

.service-item .row .typed-headline .skilltechtypetext {
    padding: 0;
    font-size: 78px;
    color: #FFFFFF;
    z-index: 20;
}

.service-item .typed-headline .typed-cursor {
    font-size: 70px;
}

.service-headline-text {
    line-height: 35px;
    font-size: 25px;
    color: #FFFFFF;
    text-align: center;
    z-index: 20;
}

.service-headline-text p {
    margin-bottom: 40px;
}

.service-item-read-more .arrow-down {
    color: #ffffff;
    position: relative;

}

.service-item-read-more .arrow-down .fa {
    font-size: 70px;
    z-index: 20;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

.service-item-details {
    /*height: 1078px;*/
    background: url("../../images/image-section.webp");
    padding: 45px 0;
    background-repeat: repeat-y;
}

.service-item-details .service-text {
    background: transparent;
    padding: 30px;
}

.service-item-details .service-text2 {
    background: transparent;
    padding: 0px;
}

.service-item-details .service-text p {
    color: #ffffff;
    font-size: 16px;
}

.service-form {
    margin-left: 30px;
}

.service-item-details .service-text h3,
.service-form h3 {
    margin-top: 0;
    color: #ffffff;
    font-weight: 200;
    margin-bottom: 30px;
}

.service-item-details .service-text h3 span,
.service-form h3 span {
    font-weight: 700;
}

.service-form .form-control {
    border-color: #73858E;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.service-form .form-control:focus {
    border-color: #859aa4;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.service-form .form-control:hover {
    border-color: #c7c7c7;
}

.service-form .form-group label {
    color: #ffffff;
}

.service-form .form-group input {
    height: 40px;
}

.service-form .form-group textarea {
    resize: none;
}

.service-form .btn-default {
    background-color: transparent;
    border: 2px solid #ffffff;
    width: 170px;
    height: 40px;
    color: #ffffff;
    font-size: 16px;
    border-radius: 0;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 30px;
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}


.form-page {
    padding: 100px 0;
}

/* 15. Media Queries
--------------------------------- */
@media only screen and (max-width: 1200px) {
    .hero-section-2 #particles-js {
        height: 100%;
    }


    .hero-section-2 .headlines-wrapper .typed-cursor {
        font-size: 50px;
        line-height: 50px;
    }

    .hero-section-2 .skilltechtypetext {
        font-size: 54px;
        line-height: 70px;
    }

    .hero-section-2 h3 {
        line-height: 40px;
        font-size: 33px;
    }



    .image-section {
        height: 470px;
        padding-top: 120px;
        padding-bottom: 180px;
        background-position: center top;
        background-size: cover;
    }




    .our-work-section {
        height: 450px;
    }

    .our-work-section .portfolio-images {
        height: 300px;
    }

    .portfolio-img .sweep-layer {
        padding-top: 20%;
    }

    .about-section {
        height: auto;
        padding-bottom: 60px;
    }

    .about-text {
        padding-top: 70px;
        height: auto;
    }

    .about-images {
        height: auto;
    }


    .about-images .image-center {
        width: 360px;
        bottom: 80px;
    }

    .about-images .image-center img {
        width: 100%;
    }

    .about-images .image-left,
    .about-images .image-right {
        margin-top: 0;
        width: 310px;
    }

    .about-images .image-left img,
    .about-images .image-right img {
        width: 100%;
    }

    .about-images .image-left {
        margin-right: 100px;
    }

    .about-images .image-right {
        margin-left: 100px;
    }

    .services-section {
        padding-top: 80px;
    }

    .portfolio-item {
        background-position: 50% 0;
    }
}

@media only screen and (max-width: 1199px) {
    .portfolio-info {
        margin-top: 0;
        list-style: none;
        padding-top: 0;
        padding-bottom: 20px;
    }

    .portfolio-info li {
        display: inline-block;
        width: 50%;
        float: left;
    }

    .portfolio-form,
    .portfolio-useful-links {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 1024px) {
    .service-item .row .typed-headline {
        padding-top: 30%;
    }

    .portfolio-item .typed-headline p {
        margin-top: 0;
    }

    .portfolio-info {
        padding: 0 30px;
        margin-bottom: 20px;
    }

    .portfolio-info li {
        display: inline-block;
        width: 50%;
        float: left;
    }

    .portfolio-item-details {
        background-position: 50% 0;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-2 .headlines-wrapper .typed-cursor {
        font-size: 40px;
        line-height: 40px;
    }

    .hero-section-2 .skilltechtypetext {
        font-size: 40px;
        line-height: 60px;
    }

    .hero-section-2 h3 {
        line-height: 34px;
        font-size: 27px;
    }



    .image-section {
        height: auto;
        min-height: 360px;
        padding-top: 70px;
        padding-bottom: 90px;
        background-position: center top;
        background-size: cover;
    }



    .image-section h3 {
        line-height: 43px;
        font-size: 34px;
    }

    .image-section h4 {
        line-height: 31px;
        font-size: 24px;
    }

    .image-section .btn-lg {
        width: 140px;
    }

    .our-work-section .see-work h2 {
        line-height: 42px;
        font-size: 36px;
    }

    .our-work-section .portfolio-images {
        height: 360px;
    }

    .portfolio-img .sweep-layer {
        padding-top: 30%;
    }

    .about-section {
        clear: both;
        height: auto;
        padding-bottom: 60px;
    }

    .about-text {
        height: auto;
    }



    .about-images .image-left,
    .about-images .image-right {
        width: 280px;
    }

    .about-images .image-left {
        margin-right: 60px;
    }

    .about-images .image-right {
        margin-left: 60px;
    }

    .service-content .service-image {
        display: none;
    }

    .service-content .left {
        margin-right: 15px;
    }

    .service-content .right {
        margin-left: 15px;
    }

    .call-to-section {
        padding-top: 90px;
    }

    .call-to-section .container {
        padding-left: 100px;
        padding-right: 100px;
    }

    .call-to-section h3 {
        line-height: 48px;
        font-size: 30px;
    }



    .skills-section .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .bar-wrapper .col-sm-3 {
        padding-left: 0;
    }

    .contact-section {
        height: 1400px;
        overflow: hidden;
    }

    .contact-headline {
        padding-left: 100px;
        padding-right: 100px;
    }

    .contact-info,
    .contact-form {
        width: 75%;
        margin: 0 auto;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    footer {
        clear: both;
    }

    .service-item .row .typed-headline {
        padding-top: 40%;
    }

    .service-item .row .typed-headline .skilltechtypetext {
        font-size: 70px;
    }

    .service-item .typed-headline .typed-cursor {
        font-size: 70px;
    }

    .service-headline-text {
        font-size: 20px;
    }

}

@media only screen and (max-width: 991px) {

    .ipadmb50 {
        margin-bottom: 50px;
    }

    header {
        text-align: left;
    }

    .navbar-right {
        text-align: right;
        position: absolute;
        top: 10px;


    }

    .navbar-right .dropdown-menu {
        right: 0px;
        left: auto;
    }

    .maxw100 {
        max-width: 100%;
    }

    .portfolio-img .img-responsive {
        max-width: 100%;
    }



    .portfolio-headline {
        height: 130px;
    }

    .portfolio-headline .btn-default {
        float: left !important;
        margin-left: 20px;
    }

    .portfolio-item .typed-headline {
        padding-left: 20px;
        margin-top: 10px;
    }

    .portfolio-item .typed-headline .skilltechtypetext {
        font-size: 40px;
        line-height: 40px;
    }

    .portfolio-item .typed-headline p {
        margin-top: 14px;
    }

    .portfolio-item-details {
        background-position: 50% 0;
    }
}














@media only screen and (max-width: 960px) {

    .portfolio-download-links {
        padding: 0 30px 30px;
    }

    .portfolio-useful-links {
        padding: 0 30px 24px;
    }
}

@media only screen and (max-width: 768px) {
    .portfolio-info li {
        display: inline-block;
        width: 100%;
        float: left;
    }
}




@media only screen and (max-width: 767px) and (orientation: landscape) {
    .service-item .row .typed-headline {
        padding-top: 15%;
        margin-bottom: 10px;
    }

    .service-item .row .typed-headline .skilltechtypetext {
        font-size: 60px;
    }

    .service-item .typed-headline .typed-cursor {
        font-size: 64px;
    }

    .service-headline-text {
        font-size: 16px;
    }

    .service-headline-text p {
        margin-bottom: 25px;
    }



    .portfolio-headline {
        height: 92px;
    }

    .portfolio-headline .container {
        padding-top: 10px;
    }

    .portfolio-item .typed-headline p {
        margin: 0;
    }

    .portfolio-headline .btn-default {
        margin-top: 9px;
    }
}

@media only screen and (max-width: 714px) {
    .services-section .left .text {
        text-align: left;
    }
}

@media only screen and (max-width: 667px) and (orientation: landscape) {


    .portfolio-download-links {
        padding: 30px;
    }

    .portfolio-info .first {
        width: 140px;
    }
}

@media only screen and (max-width: 600px) and (orientation: landscape) {
    .service-item .row .typed-headline {
        padding-top: 12%;
        margin-bottom: 0;
    }

    .service-item .row .typed-headline .skilltechtypetext {
        font-size: 54px;
    }

    .service-item .typed-headline .typed-cursor {
        font-size: 60px;
    }

    .service-headline-text {
        font-size: 16px !important;
    }

    .service-headline-text p {
        margin-bottom: 15px;
    }

}

@media only screen and (max-width: 597px) {
    .portfolio-headline {
        height: 105px;
    }

}

@media only screen and (max-width: 590px) and (min-width: 481px) {



    .about-images .image-center {
        width: 230px;
    }

    .about-images .image-left,
    .about-images .image-right {
        margin-top: 40px;
        width: 190px;
    }

    .contact-section {
        height: 1550px;
    }

    .contact-headline {
        padding-left: 40px;
        padding-right: 40px;
    }

    .contact-content {
        padding-left: 50px;
        padding-right: 50px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .service-item .row .typed-headline .skilltechtypetext {
        font-size: 50px;
    }

    .service-item .typed-headline .typed-cursor {
        font-size: 54px;
    }

    .service-headline-text {
        font-size: 18px;
    }

    .portfolio-download-links {
        padding: 30px;
    }

    .portfolio-info {
        overflow: hidden;
    }

    .portfolio-info li {
        width: 100%;
        float: none;
    }
}

@media only screen and (max-width: 560px) {

    .about-images .image-left,
    .about-images .image-right {

        width: 140px;
    }

    .about-text {
        height: auto;
    }


    .portfolio-icons li {
        padding-right: 0;
    }

    ul.portfolio-info li {
        float: none;
    }

    .portfolio-info .first,
    .portfolio-info .second {
        width: 100%;
    }

    .portfolio-info .first {
        padding-top: 14px;
    }

    .portfolio-info .second {
        margin-top: 0;
    }

}

@media only screen and (max-width: 480px) {
    .our-work-section .new-style {
        height: 80px;
        padding: 14px 35px 18px;
    }

    .our-work-section .new-style p {
        line-height: 24px;
        font-size: 16px;
    }

    .portfolio-images .portfolio-img {
        height: 230px;
    }

    .portfolio-img .img-responsive {
        width: 100%;
        height: 100%;
        max-width: 100%;
        margin-left: 0;
        object-fit: cover;
    }

    .about-section {
        height: auto;
    }

    .about-text {
        padding: 80px 20px 40px;
        height: auto;
    }


    .about-text h2 {
        line-height: 36px;
        font-size: 32px;
    }

    .about-icons li {
        width: 100%;
        text-align: left;
    }

    .about-images .image-center {
        width: 160px;
        bottom: 120px;
    }

    .about-images .image-left,
    .about-images .image-right {
        margin-top: 60px;
        width: 140px;
    }

    .about-images .image-left {
        margin-right: 20px;
    }

    .about-images .image-right {
        margin-left: 20px;
    }

    .quote-headline {
        height: 166px;
        padding: 53px 30px;
    }

    .service-headline {
        padding-left: 30px;
        padding-right: 30px;
    }

    .service-content .left {
        margin-right: 0;
    }

    .service-content .right {
        margin-left: 0;
    }

    .call-to-section {
        height: auto;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .call-to-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .bar-wrapper .col-xs-4 {
        line-height: 12px;
        font-size: 12px;
    }

    .bar-wrapper .col-xs-1 {
        line-height: 14px;
        font-size: 14px;
    }

    .bar-wrapper .col-xs-7 {
        width: 53%;
    }

    .contact-section {
        height: 1650px;
    }

    .contact-headline {
        padding-left: 30px;
        padding-right: 30px;
    }

    .contact-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .info-line .info-text p {
        font-size: 14px;
    }

    .portfolio-item {
        padding-left: 0;
        padding-top: 90%;
    }

    .portfolio-icons li a,
    .service-icons li a {
        width: 40px;
        height: 40px;
    }

    .portfolio-icons li a i,
    .service-icons li a i {
        font-size: 24px;
    }

    .service-item .row .typed-headline {
        padding-top: 50%;
    }

    .service-item .row .typed-headline .skilltechtypetext {
        font-size: 44px;
    }

    .service-item .typed-headline .typed-cursor {
        font-size: 50px;
    }

    .service-headline-text {
        font-size: 16px;
    }

    .portfolio-item .typed-headline .skilltechtypetext {
        font-size: 18px;
        line-height: 28px;
    }

    .portfolio-item .typed-headline p {
        margin: 0;
    }

    .portfolio-headline .btn-default {
    }

    .portfolio-item-details .col-md-12 {
        padding: 0;
    }

    .portfolio-download-links {
        padding: 30px;
    }

    .portfolio-info {
        overflow: hidden;
    }

    .portfolio-info li {
        width: 100%;
        float: none;
    }

    .portfolio-info .first {
        width: 160px;
    }

    .portfolio-item .typed-headline p {
        margin-bottom: 8px;
        margin-top: 14px;
    }

    .hero-section-2 .hero-main-btn,
    .hero-section-2 .btn,
    #about .hero-main-btn {
        padding: 14px 40px;
        font-size: 15px;
        min-width: 100% !important;
    }
}

@media only screen and (max-width: 380px) {


    .hero-section-2 .hero-main-btn,
    .hero-section-2 .btn,
    #about .hero-main-btn {
        padding: 14px 40px;
        font-size: 15px;
        min-width: 100% !important;
    }


    .about-images .image-center {
        width: 140px;
        bottom: 120px;
    }

    .about-images .image-left,
    .about-images .image-right {
        margin-top: 80px;
        width: 120px;
    }

    .about-images .image-left {
        margin-right: 10px;
    }

    .about-images .image-right {
        margin-left: 10px;
    }

    .services-section {
        height: 1350px;
    }

    .service-content .left,
    .service-content .right {
        height: 420px;
    }

    .service .text,
    .service-2 .text {
        width: 85%;
        margin-right: 0;
        margin-left: 0;
    }

    .service .icons,
    .service-2 .icons {
        width: 15%;
    }

    .progress-bar-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-content {
        padding-left: 5px;
        padding-right: 5px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .info-line .info-text p {
        font-size: 12px;
    }

    .typed-headline .typed-cursor {
        line-height: 22px;
        font-size: 22px;
    }

    .service-item .row .typed-headline {
        padding-top: 60%;
    }

    .portfolio-item .typed-headline p {
        margin-top: 0;
    }

    .portfolio-headline .btn-default {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 375px) {
    .our-work-section .see-work {
        height: auto;
        padding: 34px 16px;
    }

    .our-work-section .see-work h2 {
        font-size: 38px;
        line-height: 1.15;
    }
}

@media only screen and (max-width: 320px) {
    .portfolio-headline .typed-headline .skilltechtypetext {
        font-size: 24px;
        line-height: 24px;
    }

    .portfolio-info .first {
        width: 110px;
        font-size: 14px;
    }

    .portfolio-info .second {
        font-size: 14px
    }
}






.courses-filter-section {
    padding-top: 40px;
    padding-bottom: 20px;
}

.courses-filter-section h2 span {
    color: #ffcc33;
}

.courses-stats {
    font-size: 14px;
    margin-top: 10px;
}

.courses-stats .label {
    opacity: 0.7;
    margin-right: 5px;
}

.courses-stats .value {
    font-weight: 600;
}

.courses-filter-form .form-group {
    margin-bottom: 15px;
}

.courses-filter-form label.control-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.8;
}

.courses-filter-form .form-control {
    border-radius: 999px;
    padding-left: 16px;
    padding-right: 16px;
}

.buttons-wrapper {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.buttons-wrapper > .edumath-btn,
.buttons-wrapper > .reset-filter-btn {
    height: 52px;
    min-height: 52px;
    box-sizing: border-box;
}


.main-filter-btn {
    border-radius: 999px;
    padding-left: 22px;
    padding-right: 22px;
}

.reset-filter-btn {
    min-height: 52px;
    padding: 0 22px !important;
    line-height: 1;
    white-space: nowrap;
}

.option.correct {
    border: 2px solid #16a34a;
    background: #ecfdf5;
}

.option.wrong {
    border: 2px solid #dc2626;
    background: #fef2f2;
}

.active-filters-row {
    margin-top: 10px;
}

.active-filters-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-right: 8px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    font-size: 12px;
    margin-right: 6px;
}

.filter-chip i {
    font-size: 11px;
    margin-right: 4px;
    opacity: 0.8;
}

.filter-clear-all {
    font-size: 12px;
    margin-left: 8px;
    opacity: 0.8;
}







.courses-list-section {
    padding-top: 20px;
    padding-bottom: 60px;
}

.course-card {
    background: rgba(15, 18, 30, 0.92);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.course-card-img {
    position: relative;
    overflow: hidden;
}

.course-card-img img {
    width: 100%;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.course-card:hover .course-card-img img {
    transform: scale(1.06);
}

.course-level-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 204, 51, 0.9);
    color: #111;
    font-weight: 600;
}

.course-card-body {
    padding: 16px 18px 6px;
    flex: 1 1 auto;
}

.course-title {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.3;
}

.course-title a {
    color: #fff;
    text-decoration: none;
}

.course-title a:hover {
    text-decoration: underline;
}

.course-short {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 10px;
    min-height: 38px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.course-meta .meta-item i {
    margin-right: 4px;
}

.course-price {
    font-weight: 600;
}

.course-card-footer {
    padding: 8px 18px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.course-card-footer .btn {
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.no-courses-wrapper {
    margin-top: 30px;
}

.no-courses-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.no-courses-text {
    opacity: 0.8;
    margin-bottom: 15px;
}








.courses-hero {
    position: relative;
    min-height: 320px;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-row-flex {
    display: flex;
    align-items: center;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left,
    rgba(255, 204, 51, 0.15) 0,
    transparent 55%);
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-breadcrumb {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
    margin-bottom: 10px;
}

.hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.hero-breadcrumb span {
    margin: 0 4px;
}

.hero-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-title span {
    color: #ffcc33;
}

.hero-subtitle {
    font-size: 15px;
    opacity: 0.88;
    margin-bottom: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-main-btn {
    border-radius: 999px;
    padding-left: 24px;
    padding-right: 24px;

    background: linear-gradient(120deg, var(--edm-accent-1), var(--edm-accent-2));
    border-color: transparent;
    box-shadow: 0 12px 32px var(--edm-accent-soft);
}


.hero-secondary-btn {
    font-size: 13px;
    opacity: 1;
}

.hero-side-panel {
    position: relative;
    z-index: 2;
}

.hero-side-card {
    background: rgba(10, 12, 22, 0.95);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-side-headline .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffcc33;
}

.hero-side-headline h3 {
    margin-top: 4px;
    margin-bottom: 10px;
    font-size: 18px;
}

.hero-side-text {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.hero-side-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 12px;
    font-size: 13px;
}

.hero-side-list li {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.hero-side-list i {
    font-size: 12px;
    margin-right: 6px;
    color: #ffcc33;
}

.hero-side-btn {
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 991px) {
    .courses-hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-row-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-side-panel {
        margin-top: 20px;
        width: 100%;
    }

    .recommended-card {
        margin-bottom: 18px;
    }

}




.recommended-section {
    padding-top: 20px;
    padding-bottom: 60px;
}

.recommended-section h2 span {
    color: #ffcc33;
}

.recommended-note {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 10px;
}

.recommended-cards-row {
    margin-top: 15px;
}

.recommended-card {
    background: rgba(15, 18, 30, 0.95);
    border-radius: 18px;
    padding: 16px 18px 14px;
    margin-bottom: 22px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.recommended-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
    rgba(255, 204, 51, 0.18) 0,
    transparent 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.recommended-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 204, 51, 0.5);
}

.recommended-card:hover::before {
    opacity: 1;
}

.recommended-index {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 26px;
    font-weight: 700;
    opacity: 0.08;
}

.recommended-index span {
    display: inline-block;
}

.recommended-title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 17px;
}

.recommended-progress-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    margin-top: 4px;
}

.recommended-progress-bar {
    flex: 1 1 auto;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    margin-right: 8px;
}

.recommended-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffcc33, #ffd966);
    width: 0;
}

.recommended-progress-label {
    font-size: 12px;
    opacity: 0.85;
    white-space: nowrap;
}

.recommended-progress-label span:first-child {
    font-weight: 600;
}

.recommended-steps {
    list-style: none;
    padding-left: 0;
    margin: 8px 0 10px;
    font-size: 13px;
    opacity: 0.9;
}

.recommended-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.recommended-steps .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffcc33;
    margin-right: 8px;
}

.recommended-footer .btn {
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}




@media only screen and (max-width: 767px) {

    :root {
        --header-h: 64px;
    }

    html,
    body {
        margin: 0;
        max-width: 100%;
        overflow-x: clip;
        background: #050812;
    }

    main,
    #main-content,
    section,
    .container,
    .container-fluid {
        max-width: 100%;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    * {
        box-sizing: border-box;
    }

    img,
    video,
    canvas,
    svg {
        max-width: 100%;
    }

    #st-header {
        max-width: 100%;
    }

    body {
        padding-top: var(--header-h);
    }

    .hero-section-2 {
        margin-top: 0;
        padding: 0 16px;
        height: calc(100vh - var(--header-h));
        min-height: calc(100vh - var(--header-h));
    }

    .hero-section-2 #particles-js {
        height: 100%;
    }

    .hero-section-2 .headlines-wrapper,
    .hero-section-2 h3 {
        position: relative;
        z-index: 2;
    }

    .hero-section-2 .headlines-wrapper {
        margin: 0 auto 16px;
    }

    .hero-section-2 .skilltechtypetext {
        font-size: 34px;
        line-height: 1.25;
        display: inline-block;
    }

    .hero-section-2 .headlines-wrapper .typed-cursor {
        font-size: 34px;
        line-height: 34px;
    }

    .hero-section-2 h3 {
        margin: 6px auto 0;
        padding: 0 12px;
        font-size: 20px;
        line-height: 1.35;
    }

    .image-section {
        width: 100%;
        height: auto;
        min-height: 420px;
        padding: 80px 18px;
        background-image: url(../../images/image-section.webp);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: scroll;
        position: relative;
        overflow: hidden;
    }
    .image-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
                linear-gradient(180deg, rgba(5, 8, 18, 0.22), rgba(5, 8, 18, 0.72)),
                radial-gradient(circle at 50% 35%, rgba(178, 102, 255, 0.16), transparent 55%);
        z-index: 1;
        pointer-events: none;
    }

    .image-section .container,
    .image-section .row,
    .image-section [class*="col-"] {
        position: relative;
        z-index: 2;
    }




    .image-section h3 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .image-section h4 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .image-section .btn.btn-default {
        margin-top: 4px;
    }
    .quote-section,
    .quote-headline,
    .quote-bottom {
        display: none !important;
    }
    .portfolio-img .sweep-left,
    .portfolio-img .sweep-right {
        display: none !important;
    }

    .portfolio-img .sweep-layer {
        display: block !important;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;

        padding-top: 26% !important;
        background: rgba(0, 0, 0, 0.72);

        transform: rotateX(90deg);
        -webkit-transform: rotateX(90deg);

        transition: all .25s ease;
        -webkit-transition: all .25s ease;

        pointer-events: none;
        z-index: 6;
    }

    .portfolio-img:active .sweep-layer,
    .portfolio-img:hover .sweep-layer {
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
    }

    .portfolio-img .sweep-layer h3 {
        margin-top: -8px;
    }

    .portfolio-img .sweep-layer p {
        display: none;
    }

    .portfolio-img .sweep-icon a .fa {
        font-size: 46px;
    }

    .portfolio-images .col-md-3 .portfolio-img,
    .portfolio-images .col-sm-6 .portfolio-img,
    .portfolio-images .col-xs-6 .portfolio-img {
        height: 190px !important;
        overflow: hidden;
        position: relative;
    }

    .portfolio-img .img-responsive {
        width: 100%;
        height: 100%;
        max-width: 100%;
        margin-left: 0;
        object-fit: cover;
        transform: none !important;
    }

    .portfolio-images .col-md-3,
    .portfolio-images .col-sm-6,
    .portfolio-images .col-xs-6 {
        padding: 0;
    }

    .portfolio-images .col-md-3 .portfolio-img:hover .img-responsive {
        transform: none !important;
    }

    .portfolio-mobile-link {
        display: block !important;
        position: absolute;
        inset: 0;
        z-index: 10;
    }
}







@media (max-width: 767px) {

    .image-section .hero-chalk-box {
        width: 100%;
        max-width: 340px;
        padding: 24px 22px 26px;
        border-radius: 22px;
        background: rgba(5, 8, 18, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .image-section .hero-chalk-box h3 {
        font-size: 28px;
        line-height: 1.18;
    }

    .image-section .hero-chalk-box h4 {
        font-size: 16px;
        line-height: 1.4;
    }

    .image-section .hero-chalk-box .btn {
        width: 100%;
        justify-content: center;
    }



    .about-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .about-text {
        padding-top: 0;
    }
}












.portfolio-mobile-link {
    display: none;
}

.our-work-section,
.our-work-section .portfolio-images,
.about-section,
.about-text,
.about-images {
    height: auto !important;
}









#contact form .btn,
#contact form .btn-default {
    width: auto;
    max-width: 100%;
    padding: 12px 32px;
    font-size: 13px;
    white-space: nowrap;
}
.hero-section-2 .hero-main-btn,
.hero-section-2 .btn,
#about .hero-main-btn {
    padding: 14px 40px;
    font-size: 15px;
    min-width: 260px;
}
.image-section .hero-chalk-box {
    display: inline-block;
    padding: 24px 32px 28px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
}

.image-section .hero-chalk-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.image-section .hero-chalk-box h4 {
    margin-top: 0;
    margin-bottom: 18px;
}

.image-section .hero-chalk-box .btn {
    padding: 10px 26px;
    font-size: 13px;
}










:root{
    --header-h: 84px;
    --header-bg: #050812;
    --header-text: rgba(255,255,255,0.92);
    --header-text-strong: #ffffff;
    --header-border: rgba(255,255,255,0.14);
}

#st-header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;

    height: var(--header-h);
    background: var(--header-bg);

    width: 100%;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    background: var(--header-bg);
}

body{
    margin: 0;
    padding-top: var(--header-h);
}

#st-header,
#st-header a,
#st-header .menu a,
#st-header .user-status span{
    color: var(--header-text);
}
#st-header .menu a:hover{
    color: var(--header-text-strong);
}

#st-logo{
    flex: 0 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}
#st-logo a{
    height: 100%;
    display: flex;
    align-items: center;
}
#st-logo img{
    height: 130%;
    width: auto;
    display: block;
}

#st-nav{
    flex: 1 1 auto;
    height: 100%;
    min-width: 0;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 14px;
}


#st-main-nav{
    grid-column: 1 / 2;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
}

#st-main-nav .menu{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    list-style: none;
    margin: 0;
    padding: 0;

    min-width: 0;
}
#st-main-nav .menu li{ margin: 0; padding: 0; }
#st-main-nav .menu a{
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.header-right{
    grid-column: 2 / 3;
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 14px;
}

.user-info{
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.user-avatar{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.18);
    flex: 0 0 auto;
}
.user-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.user-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;

    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.06);
    color: var(--header-text-strong);

    white-space: nowrap;
    flex: 0 0 auto;
}

.desktop-only{ display: flex; }
.mobile-only{ display: none; }

.st-nav-trigger{ display: none; }



@media (max-width: 1100px){

    .desktop-only{ display: none; }
    .mobile-only{ display: block; }

    .st-nav-trigger{
        grid-column: 2 / 3;
        justify-self: end;

        display: block;
        position: relative;

        width: 56px;
        height: 44px;

        padding: 0;
        font-size: 0;
        line-height: 0;

        background: rgba(168,85,247,0.10);
        border: 1px solid rgba(168,85,247,0.45);
        border-radius: 18px;

        box-shadow: 0 0 18px rgba(168,85,247,0.25);
    }

    .st-nav-trigger.burger span{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);

        width: 28px;
        height: 3px;

        background: rgba(255,255,255,0.92);
        border-radius: 9px;

        transition: .25s ease-in-out;
    }
    .st-nav-trigger.burger span:nth-of-type(1){ top: 14px; }
    .st-nav-trigger.burger span:nth-of-type(2){ top: 21px; }
    .st-nav-trigger.burger span:nth-of-type(3){ top: 28px; }

    .st-nav-trigger.burger.menu-is-open span:nth-of-type(1){
        top: 21px;
        transform: translateX(-50%) rotate(45deg);
    }
    .st-nav-trigger.burger.menu-is-open span:nth-of-type(2){
        opacity: 0;
        width: 0;
    }
    .st-nav-trigger.burger.menu-is-open span:nth-of-type(3){
        top: 21px;
        transform: translateX(-50%) rotate(-45deg);
    }

    #st-main-nav{
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(var(--header-h) + 10px);

        height: auto;
        display: none;

        flex-direction: column;
        align-items: stretch;
        gap: 14px;

        padding: 14px;
        border-radius: 18px;

        background: rgba(3, 5, 13, 0.98);
        border: 1px solid var(--header-border);
        box-shadow: 0 20px 70px rgba(0,0,0,0.55);
    }

    .st-nav-trigger.menu-is-open + #st-main-nav{
        display: flex;
    }

    #st-main-nav .menu{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;

        width: 100%;
    }

    #st-main-nav .menu a{
        width: 100%;
        padding: 10px 8px;
        border-radius: 12px;
        color: var(--header-text);
    }
    #st-main-nav .menu a:hover{
        background: rgba(255,255,255,0.06);
        color: #fff;
    }

    .user-info-li{
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid var(--header-border);
        width: 100%;
    }
    .user-info-li .user-info{
        width: 100%;
        padding: 8px 4px;
    }

    .mobile-auth{
        width: 100%;
        padding-top: 14px;
        border-top: 1px solid var(--header-border);
    }
    .mobile-auth .user-btn{
        width: 100%;
        padding: 12px 14px;
        justify-content: center;
    }
}





@media (max-width: 992px){

    .st-nav-trigger{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        user-select: none;
    }

    .st-nav-trigger.burger{
        display: block;
        position: relative;

        width: 56px;
        padding: 0;

        font-size: 0;
        line-height: 0;

        background: rgba(168,85,247,0.10);
        border: 1px solid rgba(168,85,247,0.45);
        border-radius: 18px;

        box-shadow: 0 0 18px rgba(168,85,247,0.25);
    }

    .st-nav-trigger.burger span{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);

        width: 28px;
        height: 3px;

        background: rgba(255,255,255,0.92);
        border-radius: 9px;

        display: block;
        margin: 0;
        padding: 0;

        transition: .25s ease-in-out;
    }

    .st-nav-trigger.burger span:nth-of-type(1){ top: 14px; }
    .st-nav-trigger.burger span:nth-of-type(2){ top: 21px; }
    .st-nav-trigger.burger span:nth-of-type(3){ top: 28px; }

    .st-nav-trigger.burger.menu-is-open span:nth-of-type(1){
        top: 21px;
        transform: translateX(-50%) rotate(45deg);
    }
    .st-nav-trigger.burger.menu-is-open span:nth-of-type(2){
        opacity: 0;
        width: 0;
    }
    .st-nav-trigger.burger.menu-is-open span:nth-of-type(3){
        top: 21px;
        transform: translateX(-50%) rotate(-45deg);
    }

    #st-main-nav{
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(var(--header-h) + 10px);

        height: auto;
        display: none;

        flex-direction: column;
        align-items: stretch;
        gap: 14px;

        padding: 14px;
        border-radius: 18px;

        background: rgba(5, 8, 18, 0.98);
        border: 1px solid var(--header-border);
        box-shadow: 0 20px 70px rgba(0,0,0,0.55);
    }

    .st-nav-trigger.menu-is-open + #st-main-nav{
        display: flex;
    }
    #st-main-nav .menu{
        position: static;
        left: auto;
        transform: none;

        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;

        width: 100%;
    }

    #st-main-nav .menu a{
        width: 100%;
        padding: 10px 8px;
        border-radius: 12px;
        color: var(--header-text);
    }
    #st-main-nav .menu a:hover{
        background: rgba(255,255,255,0.06);
        color: #fff;
    }

    .desktop-only{ display: none; }
    .mobile-only{ display: block; }

    .user-info-li{
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid var(--header-border);
        width: 100%;
    }
    .user-info-li .user-info{
        width: 100%;
        padding: 8px 4px;
    }

    .mobile-auth{
        width: 100%;
        padding-top: 14px;
        border-top: 1px solid var(--header-border);
    }
    .mobile-auth .user-btn{
        width: 100%;
        padding: 12px 14px;
        justify-content: center;
    }
}

















body.course-details-page .course-details-section {
    padding-top: 40px;
    padding-bottom: 80px;
    background:
            radial-gradient(circle at 10% 0%, rgba(178, 102, 255, 0.22) 0, transparent 55%),
            radial-gradient(circle at 90% 20%, rgba(255, 204, 51, 0.12) 0, transparent 50%),
            #0b1118;
}

body.course-details-page .course-details-card {
    background: rgba(15, 18, 30, 0.92);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

body.course-details-page .course-details-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

body.course-details-page .course-details-row > [class*="col-"] {
    padding: 22px;
}

body.course-details-page .course-cover {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

body.course-details-page .course-cover img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

body.course-details-page .course-info h2 {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 1.25;
}

body.course-details-page .course-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

body.course-details-page .course-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    background: rgba(255, 204, 51, 0.92);
    color: #111;
}

body.course-details-page .course-meta-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: flex-start;
    font-size: 13px;
    opacity: 1;
    margin-bottom: 10px;
}

body.course-details-page .course-meta-details .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.9);
}

body.course-details-page .course-details-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 14px 0 16px;
}

body.course-details-page .course-block-title {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

body.course-details-page .course-topics-grid {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    margin-bottom: 18px;
}

body.course-details-page .course-topics-grid li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.45;
}

body.course-details-page .course-topics-grid li:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 12px;
    color: #ffcc33;
}

body.course-details-page .course-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

body.course-details-page .course-actions .hero-main-btn i {
    margin-right: 6px;
}

@media (max-width: 991px) {
    body.course-details-page .course-cover img {
        height: 260px;
    }
}

@media (max-width: 767px) {
    body.course-details-page .course-details-row > [class*="col-"] {
        padding: 16px;
    }
    body.course-details-page .course-topics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    body.course-details-page .services-section {
        height: auto !important;
    }
}

html,
body {
    margin: 0;
    max-width: 100%;
    overflow-x: clip;
    background: #050812;
}

body {
    padding-top: var(--header-h);
}








.course-details-page{
    background: radial-gradient(circle at 0% 0%, #2b1459 0%, #050b14 45%, #020308 100%) !important;
}

.course-details-page .services-section{
    height: auto !important;
}

.course-details-page .hero-section-2.courses-hero.course-hero{
    box-sizing: border-box;
    height: calc(100vh - var(--header-h));
    min-height: calc(100vh - var(--header-h));
    padding-top: 0;
    padding-bottom: 0;
}

.course-details-page .hero-section-2.courses-hero.course-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 50% 40%, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.72) 70%),
            linear-gradient(180deg, rgba(2,3,8,0.35), rgba(2,3,8,0.85));
    z-index: 1;
}

.course-details-page .hero-section-2.courses-hero.course-hero .container{
    position: relative;
    z-index: 2;
}



.course-details-page .hero-section-2.courses-hero .container-fluid,
.course-details-page .hero-section-2.courses-hero .row,
.course-details-page .hero-section-2.courses-hero .col-lg-12{
    height: auto ;
}

.course-details-page .typed-cursor{
    display: none !important;
}

.course-hero-breadcrumb{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;

    opacity: 1;
    color: rgba(255,255,255,.92);
    text-shadow: 0 8px 20px rgba(0,0,0,.55);
}
.course-hero-breadcrumb a{
    color: #fff;
    opacity: .9;
}
.course-hero-breadcrumb span{
    margin: 0 4px;
}

.course-hero-title{
    margin: 8px 0 10px;
    font-size: 46px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 10px 26px rgba(0,0,0,.55);
}

.course-hero-subtitle{
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.65;

    opacity: 1;
    color: rgba(255,255,255,.90);
    text-shadow: 0 10px 26px rgba(0,0,0,.55);
}

.course-hero-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 18px;
}

.hero-pill{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.22);
    font-size: 12px;
    color: rgba(255,255,255,.9);
    backdrop-filter: blur(6px);
}
.hero-pill i{
    opacity: .85;
}
.hero-pill--level{
    border-color: rgba(255, 204, 51, 0.40);
    background: rgba(255, 204, 51, 0.12);
}
.hero-pill--level i{
    color: #ffcc33;
}

.course-hero-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.course-details-section{
    padding-top: 40px;
    padding-bottom: 80px;
    background: transparent;
}

.course-sticky{
    position: sticky;
    top: calc(var(--header-h) + 16px);
}

.course-cover img{
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 16px 36px rgba(0,0,0,.55);
}

.course-side-card{
    margin-top: 14px;
    background: rgba(10, 12, 22, 0.95);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.course-side-item{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.course-side-item:last-of-type{
    border-bottom: 0;
    margin-bottom: 10px;
}

.course-side-item .label{
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .75;
    color: #ffcc33;
}

.course-start-btn{
    width: 100%;
    margin-top: 6px;
}

.course-back-link{
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    opacity: .85;
    color: rgba(255,255,255,.88);
}
.course-back-link:hover{
    color: #fff;
    text-decoration: underline;
}

.course-info-card{
    background: rgba(15,18,30,.92);
    border-radius: 22px;
    padding: 22px 24px;
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 18px 44px rgba(0,0,0,.40);
}

.course-details-title{
    margin: 8px 0 10px;
    font-size: 34px;
    line-height: 1.15;
}

.course-details-lead{
    font-size: 15px;
    line-height: 1.65;
    opacity: .92;
}

.course-divider{
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 18px 0;
}

.course-topics{
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
}

.course-topics li{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.5;   /* ← добавили */
    opacity: .95;
}


@media (max-width: 1100px){
    .course-topics{
        grid-template-columns: 1fr;
    }
}


.course-topics li::before{
    content: "•";
    color: #ffcc33;
    line-height: 1.2;
    margin-top: 1px;
}

.course-small-note{
    display: block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    opacity: .8;
}


@media (max-width: 991px){
    .course-sticky{ position: static; margin-bottom: 18px; }
}

@media (max-width: 1199px){
    .course-hero-title{ font-size: 34px; }
    .course-topics{ grid-template-columns: 1fr; }
    .course-info-card{ padding: 18px 16px; }
    .course-details-page .hero-section-2.courses-hero.course-hero{
        height: calc(100vh - var(--header-h));
        min-height: calc(100vh - var(--header-h));
        padding-top: 18px;
        padding-bottom: 42px;
    }
}

.course-details-page .hero-section-2.courses-hero.course-hero .container,
.course-details-page .hero-section-2.courses-hero.course-hero .row{
    height: 100%;
}

.course-details-page .hero-section-2.courses-hero.course-hero .col-lg-10{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.course-details-page .course-hero .col-lg-10 { pointer-events: none; }

.course-details-page .course-hero .course-hero-actions a,
.course-details-page .course-hero .course-hero-breadcrumb a {
    pointer-events: auto;
}

.course-info-card{
    background: rgba(15,18,30,.92);
    border-radius: 22px;
    padding: 22px 24px;
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 18px 44px rgba(0,0,0,.40);

    color: rgba(255,255,255,.90);
}

.course-details-lead{
    font-size: 15px;
    line-height: 1.65;

    opacity: 1;
    color: rgba(255,255,255,.90);
}





@media (min-width: 1101px){

    #st-nav{
        position: relative;
        justify-content: center;
    }

    #st-main-nav{
        position: relative;
        width: 100%;
        justify-content: center;
    }

    #st-main-nav .menu{
        position: static !important;
        left: auto !important;
        transform: none !important;

        flex: 1 1 auto;
        justify-content: center;

        padding-right: clamp(240px, 22vw, 380px);
    }

    #st-main-nav .header-right.desktop-only{
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);

        margin-left: 0 !important;
        white-space: nowrap;
    }
}

@media (max-width: 1100px){
    #st-nav{
        justify-content: flex-end;
    }
}




.hero-section-2.courses-hero .course-hero-ui{
    pointer-events: none;
}

.hero-section-2.courses-hero .course-hero-cta,
.hero-section-2.courses-hero .course-hero-cta *{
    pointer-events: auto;
}
.hero-section-2.course-hero.courses-hero{
    padding-top: 0;
    padding-bottom: 0;
}
.hero-section-2.course-hero .course-hero-ui{
    padding-top: 200px;
    padding-bottom: 20px;
}

.course-pay-page .hero-section-2.courses-hero.course-hero{
    height: 520px;
    min-height: 520px;
}




.course-details-page .btn.disabled,
.course-pay-page .btn.disabled{
    pointer-events: none;
    opacity: .55;
}


/* -----------------------------
   Course Pay page
   ----------------------------- */

.course-pay-page {
    background: radial-gradient(circle at 0% 0%, #020617 0%, #020617 45%, #020308 100%) !important;
}

/* секции внутри оплаты по высоте как обычно */
.course-pay-page .services-section {
    height: auto !important;
}

/* Компактный hero для оплаты */
.course-pay-hero {
    position: relative;
    box-sizing: border-box;
    min-height: 360px;
    padding-top: 120px;
    padding-bottom: 40px;
}

.course-pay-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 10% 0%, rgba(168, 85, 247, 0.22) 0, transparent 55%),
            radial-gradient(circle at 90% 100%, rgba(56, 189, 248, 0.18) 0, transparent 55%),
            linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
    z-index: 1;
}

.course-pay-page .course-hero-ui {
    position: relative;
    z-index: 2;
    text-align: left;              /* вместо text-center */
}

.course-pay-page .course-hero-content {
    max-width: 720px;
    margin: 0 auto 16px;
    text-align: left;
}

.course-pay-page .course-hero-title {
    font-size: 40px;
}

.course-pay-page .course-hero-subtitle {
    max-width: 520px;
    margin-left: 0;
}

/* Кнопки в hero выравниваем влево, а не по центру */
.course-pay-page .course-hero-actions {
    justify-content: flex-start;
}

/* -----------------------------
   Steps "Что будет дальше"
   ----------------------------- */

.course-pay-page .course-topics {
    list-style: none;
    padding-left: 0;
    margin: 0;
    counter-reset: pay-step;
}

.course-pay-page .course-topics li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.course-pay-page .course-topics li::before {
    content: counter(pay-step);
    counter-increment: pay-step;
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    font-size: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(120deg, var(--edm-accent-1), var(--edm-accent-2));
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}



button:focus,
button:active,
button:focus-visible,
a:focus,
a:active,
a:focus-visible,
.btn:focus,
.btn:active,
.btn:focus-visible,
.btn-default:focus,
.btn-default:active,
.btn-default:focus-visible,
.hero-main-btn:focus,
.hero-main-btn:active,
.hero-main-btn:focus-visible,
.hero-side-btn:focus,
.hero-side-btn:active,
.hero-side-btn:focus-visible,
.user-btn:focus,
.user-btn:active,
.user-btn:focus-visible,
.main-filter-btn:focus,
.main-filter-btn:active,
.main-filter-btn:focus-visible,
.reset-filter-btn:focus,
.reset-filter-btn:active,
.reset-filter-btn:focus-visible,
.login-btn:focus,
.login-btn:active,
.login-btn:focus-visible,
.register-btn:focus,
.register-btn:active,
.register-btn:focus-visible,
.st-nav-trigger:focus,
.st-nav-trigger:active,
.st-nav-trigger:focus-visible {
    outline: none !important;
}

.btn:focus,
.btn-default:focus,
.hero-main-btn:focus,
.hero-side-btn:focus,
.user-btn:focus,
.main-filter-btn:focus,
.reset-filter-btn:focus,
.login-btn:focus,
.register-btn:focus,
.st-nav-trigger:focus {
    box-shadow: 0 0 0 3px rgba(178, 102, 255, 0.25),
    0 12px 32px var(--edm-accent-soft);
}





.course-unified-section {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    padding-top: calc(var(--header-h) + 45px);
    padding-bottom: 70px;
    overflow: hidden;

    background:
            radial-gradient(circle at 0% 0%, rgba(178, 102, 255, 0.28) 0%, transparent 42%),
            radial-gradient(circle at 100% 20%, rgba(255, 204, 51, 0.12) 0%, transparent 38%),
            linear-gradient(135deg, #050812 0%, #0b1118 48%, #020308 100%);
}

.course-unified-section #particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: auto;
}

.course-unified-section .container {
    position: relative;
    z-index: 2;
}

.course-unified-row {
    min-height: calc(100vh - var(--header-h) - 120px);
    display: flex;
    align-items: center;
}

.course-unified-content {
    max-width: 620px;
}

.course-unified-content .course-hero-title {
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 48px;
    line-height: 1.08;
}

.course-unified-content .course-hero-subtitle {
    max-width: 560px;
    margin: 0;
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
}

.course-unified-content .course-hero-meta {
    justify-content: flex-start;
    margin-top: 22px;
    margin-bottom: 22px;
}

.course-unified-content .course-hero-actions {
    justify-content: flex-start;
}

.course-unified-card {
    padding: 18px;
    border-radius: 26px;
    background: rgba(15, 18, 30, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.course-unified-card .course-cover {
    margin-bottom: 16px;
}

.course-unified-card .course-cover img {
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

.course-info-mini {
    padding: 4px 4px 2px;
}

.course-info-mini .course-block-title {
    margin-bottom: 12px;
}

.course-info-mini .course-topics {
    grid-template-columns: 1fr;
}

@media (max-width: 991px) {
    .course-unified-section {
        padding-top: calc(var(--header-h) + 30px);
    }

    .course-unified-row {
        min-height: auto;
        display: block;
    }

    .course-unified-content {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .course-unified-content .course-hero-title {
        font-size: 34px;
    }

    .course-unified-content .course-hero-subtitle {
        font-size: 15px;
    }

    .course-unified-card .course-cover img {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .course-unified-section {
        padding-top: calc(var(--header-h) + 24px);
        padding-bottom: 45px;
    }

    .course-unified-content .course-hero-title {
        font-size: 28px;
    }

    .course-unified-content .course-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .course-unified-card {
        padding: 12px;
        border-radius: 20px;
    }

    .course-unified-card .course-cover img {
        height: 210px;
    }
}



.services-section .service-headline p,
.services-section .service .text p,
.services-section .service-2 .text p {
    color: rgba(255, 255, 255, 0.86);
    opacity: 1;
}

.services-section .service .text a,
.services-section .service-2 .text a {
    color: #ffffff;
}

:root {
    --edm-text-soft: #c7d6e6;
    --edm-text-muted: #9fb3c8;
    --edm-text-dim: #86a0b6;
}

.about-text p,
.about-icons li .text,
.service-headline p,
.service .text p,
.service-2 .text p,
.skills-headline p {
    color: var(--edm-text-soft);
    opacity: 1;
}

.service .text a,
.service-2 .text a {
    color: #d8e5f3;
}

.bar-wrapper .col-md-3,
.bar-wrapper .col-md-1 {
    color: var(--edm-text-dim);
}


.services-section {
    padding: 110px 0;
    position: relative;
}

.services-modern-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.services-copy {
    max-width: 620px;
}

.services-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(169, 91, 255, 0.12);
    border: 1px solid rgba(169, 91, 255, 0.25);
    color: #cfa6ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-title {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
}

.services-subtitle {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.75;
    color: #b9c8d8;
    max-width: 560px;
}

.services-list-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.25s ease;
}

.service-item-modern:hover {
    transform: translateY(-2px);
    border-color: rgba(169, 91, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.service-icon-modern {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(169, 91, 255, 0.22), rgba(36, 200, 255, 0.16));
    color: #ffffff;
    font-size: 20px;
}

.service-content-modern h4 {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    color: #eef4ff;
}

.service-content-modern p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #a9bdd0;
}

.services-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.services-visual::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(169, 91, 255, 0.18) 0%, rgba(36, 200, 255, 0.10) 45%, transparent 72%);
    filter: blur(18px);
    z-index: 0;
}

.services-visual-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 430px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(12, 18, 32, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.services-visual-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .services-modern-wrap {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .services-copy {
        max-width: 100%;
    }

    .services-title {
        font-size: 36px;
    }

    .services-subtitle {
        font-size: 16px;
    }

    .services-visual {
        order: -1;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 80px 0;
    }

    .services-title {
        font-size: 30px;
    }

    .service-item-modern {
        padding: 16px;
    }

    .service-content-modern h4 {
        font-size: 20px;
    }

    .service-content-modern p {
        font-size: 15px;
    }
}

/* EduMathia extracted colors from colors.css
--------------------------------- */

.hero-section-2 .second-headline span,
.hero-section-video-dark .second-headline span,
.hero-section-yt-dark .second-headline span,
.about-icons li .icon .material-icons,
.quote-bottom .container h3 span,
.service-headline h2 span,
.service .text a:hover,
.service-2 .text a:hover,
.service .icons i,
.service-2 .icons i,
.info-line .info-icon i,
footer p a:hover,
.portfolio-icons li a i,
.service-icons li a i {
    color: #9600f4;
}

.social-icons li a:hover,
.contact-form .btn-default:hover,
.portfolio-icons li a:hover,
.service-icons li a:hover,
.service-form .btn-default:hover,
.portfolio-form .btn-default:hover {
    background-color: #9600f4;
}

.contact-form .btn-default:hover,
.service-form .btn-default:hover,
.portfolio-form .btn-default:hover {
    border-color: #9600f4;
}

.st-nav-trigger {
    box-shadow: 0 0 10px #7100B7;
}

#st-nav #st-main-nav ul.is-visible {
    box-shadow: 0 0 10px #7100B7;
}

.st-nav-trigger span,
.st-nav-trigger.menu-is-open span::before,
.st-nav-trigger.menu-is-open span::after,
.image-section .btn-lg,
.social-icons li a,
.portfolio-headline .btn-default {
    background: #7100B7;
}

.sweep-icon a .fa {
    color: #B649FF;
}

.our-work-section .new-style p a {
    color: #00F2FF;
}

.sweep-layer h3 a:hover {
    color: #00F2FF;
}

.call-to-section .btn-default {
    background-image: -ms-linear-gradient(left, #00F2FF 0%, #00BBFF 100%);
    background-image: -moz-linear-gradient(left, #00F2FF 0%, #00BBFF 100%);
    background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #00F2FF), color-stop(1, #00BBFF));
    background-image: -webkit-linear-gradient(left, #00F2FF, #00BBFF 100%);
    background-image: linear-gradient(to right, #00F2FF, #00BBFF 100%);
    border: 1px solid #00F2FF;
}

.hero-layer,
.call-to-layer {
    background-image: -ms-linear-gradient(left, #00F2FF 0%, #7100B7 100%);
    background-image: -moz-linear-gradient(left, #00F2FF 0%, #7100B7 100%);
    background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #00F2FF), color-stop(1, #7100B7));
    background-image: -webkit-linear-gradient(left, #00F2FF, #7100B7 100%);
    background-image: linear-gradient(to right, #00F2FF, #7100B7 100%);
}

.portfolio-img .sweep-left,
.portfolio-img .sweep-right {
    background-image: -ms-linear-gradient(left, #7100B7 0%, #00F2FF 100%);
    background-image: -moz-linear-gradient(left, #7100B7 0%, #00F2FF 100%);
    background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #7100B7), color-stop(1, #00F2FF));
    background-image: -webkit-linear-gradient(left, #7100B7, #00F2FF 100%);
    background-image: linear-gradient(to right, #7100B7, #00F2FF 100%);
}

.gradient {
    background-image: -ms-linear-gradient(left, #00BBFF 0%, #D42BFF 100%);
    background-image: -moz-linear-gradient(left, #00BBFF 0%, #D42BFF 100%);
    background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #00BBFF), color-stop(1, #D42BFF));
    background-image: -webkit-linear-gradient(left, #00BBFF, #D42BFF 100%);
    background-image: linear-gradient(to right, #00BBFF, #D42BFF 100%);
}
/* Footer accessibility fix */
footer {
    background-color: #050812;
}

footer p {
    color: #d8e5f3 !important;
}

footer p a {
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

footer p a:hover {
    color: #ffcc33 !important;
    text-decoration: underline;
}