/*==================================================
  SHIVACREST PRODUCTIONS
  PREMIUM WEBSITE CSS
  PART 1A
==================================================*/

/*=========================
        GOOGLE FONT
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/*=========================
        RESET
=========================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
    -webkit-text-size-adjust:100%;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#050505;
    color:#ffffff;
    line-height:1.7;
    overflow-x:hidden;
    min-height:100vh;
}

/*=========================
      ROOT VARIABLES
=========================*/

:root{

    --primary:#d4af37;
    --primary-dark:#b8911f;

    --black:#050505;
    --dark:#101010;
    --dark-2:#181818;

    --white:#ffffff;
    --gray:#bdbdbd;
    --light:#efefef;

    --border:rgba(255,255,255,.08);

    --shadow:0 15px 40px rgba(0,0,0,.35);

    --radius:18px;

    --transition:.35s ease;

    --container:1240px;

}

/*=========================
      GLOBAL
=========================*/

section{
    position:relative;
    padding:90px 0;
}

.container{
    width:min(92%,var(--container));
    margin:auto;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

ul{
    list-style:none;
}

button,
input,
textarea{
    font-family:inherit;
}

button{
    cursor:pointer;
    border:none;
    outline:none;
}

input,
textarea{
    width:100%;
    border:none;
    outline:none;
}

/*=========================
      TYPOGRAPHY
=========================*/

h1,h2,h3,h4,h5{
    line-height:1.2;
    font-weight:800;
}

p{
    color:var(--gray);
    margin-top:18px;
}

.section-tag{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

    font-size:.85rem;

}

.section-title{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    margin-top:15px;

    font-size:clamp(2rem,5vw,3.3rem);

}

.section-title p{

    margin-top:20px;

}

/*=========================
      BUTTONS
=========================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 34px;

    border-radius:50px;

    background:var(--primary);

    color:#111;

    font-weight:700;

    transition:var(--transition);

}

.btn:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:700;

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--primary);

    color:#111;

}

/*=========================
      PRELOADER
=========================*/

#preloader{

    position:fixed;

    inset:0;

    background:#050505;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.loader{

    width:60px;

    height:60px;

    border-radius:50%;

    border:4px solid rgba(255,255,255,.12);

    border-top-color:var(--primary);

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/*=========================
     SCROLL PROGRESS BAR
=========================*/

#progressBar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:linear-gradient(
        90deg,
        #d4af37,
        #ffd95b
    );

    z-index:9999;

}

/*=========================
    CUSTOM SCROLLBAR
=========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#101010;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}
/*==================================================
        CSS PART 1B
        HEADER • NAVBAR • HERO
==================================================*/

/*=========================
        HEADER
=========================*/

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(5,5,5,.85);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.06);
    transition:.35s ease;
}

#header.scrolled{
    background:#050505;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

#header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:82px;
}

/*=========================
        LOGO
=========================*/

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.logo img{
    width:185px;
    max-width:100%;
    height:auto;
    transition:.3s ease;
}

.logo:hover img{
    transform:scale(1.04);
}

/*=========================
        NAVIGATION
=========================*/

nav ul{
    display:flex;
    align-items:center;
    gap:38px;
}

nav a{
    position:relative;
    color:#fff;
    font-size:.96rem;
    font-weight:600;
    transition:.3s;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.35s;
}

nav a:hover,
nav a.active{
    color:var(--primary);
}

nav a:hover::after,
nav a.active::after{
    width:100%;
}

/*=========================
        MENU BUTTON
=========================*/

.menu-toggle{
    display:none;
    width:46px;
    height:46px;
    cursor:pointer;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:6px;
}

.menu-toggle span{
    width:26px;
    height:3px;
    background:#fff;
    border-radius:30px;
    transition:.35s;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/*=========================
      DESKTOP BUTTON
=========================*/

.desktop-btn{
    margin-left:25px;
}

/*=========================
        HERO
=========================*/

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding-top:130px;
    padding-bottom:90px;
    background:
        linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.75)),
        url("../images/hero-bg.jpg") center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.18),
    transparent 45%);
    pointer-events:none;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:760px;
}

.hero-tag{
    display:inline-block;
    color:var(--primary);
    border:1px solid rgba(212,175,55,.35);
    background:rgba(212,175,55,.08);
    padding:10px 20px;
    border-radius:50px;
    letter-spacing:2px;
    font-size:.82rem;
    font-weight:700;
    margin-bottom:25px;
}

.hero h1{
    font-size:clamp(2.8rem,7vw,5.6rem);
    font-weight:900;
    line-height:1.08;
    margin-bottom:25px;
}

.hero h1 span{
    color:var(--primary);
}

.hero p{
    max-width:640px;
    font-size:1.08rem;
    color:#d4d4d4;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

/*=========================
      SCROLL INDICATOR
=========================*/

.scroll-down{
    position:absolute;
    left:50%;
    bottom:35px;
    transform:translateX(-50%);
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    animation:floatArrow 1.8s infinite;
}

@keyframes floatArrow{
    0%,100%{
        transform:translate(-50%,0);
    }
    50%{
        transform:translate(-50%,10px);
    }
}

/*=========================
      MOBILE NAVIGATION
=========================*/

@media (max-width:991px){

    .menu-toggle{
        display:flex;
    }

    .desktop-btn{
        display:none;
    }

    nav{
        position:fixed;
        top:82px;
        right:-100%;
        width:300px;
        height:calc(100vh - 82px);
        background:#0d0d0d;
        transition:.35s;
        border-left:1px solid rgba(255,255,255,.06);
        padding:40px 30px;
        overflow-y:auto;
    }

    nav.active{
        right:0;
    }

    nav ul{
        flex-direction:column;
        align-items:flex-start;
        gap:28px;
    }

    nav a{
        font-size:1.05rem;
    }

    .hero{
        text-align:center;
        padding-top:150px;
    }

    .hero-content{
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

}

@media (max-width:576px){

    #header .container{
        min-height:74px;
    }

    .logo img{
        width:150px;
    }

    nav{
        top:74px;
        height:calc(100vh - 74px);
        width:100%;
    }

    .hero{
        min-height:auto;
        padding:140px 0 90px;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .hero p{
        font-size:.96rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-outline{
        width:100%;
    }

}
/*==================================================
        CSS PART 2A
        ABOUT • STATS • SERVICES
==================================================*/

/*=========================
        ABOUT SECTION
=========================*/

.about{
    background:#080808;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
    transition:.45s ease;
}

.about-image:hover img{
    transform:scale(1.03);
}

.about-content h2{
    font-size:clamp(2rem,5vw,3.3rem);
    margin-bottom:25px;
}

.about-content p{
    margin-bottom:18px;
}

/*=========================
        ABOUT STATS
=========================*/

.about-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin:40px 0;
}

.stat-box{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    transition:.35s ease;
}

.stat-box:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.4);
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.stat-box h3{
    font-size:2.2rem;
    color:var(--primary);
    margin-bottom:10px;
}

.stat-box span{
    color:#d0d0d0;
    font-size:.95rem;
    font-weight:600;
}

/*=========================
        SERVICES
=========================*/

.services{
    background:#050505;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    position:relative;
    overflow:hidden;
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:40px 32px;
    transition:.4s ease;
}

.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(212,175,55,.10),
        transparent 55%
    );
    opacity:0;
    transition:.4s;
}

.service-card:hover::before{
    opacity:1;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(212,175,55,.45);
    box-shadow:0 22px 50px rgba(0,0,0,.40);
}

.service-card i{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:rgba(212,175,55,.12);
    color:var(--primary);
    font-size:1.9rem;
    margin-bottom:28px;
}

.service-card h3{
    font-size:1.45rem;
    margin-bottom:18px;
}

.service-card p{
    margin:0;
    color:#c7c7c7;
    line-height:1.8;
}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:991px){

    .about-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-content{
        text-align:center;
    }

    .about-stats{
        max-width:700px;
        margin:40px auto;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .about-stats{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:35px 28px;
    }

}

@media(max-width:576px){

    .about{
        padding:70px 0;
    }

    .services{
        padding:70px 0;
    }

    .about-content h2{
        font-size:2rem;
    }

    .stat-box h3{
        font-size:1.9rem;
    }

}
/*==================================================
        CSS PART 2B
        PORTFOLIO • CONTACT
==================================================*/

/*=========================
        PORTFOLIO
=========================*/

.portfolio{
    background:#080808;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.portfolio-item{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    background:#111;
    cursor:pointer;
    box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.portfolio-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:transform .6s ease;
}

.portfolio-item:hover img{
    transform:scale(1.08);
}

.portfolio-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:35px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.92),
        rgba(0,0,0,.25),
        transparent
    );
    opacity:0;
    transition:.4s;
}

.portfolio-item:hover .portfolio-overlay{
    opacity:1;
}

.portfolio-overlay h3{
    color:#fff;
    font-size:1.6rem;
    margin-bottom:8px;
}

.portfolio-overlay span{
    color:var(--primary);
    font-weight:600;
}

/*=========================
        CONTACT
=========================*/

.contact{
    background:#050505;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:45px;
    align-items:start;
}

/*=========================
      CONTACT INFO
=========================*/

.contact-info{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.info-box{
    display:flex;
    gap:18px;
    align-items:flex-start;
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    padding:26px;
    border-radius:18px;
    transition:.35s;
}

.info-box:hover{
    border-color:rgba(212,175,55,.35);
    transform:translateY(-6px);
}

.info-box i{
    width:60px;
    height:60px;
    border-radius:16px;
    background:rgba(212,175,55,.12);
    color:var(--primary);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.4rem;
    flex-shrink:0;
}

.info-box h3{
    margin-bottom:8px;
    font-size:1.15rem;
}

.info-box p{
    margin:0;
    color:#d2d2d2;
}

/*=========================
      CONTACT FORM
=========================*/

.contact-form{
    background:#111;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.08);
    padding:40px;
}

.form-group{
    margin-bottom:22px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    background:#191919;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    padding:16px 18px;
    border-radius:12px;
    transition:.3s;
    resize:none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#999;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(212,175,55,.12);
}

.contact-form button{
    width:100%;
}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:991px){

    .portfolio-grid{
        grid-template-columns:1fr;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .portfolio-item img{
        height:260px;
    }

    .portfolio-overlay{
        opacity:1;
        padding:25px;
    }

    .contact-form{
        padding:30px;
    }

}

@media(max-width:576px){

    .portfolio{
        padding:70px 0;
    }

    .contact{
        padding:70px 0;
    }

    .portfolio-overlay h3{
        font-size:1.3rem;
    }

    .contact-form{
        padding:24px;
    }

    .info-box{
        padding:22px;
    }

}
/*==================================================
        CSS PART 3A
        FOOTER • SOCIAL • BACK TO TOP
==================================================*/

/*=========================
          FOOTER
=========================*/

.footer{
    background:#090909;
    border-top:1px solid rgba(255,255,255,.08);
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:40px;
    margin-bottom:50px;
}

.footer-column h3{
    color:#fff;
    font-size:1.35rem;
    margin-bottom:22px;
    position:relative;
}

.footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:55px;
    height:3px;
    border-radius:20px;
    background:var(--primary);
}

.footer-column p{
    color:#bdbdbd;
    line-height:1.8;
}

.footer-column ul{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-column ul li{
    color:#cfcfcf;
    transition:.3s;
}

.footer-column ul li a{
    color:#cfcfcf;
    transition:.3s;
}

.footer-column ul li:hover,
.footer-column ul li a:hover{
    color:var(--primary);
    padding-left:8px;
}

/*=========================
        SOCIAL ICONS
=========================*/

.social-links{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:25px;
}

.social-links a{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#151515;
    color:#ffffff;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s ease;
}

.social-links a:hover{
    background:var(--primary);
    color:#111;
    transform:translateY(-6px);
    border-color:var(--primary);
}

/*=========================
      FOOTER BOTTOM
=========================*/

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom p{
    margin:0;
    color:#9f9f9f;
    font-size:.95rem;
}

.footer-bottom strong{
    color:var(--primary);
    font-weight:700;
}

/*=========================
       BACK TO TOP
=========================*/

.back-to-top{
    position:fixed;
    right:28px;
    bottom:28px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:#111;
    font-size:1.2rem;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s ease;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
    z-index:999;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    background:#fff;
    transform:translateY(-6px);
}

/*=========================
      UTILITY CLASSES
=========================*/

.text-center{
    text-align:center;
}

.hidden{
    display:none !important;
}

.fade-up{
    opacity:0;
    transform:translateY(50px);
    transition:.8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/*=========================
         ANIMATIONS
=========================*/

@keyframes fadeIn{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.05);
    }

    100%{
        transform:scale(1);
    }

}

/*=========================
      LARGE TABLETS
=========================*/

@media (max-width:991px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
    }

    .footer-bottom{
        justify-content:center;
        text-align:center;
    }

}

/*=========================
         MOBILE
=========================*/

@media (max-width:768px){

    .footer{
        padding:70px 0 25px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-column{
        text-align:center;
    }

    .footer-column h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .social-links{
        justify-content:center;
    }

    .back-to-top{
        right:20px;
        bottom:20px;
        width:50px;
        height:50px;
    }

}

/*=========================
      SMALL MOBILE
=========================*/

@media (max-width:480px){

    .footer{
        padding:60px 0 20px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:12px;
    }

    .footer-bottom p{
        font-size:.88rem;
    }

    .social-links a{
        width:44px;
        height:44px;
    }

}
/*==================================================
        CSS PART 3B
        FINAL OPTIMIZATION
==================================================*/

/*=========================
      RESPONSIVE MEDIA
=========================*/

img,
video,
iframe,
svg{
    max-width:100%;
    height:auto;
    display:block;
}

picture{
    display:block;
}

/*=========================
      RESPONSIVE TABLES
=========================*/

table{
    width:100%;
    border-collapse:collapse;
}

table{
    display:block;
    overflow-x:auto;
}

/*=========================
      FORM FIXES
=========================*/

input,
textarea,
select,
button{
    font-size:16px;
}

textarea{
    min-height:140px;
}

/*=========================
      SECTION SPACING
=========================*/

section:first-of-type{
    margin-top:0;
}

section:last-of-type{
    margin-bottom:0;
}

/*=========================
      FOCUS STYLE
=========================*/

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{

    outline:3px solid rgba(212,175,55,.45);
    outline-offset:4px;

}

/*=========================
      SELECTION
=========================*/

::selection{

    background:var(--primary);

    color:#111;

}

::-moz-selection{

    background:var(--primary);

    color:#111;

}

/*=========================
      SMOOTH IMAGES
=========================*/

img{

    image-rendering:auto;

    user-select:none;

    -webkit-user-drag:none;

}

/*=========================
      PERFORMANCE
=========================*/

.hero,
.about,
.services,
.portfolio,
.contact,
.footer{

    contain:layout style;

}

.service-card,
.portfolio-item,
.info-box{

    will-change:transform;

}

/*=========================
      HORIZONTAL FIX
=========================*/

html,
body{

    width:100%;

    overflow-x:hidden;

}

.container{

    max-width:1240px;

    margin-inline:auto;

    padding-inline:18px;

}

*{

    word-wrap:break-word;

}

.hero,
.about,
.services,
.portfolio,
.contact,
.footer{

    overflow:hidden;

}

/*=========================
      MOBILE FIXES
=========================*/

@media (max-width:991px){

    .container{

        padding-inline:20px;

    }

}

@media (max-width:768px){

    html{

        font-size:15px;

    }

    section{

        padding:70px 0;

    }

    h1{

        line-height:1.15;

    }

    h2{

        line-height:1.2;

    }

    .btn,
    .btn-outline{

        width:100%;

        justify-content:center;

    }

}

@media (max-width:480px){

    html{

        font-size:14px;

    }

    .container{

        width:94%;

        padding-inline:12px;

    }

    .section-title{

        margin-bottom:45px;

    }

    .section-title h2{

        font-size:1.9rem;

    }

}

/*=========================
      REDUCE MOTION
=========================*/

@media (prefers-reduced-motion:reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}

/*=========================
      PRINT STYLE
=========================*/

@media print{

    #header,
    #preloader,
    #progressBar,
    .back-to-top,
    .scroll-down{

        display:none !important;

    }

    body{

        background:#fff;

        color:#000;

    }

    .footer{

        border:none;

    }

}

/*=========================
      FINAL SAFETY
=========================*/

html{

    scroll-padding-top:90px;

}

body.loaded #preloader{

    opacity:0;

    visibility:hidden;

    pointer-events:none;

}

button,
a{

    transition:.3s ease;

}

button:disabled{

    opacity:.6;

    cursor:not-allowed;

}

/*=========================
      END OF CSS
==================================================*/