* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
html {
	max-width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

:root {
	--body: #f7f8fa;
    --secondBG: #fff;
    --accent: #b943ff;
	--accentHover: #cd81ff;
	--text: #020212;
    --grey: #C2C2C2;
    --btnShadow: 3px 3px 20px rgba(190,81,255,.90);
	--boxShadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
    --boxShadow2: 0px 10px 50px hsla(0,0%,93%,.2);

    --boxShadow-main: 0 0 2.2138051987px 0 #252c6104, 0 0 5.3200817108px 0 #252c6105, 0 0 10.017241478px 0 #252c6106, 0 0 17.8690471649px 0 #252c6108, 0 0 33.422088623px 0 #252c6109, 0 0 80px 0 #252c610d;
}

body {
	color: var(--text);
	background: var(--body);
	font-family: 'Outfit', sans-serif;
	overflow-x: hidden;
}

a {
	text-decoration: inherit;
	color: var(--text);
}

/* MAIN CODE */

.JC-navBar {
    width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px 30px;
}

.JCLogo {
    width: 140px;
}

.JC-navRight {
    display: flex;
    align-items: center;
}

.JC-navLink {
    font-size: 17px;
    color: var(--grey);
    padding: 0px 15px;
    transition: 0.3s ease;
    font-weight: 500;
    position: relative;
}

.JC-navLink:hover {
    color: var(--accent);
    transition: 0.3s ease;
}

.JC-navBtn {
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 15px 35px;
    font-weight: 500;
    margin-left: 25px;
    transition: 0.3s ease;
    text-transform: uppercase;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    border-radius: 80px;
}

.JC-navBtn:hover {
    transition: 0.3s ease;
    background: var(--body);
    color: var(--accent);
}

.JC-navLink:after {
    color: var(--accent);
    content: "";
    position: absolute;
    left: 15px;
    height: 5px;
    bottom: -6px;
    border-bottom: 2px solid;
    display: inline-block;
    transition: 0.3s ease;
    width: 0px;
}

.JC-navLink:hover:after {
    width: 20px;
    transition: 0.3s ease;
}

.JC-active:after {
    width: 20px;
    transition: 0.3s ease
}

.JCHero-container {
    width: 1350px;
    margin: 0 auto;
    display: flex;
    padding: 70px 0px 30px;
    margin-bottom: 120px;
}

.JCHero-left {
    display: flex;
    flex-direction: column;
    width: 600px;
    padding-top: 60px;
}

.JCHero-title {
    font-size: 76px;
    font-weight: 700;
    line-height: 85px;
    margin-bottom: 25px;
}

.highlight {
    color: var(--accent);
}

.JCHero-slogan {
    color: var(--grey);
    width: 550px;
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 30px;
}

.JCHero-btn {
    background: var(--accent);
    padding: 16px 0px;
    border-radius: 80px;
    width: 200px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s ease;
    border: 2px solid var(--accent);
}

.JCHero-btn:hover {
    transition: 0.3s ease;
    background: var(--body);
    color: var(--accent);
}

.JCHero-right {
    position: relative;
}

.JCHero-bg {
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,30%));
    width: 750px;
    position: absolute;
    left: 150px;
}

.JCChoose-Container {
    background: #ececec;
    padding: 100px 0px 100px;
}

.JC-ChooseWidth {
    width: 1350px;
    margin: 0 auto;
}

.JC-SectionTag {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 15px;
    color: var(--accentHover);
}

.JC-SectionTitle {
    font-size: 65px;
    font-weight: 600;
    position: relative;
    width: 600px;
    color: var(--text);
    margin: 15px 0px;
}

.JC-ChooseRows {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.JC-ChooseBox {
    width: 380px;
    height: 370px;
    padding: 60px 40px;
    background: #fff;
    box-shadow: 0 1px 30px 1px rgb(0 0 0 / 20%);
    transition: 0.3s ease;
    margin: 10px;
    border-radius: 8px;
}

.JC-ChooseBox-icon {
    font-size: 48px;
    color: var(--accent);
}

.JC-ChooseBox-title {
    margin-top: 50px;
    font-size: 30px;
    color: var(--accent);
}

.JC-ChooseBox-hr {
    padding: 2px;
    background: var(--accent);
    border: inherit;
    width: 50px;
    margin: 5px 0px;
}

.JC-ChooseBox-desc {
    margin-top: 20px;
    font-size: 18px;
}

.JC-mobileBtn {
    color: #fff;
    border: inherit;
    font-size: 18px;
    background: var(--accent);
    padding: 12px 13px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s ease;
    display: none;
}

.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(149,150,152,30%);
	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: 25px;
    color: var(--accent);
    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: #fff;
    border-top: 1px solid #dbdbdb;
    font-weight: 500;
	text-transform: uppercase;
	transition: 0.3s ease;
}

.mobileLink:hover {
	transition: 0.3s ease;
	color: #fff;
	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;
}

.JCFooter {
    border-top: 2px solid #e6e6e6;
    background: #fff;
    padding: 50px 0px;
}

.JCFooter-width {
    width: 1500px;
    margin: 0 auto;
}

.JCFooter-img {
    width: 80px;
    margin-bottom: 50px;
}

.JCFooter-rows {
    display: flex;
    align-items: flex-start;
    color: var(--text);
    justify-content: space-between;
}

.JCFooter-box {
    width: 350px;
}

.JCFooter-boxCol {
    display: flex;
    flex-direction: column;
}

.JCFooter-boxName {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.JCFooter-boxDesc {
    font-size: 16px;
    line-height: 25px;
    padding-top: 15px;
}

.JCFooter-link {
    color: var(--text);
    padding: 15px 0px;
    transition: 0.3s ease;
    border-left: 2px solid var(--blackBG);
}

.JCFooter-link:hover {
    padding-left: 15px;
    border-left: 2px solid var(--accent);
}

.JCFooter-boxRows {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.JCFooter-linkSocial {
    width: 60px;
    height: 60px;
    background: #e6e6e6;
    border-radius: 10px;
    margin-right: 8px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ababab;
    font-size: 24px;
    transition: 0.3s ease;
}

.JCFooter-linkSocial:hover {
    transition: 0.3s ease;
    color: var(--accent);
}

.endBox-footer {
    display: flex;
    flex-direction: column;
    text-align: right;
    justify-content: flex-end;
}

.JCFooter-copy {
    color: var(--text);
    margin-top: 80px;
    font-weight: 500;
    font-size: 14px;
}

.JC-StatSection {
    background: #fff;
    padding: 100px;
}

.JC-StatSection-width {
    width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
}

.JC-StatBox {
    width: 400px;
    text-align: center;
}

.JC-StatBox small {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.JC-CountText {
    font-size: 60px;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.JC-PortfolioContainer {
    width: 1500px;
    margin: 0 auto;
    padding: 100px 0px;
}

.JC-PortfolioHead {
    margin-bottom: 80px;
}

.JC-PortfolioRows {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
}

.JC-PortfolioBox {
    position: relative;
    width: 340px;
    height: 250px;
    border-radius: 15px;
    margin: 15px;
    border: 5px solid var(--accent);
    box-shadow: var(--boxShadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.JC-PortfolioImage {
    display: block;
    width: 200px;
    height: auto;
    border-radius: 10px;
}

.JC-PortfolioBox-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    border-radius: 10px;
    background: linear-gradient(55deg,var(--accent) 0,rgba(69,49,178,.3981967787114846) 500%);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0 50px;
}

.JC-PortfolioBox-info p {
    font-size: 25px;
    color: #fff;
    font-weight: 700;
}

.JC-PortfolioBox-btn {
    box-shadow: var(--boxShadow);
    background: #fff;
    color: var(--accent);
    border-radius: 15px;
    width: 220px;
    height: 60px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    border: 3px solid #fff;
    letter-spacing: 2px;
    margin-top: 20px;
    transition: .3s ease;
}

.JC-PortfolioBox:hover .JC-PortfolioBox-overlay {
    opacity: 1;
}

.JC-ContactContainer {
    width: 1200px;
    margin: 0 auto;
    padding: 80px 0px 100px;
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.JC-ContactLeft {
    width: 600px;
}

.JC-ContactRight {
    display: flex;
    flex-direction: column;
}

.JC-ContactRight form {
    display: flex;
    flex-direction: column;
}

.JC-ContactLeft-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.JC-ContactLeft-desc {
    width: 300px;
    color: var(--grey);
    line-height: 25px;
    margin-bottom: 15px;
    font-size: 17px;
}

.JC-ContactLeft-email {
    width: 300px;
    color: var(--grey);
    line-height: 25px;
    margin-bottom: 15px;
    font-size: 17px;
}

.JC-ContactLeft-email a {
    color: var(--accent);
    font-weight: 600;
}

.JC-ContactInput {
    font-family: 'Outfit', sans-serif;
    padding: 20px 0px;
    margin-bottom: 5px;
    border: inherit;
    background: var(--body);
    outline: inherit;
    border-bottom: 2px solid #ececec;
    font-size: 16px;
    transition: 0.3s ease;
}

.JC-ContactInput:focus {
    border-bottom: 2px solid var(--accent);
    transition: 0.3s ease;
}

::placeholder {
    font-size: 14px;
    color: var(--grey);
    font-family: 'Outfit', sans-serif;
}

.JC-ContactTextArea {
    font-family: 'Outfit', sans-serif;
    padding: 20px 0px;
    margin-bottom: 5px;
    border: inherit;
    background: var(--body);
    outline: inherit;
    border-bottom: 2px solid #ececec;
    font-size: 16px;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.JC-ContactTextArea:focus {
    border-bottom: 2px solid var(--accent);
    transition: 0.3s ease;
}

.JC-ContactSubmit {
    border: 2px solid var(--accent);
    margin-top: 15px;
    padding: 15px 40px;
    font-weight: 500;
    transition: 0.3s ease;
    text-transform: uppercase;
    background: var(--accent);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    cursor: pointer;
    width: 250px;
    font-size: 15px;
}

.JC-ContactSubmit:hover {
    transition: 0.3s ease;
    box-shadow: var(--btnShadow);
}

.JC-PartnerSection {
    padding: 100px 0px;
}

.JC-PartnerSection-width {
    width: 1350px;
    margin: 0 auto;
}

.JC-PartnerBtn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--accent);
    padding: 15px 35px;
    font-weight: 500;
    margin-left: 25px;
    transition: 0.3s ease;
    text-transform: uppercase;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    width: 200px;
    margin: 0 auto;
    margin-top: 50px;
}

.JC-PartnerBtn:hover {
    transition: 0.3s ease;
    background: var(--accentHover);
    border: 2px solid var(--accentHover);
}

.JC-PartnerSection-body {
    margin: 50px 0px 8;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.JC-PartnerSection-body-box {
    width: 300px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    margin: 50px 0px;
}

.JC-PartnerSection-img {
    width: 140px;
    transition: 0.3s ease;
}

.JC-PartnerSection-img:hover {
    transition: 0.3s ease;
    transform: scale(1.10);
}

.JC-Process-container {
    padding: 80px 0px 100px;
    background: #fff;
}

.JC-ProcessContainer-head {
    width: 1350px;
    margin: 0 auto;
}

.JC-ProcessContainer-body {
    width: 1350px;
    margin: 0 auto;
}

.JC-ProcessContainer-nav {
    display: flex;
    margin-bottom: 40px;
    margin-top: 30px;
}

.JC-TabContainer {
    width: 1350px;
    height: 400px;
    background: #fff;
    box-shadow: 0 1px 30px 1px rgb(0 0 0 / 20%);
    transition: 0.3s ease;
    margin: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.JC-TabRight-img {
    width: 100%;
    height: 100%;
}

.JC-TabLeft {
    width: 600px;
    padding-left: 60px;
    margin-right: 60px;
}

.JC-TabLeft h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
}

.JC-TabLeft p {
    color: var(--grey);
    line-height: 25px;
    font-size: 16px;
    margin-bottom: 20px;
}

.tablinks {
    margin-right: 5px;
    border: 2px solid var(--accent);
    padding: 13px 30px;
    font-weight: 500;
    transition: 0.3s ease;
    text-transform: uppercase;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.tablinks:hover {
    transition: 0.3s ease;
    border: 2px solid var(--accentHover);
    background: var(--accentHover);
}

.tablinks.active {
    background-color: var(--accentHover);
    border: 2px solid var(--accentHover);
}

.JC-PlatformContainer {
    padding: 80px 0px 100px;
}

.JC-PlatformContainer-width {
    width: 1350px;
    margin: 0 auto;
}

.JC-PlatformContainer-body {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.JC-PlatformBox {
    width: 385px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    margin: 15px;
}

.JC-PlatformLogo {
    width: 50px;
    height: 50px;
}

.JC-PlatformBox {
    width: 385px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    background: #fff;
    box-shadow: 0 1px 30px 1px rgba(0,0,0,20%);
    border-radius: 20px;
}

.JC-HomeContact-btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--accent);
    padding: 15px 35px;
    font-weight: 500;
    margin-left: 25px;
    transition: 0.3s ease;
    text-transform: uppercase;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    width: 200px;
    margin: 0 auto;
    margin-top: 50px;
}

.JC-HomeContact {
    background: #fff;
    padding: 80px 0px;
}

.JC-HomeContact-width {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.JC-HomeContact-btn:hover {
    transition: 0.3s ease;
    background: var(--accentHover);
    border: 2px solid var(--accentHover);
}

.terms {
    width: 1350px;
    margin: 0 auto;
    padding: 100px 0px;
}

.title {
    font-size: 38px;
    font-weight: 700;
}

.subtitle {
    font-size: 28px;
    margin-top: 50px;
    font-weight: 700;
    color: vaR(--accent);
}

.terms a {
    color: var(--accent);
    transition: 0.3s ease;
}

.terms a:hover {
    transition: 0.3s ease;
    text-decoration: underline;
}

.para {
    color: var(--text);
    opacity: 0.8;
    width: 80%;
}

.JC-404Page {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    margin-top: 50px;
}

/* RESPONSIVE */

@media only screen and (max-width: 1600px) {
    .JC-StatSection-width {
        width: 90%;
    }

    .JCFooter-width {
        width: 90%;
    }

    .JC-PortfolioContainer {
        width: 90%;
    }
}

@media only screen and (max-width: 1400px) {
    .JC-navBar {
        width: 90%;
    }
    
    .JCHero-container {
        width: 90%;
    }

    .JC-ChooseWidth {
        width: 90%;
    }

    .JC-PartnerSection-width {
        width: 90%;
    }

    .JC-ProcessContainer-body {
        width: 90%;
    }

    .JC-ProcessContainer-head {
        width: 90%;
    }

    .JC-PlatformContainer-width {
        width: 90%;
    }

    .JC-HomeContact-width {
        width: 90%;
    }

    .JC-TabContainer {
        width: 100%;
    }

    .JC-StatBox {
        width: 100%;
        margin: 25px 0px;
    }

    .JC-StatSection-width {
        flex-direction: column;
    }

    .terms {
        width: 100%;
        padding: 80px 20px;
    }
}

@media only screen and (max-width: 1300px) {
    .JC-ContactContainer {
        width: 90%;
        flex-direction: column;
    }

    .JC-ContactRight {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 1100px) {
    .JC-TabContainer {
        flex-direction: column;
        height: auto;
        min-height: 400px;
    }

    .JC-TabLeft {
        width: 100%;
        padding: 50px 60px;
        margin-right: 0px;
    }
}

@media only screen and (max-width: 1060px) {
    .JCFooter-width {
        width: 90%;
    }

    .JCHero-right {
        display: none;
    }
}

@media only screen and (max-width: 960px) {
    .JCFooter-rows {
        flex-direction: column;
    }

    .JCFooter-box {
        width: 100%;
        margin-bottom: 50px;
    }

    .JCFooter-boxRows {
        justify-content: flex-start;
    }

    .JC-navLink {
        display: none;
    }

    .JC-navBtn {
        display: none;
    }

    .JC-mobileBtn {
        display: flex;
    }

    .endBox-footer {
        justify-content: flex-start;
        text-align: left;
    }

    .JC-PartnerSection-body-box {
        width: 50%;
        text-align: center;
        justify-content: center;
    }

    .JC-PlatformBox {
        width: 100%;
    }

    .JC-HomeContact-width {
        flex-direction: column;
    }

    .JC-HomeContact-left {
        width: 100%;
    }

    .JC-HomeContact-right {
        width: 100%;
    }

    .JC-HomeContact-btn {
        margin: 15px 0px;
    }

    .JC-PortfolioBox{
        width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    .JC-ChooseBox {
        width: 100%;
        min-height: 370px;
        height: auto;
    }

    .JCHero-left {
        width: 100%;
    }

    .JCHero-slogan {
        width: 90%;
    }

    .JC-SectionTitle {
        width: 100%;
    }

    .JC-PartnerSection-body-box {
        width: 100%;
    }

    .JC-ProcessContainer-nav {
        flex-direction: column;
    }

    .tablinks {
        margin-right: 0px;
        margin-bottom: 15px;
    }

    .JC-ContactLeft {
        width: 100%;
    }

    .JC-ContactRight {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .JC-CountText {
        font-size: 40px;
    }

    .JC-TabRight-img {
        width: 100%;
        height: 200px;
    }
}