
:root {
    --black: #040C18;
    --grey: #555;
    --blue: #0F0C67;
    --white: #ffffff;
    --red: #d71d2f;
    --navy: #011032;
    --light-red: #fbede5;
    --purple: #4a00d8;
    --text-grey: rgba(51,51,51,.34);
    --gradient-text: linear-gradient(89.97deg, #AE67FA 1.84%, #F49867 102.67%);
  --gradient-bar: linear-gradient(103.22deg, #AE67FA -13.86%, #F49867 99.55%);
  }


  @font-face {
    font-family: 'PP Neue Montreal Book';
    src: url('/fonts/PPNeueMontreal-Book.woff2') format('woff2'),
        url('/fonts/PPNeueMontreal-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('/fonts/PPNeueMontreal-Medium.woff2') format('woff2'),
        url('/fonts/PPNeueMontreal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('/fonts/PPNeueMontreal-Bold.woff2') format('woff2'),
        url('/fonts/PPNeueMontreal-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Simplon Norm';
    src: url('/fonts/SimplonNorm.woff2') format('woff2'),
        url('/fonts/SimplonNorm.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Simplon Norm';
    src: url('/fonts/SimplonNorm-Medium.woff2') format('woff2'),
        url('/fonts/SimplonNorm-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Simplon Mono';
    src: url('/fonts/SimplonMono.woff2') format('woff2'),
        url('/fonts/SimplonMono.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



html,
body {
    font-family: 'Simplon Norm';
    background-color: var(--black);
    font-size: calc(17px + 2*(100vw - 320px)/1600);
    color: #333;
    text-rendering: optimizeLegibility;
    font-weight: 500;
    overflow-x: hidden;

}


p {
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: -0.5px;
  }

.lead {
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.55;
}
  
  ul {
    font-size: 1rem;
    font-weight: 500;
    line-height: 30px;
  }


  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {

    color: #000;
      
  }
 

h1 {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    line-height: 1.2;
    font-size: calc((2.65 - 1) * 1.2vw + 1rem);
    letter-spacing: -0.095rem;
    padding: 10px 0;
    margin-bottom: 10px;
    
}

h2 {
    font-family: 'PP Neue Montreal';
    font-size: calc((2.05 - 1) * 1.2vw + 1rem);
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: -0.055rem;
    padding: 10px 0;
    margin-bottom: 10px;

}

  
  h3 {
    font-size: calc(14.28571px + .45613vw);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 3vh;
  }


  
  h4 {
    font-size: calc(14.28571px + .33613vw);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: -0.01em;
    margin-bottom: 1vw;
  }
  h5 {
    font-size: calc(12px + .23613vw);
    font-weight: 500;
    margin-bottom: 1vw;
  }

  a {
  color: #d6000e;
}
a:hover {
  color: #d6000e;
}

/* header */

/* Menu Bar */



/* ============================
 NAVBAR
 ===============================*/
 .my-navbar {
    position: relative;
    background-color: var(--black);
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
 }

 .navbar-brand {
    position: relative;
    max-width: 195px;
}



 .my-navbar .nav-link {
    font-size: calc(12px + .12vw);
    font-weight: 500;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: clamp(.02rem,-.026vw,-.008rem);
    line-height: 1.2;
    transition: all 400ms;
    border: 1px solid var(--red);
    display: inline-block;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-top: 7px;
 }
 .navbar li a:hover {
    color: gray !important;
 }

 
/* end of navbar */

/* banner */
.banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.banner-heading {
    color: #000;
    text-shadow: 2px 2px 3px rgba(255,255,255,0.1);
    animation-name: anim;
    animation-duration: 2s;
}

.banner-par {
    animation-name: anim;
    animation-duration: 2s;
    animation-delay: .5s;
    animation-fill-mode: backwards;
}


.header-btn-left {
    background-color: #1c1c1c;
    padding: 30px 40px;
}
.header-btn-right {
    background: linear-gradient(49deg, #ec6523 0%, #ec2d23 100%);
    padding: 30px 40px;
}

@keyframes anim {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* end of banner */

/* end of header */


/* ==================== GLOBAL==================== */

.wrapper {
    box-sizing: border-box;
    max-width: 1064px;
    margin: 0 auto;
}

.m-50 {
    margin-top: 5vw;
    margin-bottom: 5vw;
}
.m-100 {
    margin-top: 10vw;
    margin-bottom: 10vw;
}
.mt-100 {
    margin-top: 10vw;

}
.mb-100 {
    margin-bottom: 10vw;
}


.p-100 {
    padding-top: 10vw;
    padding-bottom: 10vw;
}



.section_gap {
    padding: 150px 0;
}

@media (max-width: 767px) {
    .section_gap {
        padding: 60px 0;
    }
}

.section_gap_top {
    padding-top: 150px;
}

@media (max-width: 767px) {
    .section_gap_top {
        padding-top: 60px;
    }
}

.section_gap_bottom {
    padding-bottom: 150px;
}

@media (max-width: 767px) {
    .section_gap_bottom {
        padding-bottom: 60px;
    }
}

.main-title {
    position: relative;
    padding-bottom: 14px;
    border-bottom: 2px solid #d3d3d39f;
}
.main-title::before {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 10%;
    border-bottom: 2px solid var(--red);
}




.bg-navy {
    background-color: var(--navy);
}

.bg-black {
    background-color: var(--black);
}

.bg-grey {
    background-color: var(--grey);
}
.bg-purple {
    background: var(--purple);
}

.bg-red {
    background-color: var(--red)
}


.text-red {
    color: var(--red);
}

.text-gray {
    color: var(--grey);
}

.bg-light-red {
    background-color: var(--light-red);
}


.gradient__bg {
    background:-moz-radial-gradient(circle at 3% 25%, rgba(0, 40, 83, 1) 0%, rgba(4, 12, 24, 1) 25%);
  
    /* safari 5.1+,chrome 10+ */
    background:-webkit-radial-gradient(circle at 3% 25%, rgba(0, 40, 83, 1) 0%, rgba(4, 12, 24, 1) 25%);
  
    /* opera 11.10+ */
    background:-o-radial-gradient(circle at 3% 25%, rgba(0, 40, 83, 1) 0%, rgba(4, 12, 24, 1) 25%);
  
    /* ie 10+ */
    background:-ms-radial-gradient(circle at 3% 25%, rgba(0, 40, 83, 1) 0%, rgba(4, 12, 24, 1) 25%);
  
    /* global 92%+ browsers support */
    background:radial-gradient(circle at 3% 25%, rgba(0, 40, 83, 1) 0%, rgba(4, 12, 24, 1) 25%);
}

.gradient__text {
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  
  



.pre-title {
    text-transform: uppercase;
    color: #ec2d23;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 4px;
    font-weight: 300;
    margin-bottom: 0.5rem;
}


.container-90 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(15px + 1vw);
    padding-right: calc(15px + 1vw);
}
.container-90-ml {
    margin-left: calc(15px + 3vw);
    margin-right: 0;
    padding-left: calc(15px + 3vw);
    padding-right: calc(15px + 6vw);
}


.space-2 {
    padding-top: calc(35px + 12.5vw);
    padding-bottom: calc(35px + 12.5vw);
}

.space-top-2 {
    padding-top: calc(35px + 12.5vw);
}

.space-bottom-2 {
    padding-bottom: calc(35px + 12.5vw);
}

.my-10 {
    margin-top: calc(25.71429px + 5.42857vw);
    margin-bottom: calc(25.71429px + 5.42857vw);
}
.mt-10 {
    margin-top: calc(25.71429px + 5.42857vw);
}
.mb-10 {
    margin-bottom: calc(25.71429px + 5.42857vw);
}

.py-10 {
    padding-top: calc(25.71429px + 5.42857vw);
    padding-bottom: calc(25.71429px + 5.42857vw);
}
.pt-10 {
    padding-top: calc(25.71429px + 5.42857vw);
}
.pb-10 {
    padding-bottom: calc(25.71429px + 5.42857vw);
}



.p-light {
    color: #c4c2c2;
}




.btn-outline-red {
    border: 2px solid var(--red);
    border-radius: 0;
    font-size: 75%;
    font-weight: bold;
    text-transform: uppercase;
    padding: .85rem calc(20px + 2.85vw);
    letter-spacing: .1em;
    transition: all 300ms;
}
.btn-outline-red:hover {
    background-color: var(--red);
    text-decoration: none;
    color: #fff;
}




/*----------------------------------------------------*/
/* Home
============================================================================================ */

.home-header {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


.home-header h1 {
    max-width: calc(750px + .75vw);
}

.home-header p {
    max-width: calc(600px + .75vw);
}




.features .feature-item .icon {
    max-width: 50px;
    margin-bottom: 20px;
}




.features .feature-item {
    background: rgb(43, 41, 44);
    padding: 1.25rem calc(10px + .25vw);
    box-shadow: 0 2px 2px rgb(0 43 85 / 8%), 0 4px 4px rgb(0 43 85 / 8%), 0 8px 8px rgb(0 43 85 / 8%);
    height: 100%;
}
.features .feature-item h3 {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}
.features .feature-item P {
    color: rgba(255, 255, 255, 0.6);
}





.home-products {
    background-color: #dfdbdb;
}
.home-products .card {
    border-radius: 0;
    box-shadow: 0 0 10px #00000026;
    transition: box-shadow .5s;
    height: 100%;
}
.home-products .card h3 {
    border-top: 1px solid #d1d1d1;
    padding-top: 35px;
}
.home-products .card h5 {
    font-size: calc(14.28571px + .45613vw);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--red);
    margin-top: 35px;
}
.home-products .card-footer {
    background-color: transparent;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    padding-left: 0;
    padding-right: 0;
}
.home-products .card-footer a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
    transition: all 400ms;
}
.home-products .card-footer:hover{
    border-top: 1px solid red !important;
    color: #000;
}
.home-products .card-footer:hover a{
    color: #000;
}



.reason-item {
    background-color: #dfdbdb;
    padding: calc(25px + .45vw) 1.25rem;
    height: 100%;
}
.reason-item span {
    display: block;
    font-family: 'PP Neue Montreal';
    font-size: calc((2.05 - 1) * 1.2vw + 1rem);
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: -0.055rem;
    margin-bottom: calc(20px + 1.45vw);
}

.reason-item h3 {
    color: var(--red);
}




/* ================= contact us ================= */
.contact-us-header {
    padding-top: 35vh;
    padding-bottom: 15vh;
}

#contact-details .contact-info {
    background-color: #fff;
    padding: 35px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.04);
    height: 100%;
}

#contact-details .icon {
    font-size: 1.45rem;
    color: #fff;
    background-color: #ce1b28;
    padding: 5px;
}
#contact-details h5 {
    color: #ce1b28;
    margin-top: calc(20px + .55vw);
    padding-bottom: 20px;
    border-bottom: 0.5px solid rgba(175, 173, 173, 0.6);
}





#form form input{
    background-color: #fff;
    color: #000;
    border: none;
    border-bottom: 1px solid rgb(184, 179, 179) !important;
    border-radius: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    transition: all 400ms ease-out;
}
#form form textarea{
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgb(184, 179, 179) !important;
    padding-top: 15px;
    padding-bottom: 15px;
}

#form form input:focus {
    background-color: #f4f4f4;
    border-bottom: 1px solid #ce1b28 !important;
    box-shadow: none;
}
#form form textarea:focus {
    background-color: #f4f4f4;
    border-bottom: 1px solid #ce1b28 !important;
    box-shadow: none;
}

.btn-general {
    font-size: 13px;
    color: #dae9f4;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 24px !important;
    white-space: nowrap;
    padding: 20px 38px 20px 39px !important;
    border: 1px solid #ce1b28 !important;
    border-radius: 0;
}




/* ================= THANK YOU PAGE ================= */

.success-page {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
}




/* ================= FOOTER ================= */

footer .copyright {
    padding-top: 30px;
    background-color: var(--black);
}


footer .copyright p {
    font-size: 0.87em;
    line-height: 16px;
    color: #646464;
    margin-top: 10px;
    margin-bottom: 30px;
    
}

/* ================= Responsive css ================= */

@media (max-width: 992px) {

    header .header-content {
        margin-top: 175px;
    }

    .content-reverse {
        display: flex;
        flex-direction: column-reverse;

    }

    .col-with-border .inner-col {
        padding: 60px 40px 60px 60px;
    
    }
    
    .image-bg-col {
        padding-left: 65px;
        padding-right: 65px;
    }
    .image-bg-col .inner-bg-col {
        margin-bottom: -50px;
        margin-right: 0px;
        position: relative;
        z-index: 99999;
    }

    /* Laptop Repairs */

    .lap-repairs-header::before {
        height: 85%;
        width: 92%;
    }



  .lap-screen-header {
    background: linear-gradient(rgb(230, 6, 6), rgba(161, 19, 9, 0.95));
  }

  .screen-related-services .line-right {
    border-right: transparent;
    border-bottom: 1px solid #fff;
}

  .contact-form {
    width: 80%;
    margin: auto;
  }

  h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }
  h2 {
    font-size: 2.15rem !important;
    line-height: 1.2;
  }

  .col-center {
      text-align: center;
  }

  .screen-header .negative-button {
    margin-top: 35px;
    margin-bottom: 5px;
    text-align: center;
}


}



@media (max-width: 767.98px) { 

     .navbar li a {
        font-weight: 500;
        letter-spacing: clamp(-.02rem,-.026vw,-.008rem);
        line-height: 1.2;
     }
    
    
     .navbar-expand-md .navbar-collapse {
        justify-content: flex-end !important;
        min-height: 90vh;
        margin-top: 50px;
        transition: all 400ms;
    }
     .navbar-expand-md .navbar-collapse li:first-child {
        border-top: 1px solid #333;
    }
     .navbar-expand-md .navbar-collapse li {
        border-bottom: 1px solid #333;
        padding-top: 10px;
        padding-bottom: 10px;
    }

p {
    font-size: calc(18px + 2*(100vw - 320px)/1600);

}

    .home-header .header-wrapper {
        padding-top: 20vh;
        margin-bottom: 16vh;

    }

 

    .home-intro {
        position: relative;
        margin-top: -80px;
    }
    
    .home-intro::before {
        height: 100%;
        width: calc(100vw - 12%);
    }

    .home-intro p {
        color: #fff;
        font-size: 100%;
    }




    .catagories .category-item {
        display: flex;
        flex-direction: column-reverse !important;
        justify-content: space-between;
        text-align: left !important;
        padding-left: 15px;
    }

}