* {
    box-sizing: border-box;
}
*:focus {
    outline: none;
}
:root{
    --spark-blue: #70D4FF;
    --spark-bg: #0B0F13;
    --spark-green: #203642;
    --spark-text: #EFF7FF;
    --spark-light: #D6D8D9;
    --spark-box: #1B1F24; 
}

body{
    background: var(--spark-bg);
    font-family: Helvetica, Arial, sans-serif;
    color: var(--spark-text);
    margin: 0;
    padding: 0;
    max-width: 1920px;
}


header{
    background: var(--spark-bg);
    height: 105px;
    width: 100%;
    display: inline-flex;
    padding: 9px 40px;
    position: fixed;
    z-index: 999;
}
.header__logo img{
    height: 70px;
    border: none;
    margin-top: 10px;
}
.header__nav {
   display: flex;
   margin-left: auto;
    align-items: center;
}

.nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav__item {
    margin-right: 15px;
}
.nav__item a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    
}
.nav__item a:hover {
    color: var(--spark-blue);
}
.nav__item a:active {
    color: var(--spark-blue);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--spark-text);
    height: 4px;
    width: 100%;
    border-radius: 2px;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--spark-text);
}

.nav-toggle-label span::before {
    top: -8px;
}

.nav-toggle-label span::after {
    bottom: -8px;
}



.nav__item:last-child {
    margin-right: 0;
}
.nav__item a{
    text-decoration: none;
    color: inherit;
} 
.hero{
    background-image: url(/pics/hero-spark.jpg);
    background-position: center;
    background-size: cover;
    height: 850px;
    position: relative;
    z-index: 1;
}
.hero__overlay{
    height: 850px;
    width: 100%;
    background-color: rgba(62, 69, 72, 0.879);
    background-repeat: no-repeat;
    position: absolute;
    z-index: 2;
}
.hero__content{
    height: 84%;
    width: 80%;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 105px;
    padding: 40px;
    position: relative;
    right: -9%;
}
.hero__content-text{
   
   width: 100%;
}
.hero__title{
    font-size: 60px;
    color: inherit;
    font-weight: 600;
    margin-bottom: 10px;
}
.hero__paragraph{
    font-size: 30px;
    width: 70%;
    line-height: 1.2;
}
.hero__button{
    border-radius: 8px;
    background: #70D4FF;
    display: inline-block;
    cursor: pointer;
    color: var(--spark-bg);
    font-size: 17px;
    padding: 20px 40px;
    text-decoration: none;
    text-shadow: 0px 1px 0px black;
    margin-top: 20px;
    }
.hero__button--2{
    margin-left: 5px;
    background: var(--spark-box);
    color: white;
}
.what{
    padding: 115px 0 82px;
}
.what__section{
    text-align: center;
}
.what__intro{
    color: var(--spark-light);
    height: 200px;
    width: 50%;
    margin: 0 auto;
}
.what__intro-title{
    font-weight: 700;
    font-size: 30px;
}
.what__intro-paragraph{
    margin: 30px 0;
    line-height: 1.5;
}
.what__info{
    display: flex;
    margin: 30px auto;
    justify-content: center;
    align-items: center;
}
.what__info-box{
    height: 350px;
    width: 350px;
    background: var(--spark-box);
    box-shadow: -4px 6px 18px -3px rgba(0, 0, 0, 0.75);
    padding: 40px 40px 20px 40px;
    margin: 0 20px;
}
.what__info-icon .fa-chart-line, .fa-desktop, .fa-people-group {
    color: #70D4FF;
    font-size: 30px;
    padding: 20px;
}
.what__info-title{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--spark-light);
}
.what__info-description{
    line-height: 1.5;
    font-size: 14px;
    opacity: 0.7;
}
.about{
    padding: 115px 0 82px;
    background: var(--spark-box);
    width: 100%;
}
.about__us-content{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about__us-box{
    height: 500px;
    width: 500px;
    border: 2px solid var(--spark-green);
    box-shadow: -8px 7px 22px -6px rgba(0, 0, 0, 0.75);
    padding: 40px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about__us-box--1{
    height: 250px;
    width: 400px;
}
.about__us-box--head{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about__us-box--paragraph{
    line-height: 1.5;
    font-size: 14px;
    opacity: 0.7;
}
.about__us-box--button{
    border-radius: 8px;
    background: #70D4FF;
    display: inline-block;
    cursor: pointer;
    color: var(--spark-bg);
    font-size: 17px;
    padding: 20px 40px;
    text-decoration: none;
    text-shadow: 0px 1px 0px black;
    margin-top: 25px;
}
.about__us-img {
    height: 500px;
    width: 600px;
    box-shadow: rgba(0, 0, 0, 0.75) 8px -7px 22px -6px;
    overflow: hidden;
}
.about__us-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;

}
.services{
    padding: 115px 0 82px;
    width: 100%;
}
.services__content{
    text-align: center;
}
.services__intro{
    color: var(--spark-light);
    height: 200px;
    width: 50%;
    margin: 0 auto;
}
.services__intro-title{
    font-weight: 700;
    font-size: 30px;
}
.services__intro-paragraph{
    margin: 30px 0;
    line-height: 1.5;
}
.services__section, .services__section--2{
    display: flex;
    margin: 30px auto;
    justify-content: center;
    align-items: center;
}
.services__section-box{
    height: 350px;
    width: 350px;
    background: var(--spark-box);
    box-shadow: -4px 6px 18px -3px rgba(0, 0, 0, 0.75);
    padding: 40px 40px 20px 40px;
    margin: 0 20px;
}
.services__icon{
    padding: 20px;
} 
.services__section-title{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--spark-light);
}
.services__section-paragraph{
    line-height: 1.5;
    font-size: 14px;
    opacity: 0.7;
}
.services__box-button{
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    color: var(--spark-blue);
    font-size: 17px;
    padding: 20px 40px;
    text-decoration: none;
    text-shadow: 0px 1px 0px black;
    margin-top: 25px;
}
.question{
    height: 60vh;
    width: 100%;
    background: url(/pics/question-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    
}
.question__bg{
    height: 60vh;
    width: 100%;
    background: rgba(112, 212, 255, .4);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.question__content{
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px 0 40px;
}
.question__content-title{
    font-size: 90px;
    color: var(--spark-bg);
    margin-top: 50px;
    font-weight: 600;
    text-align: center;
    padding: 0 20px 0 20px;
}
.question__content-sub{
    font-size: 25px;
    text-align: center;
    padding: 0 20px 0 20px;
    margin-top: 20px;
    color: var(--spark-box);
    line-height: 1.2;
}
.question__content-button {
    border-radius: 8px;
    background: var(--spark-green);
    cursor: pointer;
    color: var(--spark-light);
    font-size: 17px;
    padding: 20px 40px;
    text-decoration: none;
    text-shadow: 0px 1px 0px black;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}
.blog{
    padding: 115px 0 82px;
    width: 100%;
    cursor: pointer;
}
.blog__content{
    width: 100%;
    margin: 0 auto;
   
}
.blog__intro{
    color: var(--spark-light);
    height: 200px;
    width: 50%;
    margin: 0 auto;
}
.blog__intro-title{
    font-weight: 700;
    font-size: 30px;
}
.blog__intro-paragraph{
    margin: 30px 0;
    line-height: 1.5;
}
.blog__section{
    display: flex;
    margin: 30px auto;
    justify-content: center;
    align-items: center;
}
.blog__section-box{
    height: 500px;
    width: 350px;
    background: var(--spark-box);
    box-shadow: -4px 6px 18px -3px rgba(0, 0, 0, 0.75);
    margin: 0 20px;
    border: var(--spark-blue) solid 3px;
    overflow: hidden;
    
}
.blog__section-img{
    height: 60%;
    width: 100%;
    object-fit: cover;
    border-bottom: var(--spark-blue) solid 3px;
}
.blog__square{
    height: 40%;
    width: auto;
    padding: 10px 20px;
}
.blog__square-title{
    margin-top: 20px;
    font-style: italic;
    line-height: 1.5;
}
.blog__square-paragraph{
    margin-top: 20px;
    font-size: 13px;
}
.contact{
    height: 100%;
    width: 100%;
    background: url(/pics/contact-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contact__bg{
    height: 100%;
    width: 100%;
    background: #203642d9;
}
.contact__content{
   
    padding: 115px 0 82px;
    width: 100%;
}
.contact__intro{
    text-align: center;
    color: var(--spark-light);
    height: 200px;
    width: 70%;
    margin: 0 auto;
}
.contact__intro-title{
    font-weight: 700;
    font-size: 30px;
}
.contact__intro-paragraph{
    line-height: 1.5;
    margin: 30px 0px;
}
.contact__section{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 30px 50px;
}
.contact__section-info{
    flex: 1;
    width: 50%;
}
.contact__info{
    float: right;
    margin-right: 107px;
}
.contact__left-title{
    font-size: 25px;
    margin-bottom: 30px;
}
.contact__left-title-address{
    font-size: 15px;
    margin-bottom: 30px;
}
.contact__left-icon{
    font-size: 15px;
    margin-bottom: 10px;
}
.contact__left-icon--envelope{
    margin-bottom: 40px;
}
.contact__left-social{
    font-size: 25px;
    margin-bottom: 25px;
}
.contact__social-icons{
    font-size: 15px;
    cursor: pointer;
}
.contact__social-icons i{
    margin-left: 5px;
}
.contact__right-form{
    width: 50%;
}
.contact__right-form h1{
    font-size: 25px;
    margin-bottom: 30px;
}
.form{
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form textarea{
    width: 50%;
    height: 100px;
}
.form button{
    height: 50px;
    width: 140px;
    cursor: pointer;
}
.footer {
    background: var(--spark-bg);
    color: var(--spark-text);
    padding: 40px 20px;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__column {
    flex: 1;
    margin: 10px 20px;
    min-width: 200px;
}

.footer__column h2,
.footer__column h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer__column p {
    font-size: 14px;
    line-height: 1.5;
}

.footer__social-icons {
    margin-top: 20px;
}

.footer__social-icons i {
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
    color: var(--spark-blue);
}

.footer__column ul {
    list-style: none;
    padding: 0;
}

.footer__column ul li {
    margin-bottom: 10px;
}

.footer__column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer__news-item {
    margin-bottom: 20px;
}

.footer__news-item p {
    font-size: 14px;
    margin: 0 0 5px;
}

.footer__news-item span {
    font-size: 12px;
    color: #bbb;
}

.footer__column form {
    display: flex;
    margin-top: 10px;
}

.footer__column form input {
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    flex: 1;
}

.footer__column form button {
    padding: 10px;
    border: none;
    border-radius: 0 4px 4px 0;
    background: var(--spark-blue);
    /* Adjust the button color */
    color: #fff;
    cursor: pointer;
}
.footer__bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer__bottom p {
    margin: 0;
}
.footer__bottom ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}
.footer__bottom ul li {
    margin-left: 20px;
}
.footer__bottom ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
@media only screen and (max-width: 1157px){

}
            /*LARGE TABLETS*/
@media only screen and (max-width: 1024px){
    .what__intro{
        width: 70%;
    }
    .about__us-box{
        height: 500px;
        width: 430px;
    }
    .about__us-img{
        height: 500px;
        width: 430px;
    }
    .services__intro{
        width: 70%;
    }
    .services__box-button--marketing{
        margin-top: 0;
    }
    .services__box-button--design{
        margin-top: 10px;
    }
    .blog__intro{
        width: 70%;
    }
    .contact__intro{
        width: 80%;
    }
    .contact__info{
        margin-right: 50px;
    }
}
@media only screen and (max-width: 1000px){

}
            /*SMALL TABLETS*/
@media only screen and (max-width: 885px){

}
@media only screen and (max-width: 820px){
    .what__intro{
        width: 90%;
    }
    .what__info-box{
        padding: 33px 10px;
    }
    .what__info-title{
        font-size: 18px;
    }
    .about__us-content{
        width: 99%;
        
    }
    .about__us-box{
        padding: 22px;
        height: 400px;
        width: 400px;
        margin-left: 1px;
    }
    .about__us-img{
        height: 400px;
        width: 341px;
        margin-top: 0px;
    }
    .services__intro{
        width: 90%;
    }
    .services__section-box{
        padding: 20px;
        margin: 0 13px 0 13px;
    }
    .services__box-button--marketing{
        margin-top: 0px;
    }
    .services__box-button--design{
        margin-top: 10px;
    }
    .blog__intro{
        width: 90%;
    }
    .contact__intro{
        width: 90%;
    }
    .contact__info{
        margin-right: 48px;
    }
}
@media only screen and (max-width: 800px){
    .question__content-title{
        font-size: 50px;
        margin-top: 25px;
    }
    .question__content-sub{
        font-family: 20px;
    }
}
@media only screen and (max-width: 600px){
    .header__nav {
            display: none;
            flex-direction: column;
            align-items: center;
            width: 100%;
            background: var(--spark-bg);
            position: absolute;
            top: 105px;
            left: 0;
            padding: 20px 0;
        }
    .nav-toggle:checked+.nav-toggle-label+.header__nav {
             display: flex;
         }
        
    .nav-toggle-label {
            display: flex;
            margin-left: auto;
            margin-top: 44px;
            }
        
    .nav__list {
            flex-direction: column;
            align-items: center;
           width: 100%;
            }
        
    .nav__item {
             margin: 10px 0;
                }
    .hero{
        width: 100%;
    }
    .hero__content{
        width: 90%;
        right: -5%;
        padding: 6px;
    }
    .what__intro{
        width: 90%;
    }
    .what__info{
        display: block;
    }
    .what__info-box{
        margin: 0 80px 25px;
        width: auto;
    }
    .about__us-content{
        flex-direction: column;
    }
    .services__section{
        display: block;
        margin-bottom: -27px;
    }
    .about__us-img{
        margin-right: 11px;
        width: 398px;
    }
    .services__section{
        display: inline-block;
    }
    .services__section-box{
        margin: 0 13px 22px 13px;
    }
    .question__content-title{
        font-size: 30px;
        margin-top: 10px;
    }
    .question__content-sub{
        font-size: 22px;
        padding: 0;
    }
    .blog__section{
        display: table;
        margin: auto;
    }
   .blog__section-box{
    margin: 0 20px 40px;
   }
    
}

          /*MOBILE DEVICES*/
@media only screen and (max-width: 430px) {
    .header__nav {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background: var(--spark-bg);
        position: absolute;
        top: 105px;
        left: 0;
        padding: 20px 0;
    }

    .nav-toggle:checked+.nav-toggle-label+.header__nav {
        display: flex;
    }

    .nav-toggle-label {
        display: flex;
        margin-left: auto;
        margin-top: 44px;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav__item {
        margin: 10px 0;
    }

    .hero {
        width: 100%;
        height: 765px;
    }

    .hero__overlay {
        height: 765px;
    }

    .hero__content {
        right: 0;
        height: 73%;
        width: 100%;
        padding: 21px;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__paragraph {
        font-size: 27px;
        width: 100%;
    }

    .what__intro {
        width: 95%;
    }

    .what__info {
        display: block;
        width: 100%;
        justify-content: none;
        align-items: none;
    }

    .what__info-box {
        margin: 0 20px 25px 20px;
        width: auto;
    }

    .about {
        padding: 86px 0;
    }

    .about__us-content {
        display: block;
    }

    .about__us-box {
        height: 95%;
        width: 95%;
        padding: 25px;
        margin: 20px auto;
    }

    .about__us-box--1 {
        height: 290px;
    }

    .about__us-img {
        height: 100%;
        width: 95%;
        margin: 20px auto;
        border: 2px solid var(--spark-green);
    }

    .services__intro {
        width: 95%;
        height: 100%;
        margin: 0 auto;
    }

    .services__section,
    .services__section--2 {
        display: block;
        width: 100%;
        margin: 30px auto;
    }

    .services__section-box {
        margin: 0 20px 25px 20px;
        width: auto;
    }

    .question {
        height: 100%;
    }

    .question__bg {
        height: 100%;
    }

    .question__content-title {
        font-size: 42px;
        padding: 0 10px;
    }

    .question__content-sub {
        font-size: 22px;
    }

    .question__content-button {
        margin-bottom: 30px;
    }

    .blog__content {
        width: 95%;
    }

    .blog__intro {
        width: 90%;
    }

    .blog__section {
        display: block;
    }

    .blog__section-box {
        margin: 30px 20px 25px 20px;
        width: auto;
    }

    .contact__intro {
        height: 100%;
        width: 95%;
    }

    .contact__section {
        width: 100%;
        padding: 30px;
    }

    .contact__left-title-address {
        width: 95%;
    }

    .contact__info {
        margin-right: 0;
        margin-left: 12px;
    }

    .contact__right-form {
        margin-right: -8px;
    }

    .form textarea {
        width: 100%;
        height: 100px;
    }
}