@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300..900&display=swap');

:root {
    --black: #000000;
    --white: #ffffff;
    --orange: #F47D20;
    --teal: #1EFFD2;
    --gray: #808080;
}

html {
    overflow-x: hidden;
}

body {
    scroll-behavior: smooth;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    background: var(--black);
    font-family: "Figtree", sans-serif;
    position: relative;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    overflow-x: hidden;
}

input,
textarea,
select,
button {
    box-shadow: none !important;
    outline: none !important;
    color: var(--white) !important;
}
.form-control:focus,
.form-select:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: #ccc;
}
.form-control::placeholder,
.form-select::placeholder {
    color: #4C4C4C;
}

.section-heading {
    color: var(--orange);
    text-transform: uppercase;
}

.section-heading h3 {
    font-size: 16px;
    font-weight: 400;
}

.section-heading h2 {
    font-size: 60px;
    font-weight: bold;
    color: var(--white);
    position: relative;
}

.section-heading h2 span {
    position: relative;
}

.section-heading h2 span:before {
    content: "";
    background-color: var(--orange);
    height: 4px;
    width: 45px;
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
}

.gradient-text {
    background: linear-gradient(90deg, var(--orange), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.ccm-btn {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
}

.ccm-btn::before, .ccm-btn::after, .ccm-btn span::before, .ccm-btn span::after {
    content: "";
    position: absolute;
    background: var(--orange);
    transition: all 0.3s ease;
}

.ccm-btn::before {
    width: 80px;
    height: 1px;
    top: 0;
    right: 0;
}

.ccm-btn::after {
    width: 60px;
    height: 1px;
    bottom: 0;
    left: 0;
}

.ccm-btn span::before {
    width: 1px;
    height: 40px;
    bottom: 0;
    right: 0;
}

.ccm-btn span::after {
    width: 1px;
    height: 30px;
    top: 0;
    left: 0;
}

.ccm-btn:hover::before, .ccm-btn:hover::after {
    width: 100%;
}

.ccm-btn:hover span::before, .ccm-btn:hover span::after {
    height: 100%;
}

.ccm-btn:hover {
    color: var(--white);
}

/* NAVBAR */
navbar.navbar {
    z-index: 99;
    padding: 30px 0;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    transition: background-color 0.3s ease-in-out;
}

navbar.navbar .navbar-brand img {
    height: 80px;
}

navbar.navbar .links a, footer.footer .links a {
    font-weight: bold;
    margin-right: 40px;
    color: var(--white);
    text-decoration: none;
    transition: .3s;
}

navbar.navbar .links a:hover, footer.footer .links a:hover {
    color: var(--orange);
}

footer.footer {
    background: url('./img/footer-bg.png') no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 450px 0 0;
    position: relative;
}

footer.footer .gradient-box-top {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 150px;
    position: absolute;
    top: 0;
}

footer.footer .logo img {
    width: 100%;
}

.footer .socials a {
    background: var(--white);
    border-radius: 33px;
    padding: 18px 32px;
    margin-left: 10px;
    text-decoration: none;
    text-align: center;
    width: 85px;
    transition: 0.3s;
}

.footer .socials a:hover {
    background: var(--orange);
}

footer.footer p.copyright {
    color: var(--gray);
    font-size: 18px;
    margin: 24px 0 50px;
}

footer.footer p.copyright span {
    color: var(--orange);
}

#cloudSx, #cloudDx {
    opacity: 1;
}

/* HERO PARALLAX */
.ccm-hero-parallax {
    background-image: url(img/hero-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 200px;
    padding-bottom: 500px;
}

.ccm-hero-parallax .gradient-box-bottom {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 250px;
    position: absolute;
    bottom: 0;
    z-index: 6;
}

.ccm-hero-parallax img.img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 4;
}

.ccm-hero-parallax img#nyc {
    width: 120%;
}

.ccm-hero-parallax .text-box {
    position: relative;
    z-index: 9;
    text-align: center;
    transform: scale(1.0);
}

.ccm-hero-parallax .text-box img {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.ccm-hero-parallax .text-box p {
    margin: 0 0 30px;
    font-size: 20px;
    font-weight: 500;
}

/* SERVICES */
.service-slider .service-slide {
    padding: 30px;
    position: relative;
}

.service-slider .service-slide .slide-img {
    background-color: #0F0F0F;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
    padding: 40px 120px 40px 40px;
    width: 70%;
    position: relative;
}

.service-slider .service-slide .content {
    color: var(--white);
    width: 40%;
    position: absolute;
    right: 0;
        top: 50%;
    transform: translateY(-50%);
}

.service-slider .service-slide .content h3 a {
    font-size: 40px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
}
.service-slider .service-slide .content p {
    color: var(--gray);
}

.service-slider .service-slide .content a.category {
    font-size: 18px;
    text-align: center;
    margin-top: 70px;
    text-decoration: none;
    color: var(--gray);
    display: block;
}

.service-slider .service-slide .content a.category span {
    color: var(--orange);
}

.ccm-services {
    position: relative;
    z-index: 1;
}

.ccm-services .arrows {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.ccm-services .arrows .right-arrow, .ccm-services .arrows .left-arrow {
    cursor: pointer;
}

.ccm-services .slide-numbers {
    text-align: center;
    font-size: 60px;
    font-weight: 300;
}

.ccm-services .slide-numbers .current {
    position: relative;
    left: -30px;
}

.ccm-services .slide-numbers .total {
    opacity: 0.4;
    position: relative;
    right: -30px;
}

/* WORK PROGRESS */
.ccm-work-process {
    padding: 150px 0;
    position: relative;
}

.ccm-work-process .work-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
}

.ccm-work-process .img-box img {
    width: 90%;
}

.ccm-work-process .text-content {
    color: var(--gray);
}

.ccm-work-process .text-content h3 {
    font-size: 40px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
}

.ccm-work-process .text-content p {
    font-size: 20px;
    margin: 20px 0 30px;
}

.ccm-work-process .right-nav ul {
    list-style-type: none;
    color: var(--gray);
}

.ccm-work-process .right-nav ul li {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 20px 0;
    cursor: pointer;
}

.ccm-work-process .right-nav ul li.active {
    color: var(--orange);
    text-decoration: underline;
}

.ccm-work-process .step {
    display: none;
}

.ccm-work-process .step:first-child {
    display: block;
}

.ccm-work-process .img-box {
    display: none;
}

.ccm-work-process .img-box:first-child {
    display: block;
}

/* WORK */
.ccm-work .work-tabs .nav-link {
    background-color: transparent;
    text-transform: uppercase;
    color: var(--white);
    font-size: 16px;
    border: 1px solid var(--white);
    border-radius: 50px;
    margin: 0 10px;
}
.ccm-work .section-heading p {
    font-size: 20px;
    margin: 20px 0 30px;
    color: var(--gray);
    text-transform: none;
}
.ccm-work .work-tabs .nav-link.active {
    color: var(--orange) !important;
    border-color: var(--orange);
}
.ccm-work .work-card {
    padding: 20px 30px 20px;
    background: url('./img/story-card-bg.svg') no-repeat;
}
.ccm-work .work-card h4 {
    font-weight: 600;
    margin: 20px 0 10px;
}
.ccm-work .work-card p {
    color: var(--gray);
}
.ccm-work .work-tabs .carousel {
    background: #0F0F0F;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.ccm-work .work-tabs .carousel .before,
.ccm-work .work-tabs .carousel .after {
    padding: 60px;
}
.ccm-work .work-tabs .carousel .before .img-box {
    margin-bottom: 30px;
}
.ccm-work .work-tabs .carousel .after .img-box {
    margin-top: 30px;
}
.ccm-work .work-tabs .carousel .before {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.ccm-work .work-tabs .carousel .carousel-item .img-box {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ccm-work .work-tabs .carousel .carousel-item h3 {
    opacity: 0.2;
    font-weight: bold;
    font-size: 40px;
}
.ccm-work .work-tabs .carousel .carousel-item .text {
    font-size: 20px;
    font-weight: 500;
    color: var(--gray);
}
.ccm-work .work-tabs .carousel .carousel-item .text span {
    color: var(--white);
}
.rotating-svg {
    animation: rotate 10s linear infinite;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* TESTIMONIALS */
@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}

.ccm-testimonials {
    padding: 150px 0;
}

.ccm-testimonials .section-heading {
    z-index: 1;
}
.ccm-testimonials .section-heading h2 {
    font-weight: 300;
}

.ccm-testimonials .testimonials-bg {
    width: 80%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    animation-name: rotate;
    animation-duration: 50s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.ccm-testimonials .linear-box {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 5;
    height: 50px;
}
.ccm-testimonials .linear-box.top {
    top: 0;
}
.ccm-testimonials .linear-box.bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.ccm-testimonials .testimonials-slider {
    margin: 130px 0;
    padding: 50px;
    background: var(--black);
    border: 1px solid var(--gray);
    border-radius: 20px;
}

.ccm-testimonials .testimonials-slider .test-slide {
    color: var(--gray);
    text-align: center;
}
.ccm-testimonials .ccm-testimonials-slider {
    max-height: 100vh;
    height: 100vh;
    overflow: hidden;
}
.ccm-testimonials .ccm-testimonials-slider .test-slide {
    position: relative;
}
.ccm-testimonials .ccm-testimonials-slider img {
    width: 100%;
}
.ccm-testimonials .ccm-testimonials-slider img.testimonials-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
}
.ccm-testimonials .ccm-testimonials-slider .content {
    position: relative;
    margin: 20px 50px;
    padding: 30px;
    background: var(--black);
    border: 1px solid var(--gray);
    border-radius: 20px;
}

.ccm-testimonials .ccm-testimonials-slider .test-slide .logo-box img {
    width: 80px;
    margin: 0 auto;
}

.ccm-testimonials .ccm-testimonials-slider .test-slide .testimonial {
    font-weight: 300;
    margin: 20px 0 30px;
    color: var(--gray);
}

.ccm-testimonials .ccm-testimonials-slider .test-slide .img-box {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.ccm-testimonials .ccm-testimonials-slider .test-slide .img-box img {
    object-fit: cover;
}

.ccm-testimonials .ccm-testimonials-slider .test-slide .by .name {
    font-size: 18px;
    font-weight: 600;
}

.ccm-testimonials .ccm-testimonials-slider .test-slide .by .designation {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
}

/*================================================================*/

/* ABOUT PAGE */

/*================================================================*/
.ccm-about {
    padding: 150px 0 100px;
    min-height: 100vh;
    background: url('./img/about/hero-bg.png') no-repeat;
    background-size: cover;
    background-position: center center;
}

.ccm-about .section-heading {
    margin-top: 70px;
}

.ccm-about p {
    font-size: 20px;
}

.ccm-about img.img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ccm-about .img-box .bb {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.ccm-about .img-box .sign {
    position: absolute;
    bottom: -100px;
    left: 0;
}

.ccm-about .img-box .sign img {
    height: 74px;
}

.ccm-about .gradient-box-bottom {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 250px;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.ccm-about .container {
    z-index: 1;
}

/* STORY */
.ccm-story {
    padding: 150px 0;
    position: relative;
    background: url('./img/about/story-bg.png') no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.ccm-story .gradient-box-top {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 250px;
    position: absolute;
    top: 0;
}

.ccm-story .gradient-box-bottom {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 150px;
    position: absolute;
    bottom: 0;
}

.ccm-story .about-text {
    font-size: 20px;
    color: var(--gray);
}

.ccm-story .points .point {
    padding: 20px;
    position: relative;
}

.ccm-story .points .col-md-4:not(:first-child) .point .number::before {
    content: "";
    background: url('./img/about/chevron.svg') no-repeat;
    width: 26px;
    height: 26px;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
}

.ccm-story .points .point .number {
    font-size: 30px;
    width: 64px;
    height: 64px;
    border: 1px solid var(--orange);
    border-radius: 50%;
    color: var(--orange);
    padding: 10px;
    display: inline-block;
    background: var(--black);
    position: relative;
    transition: 0.3s;
}

.ccm-story .points .point:hover .number {
    background: var(--orange);
    color: var(--black);
}

.ccm-story .line .l {
    height: 1px;
    width: 70%;
    background: var(--orange);
    display: block;
    margin: 0 auto;
    position: relative;
    bottom: -52px;
}

.ccm-story .points .point h3 {
    color: var(--white);
    font-size: 24px;
    text-transform: capitalize;
    margin: 30px 0 15px;
}

.ccm-story .points .point p {
    font-size: 18px;
    color: var(--gray);
}

/* BRANDS */
.ccm-brands .brand-box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    transition: 0.3s;
    margin: 10px 0;
}

.ccm-brands .brand-box.active {
    border-color: var(--orange);
}

.ccm-brands .brand-box h3 {
    font-weight: 500;
}

.ccm-brands .brand-box p {
    margin: 10px 0 0;
    color: var(--gray);
    font-size: 20px;
}

.ccm-brands .img-box:not(:first-child) {
    display: none;
}

.ccm-brands .img-box img {
    width: 60%;
}

.ccm-brands .img-box img:first-child {
    position: relative;
    z-index: 1;
}

.ccm-brands .img-box img:last-child {
    position: absolute;
    right: 0;
}

.display-none {
    display: none;
}

.ccm-services-hero {
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 200px;
}

.ccm-services-hero .gradient-box-bottom {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 250px;
    position: absolute;
    bottom: 0;
    z-index: 6;
}

.ccm-services-hero img.img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    object-fit: cover;
    object-position: top right;
}

.ccm-services-hero .text-box {
    position: relative;
    z-index: 9;
    text-align: center;
    transform: scale(1.0);
}

.ccm-services-hero .text-box h1 {
    margin: 0 0 30px;
    font-size: 60px;
    font-weight: 300;
    color: var(--white);
    text-transform: uppercase;
}

.ccm-services-hero .service-numbers {
    z-index: 5;
    margin-top: 100px;
}

.ccm-services-hero .service-numbers h2 {
    position: absolute;
    left: 12%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: 300;
}

.ccm-services-hero .service-numbers .numbers {
    left: 30%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.ccm-services-hero .service-numbers .numbers .number {
    margin: 40px 0;
}

.ccm-services-hero .service-numbers .numbers .number h3 {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 0;
}

.ccm-services-hero .service-numbers .numbers .number p {
    color: var(--gray);
    text-transform: uppercase;
    font-size: 18px;
}

/* BRAND SUCCESS */
.brand-success {
    padding: 150px 0;
}

.brand-success .wrapper .circle-container {
    width: 800px;
    height: 800px;
    position: relative;
}
.brand-success .wrapper {
    margin-top: 100px;
}
.brand-success .wrapper .logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
}
.brand-success .wrapper .circle-container .box {
    width: 120px;
    height: 120px;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 50%;
    position: relative;
/*    transition: .3s;*/
}
.brand-success .wrapper .circle-container .box img {
    width: 60px;
}
.brand-success .wrapper .circle-container .box:hover {
    background: var(--orange);
}
.brand-success .wrapper .circle-container .box:before {
    content: "";    
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    width: 300px;
    position: absolute;
    top: 103%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.brand-success .wrapper .circle-container .box:after {
    content: "";
    color: var(--gray);
    width: 350px;
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.brand-success .wrapper .circle-container .box-1:before {
    content: "Brand Strategy & Identity";
}
.brand-success .wrapper .circle-container .box-2:before {
    content: "Content Creation & Storytelling";
}
.brand-success .wrapper .circle-container .box-3:before {
    content: "Website & Social Media Strategy";
}
.brand-success .wrapper .circle-container .box-4:before {
    content: "Digital Marketing & Growth";
}
.brand-success .wrapper .circle-container .box-1:after {
    content: "Build a unique and powerful brand identity that resonates with your audience.";
}
.brand-success .wrapper .circle-container .box-2:after {
    content: "Craft compelling narratives that connect and convert.";
}
.brand-success .wrapper .circle-container .box-3:after {
    content: "Create engaging platforms that attract and retain customers.";
}
.brand-success .wrapper .circle-container .box-4:after {
    content: "Elevate your online presence with data-driven marketing strategies.";
}

/* EXPERIENCE */
.ccm-experience {
    padding: 150px 0;
}
.ccm-experience .experience-box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    transition: 0.3s;
    margin: 10px 0;
}
.ccm-experience .experience-box:hover {
    border-color: var(--orange);
}
.ccm-experience .experience-box h3 {
    font-weight: 500;
}
.ccm-experience .experience-box p {
    margin: 10px 0 0;
    color: var(--gray);
    font-size: 20px;
}
.ccm-experience .experience-box .icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    min-width: 60px;
    margin-right: 20px;
}

.ccm-experience .experience-box .icon-box img {
    height: 27px;
}
.ccm-experience .percentage {
    margin-top: 200px;
    display: block;
    text-align: right;
}

/*================================================================*/

/* ABOUT PAGE */

/*================================================================*/
.ccm-contact-hero {
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 250px;
}

.ccm-contact-hero .gradient-box-bottom {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 250px;
    position: absolute;
    bottom: 0;
    z-index: 6;
}

.ccm-contact-hero img.img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    object-fit: cover;
    object-position: center center;
}

.ccm-contact-hero .text-box {
    position: relative;
    z-index: 9;
    text-align: center;
    transform: scale(1.0);
}

.ccm-contact-hero .text-box h1 {
    margin: 0 0 30px;
    font-size: 60px;
    font-weight: 300;
    color: var(--white);
    text-transform: uppercase;
}
.ccm-contact-hero .contact-info {
    z-index: 7;
}
.ccm-contact-hero .contact-info .info-box {
    text-align: left !important;
    color: var(--gray);
    display: flex;
    margin: 30px 0;
}
.ccm-contact-hero .contact-info hr {
    background: var(--white);
}
.ccm-contact-hero .contact-info .info-box .icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 50%;
    font-size: 32px;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    flex-shrink: 0;
}
.ccm-contact-hero .contact-info .info-box:hover .icon-box {
    background-color: var(--orange);
}

.ccm-contact-form form label {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 10px;
}
.ccm-contact-form form .form-control,
.ccm-contact-form form .form-select {
    font-size: 18px;
    border: 1px solid rgba(255,255,255, 0.2);
    background-color: #0B0B0B;
    padding: 14px 20px;
    border-radius: 0;
}
.ccm-contact-form form .send-form-msg i {
    font-size: 24px;
    color: var(--white);
}
.ccm-contact-form form .send-form-msg .msg {
    font-size: 16px;
    color: var(--gray);
}


/*=========================================================================*/
/* MEDIA QUERIES (RESPONSIVE) */
/*=========================================================================*/
@media(max-width: 1399px) {
    .ccm-work-process .right-nav ul li {
        font-size: 16px;
        margin: 14px 0;
    }
    .ccm-work .work-tabs .carousel .carousel-item .img-box {
        height: 350px;
        width: 350px;
    }
    .ccm-work .work-tabs .carousel .carousel-item .text {
        font-size: 18px;
    }
    .ccm-about p {
        font-size: 18px;
    }
    .ccm-story .about-text {
        font-size: 18px;
    }
}
@media(max-width: 1199px) {
    .ccm-hero-parallax .text-box img {
        width: 600px;
    }
    .service-slider .service-slide .content h3 a {
        font-size: 28px;
    }
    .service-slider .service-slide .content a.category {
        font-size: 16px;
        margin-top: 40px;
    }
    .ccm-hero-parallax {
        padding-bottom: 350px;
    }
    .section-heading h2 {
        font-size: 50px;
    }
    .ccm-work-process .text-content h3 {
        font-size: 28px;
    }
    .ccm-work-process .text-content p {
        font-size: 16px;
    }
    .ccm-work .work-tabs .carousel .carousel-item .img-box {
        height: 270px;
        width: 270px;
    }
    .ccm-work .work-tabs .carousel .carousel-item .text {
        font-size: 16px;
    }
    .ccm-testimonials .testimonials-slider .testimonial-slide .testimonial {
        font-size: 16px;
    }
    .ccm-story .points .point p {
        font-size: 16px;
    }
    .ccm-brands .brand-box p {
        font-size: 18px;
    }
    .ccm-services-hero .text-box h1 {
        font-size: 50px;
    }
    .brand-success .wrapper .circle-container {
        width: 650px;
        height: 650px;
    }
    .brand-success .wrapper .circle-container .box {
        width: 100px;
        height: 100px;
    }
    .brand-success .wrapper .circle-container .box img {
        width: 50px;
    }
    .brand-success .wrapper .logo-center {
        width: 300px;
    }
}
@media(max-width: 991px) {
    .ccm-work .work-tabs .carousel .before, .ccm-work .work-tabs .carousel .after {
        padding: 30px;
    }
    .section-heading h2 {
        font-size: 40px;
    }
    .ccm-work .work-tabs .carousel .carousel-item .img-box {
        width: 200px;
        height: 200px;
    }
    .ccm-work .work-tabs .carousel .carousel-item h3 {
        font-size: 28px;
    }
    .ccm-work .work-tabs .carousel .carousel-item .text {
        font-size: 14px;
    }
    .ccm-hero-parallax {
        padding-bottom: 280px;
    }
    .service-slider .service-slide .content h3 a {
        font-size: 20px;
    }
    .service-slider .service-slide .content p {
        font-size: 14px;
    }
    .ccm-work-process .right-nav ul li {
        width: 49.99%;
        display: inline-block;
        text-align: center;
    }
    .ccm-work-process .right-nav ul {
        padding-left: 0;
        display: inline-table;
    }
    .ccm-testimonials .testimonials-slider {
        margin: 50px 0;
    }
    .ccm-testimonials {
        padding-bottom: 0;
    }
    navbar.navbar .links a, footer.footer .links a {
        margin-left: 10px;
        margin-right: 10px;
    }
    footer.footer .links {
        margin: 50px 0;
    }
    footer.footer .socials {
        justify-content: center !important;
    }
    footer.footer .socials a {
        margin-left: 10px;
        margin-right: 10px;
    }
    .ccm-about .section-heading {
        margin-top: 140px;
    }
    .ccm-brands .img-box img {
        transform: none !important;
    }
    .ccm-services-hero .text-box h1 {
        font-size: 40px;
    }
    /*.ccm-services-hero .service-numbers h2 {
        left: 50%;
        font-size: 28px;
        transform: translateX(-50%) !important;
        top: -90px;
        text-align: center;
        white-space: nowrap;
    }*/
    .ccm-services-hero .service-numbers {
/*        margin-top: 130px;*/
        z-index: 6;
    }
    .ccm-experience .img-box img:last-child {
        display: block;
    }
    .ccm-experience .percentage {
        display: none;
    }
    .ccm-experience {
        position: relative;
        z-index: 1;
    }
    .ccm-contact-hero .text-box h1 {
        font-size: 40px;
    }
}
@media(max-width: 767px) {
    navbar.navbar .navbar-brand img {
        height: 50px;
    }
    .ccm-hero-parallax .text-box img {
        max-width: 80%;
        width: 400px;
    }
    .ccm-hero-parallax .text-box p {
        font-size: 18px;
        margin: 20px 0 30px;
    }
    .ccm-hero-parallax {
        padding-bottom: 100px;
    }
    .ccm-services .slide-numbers {
        display: flex;
        justify-content: start;
    }
    .ccm-services .slide-numbers img {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }
    .service-slider .service-slide {
        padding: 0;
    }
    .service-slider .service-slide .slide-img {
        width: 100%;
        padding: 20px;
    }
    .service-slider .service-slide .content {
        position: relative;
        transform: none;
        width: 100%;
        top: 20px;
        padding-bottom: 30px;
    }
    .service-slider .service-slide .content a.category {
        margin-top: 20px;
        text-align: left;
    }
    .ccm-services .slide-numbers {
        font-size: 40px;
        margin: 10px 0;
    }
    .ccm-services .slide-numbers .current {
        left: 0;
    }
    .ccm-services .slide-numbers .total {
        right: 0;
    }
    .ccm-services .arrows {
        top: -50px;
    }
    .ccm-work-process .right-nav ul li {
        margin-bottom: 0;
    }
    .ccm-work-process .right-nav {
        margin-bottom: 20px;
    }
    .ccm-work-process .text-content {
        margin-top: 30px;
        text-align: center;
    }
    .ccm-work .work-tabs .carousel .before {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .ccm-testimonials .testimonials-slider {
        width: 400px;
        height: 400px;
    }
    .ccm-testimonials .testimonials-slider .testimonial-slide .logo-box img {
        width: 100px;
    }
    .ccm-testimonials .testimonials-slider .testimonial-slide .testimonial {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .ccm-story .line {
        display: none;
    }
    .ccm-story .points .point .number::before {
        display: none;
    }
    .ccm-services-hero .service-numbers .numbers .number h3 {
        font-size: 24px;
    }
    .ccm-services-hero .service-numbers .numbers .number p {
        font-size: 16px;
    }
    .ccm-services-hero .service-numbers .numbers .number {
        margin: 20px 0;
    }
    .ccm-services-hero {
        padding-top: 140px;
    }
    .brand-success {
        padding: 70px 0;
    }
    .brand-success .wrapper-mobile .box .img-box {
        height: 90px;
        width: 90px;
        background: var(--white);
        border-radius: 50%;
        text-align: center;
        padding-top: 20px;
        margin: 0 auto;
    }
    .brand-success .wrapper-mobile .box .img-box img {
        width: 50px;
    }
    .brand-success .wrapper-mobile .box .content p {
        color: var(--gray);
    }
    .ccm-services-hero img.img {
        transform: none !important;
    }
    .ccm-contact-hero .contact-info .info-box {
        justify-content: start !important;
    }
    .ccm-contact-form {
        margin-top: 100px;
    }
    .mobile-sidebar {
        position: fixed;
        top: 0;
        height: 100%;
        width: 100%;
        background: var(--black);
        right: -100%;
        z-index: 999;
        padding: 50px 30px;
        transition: .3s;
    }
    .mobile-sidebar .close-btn {
        font-size: 32px;
        margin-bottom: 50px;
        color: var(--white);
        cursor: pointer;
    }
    .navbar .menu-btn {
        font-size: 32px;
        cursor: pointer;
    }
    .mobile-sidebar .links a:hover {
        color: var(--orange) !important;
    }
}
@media(max-width: 575px) {
    .section-heading {
        text-align: center;
    }
    .section-heading h2 span:before {
        display: none;
    }
    .ccm-services .arrows {
        right: 12px;
    }
    .section-heading h3 {
        font-size: 14px;
    }
    .section-heading h2 {
        font-size: 32px;
    }
    .ccm-work-process .right-nav ul li {
        font-size: 14px;
    }
    .ccm-work-process .img-box img {
        width: 50%;
    }
    .ccm-work-process .text-content h3 {
        font-size: 24px;
    }
    .ccm-work .work-tabs .carousel .carousel-control-prev,
    .ccm-work .work-tabs .carousel .carousel-control-next {
        position: absolute;
        height: 40px;
        top: -55px;
    }
    footer.footer {
        padding: 350px 0 0;
    }
    .ccm-testimonials .testimonials-slider {
        width: auto;
        height: auto;
        border-radius: 20px;
        padding: 20px;
        margin: 30px 0 0;
    }
    footer.footer .logo img {
        width: 75%;
    }
    footer.footer p.copyright {
        font-size: 14px;
    }
    .ccm-work-process {
        padding: 70px 0;
    }
    .ccm-work-process .text-content p {
        font-size: 14px;
    }
    .ccm-testimonials {
        padding: 70px 0;
    }
    .ccm-about .section-heading {
        text-align: left;
    }
    .ccm-about p,
    .ccm-story .about-text,
    .ccm-story .points .point p,
    .ccm-brands .brand-box p {
        font-size: 14px;
    }
    .ccm-story .about-text {
        margin-bottom: 10px !important;
    }
    .ccm-story .points .point h3 {
        font-size: 20px;
    }
    .ccm-brands .brand-box h4 {
        font-size: 20px;
    }
    .ccm-about .img-box .sign {
        height: 50px;
    }
    .ccm-story {
        padding: 70px 0;
    }
    .ccm-about {
        padding: 100px 0 0;
    }
    .ccm-services-hero .text-box h1 {
        font-size: 32px;
    }
    .ccm-services-hero .service-numbers h2 {
        font-size: 24px;
        left: 6%;
        transform: translateY(-50%) !important;
    }
    .ccm-services-hero .service-numbers .numbers {
        left: 20%;
    }
    .brand-success .wrapper-mobile .box .content h4 {
        font-size: 20px;
    }
    .brand-success .wrapper-mobile .box .content p {
        font-size: 14px;
    }
    .ccm-experience {
        padding-top: 0;
    }
    .ccm-experience .experience-box .content-box h4 {
        font-size: 20px;
    }
    .ccm-experience .experience-box p {
        font-size: 14px;
    }
    .ccm-contact-form form label {
        font-size: 16px;
    }
    .ccm-contact-form form .form-control, .ccm-contact-form form .form-select {
        font-size: 14px;
    }
    .ccm-contact-form form .send-form-msg .msg {
        font-size: 12px;
    }
    .ccm-contact-form form .send-form-msg i {
        font-size: 18px;
    }
    .ccm-contact-hero .text-box h1 {
        font-size: 36px;
    }
}
@media(max-width: 475px) {
    navbar.navbar .links a, footer.footer .links a {
        font-size: 14px;
    }
    navbar.navbar .links a {
        margin-left: 0;
    }
    .ccm-services .slide-numbers {
        font-size: 32px;
    }
    .ccm-services .slide-numbers img {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
    .section-heading h2 {
        font-size: 26px;
    }
    .ccm-services-hero .service-numbers .numbers .number h3 {
        font-size: 18px;
    }
    .ccm-services-hero .service-numbers .numbers .number p {
        font-size: 12px;
    }
    .ccm-experience .experience-box {
        padding: 20px;
    }
    .ccm-services-hero .service-numbers .numbers .number {
        margin: 10px 0;
    }
    .ccm-services-hero .text-box h1 {
        font-size: 24px;
    }
    .ccm-contact-hero .text-box h1 {
        font-size: 28px;
    }
}