* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
    overflow-y: auto;
    overflow-x: hidden;
}

body,
html {
	max-width: 100%;
    scroll-behavior: smooth;
}

:root {
    --body: #fff;
    --secondBG: #1c1c1c;
    --thirdBG: #2e2e2e;

    --accent: #03bcfc;
    --accentHover: #05a0d3;

    --white: #fff;
    --text: #000;
    --greyText: #ababab;
    --greyText-two: #4b4949;

    --widthMain: 1250px;
    --font-poppins: "Poppins", sans-serif;
    --transition: 0.3s ease;
}

body {
    font-family: var(--font-poppins);
    position: relative;
    overflow: hidden;
}

p {
    margin-bottom: 0px;
}

:focus-visible {
    outline: inherit;
}

a {
	text-decoration: inherit;
	color: var(--text);
    font-family: var(--font-poppins);
    transition: var(--transition);
}

:hover, :focus {
    transition: var(--transition);
}

a:hover {
    text-decoration: inherit;
    color: inherit;
}

a:focus {
    text-decoration: inherit;
    color: inherit;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    font-family: var(--font-poppins);
}

button {
    font-family: var(--font-poppins);
    transition: var(--transition);
    cursor: pointer;
}

input {
    font-family: var(--font-poppins);
    transition: var(--transition);
}

dl, ul, ol {
    margin: 0px;
}

/* HEADER */

.JC-navBar {
    position: fixed;
    z-index: 5;
    width: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.JC-navScrolled {
    background: var(--text);
    transition: var(--transition);
}

.JC-navBar-width {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: var(--widthMain);
    margin: 0 auto;
    height: 100px;
    color: var(--white);
}

.JC-navBar-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.JC-navBar-center {
    position: absolute;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.JC-navLink {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.JC-navButton {
    height: 45px;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: inherit;
    text-align: center;
    padding: 0px 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text);
    font-size: 15px;
    transition: var(--transition);
}

.JC-navButton:hover {
    transition: var(--transition);
    background: var(--accentHover);
    color: var(--white);
}

.JC-PhoneButton {
    height: 45px;
    border-radius: 12px;
    border: 2px solid var(--accent);
    min-width: 190px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 15px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.JC-PhoneButton i {
    display: none;
}

.JC-PhoneButton span {
    position: absolute;
    bottom: -15px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 8px;
    letter-spacing: 1px;
    font-weight: 500;
}

.JC-navBar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.JC-Logo {
    width: 275px;
}

.JC-Header {
    background-image: url('/assets//images/header-image.jpg');
    background-size: cover;
    background-position: bottom;
    height: 100vh;
    position: relative;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.JC-Header::before {
    content: ""; /* Required for the pseudo-element */
    position: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit; /* Inherit the background image from the parent */
    filter: blur(8px); /* Apply blur to the background */
    z-index: 1; /* Places it above the background but below the text */
    pointer-events: none; /* Ensures the pseudo-element doesn't interfere with clicks or interaction */
}

.JC-HeaderContent {
    width: var(--widthMain);
    margin: 0 auto;
    padding-bottom: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: var(--white);
    z-index: 1;
}

.JC-Header::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,60%) 20%, rgba(0, 0, 0, 30%) 100%)
}

.JC-HeaderTitle {
    font-size: 120px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 120px;
    position: relative;
    left: -20px;
}

.JC-HeaderSlogan {
    font-size: 20px;
}

.JC-HeaderBtn {
    background: var(--accent);
    border-radius: 12px;
    padding: 10px 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
    color: var(--white);
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.JC-HeaderBtn:hover {
    transform: scale(1.02);
    transition: var(--transition);
}

.JC-SectionContainer {
    width: var(--widthMain);
    margin: 0 auto;
    padding: 100px 0px;
}

.JC-SectionHead {
    margin-bottom: 60px;
    border-bottom: 1px solid var(--greyText);
    padding-bottom: 30px;
}

.JC-SectionTitle {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.JC-SectionTitle span {
    position: relative;
    top: -10px;
    font-weight: 400;
}

.JC-FlexGrid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 35px;
}

.JC-FlexGrid-imageContainter{
    width: 100%;
    max-width: 50%;
}

.JC-FlexGrid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.JC-SectionGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}

.JC-SectionGrid-box {
    object-fit: cover;
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    border-top: 2px solid var(--accent);
    transition: var(--transition);
    padding: 15px;
    min-height: 200px;;
}

.JC-SectionGrid-box:hover {
    background: var(--accent);
    border-radius: 12px;
}

.JC-SectionGrid-box-up {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.JC-SectionGrid-box-title {
    font-size: 18px;
    font-weight: 500;
}

.JC-SectionGrid-box-up i {
    font-size: 20px;
}

.JC-SectionGrid-box-desc {
    font-size: 15px;
    color: var(--greyText-two);
}

.JC-SectionGrid-box:hover .JC-SectionGrid-box-desc {
    color: #e4f8ff;
}

.JC-SectionGrid-box:hover .JC-SectionGrid-box-up {
    color: var(--white);
}

.JC-SectionContent {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.JC-SectionTitle-big {
    font-size: 44px;
    width: 100%;
    max-width: 650px;
    font-weight: 600;
}

.JC-navScrolled .JC-navButton {
    background: var(--accent);
    color: var(--white);
}

.JC-navScrolled .JC-navButton:hover {
    background: var(--accentHover);
}

.JC-navScrolled-v2 {
    background: var(--text);
}

.JC-navScrolled-v2 .JC-navButton {
    background: var(--accent);
    color: var(--white);
}

.JC-navScrolled-v2 .JC-navButton:hover {
    background: var(--accentHover);
}

.JC-SectionContent-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.JC-SectionContent-header-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.JC-SectionInfo-text {
    font-size: 16px;
    line-height: 30px;
}

.JC-SectionInfo-text span {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}

.JC-SectionInfo-button {
    background: var(--accent);
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 16px;
    border: inherit;
    gap: 10px;
    padding: 0px 15px;
    max-width: 180px;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}


.JC-IconArrow i {
    transform: rotate(45deg);
    transition: var(--transition);
    gap: 25px;
}

.JC-IconArrow:hover i {
    transform: rotate(90deg);
    transition: var(--transition);
}

.JC-SectionInfo-button:hover {
    background: var(--accentHover);
    color: var(--white);
    transition: var(--transition);
}

.JC-GridThree {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.JC-GridThree-box {
    position: relative;
    min-height: 450px;
    background: var(--secondBG);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.JC-GridThree-box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,60%) 20%, rgba(0, 0, 0, 30%) 100%);
    border-radius: 12px;
}

.JC-WhoAreWe-text {
    position: absolute;
    left: 25px;
    bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 1px 3px 5px rgba(0,0,0,50%);
}

.JC-GridThree-box-padd {
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.JC-WhoAreWe-text-big {
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

.JC-WhoAreWe-text-big i {
    margin-left: 10px;
    color: var(--white);
}

.JC-ServiceBox-link {
    color: var(--greyText);
}

.JC-ServiceBox-link:hover {
    color: var(--white);
}

.JC-ReviewBox {
    padding: 25px;
    background: #f3f3f3;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}

.JC-ReviewBox-text {
    font-size: 16px;
    font-weight: 400;
}

.JC-ReviewBox-info {
    display: flex;
    flex-direction: column;
}

.JC-ReviewBox-name {
    font-size: 15px;
    font-weight: 500;
}

.JC-ReviewBox-tag {
    color: var(--greyText-two);
    font-size: 14px;
}

.JC-SectionContent-review-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.JC-PrevBtn, .JC-NextBtn {
    width: 50px;
    font-size: 16px;
    border: inherit;
}

.JC-PrevBtn i {
    transform: rotate(-90deg);
}

.JC-NextBtn i {
    transform: rotate(90deg);
}

.JC-Footer {
    background: var(--secondBG);
    margin-top: 80px;
}

.JC-FooterWidth {
    width: var(--widthMain);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 25px;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0px;
}

.JC-FooterLogo {
    width: 200px;
}

.JC-FooterRows {
    gap: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin: 25px 0px;
}

.JC-FooterCol {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--greyText);
}

.JC-FooterTitle {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

.JC-FooterLink {
    color: var(--greyText);
}

.JC-FooterLink:hover {
    color: var(--accent);
}

.JC-Copyright {
    text-align: center;
    color: var(--greyText);
    opacity: 0.6;
}

.JC-HeaderFirst {
    padding-top: 180px;
}

.JC-CompanyRow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 35px;
}

.JC-CompanyLeft {
    width: 100%;
}

.JC-CompanyText-info {
    width: 100%;
    color: var(--greyText-two);
    line-height: 30px;
}

.JC-CompanyImage {
    width: 100%;
    border-radius: 16px;
}

.JC-ContactContainer {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

::placeholder {
    font-size: 16px;
}

.JC-Form {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.JC-FormGrid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.JC-FormDiv {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.JC-FormLabel {
    font-size: 20px;
    font-family: var(--font-poppins);
    font-weight: 500;
}

.JC-Input {
    height: 60px;
    background: transparent;
    border: inherit;
    border-bottom: 1px solid var(--greyText-two);
    transition: var(--transition);
}

.JC-InputText {
    background: transparent;
    border: inherit;
    border-bottom: 1px solid var(--greyText-two);
    font-size: 16px;
    font-family: var(--font-poppins);
    padding: 15px 0px;
    transition: var(--transition);
}

.JC-Input:focus, .JC-InputText:focus {
    border-bottom: 1px solid var(--accent);
    transition: var(--transition);
}

.JC-ContactSlogan {
    display: flex;
    align-items: center;
    gap: 6px;
}

.JC-ContactSlogan i {
    font-size: 20px;
    margin-top: 2px;
}

.JC-TeamGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.JC-TeamBox {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.JC-TeamBox:first-child {
    grid-column: 1 / 3;
}

.JC-TeamBox-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.JC-TeamBox-image {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    border: 3px solid var(--accent);
    object-fit: cover;
}

.JC-TeamBox-name {
    font-size: 18px;
    font-weight: 600;
}

.JC-TeamBox-rank {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
}

.JC-TeamBox-desc {
    font-size: 15px;
    line-height: 25px;
    color: var(--greyText-two);
}

.JC-MobileMenu {
    position: fixed;
    background: var(--body);
    z-index: 4;
    width: 100%;
    top: 100px;
    height: 100%;
    transform: translateY(-150vh);
    transition: var(--transition);
}

.JC-navMobile-opened {
    transform: translateY(0vh);
    transition: var(--transition);
}

.JC-MobileBars {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 5px;
    position: relative;
}

.JC-mobilebar-line {
    width: 25px;
    background: var(--text);
    height: 2px;
    display: flex;
    transition: var(--transition);
    transform: rotate(0deg);
    top: 0px;
    position: relative;
}

.JC-mobilebar-line:nth-child(2) {
    width: 20px;
    transition: var(--transition);
}

.opened .JC-MobileBars {
    gap: 0px;
}

.opened .JC-mobilebar-line:nth-child(1) {
    transform: rotate(40deg);
    transition: var(--transition);
}

.opened .JC-mobilebar-line:nth-child(2) {
    transform: rotate(-40deg);
    width: 25px;
    top: -2px;
    position: relative;
    transition: var(--transition);
}

#mobileButton {
    display: none;
}

.JC-navScrolled .JC-mobilebar-line {
    background: var(--body);
}

.JC-navScrolled-v2 .JC-mobilebar-line {
    background: var(--body);
}

.scrollHidden {
    overflow: hidden;
}

.JC-ProcessGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
}

.JC-ProcessBox {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
}

.JC-ProcessBox-top {
    position: relative;
}

.JC-ProcessBox-top span {
    background: var(--accent);
    position: absolute;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.JC-ProcessImage {
    width: 100%;
    border-radius: 16px;
}

.JC-ProcessInfo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.JC-ProcessInfo-title {
    font-size: 20px;
    font-weight: 600;
}

.JC-ProcessInfo-slogan {
    font-size: 15px;
    line-height: 25px;
    color: var(--greyText-two);
}

.JC-IconBox {
    height: 90px;
    width: 90px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -60px;
    top: 20%;
    bottom: 50%;
    background: var(--accent);
    font-size: 22px;
    color: var(--white);
    z-index: 3;
}

.JC-ServiceText-info {
    width: 100%;
    max-width: 650px;
    line-height: 30px;
}

.JC-ServiceText-info span {
    font-size: 20px;
    font-weight: 600;
}

.JC-ServiceFeature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.JC-ServiceFeature-box {
    background: var(--secondBG);
    min-height: 150px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    padding: 25px;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    color: var(--white);
}

.JC-ServiceFeature-box i {
    font-size: 34px;
}

.JC-ServiceFeature-box-title {
    font-size: 18px;
    color: var(--greyText);
    font-weight: 600;
}

.JC-MobileMenu-title {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    border-bottom: 1px solid var(--greyText);
    padding-bottom: 15px;
}

.JC-MobileMenu-content {
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.JC-MobileMenu-link {
    font-size: 18px;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.JC-MobileMenu-links {
    width: 100%;
}

.JC-MobileMenu-link:nth-child(even) {
    border-top: 1px solid var(--greyText);
    border-bottom: 1px solid var(--greyText);
    height: 70px;
}

.JC-MobileMenu-link:first-child {
    border-top: inherit;
}

.JC-MobileMenu-link:last-child {
    border-bottom: inherit;
}

.JC-MobileMenu-btn {
    background: var(--accent);
    color: var(--white);
    margin-top: 25px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: inherit;
    text-align: center;
    padding: 0px 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    transition: var(--transition);
}

.JC-SocialRows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.JC-SocialLink {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 50px;
    width: 50px;
    background: var(--body);
    border-radius: 12px;
}

/* RESPONSIVE */

@media only screen and (max-width: 1300px) {
    :root {
        --widthMain: 90%;
    }
}

@media only screen and (max-width: 1250px) {
    .JC-HeaderTitle {
        font-size: 80px;
    }
}

@media only screen and (max-width: 1200px) {
    .JC-navBar-center {
        display: none;
    }

    #mobileButton {
        display: flex;
    }

    .JC-navButton:nth-of-type(2) {
        display: none;
    }

    .JC-PhoneButton {
        min-width: 100px;
    }

    .JC-PhoneButton p {
        display: none;
    }

    .JC-PhoneButton i {
        display: flex;
    }

    .JC-SectionGrid {
        grid-template-columns: repeat(1, 1fr);
    }

    .JC-FlexGrid {
        flex-direction: column;
    }

    .JC-FlexGrid-imageContainter{
        max-width: 100%;
    }
}

@media only screen and (max-width: 1100px) {
    .JC-GridThree {
        grid-template-columns: repeat(2, 1fr);
    }

    .JC-SectionGrid-box {
        min-height: 180px;
    }

    .JC-ServiceFeature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .JC-ServiceText-info {
        max-width: 100%;
    }

    .JC-ProcessGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .JC-IconBox {
        display: none;
    }
}

@media only screen and (max-width: 968px) {
    .JC-CompanyRow {
        flex-direction: column;
    }

    .JC-TeamGrid {
        gap: 50px 30px;
    }

    .JC-HeaderTitle {
        font-size: 66px;
        line-height: 70px;
    }

    .JC-ServiceFeature-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .JC-ProcessGrid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (max-width: 800px) {
    .JC-ServiceFeature-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (max-width: 780px) {
    .JC-HeaderContent {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .JC-HeaderTitle {
        left: 0px;
    }

    .JC-SectionContent-header {
        flex-direction: column;
    }

    .JC-GridThree {
        grid-template-columns: repeat(1, 1fr);
    }

    .JC-SectionInfo-button {
        width: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 650px) {
    .JC-TeamGrid {
        grid-template-columns: repeat(1, 1fr);
    }

    .JC-TeamBox {
        grid-column: 1 / 1;
    }

    .JC-SectionTitle-big {
        font-size: 30px;
        line-height: 40px;
    }

    .JC-HeaderTitle {
        font-size: 50px;
        line-height: inherit;
    }

    .JC-FooterWidth {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

@media only screen and (max-width: 500px) {
    .JC-FooterRows {
        grid-template-columns: repeat(2, 1fr);
    }

    .JC-FooterCol {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .JC-Copyright {
        font-size: 14px;
    }

    .JC-HeaderTitle{
        font-size: 40px;
    }

    .JC-HeaderSlogan {
        font-size: 16px;
    }

    .JC-SectionContent-review-buttons {
        width: 100%;
    }
}

@media only screen and (max-width: 450px) {
    .JC-Logo {
        width: 130px;
    }

    .JC-PhoneButton {
        min-width: 70px;
    }

    .JC-PhoneButton span{
        font-size: 8px;
        bottom: -15px;
        letter-spacing: 0px;
    }

    .JC-navButton {
        padding: 0px 10px;
    }
}