* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
html {
	max-width: 100%;
    overflow-x: hidden;
	scroll-behavior: smooth;
}

:root {
    --body: #f4f5f7;
    --primary: #041424;
    --accent: #356dfe;
    --accentHover: rgb(22, 71, 194);
    --text: #ffffff;
    --box: #192734;
    --boxBorder: #384656;
    --textPrimary: #fff;
    --darkLightText: #4e6985;
    --grey: #4f5b65;
    --btnShadow: 4px 5px 0px var(--accent);
    --boxShadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    --boxShadow2: 0px 10px 50px hsla(0,0%,93%,.2);
}

body {
	color: var(--text);
	background: var(--body);
    font-family: 'Noto Sans', sans-serif;
    position: relative;
}

p {
    margin-bottom: 0px;
}

a {
	text-decoration: inherit;
	color: var(--text);
}

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;
    z-index: 2;
    position: relative;
}

button {
    font-family: 'Noto Sans', sans-serif;
    z-index: 2;
    position: relative;
}

input {
    font-family: 'Noto Sans', sans-serif;
    z-index: 2;
    position: relative;
}

textarea {
    font-family: 'Noto Sans', sans-serif;
}

/* MAIN DESIGN */

.JC-HeaderBG {
    background: url(/assets/images/header-bg.png);
    background-position: right;
    background-size: cover;
}

.JC-navBar-width {
    width: 1350px;
    margin: 0 auto;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.JC-navBar-between {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.JC-Branding {
    width: 180px;
}

.JC-navBar-center {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.JC-navLink {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 350;
    transition: 0.3s ease;
    color: var(--primary);
}

.JC-navLink:hover {
    color: var(--accent);
    transition: 0.3s ease;
}

.JC-navBar-btn {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent);
    width: 170px;
    color: var(--body);
    font-weight: 600;
    transition: 0.3s ease;
    position: relative;
    top: 0px;
}

.JC-navBar-btn i {
    margin-left: 8px;
}

.JC-navBar-btn:hover {
    transition: 0.3s ease;
    color: var(--body);
    box-shadow: var(--boxShadow);
    position: relative;
    top: -2px;
}

.JC-HeaderContent {
    width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 0px;
    color: var(--primary);
}

.JC-HeaderContent-left {
    width: 700px;
}

.JC-HeaderContent-rows {
    display: flex;
    align-items: center;
}

.JC-HeaderTag {
    font-size: 20px;
    text-transform: uppercase;
}

.JC-HeaderTitle {
    font-size: 100px;
    font-weight: 300;
}

.JC-HeaderHR {
    height: 6px;
    width: 100px;
    background: var(--primary);
    border: inherit;
    margin-left: 20px;
}

.JC-HeaderSocials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 35px;
}

.JC-HeadSocial-link {
    background: var(--primary);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 24px;
    transition: 0.3s ease;
}

.JC-HeadSocial-link:hover {
    transition: 0.3s ease;
    background: var(--accent);
    color: var(--body);
    box-shadow: var(--boxShadow);
}

.JC-AboutContainer {
    padding: 150px 0px;
    background: var(--primary);
    color: var(--textPrimary);
    min-height: 400px;
}

.JC-AboutContainer-width {
    position: relative;
    right: 0;
    width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.JC-AboutContent-left {
    width: 600px;
}

.JC-DarkTitle {
    font-size: 48px;
    font-weight: 300;
}

.JC-AboutDescription {
    margin-top: 25px;
    font-size: 18px;
    line-height: 35px;
    font-weight: 300;
    color: var(--darkLightText);
}

.JC-VideoContainer {
    background: var(--accent);
    width: 600px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 75px;
    border-radius: 20px;
}

.JC-StatsContainer {
    background: var(--primary);
    color: var(--body);
    margin-top: -2px;
}

.JC-StatsContainer-width {
    width: 1350px;
    margin: 0 auto;
    padding: 0px 0px 100px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
}

.JC-StatsBox {
    width: 100%;
    background: var(--accent);
    height: 170px;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 10px;
    box-shadow: var(--boxShadow);
    transition: 0.3s ease;
}

.JC-StatsBox:hover {
    transition: 0.3s ease;
    transform: scale(1.03);
}

.JC-StatsBox-icon {
    font-size: 34px;
    margin-bottom: 15px;
}

.JC-StatsBox-big {
    font-size: 28px;
    font-weight: 700;
}

.JC-StatsBox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.JC-StatsBox-increase {
    font-weight: 600;
    font-size: 18px;
}

.JC-StatsBox-increase i {
    margin-left: 5px;
    font-size: 16px;
}

.JC-ServiceContainer {
    padding: 150px 0px;
    color: var(--primary);
}

.JC-ServiceContainer-width {
    width: 1350px;
    margin: 0 auto;
}

.JC-LightTitle {
    font-size: 48px;
    font-weight: 300;
}

.JC-ServiceHead-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.JC-ServiceHead-right {
    width: 500px;
}

.JC-LightDesc {
    font-size: 18px;
    line-height: 35px;
    font-weight: 300;
}

.JC-ServiceContainer-tabs {
    margin-top: 70px;
    gap: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.JC-ServiceContainer-btn {
    height: 60px;
    width: 30%;
    border: inherit;
    color: #fff;
    background: var(--primary);
    font-size: 16px;
    font-weight: 300;
    transition: 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--primary);
}

.JC-ServiceContainer-btn i {
    margin-right: 5px;
    font-size: 16px;
}

.JC-ServiceContainer-btn:hover {
    border: 1px solid var(--accent);
    transition: 0.3s ease;
    box-shadow: var(--btnShadow);
}

.JC-ServiceContainer-content {
    background: var(--primary);
    margin-top: 35px;
    border: 1px solid var(--primary);
}

.JC-ServiceImage {
    height: 350px;
    display: flex;
    width: 100%;
}

.JC-ServiceContainer-box {
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.JC-ServiceContainer-info {
    padding: 30px;
    display: flex;
    width: 850px;
    flex-direction: column;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    color: var(--darkLightText);
}

.JC-ServiceBox-btn {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    justify-content: space-between;
    padding: 0px 25px;
    background: var(--accent);
    width: 250px;
    border: 1px solid #103593;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s ease;
}

.JC-ServiceBox-btn i {
    font-size: 20px;
}

.JC-ServiceBox-btn:hover {
    transition: 0.3s ease;
    background: var(--accentHover);
    color: var(--text);
}

.JCServiceactive {
    border: 1px solid var(--accent);
    transition: 0.3s ease;
    box-shadow: var(--btnShadow);
}

.JC-ReviewsContainer {
    padding: 150px 0px;
    background: var(--primary);
    color: var(--body);
}

.JC-ReviewsContainer-width {
    width: 1350px;
    margin: 0 auto;
}

.JC-ReviewsHead {
    width: 600px;
}

.JC-DarkSlogan {
    font-size: 18px;
    line-height: 35px;
    font-weight: 300;
    margin-top: 35px;
}

.JC-ReviewsContent-rows {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
}

.JC-ReviewsBox {
    background: var(--accent);
    min-height: 200px;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: var(--boxShadow);
    transition: 0.3s ease;
    width: 420px;
}

.JC-ReviewBox-head {
    display: flex;
    align-items: center;
}

.JC-ReviewBox-col {
    margin-left: 15px;
}

.JC-ReviewsBox-image {
    width: 60px;
    border-radius: 100%;
}

.JC-ReviewBox-name {
    font-size: 17px;
    font-weight: 700;
}

.JC-ReviewBox-username {
    font-weight: 400;
    font-size: 15px;
}

.JC-ReviewBox-desc {
    margin-top: 20px;
    font-size: 17px;
    font-weight: 300;
    line-height: 30px;
}

.JC-Footer {
    padding: 100px 0px 50px;
    background: var(--primary);
}

.JC-FooterContainer-width {
    width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.JC-FooterContainer-left {
    width: 400px;
}

.JC-FooterLogo {
    width: 200px;
    margin-bottom: 25px;
    filter: invert(180);
}

.JC-FooterSlogan {
    font-size: 16px;
    line-height: 28px;
    color: var(--darkLightText);
}

.JC-FooterContainer-right {
    display: flex;
    align-items: flex-start;
}

.JC-FooterBox {
    display: flex;
    flex-direction: column;
    width: 250px;
}

.JC-FooterBox-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.JC-FooterBox-link {
    font-size: 18px;
    font-weight: 300;
    padding-bottom: 18px;
    transition: 0.3s ease;
    color: var(--darkLightText);
}

.JC-FooterBox-link:hover {
    transition: 0.3s ease;
    color: var(--accent);
}

.JC-ContactContainer {
    padding: 150px 0px;
    color: var(--primary);
}

.JC-ContactContainer-width {
    width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.JC-ContactTag {
    border: 1px solid #50555f;
    text-transform: uppercase;
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 285px;
    color: var(--grey);
    font-weight: 400;
    font-size: 15px;
    margin-top: 25px;
}

.JC-ContactTag span {
    color: var(--accent);
    font-weight: 600;
    margin: 0px 6px;
}

.JC-ContactForm {
    width: 500px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    background: #1b1e26;
    border: 1px solid #50555f;
    padding: 35px;
    gap: 10px;
    border-radius: 15px;
}

.JC-ContactInput {
    width: 100%;
    background: #0c0e12;
    outline: inherit;
    height: 55px;
    padding: 0px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #fff;
    transition: 0.3s ease;
}

.JC-ContactInput:hover {
    border: 1px solid #50555f;
    transition: 0.3s ease;
}

.JC-ContactInput:focus {
    border: 1px solid #50555f;
    transition: 0.3s ease;
}

.JC-ContactTextArea {
    width: 100%;
    background: #0c0e12;
    outline: inherit;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s ease;
}

.JC-ContactTextArea:hover {
    border: 1px solid #50555f;
    transition: 0.3s ease;
}

.JC-ContactTextArea:focus {
    border: 1px solid #50555f;
    transition: 0.3s ease;
}

.JC-ContactContainer-left {
    width: 500px;
}

.JC-ContactSubmit {
    background: var(--accent);
    color: var(--body);
    width: 100%;
    height: 60px;
    border: inherit;
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
    transition: 0.3s ease;
    cursor: pointer;
}

.JC-ContactSubmit:hover {
    transition: 0.3s ease;
    color: var(--body);
    background: var(--accentHover);
}

.JC-ContactSlogan {
    margin-top: 35px;
    font-size: 18px;
    line-height: 35px;
    font-weight: 200;
    color: var(--grey);
}

.JC-FooterCopyright {
    width: 1350px;
    margin: 0 auto;
    margin-top: 70px;
}

.JC-FooterCopyright p {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.6;
}

/* MOBILE MENU */

.JC-mobileBtn {
    color: var(--body);
    border: inherit;
    font-size: 18px;
    background: var(--accent);
    padding: 12px 13px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s ease;
    display: none;

    width: 50px;
    height: 50px;

    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.JC-mobileBtn:hover {
    transition: 0.3s ease;
    background: var(--accentHover);
}

.JC-mobile-overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	overflow-x: hidden;
	transition: 0.5s;
	background: rgba(51,51,51,65%);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
  
.JC-mobileMenu-overlay {
	position: relative;
	top: 25%;
	width: 100%;
	display: flex;
	margin-top: -50px;
	flex-direction: column;
}
  
.JC-mobile-overlay .JC-closeBtn {
	position: absolute;
	top: 30px;
    right: 30px;
    font-size: 36px;
    color: #f57070;
    font-weight: 600;
    transition: 0.3s ease;
}

.JC-mobile-overlay .JC-closeBtn:hover {
    color: #ca7e7e;
    transition: 0.3s ease;
}

.mobileLink {
    font-size: 17px;
    padding: 25px 30px;
    color: var(--text);
    background: #0c0e12;
    border-top: 1px solid #282d38;
    font-weight: 500;
	text-transform: uppercase;
	transition: 0.3s ease;
}

.mobileLink:hover {
	transition: 0.3s ease;
	color: var(--body);
	background: var(--accent);
}

.mobileLink-btn {
    color: #fff;;
    border: 2px solid var(--accent);
    padding: 20px 25px;
    font-weight: 500;
    background: var(--accent);
    font-size: 14px;
    transition: 0.3s ease;
    text-transform: uppercase;
    transition: 0.3s ease;
    margin: 15px;
}

/* MOBILE MENU */

.JC-ContactBox {
    background: var(--primary);
    margin-top: 35px;
    border: 1px solid var(--primary);
    width: 450px;
    height: 200px;
    padding: 35px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
    color: var(--text);
}

.JC-ContactBox:hover {
    transition: 0.3s ease;
    transform: translateY(-10px);
}

.JC-ContactBox i {
    font-size: 32px;
    margin-bottom: 20px;
}

.JC-ContactBox-col {
    display: flex;
    flex-direction: column;
}

.JC-ContactBox-col h3 {
    font-size: 18px;
}

.JC-ContactBox-col p {
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 1px;
    color: var(--darkLightText);
}

.JC-Typeform-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.JC-Typeform-right {
    width: 100%;
    margin-top: 50px;
}

/* RESPONSIVE */

@media only screen and (max-width: 1400px) {
    .JC-HeaderContent {
        width: 90%;
    }

    .JC-navBar-width {
        width: 90%;
    }

    .JC-AboutContainer-width {
        width: 90%;
    }

    .JC-StatsContainer-width {
        width: 90%;
    }

    .JC-ServiceContainer-width {
        width: 90%;
    }

    .JC-ReviewsContainer-width {
        width: 90%;
    }

    .JC-ContactContainer-width {
        width: 90%;
    }

    .JC-FooterContainer-width {
        width: 90%;
    }

    .JC-FooterCopyright {
        width: 90%;
    }

    .JC-PageHeader-width {
        width: 90%;
    }

    .JC-FAQContainer-width {
        width: 90%;
    }

    .JC-Secrets-container-width {
        width: 90%;
    }

    .JC-TypeformContainer-width {
        width: 90%;
    }
}

@media only screen and (max-width: 1300px) {
    .JC-VideoContainer {
        width: 550px;
    }

    .JC-AboutContent-left {
        width: 45%;
    }

    .JC-FooterBox {
        width: 200px;
    }
}

@media only screen and (max-width: 1250px) {
    .JC-FooterContainer-left {
        width: 300px;
    }

    .JC-PageHeader-left {
        width: 450px;
    }

    .JC-PageHeader-left p {
        font-size: 44px;
    }

    .JC-PageHeader-right {
        width: 400px;
    }
}

@media only screen and (max-width: 1200px) {
    .JC-VideoContainer {
        width: 480px;
        height: 300px;
    }

    .JC-ContactContainer-left {
        width: 400px;
    }

    .JC-ContactForm {
        width: 400px;
    }

    .JC-DarkTitle {
        font-size: 40px;
    }

    .JC-Secrets-left {
        width: 400px;
    }

    .JC-Secrets-right {
        width: 400px;
    }
}

@media only screen and (max-width: 1050px) {
    .JC-VideoContainer {
        width: 450px;
        height: 250px;
    }

    .JC-FooterContainer-width {
        flex-direction: column;
    }

    .JC-FooterContainer-right {
        margin-top: 30px;
    }

    .JC-FooterBox {
        width: 100%;
        margin-bottom: 35px;
    }

    .JC-FooterContainer-right {
        flex-direction: column;
    }
}

@media only screen and (max-width: 968px) {
    .JC-AboutContainer-width {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .JC-AboutContent-left {
        width: 100%;
        margin-bottom: 50px;
    }

    .JC-AboutContent-right {
        width: 100%;
    }

    .JC-VideoContainer {
        width: 100%;
        min-height: 380px;
        height: 100%;
    }

    .JC-navBar-center {
        display: none;
    }
    
    .JC-navBar-btn {
        display: none;
    }

    .JC-HeaderTitle {
        font-size: 60px;
    }

    .JC-HeaderContent-rows {
        margin-bottom: 25px;
    }

    .JC-HeaderContent-left {
        width: 450px;
    }

    .JC-HeaderContent {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .JC-HeaderSocials {
        flex-direction: row;
        margin-top: 25px;
    }
    
    .JC-StatsContainer-width {
        flex-wrap: wrap;
    }

    .JC-AboutContainer {
        padding-bottom: 100px;
    }

    .JC-ServiceHead-between {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .JC-ServiceHead-left {
        width: 100%;
    }

    .JC-ServiceHead-right {
        width: 100%;
        margin-top: 25px;
    }

    .JC-ServiceContainer-btn {
        width: 45%;
    }

    .JC-ServiceContainer-tabs {
        justify-content: center;
    }

    .JC-ContactContainer-left {
        width: 100%;
        margin-bottom: 50px;
    }

    .JC-ContactContainer-width {
        flex-direction: column;
    }

    .JC-ContactContainer-right {
        width: 100%;
    }

    .JC-ContactForm {
        width: 100%;
        padding: 25px 15px;
    }

    .JC-mobileBtn {
        display: flex;
    }

    .JC-PageHeader-width {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .JC-PageHeader-right {
        margin-top: 50px;
        width: 100%;
    }

    .JC-FAQ-box {
        width: 45%;
    }

    .JC-Secrets-left {
        width: 100%;
    }

    .JC-Secrets-head {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .JC-Secrets-right {
        width: 100%;
        margin-top: 25px;
    }

    .JC-Secrets-box {
        width: 45%;
    }
}

@media only screen and (max-width: 768px) {
    .JC-ServiceImage {
        height: 250px;
    }

    .JC-ServiceContainer-box {
        flex-direction: column;
        padding: 30px;
    }

    .JC-ServiceContainer-info {
        width: 100%;
        padding: 25px 0px;
    }

    .JC-ServiceBox-btn {
        width: 100%;
    }

    .JC-ServiceContainer-btn {
        width: 100%;
    }

    .JC-ReviewsBox {
        width: 100%;
    }

    .JC-FAQ-box {
        width: 100%;
    }

    .JC-Secrets-box {
        width: 100%;
    }

    .JC-FAQ-head {
        width: 100%;
    }

    .JC-ContactBox {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .JC-DarkTitle {
        font-size: 38px;
    }

    .JC-LightTitle {
        font-size: 38px;
    }

    .JC-AboutDescription {
        font-size: 16px;
    }

    .JC-VideoContainer {
        min-height: 300px;
    }

    .JC-HeaderContent-left {
        width: 100%;
    }

    .JC-HeaderContent-rows {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .JC-HeaderHR {
        margin-left: 0px;
        margin-top: 15px;
    }

    .JC-HeaderTitle {
        font-size: 50px;
    }

    .JC-HeaderSocials {
        gap: 25px;
    }
    
    .JC-HeadSocial-link {
        font-size: 20px;
    }

    .JC-PageHeader-left {
        width: 100%;
    }
}