/* ==========================================
   PRINTER SUPPORT WEBSITE
   STYLE.CSS
   Part 1
========================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   VARIABLES
========================================== */

:root{

--primary:#0057ff;
--secondary:#00b4ff;
--success:#22c55e;
--warning:#f59e0b;
--danger:#ef4444;

--dark:#0f172a;
--light:#f8fafc;

--text:#475569;
--white:#ffffff;

--border:#e5e7eb;

--shadow:
0 15px 35px rgba(0,0,0,.08);

--radius:15px;

--transition:.35s ease;

}

/* ==========================================
   RESET
========================================== */

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

font-size:16px;

color:var(--text);

background:#fff;

line-height:1.7;

overflow-x:hidden;

}

/* ==========================================
   TYPOGRAPHY
========================================== */

h1,
h2,
h3,
h4,
h5,
h6{

color:var(--dark);

font-weight:700;

line-height:1.3;

}

p{

color:var(--text);

}

a{

text-decoration:none;

transition:var(--transition);

}

img{

max-width:100%;

display:block;

}

/* ==========================================
   CONTAINER
========================================== */

.container{

max-width:1200px;

}

/* ==========================================
   SECTION
========================================== */

section{

padding:90px 0;

}

/* ==========================================
   BUTTONS
========================================== */

.btn{

padding:14px 34px;

border-radius:50px;

font-weight:600;

transition:var(--transition);

}

.btn-primary{

background:var(--primary);

border:none;

}

.btn-primary:hover{

background:#0043c7;

transform:translateY(-3px);

box-shadow:var(--shadow);

}

.btn-outline-primary{

border:2px solid var(--primary);

color:var(--primary);

}

.btn-outline-primary:hover{

background:var(--primary);

color:#fff;

}

/* ==========================================
   TOP BAR
========================================== */

.top-bar{

background:var(--dark);

color:#fff;

padding:10px 0;

font-size:14px;

}

.top-bar a{

color:#fff;

margin-right:15px;

}

.top-bar i{

color:var(--secondary);

margin-right:5px;

}

.top-bar a:hover{

color:var(--secondary);

}

/* ==========================================
   NAVBAR
========================================== */

.navbar{

padding:18px 0;

background:#fff;

transition:.4s;

z-index:999;

}

.navbar-brand{

font-size:30px;

font-weight:800;

color:var(--dark);

}

.navbar-brand span{

color:var(--primary);

}

.navbar-nav .nav-link{

font-weight:600;

margin-left:18px;

color:var(--dark);

position:relative;

}

.navbar-nav .nav-link:hover{

color:var(--primary);

}

.navbar-nav .nav-link.active{

color:var(--primary);

}

.navbar-nav .nav-link::after{

content:"";

position:absolute;

left:0;

bottom:-5px;

width:0;

height:3px;

background:var(--primary);

transition:.4s;

}

.navbar-nav .nav-link:hover::after,

.navbar-nav .nav-link.active::after{

width:100%;

}

/* Sticky */

.sticky-top{

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

/* ==========================================
   DROPDOWN
========================================== */

.dropdown-menu{

border:none;

border-radius:15px;

padding:10px;

box-shadow:0 10px 40px rgba(0,0,0,.10);

}

.dropdown-item{

padding:12px 18px;

border-radius:10px;

font-weight:500;

transition:.3s;

}

.dropdown-item:hover{

background:var(--primary);

color:#fff;

padding-left:25px;

}

/* ==========================================
   HERO SECTION
========================================== */

.hero-section{

background:
linear-gradient(135deg,#eef5ff,#ffffff);

min-height:100vh;

display:flex;

align-items:center;

position:relative;

overflow:hidden;

}

.hero-section::before{

content:"";

position:absolute;

width:600px;

height:600px;

border-radius:50%;

background:#dcecff;

top:-250px;

right:-250px;

}

.hero-section h1{

font-size:58px;

font-weight:800;

}

.modal.fade .modal-dialog {
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform: translateY(-24px);
    opacity: 0;
}

.modal.fade.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

.modal-backdrop.show {
    opacity: 0.55;
    background-color: rgba(15, 23, 42, 0.55);
}

#bookServiceModal .modal-dialog {
    margin: 60px auto 0;
    max-width: 360px;
    width: 360px;
}

#bookServiceModal .modal-content {
    width: 100%;
    min-height: 420px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    overflow: hidden;
}

#bookServiceModal .modal-header {
    border-bottom: none;
    padding: 1rem 1.25rem 0;
}

#bookServiceModal .modal-title {
    font-weight: 700;
    font-size: 1.1rem;
}

#bookServiceModal .modal-body {
    padding: 1rem 1.25rem 0.9rem;
}

#bookServiceModal .form-control,
#bookServiceModal .form-select {
    border-radius: 10px;
}

#bookServiceModal .modal-footer {
    border-top: none;
    justify-content: flex-end;
    padding: 0 1.25rem 0.9rem;
}

@media (max-width: 575.98px) {
    #bookServiceModal .modal-dialog {
        margin: 24px auto;
        width: calc(100% - 32px);
        max-width: none;
    }

    #bookServiceModal .modal-content {
        width: 100%;
    }

    #bookServiceModal .modal-body {
        max-height: calc(100vh - 160px);
        overflow-y: auto;
    }
}

.hero-section h1 span{

color:var(--primary);

}

.hero-section p{

font-size:20px;

margin-bottom:30px;

}

.hero-section img{

animation:float 4s ease-in-out infinite;

}

/* ==========================================
   FLOATING FEATURE BOX
========================================== */

.feature-box{

background:#fff;

padding:20px;

border-radius:15px;

box-shadow:var(--shadow);

transition:.3s;

margin-top:15px;

}

.feature-box:hover{

transform:translateY(-10px);

}

.feature-box i{

font-size:35px;

margin-bottom:10px;

}

.feature-box h6{

margin:0;

font-weight:600;

}

/* ==========================================
   HERO SHAPES
========================================== */

.circle-one{

position:absolute;

width:140px;

height:140px;

background:rgba(0,87,255,.08);

border-radius:50%;

left:10%;

top:15%;

}

.circle-two{

position:absolute;

width:200px;

height:200px;

background:rgba(0,180,255,.10);

border-radius:50%;

right:8%;

bottom:10%;

}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/* ==========================================
   UTILITIES
========================================== */

.shadow-card{

box-shadow:var(--shadow);

border-radius:var(--radius);

background:#fff;

}

.rounded-xl{

border-radius:20px;

}

.text-primary{

color:var(--primary)!important;

}

.bg-primary{

background:var(--primary)!important;

}

.bg-light{

background:#f8fafc!important;

}

.mb-60{

margin-bottom:60px;

}

.mt-60{

margin-top:60px;

}
/* ==========================================
   ABOUT SECTION
========================================== */

.about-section{
    position: relative;
    background: #fff;
}

.about-image{
    position: relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.experience-box{
    position:absolute;
    bottom:30px;
    right:-20px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.experience-box h2{
    color:var(--primary);
    font-size:42px;
    margin-bottom:0;
}

.experience-box p{
    margin:0;
    font-weight:600;
}

.about-content h2{
    font-size:42px;
    margin-bottom:25px;
}

.about-content p{
    margin-bottom:18px;
}

.about-list{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.about-list li{
    margin-bottom:15px;
    font-size:17px;
}

.about-list i{
    color:var(--success);
    margin-right:12px;
}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title{
    margin-bottom:60px;
}

.section-title span{
    color:var(--primary);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:44px;
    margin-top:10px;
}

.section-title p{
    max-width:700px;
    margin:auto;
}

/* ==========================================
   SERVICES
========================================== */

.service-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    height:100%;

    position:relative;

    overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:5px;

height:100%;

background:var(--primary);

transition:.35s;

}

.service-card:hover{

transform:translateY(-10px);

}

.service-card:hover::before{

width:100%;

opacity:.05;

}

.service-icon{

width:80px;

height:80px;

background:#eef5ff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

margin-bottom:25px;

transition:.35s;

}

.service-card:hover .service-icon{

background:var(--primary);

color:#fff;

transform:rotate(360deg);

}

.service-icon i{

font-size:34px;

color:var(--primary);

}

.service-card:hover .service-icon i{

color:#fff;

}

.service-card h4{

margin-bottom:15px;

}

.service-card p{

margin-bottom:25px;

}

.service-card a{

font-weight:600;

color:var(--primary);

}

.service-card:hover a{

color:#0045c9;

}

/* ==========================================
   BRANDS
========================================== */

.brand-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.08);

height:100%;

}

.brand-card img{

max-height:70px;

margin:auto;

filter:grayscale(100%);

transition:.35s;

}

.brand-card:hover{

transform:translateY(-8px);

}

.brand-card:hover img{

filter:none;

transform:scale(1.08);

}

/* ==========================================
   COUNTERS
========================================== */

.counter-section{

background:var(--primary);

color:#fff;

}

.counter-box{

text-align:center;

padding:30px;

}

.counter-box i{

font-size:45px;

margin-bottom:15px;

}

.counter-box h2{

font-size:48px;

color:#fff;

}

.counter-box h5{

font-weight:500;

color:#fff;

}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

transition:.35s;

box-shadow:0 10px 35px rgba(0,0,0,.08);

height:100%;

}

.why-card:hover{

background:var(--primary);

transform:translateY(-10px);

}

.why-card i{

font-size:50px;

color:var(--primary);

margin-bottom:20px;

transition:.35s;

}

.why-card:hover i,

.why-card:hover h4,

.why-card:hover p{

color:#fff;

}

.why-card h4{

margin-bottom:15px;

}

/* ==========================================
   REPAIR PROCESS
========================================== */

.process-card{

background:#fff;

padding:40px;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

text-align:center;

position:relative;

transition:.35s;

}

.process-card:hover{

transform:translateY(-10px);

}

.process-number{

width:65px;

height:65px;

background:var(--primary);

color:#fff;

font-size:24px;

font-weight:700;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto auto 20px;

}

.process-card i{

font-size:42px;

color:var(--primary);

margin-bottom:18px;

}

/* ==========================================
   CALL TO ACTION
========================================== */

.cta-section{

background:linear-gradient(135deg,#0057ff,#0099ff);

color:#fff;

border-radius:25px;

padding:80px 40px;

}

.cta-section h2{

color:#fff;

font-size:42px;

margin-bottom:20px;

}

.cta-section p{

color:#fff;

opacity:.9;

}

.cta-section .btn{

margin-top:20px;

}

.cta-section .btn-light{

font-weight:600;

padding:14px 34px;

border-radius:50px;

}
/*==================================================
    PRICING SECTION
==================================================*/

.pricing-section{
    background:#f8fafc;
}

.pricing-card{

    background:#fff;

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

    height:100%;

}

.pricing-card:hover{

    transform:translateY(-12px);

}

.pricing-card.featured{

    border:3px solid var(--primary);

}

.pricing-badge{

    position:absolute;

    top:18px;

    right:-35px;

    background:var(--primary);

    color:#fff;

    padding:8px 45px;

    transform:rotate(45deg);

    font-size:13px;

    font-weight:600;

}

.pricing-card h3{

    margin-bottom:10px;

}

.pricing-price{

    font-size:54px;

    color:var(--primary);

    font-weight:800;

    margin:20px 0;

}

.pricing-price span{

    font-size:18px;

    color:#666;

}

.pricing-list{

    list-style:none;

    padding:0;

    margin:30px 0;

}

.pricing-list li{

    padding:10px 0;

    border-bottom:1px solid #eee;

}

.pricing-list i{

    color:var(--success);

    margin-right:10px;

}

/*==================================================
    TESTIMONIALS
==================================================*/

.testimonial-section{

    background:#fff;

}

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card img{

    width:90px;

    height:90px;

    object-fit:cover;

    border-radius:50%;

    margin-bottom:20px;

}

.testimonial-stars{

    color:#ffc107;

    margin-bottom:15px;

}

.testimonial-card h5{

    margin-top:20px;

    margin-bottom:5px;

}

.testimonial-card small{

    color:#777;

}

/*==================================================
    FAQ
==================================================*/

.faq-section{

    background:#f8fafc;

}

.accordion-item{

    border:none;

    border-radius:12px !important;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.accordion-button{

    font-weight:600;

    padding:22px;

    background:#fff;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:22px;

    color:#555;

}

/*==================================================
    CONTACT
==================================================*/

.contact-section{

    background:#fff;

}

.contact-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    margin-bottom:30px;

}

.contact-icon{

    width:65px;

    height:65px;

    background:rgba(0,87,255,.1);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    font-size:26px;

    margin-bottom:18px;

}

.contact-form{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form .form-control,

.contact-form .form-select{

    border-radius:12px;

    padding:14px;

    border:1px solid #ddd;

    margin-bottom:20px;

}

.contact-form textarea{

    min-height:170px;

    resize:none;

}

.contact-form .form-control:focus,

.contact-form .form-select:focus{

    border-color:var(--primary);

    box-shadow:none;

}

/*==================================================
    GOOGLE MAP
==================================================*/

.map-area iframe{

    width:100%;

    height:450px;

    border:0;

    border-radius:20px;

}

/*==================================================
    FOOTER
==================================================*/

.footer{

    background:#0f172a;

    color:#cbd5e1;

    padding:80px 0 30px;

}

.footer h5{

    color:#fff;

    margin-bottom:25px;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#cbd5e1;

    transition:.3s;

}

.footer ul li a:hover{

    color:#fff;

    padding-left:8px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#1e293b;

    color:#fff;

    border-radius:50%;

    margin-right:10px;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:50px;

    padding-top:25px;

    text-align:center;

}

/*==================================================
    FLOATING BUTTONS
==================================================*/

.whatsapp-btn{

    position:fixed;

    right:25px;

    bottom:95px;

    width:60px;

    height:60px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.whatsapp-btn:hover{

    transform:scale(1.1);

    color:#fff;

}

.call-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    z-index:999;

    transition:.3s;

}

.call-btn:hover{

    transform:scale(1.1);

    color:#fff;

}

/*==================================================
    SCROLL TO TOP
==================================================*/

#scrollTop{

    position:fixed;

    left:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:none;

    cursor:pointer;

    z-index:999;

    transition:.3s;

}

#scrollTop:hover{

    transform:translateY(-6px);

}

/*==================================================
    LOADER
==================================================*/

.loader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader::after{

    content:"";

    width:55px;

    height:55px;

    border:5px solid #ddd;

    border-top:5px solid var(--primary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/*==================================================
    ANIMATION UTILITIES
==================================================*/

.hover-up{

    transition:.35s;

}

.hover-up:hover{

    transform:translateY(-10px);

}

.radius-20{

    border-radius:20px;

}

.shadow-lg-custom{

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}
/*==================================================
    RESPONSIVE DESIGN
==================================================*/

/* Large Desktop */
@media (min-width:1400px){

.container{
    max-width:1320px;
}

.hero-section h1{
    font-size:72px;
}

.hero-section p{
    font-size:22px;
}

}

/* Laptop */
@media (max-width:1200px){

.hero-section h1{
    font-size:52px;
}

.section-title h2{
    font-size:38px;
}

.about-content h2{
    font-size:36px;
}

}

/* Tablet Landscape */
@media (max-width:992px){

section{
    padding:70px 0;
}

.navbar{
    padding:15px 0;
}

.navbar-nav{
    margin-top:20px;
}

.navbar-nav .nav-link{
    margin:10px 0;
}

.dropdown-menu{
    border:none;
    box-shadow:none;
    padding-left:15px;
}

.hero-section{
    text-align:center;
    min-height:auto;
    padding:80px 0;
}

.hero-section h1{
    font-size:46px;
}

.hero-section img{
    margin-top:50px;
}

.feature-box{
    margin-top:20px;
}

.about-image{
    margin-bottom:40px;
}

.experience-box{
    right:15px;
    bottom:15px;
}

.pricing-card{
    margin-bottom:30px;
}

.testimonial-card{
    margin-bottom:30px;
}

.contact-form{
    margin-top:40px;
}

.footer{
    text-align:center;
}

.footer-social{
    justify-content:center;
}

}

/* Mobile */
@media (max-width:768px){

body{
    font-size:15px;
}

section{
    padding:60px 0;
}

.top-bar{
    display:none;
}

.hero-section h1{
    font-size:38px;
}

.hero-section p{
    font-size:17px;
}

.section-title h2{
    font-size:32px;
}

.about-content h2{
    font-size:30px;
}

.pricing-price{
    font-size:44px;
}

.counter-box h2{
    font-size:38px;
}

.process-card{
    margin-bottom:25px;
}

.contact-form{
    padding:25px;
}

.footer{
    padding:60px 0 25px;
}

.footer h5{
    margin-top:25px;
}

.whatsapp-btn,
.call-btn{

width:55px;
height:55px;
font-size:24px;

}

}

/* Small Mobile */

@media (max-width:576px){

.hero-section{

padding-top:50px;

}

.hero-section h1{

font-size:32px;

}

.hero-section p{

font-size:16px;

}

.btn{

width:100%;
margin-bottom:15px;

}

.btn-lg{

width:100%;

}

.section-title h2{

font-size:28px;

}

.service-card{

padding:25px;

}

.contact-card{

padding:25px;

}

.pricing-card{

padding:30px 25px;

}

.testimonial-card{

padding:25px;

}

.feature-box{

padding:18px;

}

.about-list li{

font-size:15px;

}

}

/*==================================================
    MOBILE NAVBAR
==================================================*/

.navbar-toggler{

border:none;

box-shadow:none !important;

}

.navbar-toggler:focus{

box-shadow:none;

}

.navbar-collapse{

transition:.3s ease;

}

/*==================================================
    FORM ELEMENTS
==================================================*/

input,
textarea,
select{

outline:none;

}

.form-control,
.form-select{

transition:.3s;

}

.form-control:hover,
.form-select:hover{

border-color:var(--primary);

}

/*==================================================
    IMAGE EFFECTS
==================================================*/

.img-hover{

overflow:hidden;

border-radius:20px;

}

.img-hover img{

transition:.5s;

}

.img-hover:hover img{

transform:scale(1.08);

}

/*==================================================
    CARD HOVER
==================================================*/

.card{

transition:.35s;

}

.card:hover{

transform:translateY(-8px);

}

/*==================================================
    ICON ANIMATION
==================================================*/

.icon-rotate:hover i{

transform:rotate(360deg);

transition:.6s;

}

/*==================================================
    TEXT UTILITIES
==================================================*/

.text-gradient{

background:linear-gradient(90deg,#0057ff,#00b4ff);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.text-small{

font-size:14px;

}

.fw-800{

font-weight:800;

}

/*==================================================
    BACKGROUND UTILITIES
==================================================*/

.bg-gradient-primary{

background:linear-gradient(135deg,#0057ff,#0099ff);

}

.bg-gradient-dark{

background:linear-gradient(135deg,#0f172a,#1e293b);

}

.rounded-20{

border-radius:20px;

}

.rounded-30{

border-radius:30px;

}

/*==================================================
    SHADOW UTILITIES
==================================================*/

.shadow-soft{

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.shadow-hover:hover{

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/*==================================================
    BADGES
==================================================*/

.badge-primary{

background:rgba(0,87,255,.1);

color:var(--primary);

padding:10px 18px;

border-radius:30px;

font-weight:600;

}

/*==================================================
    DIVIDER
==================================================*/

.divider{

width:80px;

height:4px;

background:var(--primary);

margin:20px auto;

border-radius:50px;

}

/*==================================================
    BREADCRUMB
==================================================*/

.page-banner{

padding:100px 0;

background:linear-gradient(135deg,#eef5ff,#ffffff);

text-align:center;

}

.page-banner h1{

font-size:48px;

font-weight:700;

margin-bottom:10px;

}

.breadcrumb{

justify-content:center;

background:none;

margin:0;

}

.breadcrumb a{

color:var(--primary);

}

/*==================================================
    PRELOADER HIDE
==================================================*/

.loaded .loader{

opacity:0;

visibility:hidden;

transition:.4s;

}

/*==================================================
    ACCESSIBILITY
==================================================*/

:focus-visible{

outline:3px solid rgba(0,87,255,.4);

outline-offset:3px;

}

/*==================================================
    PRINT
==================================================*/

@media print{

.navbar,
.footer,
.whatsapp-btn,
.call-btn,
#scrollTop{

display:none !important;

}

body{

background:#fff;

color:#000;

}

a{

text-decoration:none;

color:#000;

}

}

/*==================================================
    PERFORMANCE
==================================================*/

img{

image-rendering:auto;

}

button{

transition:.3s;

cursor:pointer;

}

a{

transition:.3s;

}

html{

scroll-padding-top:90px;

}