*{
    box-sizing:border-box;
}

/* #region Main*/

html,
body{
    width:100%;
    overflow-x:hidden;
    margin:0;
    padding:0;
    background:#111;
    color:white;
    font-family:Arial,sans-serif;
}

.logo{

    display:flex;
    align-items:center;
    gap:15px;

}

.logo img{

    height: 90px;
    width:auto;

}

.logo span{

    font-size:32px;
    font-weight:700;
    color:white;
    text-transform:uppercase;

}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 50px;

    background:black;
}

nav a{
    color:white;
    text-decoration:none;

    margin:0 15px;
}

nav a:first-child{

    border-bottom:
    3px solid #f28c28;
    
    padding-bottom:5px;
    
}

button{
    background:#f28c28;

    border:none;

    color:white;

    padding:15px 25px;

    cursor:pointer;
}

.btn-header{

    display:inline-block;

    background:#f28c28;
    color:white;

    text-decoration:none;

    font-weight:700;
    font-size:16px;

    padding:14px 28px;

    border-radius:8px;

    transition:.3s;

    box-shadow:
    0 5px 15px rgba(242,140,40,.25);

}

.fire-divider{
    position:relative;
    margin:60px 0 80px;
}

.fire-line{
    height:3px;
    width:100%;
    background:#f28c28;
    border-radius:999px;

    box-shadow:
        0 0 10px #f28c28,
        0 0 20px #f28c28,
        0 0 40px rgba(242,140,40,.6);
}

.fire-divider::before{
    content:"";

    position:absolute;
    top:-20px;
    left:0;
    right:0;
    height:40px;

    background:
        radial-gradient(circle,#f28c28 2px,transparent 3px) 10% 50%,
        radial-gradient(circle,#f28c28 2px,transparent 3px) 25% 20%,
        radial-gradient(circle,#f28c28 2px,transparent 3px) 40% 70%,
        radial-gradient(circle,#f28c28 2px,transparent 3px) 55% 25%,
        radial-gradient(circle,#f28c28 2px,transparent 3px) 70% 60%,
        radial-gradient(circle,#f28c28 2px,transparent 3px) 90% 30%;

    opacity:.5;
}

.fire-divider i{
    position:absolute;
    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    color:#f28c28;
    font-size:32px;

    background:#0a0a0a;
    padding:10px;

    text-shadow:
        0 0 10px #f28c28,
        0 0 20px #f28c28;
}

.fire-divider::after{
    content:"";

    position:absolute;

    width:120px;
    height:120px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    background:radial-gradient(
        circle,
        rgba(242,140,40,.8),
        rgba(242,140,40,.3),
        transparent 70%
    );

    pointer-events:none;
}

.section-divider{
    width:80px;
    height:3px;
    background:linear-gradient(
        to right,
        transparent,
        #f28c28,
        transparent
    );

    margin:60px auto;
}
/* #endregion Main */

/* #region Hero */
.hero{

height:600px;
background-image:url("../images/hero.png");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
padding-left:80px;
position:relative;
overflow: hidden;

}

.hero h1{

max-width:700px;

font-size:80px;
line-height:.95;

}

.hero p{
    margin-top:25px;
}

.hero span{

color:#f28c28;

text-shadow:
    3px 3px 10px rgba(0,0,0,0.9);

display:block;

}

.hero-content{

    max-width:650px;
    
    padding:40px;
    
    background:
    linear-gradient(
    to right,
    rgba(0,0,0,.65),
    rgba(0,0,0,.35),
    transparent
    );

    position:relative;
    z-index:2;
    
}

.hero::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    height:75px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.8),
        #111
    );

    pointer-events:none;
}

.sparks{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    pointer-events:none;
    z-index:3;
}

.sparks span{    
    position:absolute;

    width:10px;
    height:10px;

    border-radius:50%;

    opacity:1;

    box-shadow:
        0 0 4px currentColor,
        0 0 8px currentColor,
        0 0 16px currentColor;
}

.sparks span:nth-child(1){
    animation-name:floatSparkLeft;
    width:4px;
    height:4px;
    animation-delay:-3.2s;
    animation-duration:3.8s;
    color:#ffb347;
    background:#ffb347;
    left:71%;
    bottom:10%;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
}
.sparks span:nth-child(2){
    animation-name:floatSparkRight;
    width:7px;
    height:7px;
    animation-delay:1.2s;
    animation-duration:6s;
    color:#ffb347;
    background:#ffb347;
    bottom:2%;
    left:14%;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
}
.sparks span:nth-child(3){
    animation-name:floatSparkLeft;
    width:3px;
    height:3px;
    animation-delay:1.2s;
    animation-duration:9s;
    color:#ffb347;
    background:#ffb347;
    bottom:-8%;
    left:88%;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
}
.sparks span:nth-child(4){
    animation-name:floatSparkRight;
    width:8px;
    height:8px;
    animation-delay:-1.8s;
    animation-duration:11s;
    color:#ffb347;
    background:#ffb347;
    bottom:-6.2%;
    left:39%;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
}
.sparks span:nth-child(5){
    animation-name:floatSparkLeft;
    width:12px;
    height:12px;
    animation-delay:4.9s;
    animation-duration:4.8s;
    color:#f28c28;
    background:#f28c28;
    bottom:-4%;
    left:56%;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
}
.sparks span:nth-child(6){
    animation-name:floatSparkRight;
    width:9px;
    height:9px;
    animation-delay:0.7s;
    animation-duration:8s;
    color:#ff6b35;
    background:#ff6b35;
    bottom:8.2%;
    left:7%;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
}
.sparks span:nth-child(7){
    animation-name:floatSparkLeft;
    width:6px;
    height:6px;
    color:#f28c28;
    background:#f28c28;
    animation-delay:-7.3s;
    animation-duration:7.3s;
    bottom:14%;
    left:94%;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
}
.sparks span:nth-child(8){
    animation-name:floatSparkRight;
    width:8px;
    height:8px;
    color:#ffb347;
    background:#ffb347;
    animation-delay:4.1s;
    animation-duration:4.1s;
    bottom:-5%;
    left:47%;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
}
.sparks span:nth-child(9){
    animation-name:floatSparkLeft;
    width:4px;
    height:4px;
    color:#f28c28;
    background:#f28c28;
    animation-delay:0.4s;
    animation-duration:7.4s;
    bottom:-7%;
    left:22%;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
}
.sparks span:nth-child(10){
    animation-name:floatSparkRight;
    width:6px;
    height:6px;
    color:#f28c28;
    background:#f28c28;
    animation-delay:-2.7s;
    animation-duration:2.8s;
    bottom:0%;
    left:81%;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
}


@keyframes floatSpark{

    0%{
        transform:translateX(0px) translateY(0px);
        opacity:0;
    }

    10%{
        opacity:1;
    }

    100%{
        transform:translateX(100px) translateY(-500px);
        opacity:0;
    }
}

@keyframes floatSparkRight{

    0%{
        transform:translate(0,0);
        opacity:1;
    }

    100%{
        transform:translate(120px,-500px);
        opacity:0;
    }
}

@keyframes floatSparkLeft{

    0%{
        transform:translate(0,0);
        opacity:1;
    }

    100%{
        transform:translate(-120px,-500px);
        opacity:0;
    }
}
/* #endregion Hero */

/* #region Services */
.section-label{
    text-align:center;
    color:#f28c28;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.services{

    background-size:cover;
    background-position:center;

    margin-top:0;
    padding-top:80px;
    position:relative;
}

.services::before{
    content:"";
    position:absolute;

    top:0;
    left:0;
    right:0;

    height:75px;

    background:
    linear-gradient(
        rgba(17,17,17,0),
        rgba(17,17,17,.9)
    );
}

.services h2{
    text-align:center;
    font-size:60px;
    text-transform:uppercase;
    color:white;
    margin-top:0;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.services h2::after{
    content:"";
    display:block;
    width:120px;
    height:4px;
    background:#f28c28;
    margin:15px auto;
}

.service-grid{
    display:flex;
    gap:30px;

    max-width:1300px;
    margin:0 auto;
}

.card{
    display:flex;
    flex-direction:column;

    background:#1a1a1a;
    
    border:none;
    
    padding:40px;
    
    border-radius:10px;
    
    box-shadow:
    0 10px 25px rgba(0,0,0,.3);
    
    transition:.3s;

    min-height:280px;
    border-top:4px solid #f28c28;
}

.card-icon{
    text-align:center;
    margin-bottom:25px;
    font-size:48px;    
    }

.card:hover{

    transform:translateY(-8px);
    
    border-bottom:
    4px solid #f28c28;

    box-shadow:
    0 0 20px rgba(242,140,40,.4);
}

.card h3{
    min-height:60px;
}
/* #endregion Services */

/* #region About */
.about{

    background:#111;

    padding:120px 80px;

}

.about-container{

    max-width:1400px;

    margin:0 auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:15px;

    box-shadow:
    0 0 40px rgba(242,140,40,.15);

}

.about-content h2{

    font-size:56px;

    color:white;

    margin-bottom:30px;

}

.about-content p:not(.section-label){

    color:#ccc;

    line-height:1.8;

    margin-bottom:25px;

}

.about-features{

    list-style:none;

    padding:0;

    margin:40px 0;

}

.about-features li{

    color:white;

    margin-bottom:15px;

    font-size:18px;

}

.btn-primary{

    display:inline-block;

    background:#f28c28;

    color:white;

    padding:15px 35px;

    text-decoration:none;

    border-radius:5px;

    font-weight:bold;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 20px rgba(242,140,40,.4);

}

.card i{

    font-size:48px;
    
    color:#f28c28;
    
    }

    .card-icon{
        margin-bottom:20px;
    }
    
    .card-icon i{
        font-size:48px;
        color:#f28c28;
    
        text-shadow:
            0 0 15px rgba(242,140,40,.4);
}

.about-image{
    position:relative;
}

.about-image::before{
    content:"";
    position:absolute;

    width:100%;
    height:100%;

    top:20px;
    left:-20px;

    background:#f28c28;

    border-radius:15px;

    z-index:-1;

    opacity:.3;
}
/* #endregion About */

/* #region Process */
.step-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:60px;
    font-weight:800;
    color:rgba(242,140,40,.08);
}

.process{
    padding:120px 80px;
    background:#0a0a0a;
    position: relative;
}

.process h2,
.process .section-subtitle{
    text-align:center;
}

.process-card i{
    font-size:42px;
    color:#f28c28;
    margin-bottom:20px;
    text-shadow:0 0 20px rgba(242,140,40,.4);
}

.process::before{
    content:"";
    position:absolute;

    width:700px;
    height:700px;

    background:
        radial-gradient(
            circle,
            rgba(242,140,40,.08),
            transparent 70%
        );

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    pointer-events:none;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
    position:relative;
}

.process-grid::before{
    content:"";
    position:absolute;

    top:70px;
    left:12%;
    right:12%;

    height:2px;

    background:#f28c28;

    box-shadow:
        0 0 10px #f28c28,
        0 0 20px rgba(242,140,40,.4);

    z-index:0;
}

.process-card{
    background:#121212;
    border:1px solid rgba(242,140,40,.15);
    border-radius:16px;
    padding:35px;
    transition:.3s;
    position:relative;
    z-index:1;
}

.process-card:hover{
    transform:translateY(-8px);
    border-color:#f28c28;
    box-shadow:0 0 25px rgba(242,140,40,.15);
}

/* #endregion */

/* #region Portfolio */
.portfolio{

    padding:120px 80px;

    background:#0d0d0d;

    text-align:center;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

    max-width:1400px;

    margin:60px auto 0;

}

.portfolio-card{

    background:#151515;

    border-radius:15px;

    overflow:hidden;

    transition:.3s;

}

.portfolio-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 0 25px rgba(242,140,40,.25);

}

.portfolio-card img{

    width:100%;

    display:block;

}

.portfolio-content{

    padding:30px;

    text-align:left;

}

.portfolio-content h3{

    color:#fff;
    margin:20px 0;
    margin-bottom:15px;

}

.portfolio-content p{

    color:#ccc;
    line-height:1.7;

}
    
.portfolio-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s ease;
}

/* #endregion Portfolio */

/* #region Process */
.process h2,
.process .section-subtitle{
    text-align:center;
}

.process-card i{
    font-size:42px;
    color:#f28c28;
    margin-bottom:20px;
    text-shadow:0 0 20px rgba(242,140,40,.4);
    
}

.process-grid{
    margin-top: 80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
/* #endregion Process */

/* #region Contact */
.contact{
    background:#111;

    padding:120px 80px;

    text-align:center;

}

.contact h2{

    color:white;

    font-size:56px;

    margin-bottom:20px;

}

.contact-subtitle{

    color:#ccc;

    max-width:700px;

    margin:0 auto 60px;

    line-height:1.8;

}

.contact-container{

    max-width:1200px;

    margin:0 auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    text-align:left;

}

.contact-info h3{

    color:white;

    margin-bottom:20px;

}

.contact-info p{

    color:#ccc;

    line-height:1.8;

    margin-bottom:30px;

}


.contact-item{

    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
    flex-shrink:0;

}

.contact-item i{
    width:28px;
    font-size:20px;
    color:#f28c28;
    flex-shrink:0;
}

.contact-item a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.contact-item a:hover{
    color:#f28c28;
}

.contact-item span,
.contact-item a{
    width:auto !important;
    max-width:none !important;
    display:inline !important;
}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    background:#1a1a1a;

    border:1px solid #333;

    color:white;

    padding:15px;

    border-radius:8px;

    font-size:16px;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:#f28c28;

}

.contact-form button{

    background:#f28c28;

    color:white;

    border:none;

    padding:16px;

    border-radius:8px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    transform:translateY(-3px);

    box-shadow:0 0 20px rgba(242,140,40,.4);

}

.contact-form select{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23f28c28' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5 8 12l6.5-6.5' stroke='%23f28c28' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 15px center;
    padding-right:45px;

    background:#1a1a1a;
    border:1px solid #333;
    color:white;
    padding:15px;
    border-radius:8px;
    font-size:16px;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    width:100%;
}
/* enddregion Contact */
/* #endregion Main*/

/* #region Footer*/
.footer{

    /*background:#080808;*/
    background:
            url("../images/Background.png")
            center center / cover no-repeat;

    border-top:2px solid #f28c28;

    padding-top:60px;

    box-shadow:
    0 -10px 40px rgba(242,140,40,.08);

}

.footer-container{

    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;

    max-width:1200px;
    margin:0 auto;
    display:grid;
    align-items:flex-start;

    padding:0 80px;

}

.footer-brand img{
    width:400px;
    max-width:100%;
    transform:translateX(40px);
    display:block;

}

.footer-brand h3{

    color:white;

    font-size:32px;

    margin-bottom:15px;

}

.footer-brand p{

    color:#aaa;

    font-size:22px;
    line-height:1.7;
    max-width:500px;

}

.footer-brand img{


    max-width:100%;
    margin-bottom:25px;
    width:350px;
    height:auto;
    display:block;
    margin-bottom:20px;

}

.footer h4{

    color:#f28c28;

    margin-bottom:20px;

    letter-spacing:2px;

    text-transform:uppercase;

}


.footer-links{
    margin-top:40px;
    margin-left:50px;
    display:flex;
    flex-direction:column;

}

.footer-links a{

    color:#ccc;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer-links a:hover{

    color:#f28c28;

}

.footer-contact{
    margin-top:40px;
}

.footer-contact p{

    color:#ccc;

    margin-bottom:15px;

}

.footer-button{
    display:inline-block;
    margin-top:20px;
    color:#f28c28;
    text-decoration:none;
    font-weight:700;
}

.footer-bottom{

    text-align:center;

    padding:30px;

    margin-top:40px;

    border-top:1px solid #222;

}

.footer-bottom p{

    color:#777;

}


.footer-social a{

    color:#ccc;

    font-size:24px;

    margin-right:15px;

    transition:.3s;

    margin-top:25px;

}

.footer-social a:hover{

    color:#f28c28;

}

.footer-social a::before,
.footer-social a::after{
    content:none !important;
}

.footer-links,
.footer-contact{
    margin-top:25px;
}
/* #endregion Footer*/

/* #region Thankyou.html*/
.thankyou-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    text-align:center;
    padding-top:40px;
    padding-bottom:40px;
    /*background:#050505;*/
    background:
            url("../images/Background.png")
            center center / cover no-repeat;
}

.thankyou-container{
    max-width:900px;
    padding:20px;
}

.thankyou-logo{
    height:auto;
    width:650px;
    max-width:90%;
    height:auto;
    margin-bottom:15px;
}

.thankyou-title{
    color:#f7931e;
    font-size:4rem;
    font-weight:700;
    margin:0 0 25px 0;
}

.thankyou-message{
    color:#ffffff;
    font-size:1.3rem;
    margin-bottom:35px;
}

.bonfire-humour{
    color:#bfbfbf;
    font-style:italic;
    font-size:1.15rem;
    margin-bottom:40px;
    line-height:1.4;
}

.thankyou-easter-egg{
    margin-top:30px;
    color:#666;
    font-size:0.95rem;
    font-style:italic;
    opacity:0.7;
}

.btn-home{
    display:inline-block;
    background:#f7931e;
    color:white;
    text-decoration:none;
    padding:16px 36px;
    border-radius:8px;
    font-weight:600;
    transition:all .3s ease;
}

.btn-home:hover{
    transform:translateY(-2px);
    box-shadow:0 0 20px rgba(242,140,40,.4);
}

.tip{
    margin-top:30px;
    color:#999;
    font-size:16px;
    line-height:1.8;
}
/* #endregion Thankyou.html*/

/* #region Mobile Styles*/
/* ==========================
   MOBILE RESPONSIVE DESIGN
========================== */

@media (max-width: 768px){

    /* Header */

    header{
        flex-direction:column;
        padding:20px;
        gap:20px;
        text-align:center;
    }

    .logo{
        flex-direction:column;
    }

    .logo p{
        margin:0;
    }

    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    nav a{
        margin:0;
    }

    /* Hero */

    .hero{
        height:auto;
        padding:80px 20px;
        justify-content:center;
    }

    .hero-content{
        padding:25px;
        text-align:center;
    }

    .hero h1{
        font-size:48px;
        line-height:1;
    }

    /* Services */
    .card{
        padding:20px;
    }
    
    .card-icon{
        margin-bottom:10px;
    }
    
    .card-icon i{
        font-size:30px;
    }
    
    .card h3{
        font-size:18px;
    }
    
    .card p{
        margin-bottom:0;
        line-height:1.5;
    }

    .services{
        padding:60px 20px;
    }

    .services h2{
        font-size:32px;
        margin-bottom: 40px;
    }

    .service-grid{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    /* About */

    .about{
        padding:80px 20px;
    }

    .about-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-content h2{
        font-size:40px;
    }

    .about-image::before{
        left:-10px;
        top:10px;
    }

    /* Process */

    .process-card{
        padding: 25px;
    }

    .process-card i{
        font-size: 32px;
        margin-bottom: 15px;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .process-grid::before{
        display:none;
    }

    .step-number{
        font-size: 42px;
    }

    /* Portfolio */

    .portfolio{
        padding:80px 20px;
    }

    .portfolio-grid{
        grid-template-columns:1fr;
    }

    /* Contact */

    .contact{
        padding:60px 20px;
    }

    .contact h2{
        font-size:36px;
        margin-bottom: 15px;
    }

    .contact-subtitle{
        margin: 0 auto 40px;
    }

    .contact-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .contact-info{
        margin-bottom:15px;
    }
    
    .contact-info h3{
        margin-bottom:15px;
    }
    
    .contact-info p{
        margin-bottom:20px;
    }

    .contact-item{
        color:white;
        margin-bottom:16px;
        font-size:17px;
        display:flex;
        align-items:center;
        gap:10px;
    }

    .contact-form{
        gap: 15px;
    }
    .contact-form textarea{
        min-height: 140px;
    }

    /* C2A Form */
    .contact-form select{
        background:#1a1a1a;
        border:1px solid #333;
        color:white;
        padding:15px;
        border-radius:8px;
        font-size:16px;        
        }
        
        .contact-form select:focus{
        outline:none;
        border-color:#f28c28;        
        }
        

    /* Footer */

    .footer-brand img{
        width:220px;
    }


    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
        padding:0 20px;
        gap:40px;
    }

    .footer-brand img{
        transform:none;
        margin:0 auto 20px;
    }

    .footer-links{
        margin-left:0;
    }

    /* C2A - Thank you */

    .thankyou-title{
        font-size:32px;
        line-height:1.1;
    }
    
    .thankyou-container{
        padding-top:20px;
    }

    body::before{
        content:"";
        position:fixed;
        width:500px;
        height:500px;
        background:radial-gradient(
            circle,
            rgba(242,140,40,.12),
            transparent 70%
        );
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
        pointer-events:none;
    }
}
/* #endregion Mobile Styles*/

/* #region Tablet Styles*/
@media (max-width:1024px){
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-brand img{
        margin:auto;
        transform:none;
    }

    .footer-links{
        align-items:center;

        display:flex;
        flex-direction:row;
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
        margin-left:0;
        margin-bottom: 50px;
        row-gap:8px;
    }

    .footer-links h4{
        width:100%;
        text-align:center;
        margin-bottom:8px;
    }

    .footer-links a{
        margin-bottom:0;
    }
    
    .footer-contact{
        outline:5px solid blue !important;
    }

    .footer-brand{
        text-align:center;
    }
    
    .footer-brand p{
        text-align:center;
        margin-left:auto;
        margin-right:auto;
        max-width:600px;
    }

    .footer-links-row{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .footer-links-row a{
        margin-bottom:0;
    }
}
/* #endregion Tablet Styles */