* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
html {
	max-width: 100%;
	overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

:root {
	--boxShadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
}

.bodyDark {
	--body: #323647;
    --secondary: #242734;
    --lighter: #424657;
    --text: #eff0f3;
    --accent: #7463e4;
    --hover: #7e6dee;
    --headerTitle: #e9eaee;
    --headerSlogan: #fff;
    --navLink: #6c6d7b;
    --active: #fff;
    --sectionOne: #44495d;
    --sectionTwo: #323647;
}

.bodyLight {
    --body: #fff;
    --sectionTwo: #fff;
    --secondary: #ffffffce;
    --lighter: #eaeaea;
    --text: black;
    --headerTitle: black;
    --headerSlogan: black;
    --navLink: #6c6d7b;
    --active: black;
    --accent: #7463e4;
    --hover: #7e6dee;
    --sectionOne: #f2efef;
}

body {
	font-family: 'Poppins', sans-serif;
	color: #fff;
	background-color: var(--body);
    background-image: url(/assets/images/bg-opacity.svg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* LOADER */
#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    -webkit-animation: pulse 2s linear infinite;
    animation: swing 5s linear infinite;
    background: url(/assets/images/logo.gif);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
  
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
  }
  
  @-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 } 
    to { bottom:0px; opacity:1 }
  }
  
  @keyframes animatebottom { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
  }
  
  #containerWrapper {
    display: none;
    text-align: center;
  }
/* END LOADER */

a {
	text-decoration: inherit;
	color: #fff;
}

.JCHeader {
    min-height: 100vh;
}

.JC-navBar {
    display: flex;
    width: 1300px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

.JC-LogoLink img {
    width: 70px;
}

.JC-navLink {
    font-size: 19px;
    padding: 0px 18px;
    color: var(--navLink);
    font-weight: 500;
    position: relative;
    letter-spacing: 0.50px;
    transition: 0.3s ease;
}

.JC-navLink:hover {
    color: var(--active);
    transition: 0.3s ease;
}

.JC-Active {
    color: var(--active);
    transition: 0.3s ease;
}

.JC-Active::before {
    content: "";
    background: var(--accent);
    position: absolute;
    opacity: 45%;
    width: 40px;
    height: 14px;
    z-index: -1;
    margin-top: 12px;
    margin-left: -5px;
    opacity: 0.6;
}

.JC-HeaderContent {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 750px;
}

.JC-navRight {
    display: flex;
    align-items: center;
}

.btn-toggle {
    font-size: 19px;
    padding: 0px 18px;
    color: var(--navLink);
    font-weight: 500;
    position: relative;
    letter-spacing: 0.50px;
    transition: 0.3s ease;
    background: transparent;
    border: inherit;
    cursor: pointer;
}

.btn-toggle:hover {
    transform: scale(1.03);
    transition: 0.3s ease;
}

.JC-HeaderContent-left {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.JC-HeaderTitle {
    font-size: 103px;
    font-weight: 600;
    color: var(--headerTitle);
    line-height: 100px;
    text-align: left;
}

.JC-HeaderSlogan {
    margin-top: 25px;
    font-size: 17px;
    line-height: 30px;
    text-align: left;
    width: 350px;
    color: var(--headerSlogan);
}

.JC-HeaderHR {
    background: var(--accent);
    padding: 4px;
    width: 80px;
    border: inherit;
    margin-top: 30px;
}

.JC-HeaderSocial-link {
    font-size: 36px;
    margin-right: 25px;
    color: #787e95;
    transition: 0.3s ease;
}

.JC-HeaderSocial-link:hover {
    transform: scale(1.08);
    color: #888d9f;
    transition: 0.3s ease;
}

.JC-HeaderIntro {
    color: #fff;
    display: flex;
    color: #6c6d7b;
    align-items: center;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
}

.JC-HeaderIntro hr {
    margin-right: 10px;
    width: 40px;
    padding: 3px;
    background: #6c6d7b;
    border: inherit;
}

.JC-HeaderBtn {
    background: var(--accent);
    padding: 17px 60px;
    font-size: 24px;
    margin-top: 50px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 50px;
    transition: 0.3s ease;
}

.JC-HeaderBtn:hover {
    transition: 0.3s ease;
    background: var(--hover);
}

.JC-HeaderSocial {
    position: relative;
    top: 100px;
    display: flex;
    align-items: center;
}

.JC-HeaderContent-right {
    position: relative;
    right: -250px;
}

.JC-RightImage {
    width: 1000px;
    position: absolute;
    margin-top: -300px;
}

/* MOBILE MENU */

.JC-mobileBtn {
    border: inherit;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    padding: 6px 12px;
    border-radius: 8px;
    outline: inherit;
    cursor: pointer;
    display: none;
    transition: 0.3s ease;
}

.JC-mobileBtn svg {
    width: 35px;
    color: #fff;
}

.JC-mobileIcon {
    width: 20px;
    color: #fff;
}

.JC-mobileBtn:hover {
    background: var(--hover);
    transition: 0.3s ease;
}

.JCTop {
    background: var(--body);
}

.JCmob {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 80;
    top: 0;
    left: 0;
    background: var(--body);
    overflow-x: hidden;
    transition: 0.5s;
}
  
.JCmob-content {
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.JCmob-top {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
	height: 100px;
	text-align: center;
	padding: 0px 25px;
}

.JCmob-top .closebtn {
    font-size: 24px;
    width: 100%;
    text-align: right;
    padding: 0px 25px;
    font-weight: 700;
    color: var(--text);
    position: relative;
    top: -20px;
}

.JCmob-title {
    font-size: 18px;
    font-weight: 700;
	width: 100%;
	text-align: center;
    position: relative;
    top: -10px;
    color: #df3551;
}

.JC-mobContainer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.JC-navMob {
    height: 70px;
    width: 100%;
    line-height: 70px;
    text-align: left;
    padding: 0px 25px;
    font-weight: 700;
    color: var(--text);
	text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* END OF MOBILE MENU */

.JC-SectionContainer {
    background: var(--sectionOne);
    padding: 100px 0px;
}

.JC-AboutImage {
    width: 600px;
    border-radius: 20px;
    margin-right: -200px;
}

.JC-AboutContent {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.JC-AboutContent-left {
    width: 600px;
}

.JC-SectionSubTitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    background: #666e8f;
    width: 150px;
    padding: 6px;
    text-align: center;
    border-radius: 80px;
    margin-bottom: 15px;
}

.JC-AboutBig {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.JC-AboutInfo {
    line-height: 30px;
    color: var(--text);
}

.JC-AboutStats {
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.JC-AboutStats-box {
    margin-right: 70px;
}

.JC-AboutStats-box p {
    font-size: 50px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: -10px;
}

.JC-AboutStats-box div {
    font-size: 50px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: -10px;
    width: 120px;
    display: flex;
    align-items: center;
}

.JC-AboutStats-box span {
    margin-left: 15px;
    margin-top: 10px;
}

.JC-AboutStats-box small {
    color: #767e9c;
    font-weight: 700;
    font-size: 17px;
}

.JC-ExperienceSection {
    background: #666e8f;
    color: #fff;
    padding: 50px;
}

.JC-ExperienceSection-width {
    width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.JC-ExperienceBox {
    display: flex;
    align-items: center;
    text-align: left;
}

.JC-ExperienceCol {
    margin-left: 15px;
}

.JC-ExperienceBox i {
    font-size: 40px;
}

.JC-ExperienceBox p {
    font-size: 18px;
    font-weight: 700;
}

.JC-ExperienceBox small {
    font-size: 13px;
    opacity: 0.6;
}

.JC-AboutContent-left {
    width: 500px;
    text-align: left;
}

.JC-PortfolioContainer {
    background: var(--sectionTwo);
    padding: 100px 0px;
}

.JC-PortfolioContent {
    width: 1350px;
    margin: 0 auto;
}

.JC-PortfolioSection {
    padding: 20px 0px;
}

.JC-PortfolioSection-width {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.JC-PortfolioSection-rows {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.JC-PortfolioBox {
    position: relative;
    width: 400px;
    border-radius: 15px;
    margin: 15px;
    border: 5px solid #27293c;
    box-shadow: var(--boxShadow);
}

.JC-PortfolioImage {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.JC-SectionContent-left {
    width: 100%;
    text-align: center;
}

.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,rgba(53,58,75,76%) 0,rgb(60,64,83) 500%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 50px;
}

.JC-PortfolioBox-info p {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

.JC-PortfolioBox-btn {
    box-shadow: var(--boxShadow);
    background: var(--accent);
    color: #fff;
    border-radius: 15px;
    width: 210px;
    height: 50px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    border: 3px solid #8374e5;
    letter-spacing: 2px;
    margin-top: 25px;
    transition: .3s ease;
}

.JC-SectionContent-cen {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.JC-PortfolioBox:hover .JC-PortfolioBox-overlay {
    opacity: 1;
}

.JC-BtnWork {
    background: var(--accent);
    padding: 15px 60px;
    font-weight: 600;
    font-size: 20px;
    border-radius: 10px;
    color: #fff;
    box-shadow: var(--boxShadow);
    transition: 0.3s ease;
}

.JC-BtnWork:hover {
    background: var(--btnHover);
    transition: 0.3s ease;
}

.JC-ReviewsContainer {
    padding: 100px 0px;
    background: var(--sectionOne);
}

.container {
    width: 1350px;
    margin: 0 auto;
    margin-top: 50px;
}

.testimonial{
    margin: 0 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.testimonial .testimonial-content{
    padding: 35px 35px;
    margin-bottom: 35px;
    background: var(--sectionTwo);
    box-shadow: var(--boxShadow);
    border-radius: 10px;
    position: relative;
}

.JC-TestimonialImg {
    width: 90px;
    border-radius: 100%;
    position: relative;
    margin-bottom: -20px;
    z-index: 1000;
}

.testimonial .description{
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}

.testimonial .title{
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

.testimonial .post{
    display: block;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.owl-theme .owl-controls{
    margin-top: 20px;
}

.owl-theme .owl-controls .owl-page span{
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: var(--accent);
}

.JC-ServicesContainer {
    padding: 100px 0px;
    background: var(--sectionOne);
}

.JC-ServicesRows {
    width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.JC-ServicesBox {
    width: 450px;
    height: 250px;
    box-shadow: var(--boxShadow);
    border-radius: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px 40px;
    justify-content: center;
    margin: 25px 15px;
    position: relative;
    top: 0;
    transition: .3s ease;
    background: #3a3f54;
}

.JC-ServicesBox:hover {
    position: relative;
    top: -15px;
}

.JC-ServicesIcon {
    width: 65px;
    height: 65px;
    background: #515773;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #717899;
    font-size: 24px;
    margin-top: -150px;
}

.JC-ServicesInfo {
    position: relative;
    top: 50px;
}

.JC-ServicesName {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.JC-ServicesDesc {
    opacity: 0.6;
    font-size: 16px;
}

.JC-ContactPageRight form {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.JC-ContactPageLabel {
    font-weight: 700;
    margin-top: 25px;
    font-size: 16px;
    color: #43465c;
    margin-bottom: 10px;
}

.JC-ContactPageInput {
    background: #fff;
    height: 65px;
    width: 100%;
    border: inherit;
    border-radius: 15px;
    padding: 15px 25px;
    font-size: 16px;
    font-family: 'Rubik',sans-serif;
}

.JC-ContactPageInput:focus-visible {
    outline: 5px solid #26283b;;
}

.JC-ContactPageText {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}

.JC-ContactSection {
    padding: 100px 0px;
    background: var(--sectionTwo);
}

.JC-ContactPageSection-width {
    width: 1100px;
    margin: 0 auto;
}

.JC-ContactPageSection-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    margin: 100px 0px;
}

.JC-ContactPageRight {
    background: #44495d;
    padding: 50px 50px;
    border-radius: 10px;
    width: 550px;
    box-shadow: var(--boxShadow);
}

.JC-ContactPageTextArea {
    background: #fff;
    width: 100%;
    border: inherit;
    border-radius: 15px;
    min-width: 100%;
    max-width: 100%;
    padding: 15px 25px;
    font-size: 16px;
    font-family: 'Rubik',sans-serif;
}

.JC-ContactPageLabel {
    font-size: 22px;
}

.JC-ContactPageSubmit {
    background: #25273a;
    width: 100%;
    border: inherit;
    outline: inherit;
    color: #fff;
    margin-top: 35px;
    height: 62px;
    border-radius: 15px;
    box-shadow: var(--boxShadow);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border: 3px solid #25273a;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins',sans-serif;
    transition: .3s ease;
}

.JC-ContactPageSubmit:hover {
    transition: .3s ease;
    background: #36384f;
    border: 3px solid #36384f;
}

p.JC-ContactPageBig {
    font-size: 60px;
    font-weight: 700;
    color: var(--text);
    width: 500px;
}

.JC-ContactPageSmall {
    font-size: 20px;
    color: #686e85;
    margin-top: 25px;
    font-weight: 600;
    width: 400px;
}

.JC-ContactPageLink {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    margin: 15px 0px;
    border-radius: 15px;
    transition: 0.3s ease;
    left: 0px;
    position: relative;
}

.JC-ContactPageLink:hover {
    transition: 0.3s ease;
    left: -5px;
    background: var(--sectionTwo);
    position: relative;
}

.JC-ContactPageLink i {
    font-size: 28px;
    color: #8084a6;
    margin-right: 15px;
}

.JC-ContactPageLink p {
    font-size: 22px;
    font-weight: 600;
    color: #8084a6;
}

.JC-Footer {
    background: #404558;
    padding: 50px 0px;
}

.JC-FooterWidth {
    width: 1350px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.JC-FooterWidth p {
    font-size: 17px;
    opacity: 0.6;
    font-weight: 600;
}

.JC-FooterWidth a {
    color: var(--hover);
    font-weight: 600;
}

.JC-ContactLabel {
    font-weight: 700;
    margin-top: 25px;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Poppins' ,sans-serif;
}

.JC-ContactInput {
    background: var(--body);
    height: 67px;
    width: 100%;
    border: inherit;
    border-radius: 15px;
    color: var(--text);
    padding: 15px 25px;
    font-size: 16px;
    font-family: 'Poppins' ,sans-serif;
}

.JC-ContactInput:focus-visible {
    outline: inherit;
    box-shadow: var(--boxShadow);
}

.JC-ContactTextArea {
    background: var(--body);
    width: 100%;
    border: inherit;
    border-radius: 15px;
    min-width: 100%;
    max-width: 100%;
    padding: 15px 25px;
    font-size: 16px;
    color: var(--text);
    font-family: 'Poppins' ,sans-serif;
}

.JC-ContactSubmit {
    background: var(--accent);
    width: 100%;
    border: inherit;
    outline: inherit;
    margin-top: 35px;
    height: 62px;
    border-radius: 15px;
    box-shadow: var(--boxShadow);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    border: 3px solid var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins',sans-serif;
    transition: .3s ease;
}

.JC-ContactSubmit:hover {
    background: var(--hover);
    transition: 0.3s ease;
}

.JC-TermsContainer {
    background: var(--lighter);
    width: 1350px;
    margin: 0 auto;
    padding: 20px 50px;
    margin-top: 50px;
    border-radius: 15px;
    margin-bottom: 80px;
}

.terms {
    min-height: 100%;
}

.para {
    color: var(--text);
    opacity: 0.8;
    width: 80%;
}

.para a {
    color: var(--accent);
}

.subtitle {
    font-size: 28px;
    margin-top: 50px;
    color: var(--accent);
    font-weight: 700;
}

#myBtnContainer {
    margin-bottom: 50px;
}

.filterDiv {
    display: none;
}
  
.show {
    display: block;
}
  
.btn {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    background-color: var(--lighter);
    color: white;
    border-radius: 8px;
    padding: 16px 25px;
    margin: 5px;
    border: inherit;
    outline: inherit;
    color: var(--text);
    transition: 0.3s ease;
}
  
.btn:hover {
    color: #fff;
    transition: 0.3s ease;
    background-color: var(--accent);
}
  
.btn.active {
    background-color: var(--accent);
    color: #fff;
}

@media only screen and (max-width: 1500px) {
    .JC-RightImage {
        width: 850px;
        left: -100px;
        margin-top: -250px;
    }

    .JC-ServicesRows {
        width: 90%;
    }
}

@media only screen and (max-width: 1400px) {
    .JC-AboutContent {
        width: 90%;
    }

    .JC-ExperienceSection {
        padding: 50px 20px;
    }

    .JC-ExperienceSection-width {
        width: 90%;
    }

    .JC-PortfolioContent {
        width: 90%;
    }

    .JC-PortfolioSection-width {
        width: 90%;
    }

    .JC-TermsContainer {
        width: 90%;
        padding: 20px;
    }

    .para {
        width: 100%;
    }

    .JC-FooterWidth {
        width: 90%;
    }
}

@media only screen and (max-width: 1350px) {
    .JC-navBar {
        width: 90%;
    }

    .JC-HeaderContent {
        width: 90%;
    }

    .JC-HeaderContent-right {
        display: none;
    }

    .JC-HeaderContent {
        min-height: 800px;
        height: auto;
    }

    .container {
        width: 90%;
    }

    .JC-ExperienceSection-width {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .JC-ExperienceSection-width {
        padding: 0px;
    }

    .JC-ExperienceBox {
        padding: 20px 0px;
    }
    
    .JC-ContactPageSection-width {
        width: 90%;
    }

    .JC-ContactPageSection-body {
        flex-direction: column;
    }

    .JC-ContactPageLeft {
        width: 100%;
        margin-bottom: 80px;
    }

    .JC-ContactPageRight {
        width: 100%;
        padding: 50px 30px;
    }

    .JC-ContactPageLink {
        padding: 15px;
    }
}

@media only screen and (max-width: 960px) {
    .JC-navLink {
        display: none;
    }

    .JC-ServicesBox {
        width: 100%;
        height: auto;
        padding: 100px 50px;
    }

    .JC-mobileBtn {
        display: flex;
    }

    .JC-HeaderSlogan {
        width: 100%;
    }

    .JC-AboutContent {
        padding: 100px 0px;
    }

    .JC-AboutContent-right {
        display: none;
    }

    .JC-AboutContent-left {
        width: 100%;
    }
    
    .JC-PortfolioBox {
        width: 100%;
    }
}

@media only screen and (max-width: 960px) {
    .JC-HeaderTitle {
        font-size: 80px;
    }
}

@media only screen and (max-width: 760px) {
    .JC-FooterWidth {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .JC-FooterWidth a {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .JC-HeaderTitle {
        font-size: 60px;
        line-height: 70px;
    }

    .JC-AboutStats {
        flex-direction: column;
        align-items: flex-start;
    }

    .JC-AboutStats-box {
        margin-right: 0px;
        margin-bottom: 25px;
    }

    .JC-ContactPageBig {
        width: 100% !important;
        font-size: 45px !important;
    }

    .JC-ContactPageSmall {
        width: 100%;
    }
}

@media only screen and (max-width: 450px) {
    .JC-HeaderTitle {
        font-size: 48px;
        line-height: 60px;
    }
}

@media only screen and (max-width: 360px) {
  .JC-ContactPageLink p {
    font-size: 18px;
  }
}