
/* ==========================================================
   Doston - Premium Coming Soon
   ========================================================== */

/*==============================================================
  DOSTON PHARMACEUTICALS
  Coming Soon Theme
  Part 1
  Reset • Variables • Body • Hero • Layout
==============================================================*/

/*=============================
  GOOGLE FONT
=============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=============================
  ROOT VARIABLES
=============================*/
:root{

    --primary:#8b1e3f;
    --primary-dark:#6f1632;
    --secondary:#1f2937;
    --accent:#ffffff;
    --text:#ffffff;
    --muted:#d8d8d8;
    --border:rgba(255,255,255,.18);

    --glass:rgba(255,255,255,.10);
    --glass2:rgba(255,255,255,.06);

    --shadow:0 25px 60px rgba(0,0,0,.45);

    --radius:20px;

    --transition:.35s ease;

}


/*=============================
  RESET
=============================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:var(--text);

    background:#111;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

}

img{

    max-width:100%;
    display:block;

}

a{

    color:inherit;
    text-decoration:none;

}

ul{

    list-style:none;

}

button,
input,
textarea{

    font-family:inherit;

}

::selection{

    background:var(--primary);
    color:#fff;

}

/*=============================
  HERO SECTION
=============================*/

.hero{

    position:relative;

    min-height:100vh;

    width:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    overflow:hidden;

}

/*=============================
  DARK OVERLAY
=============================*/

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(0,0,0,.78),
    rgba(12,12,12,.72),
    rgba(139,30,63,.55));

    z-index:1;

}

/*=============================
  EXTRA OVERLAY
=============================*/

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top left,
    rgba(255,255,255,.08),
    transparent 45%);

    z-index:2;

}

/*=============================
  MAIN CONTAINER
=============================*/

.container{

    position:relative;

    z-index:5;

    width:100%;

    max-width:1280px;

    margin:auto;

    padding:70px;

}

/*=============================
  GRID
=============================*/

.hero-content{

    display:grid;

    grid-template-columns:58% 42%;

    gap:70px;

    align-items:start;

}

/*=============================
  LEFT CONTENT
=============================*/

.left-content{

    position:relative;

    z-index:5;

}

/*=============================
  RIGHT CONTENT
=============================*/

.right-content{

    position:relative;

    z-index:5;

}

/*=============================
  SECTION SPACING
=============================*/

.section-space{

    padding-top:80px;

    padding-bottom:80px;

}

/*=============================
  COMMON TITLE
=============================*/

.section-title{

    font-size:48px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:20px;

}

/*=============================
  COMMON TEXT
=============================*/

.section-text{

    font-size:18px;

    color:var(--muted);

    margin-bottom:30px;

}

/*=============================
  GLASS CARD
=============================*/

.glass{

    background:var(--glass);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid var(--border);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

/*=============================
  FLOATING CIRCLES
=============================*/

.hero .circle{

    position:absolute;

    border-radius:50%;

    filter:blur(5px);

    animation:float 10s ease-in-out infinite;

    z-index:0;

}

.hero .circle.one{

    width:220px;
    height:220px;

    top:-60px;
    left:-60px;

    background:rgba(139,30,63,.25);

}

.hero .circle.two{

    width:300px;
    height:300px;

    bottom:-120px;
    right:-80px;

    background:rgba(255,255,255,.05);

    animation-delay:2s;

}

.hero .circle.three{

    width:120px;
    height:120px;

    right:18%;
    top:18%;

    background:rgba(255,255,255,.08);

    animation-delay:4s;

}

/*=============================
  FLOAT ANIMATION
=============================*/

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-25px);

    }

    100%{

        transform:translateY(0px);

    }

}
/* ==========================================================
   Doston - Premium Coming Soon Part 02
   ========================================================== */
   /*==============================================================
  PART 2
  Logo • Branding • Left Content • Features
==============================================================*/

/*=============================
  LOGO
=============================*/

.site-logo{

    display:flex;

    align-items:center;

    justify-content:flex-start;

    margin-bottom:15px;

}

.site-logo img{

    width:170px;

    height:auto;

    display:block;

}

.site-logo img:hover{

    transform:scale(1.05);

}

/*=============================
  COMPANY TAG
=============================*/

.company-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(139,30,63,.18);

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:22px;

}

.company-tag i{

    color:#ffcc66;

}

/*=============================
  MAIN HEADING
=============================*/

.hero-title{

    font-size:52px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:12px;

}
.hero-title span{

    color:var(--primary);

}

/*=============================
  SUBTITLE
=============================*/

.hero-subtitle{

    font-size:18px;

    margin-bottom:25px;

}

/*=============================
  DESCRIPTION
=============================*/

.hero-description{

    max-width:520px;

    margin-bottom:35px;

    line-height:1.8;

}
/*=============================
  DIVIDER
=============================*/

.title-divider{

    width:90px;

    height:5px;

    background:var(--primary);

    border-radius:100px;

    margin-bottom:30px;

}

/*=============================
  FEATURE GRID
=============================*/

.feature-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:18px;

    margin-top:25px;

    margin-bottom:40px;

}

/*=============================
  FEATURE CARD
=============================*/

.feature-card{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 22px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.10);

    border-radius:16px;

    transition:var(--transition);

}

.feature-card:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.10);

    border-color:rgba(255,255,255,.25);

}

.feature-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    font-size:20px;

    color:#fff;

    box-shadow:0 10px 25px rgba(139,30,63,.45);

}

.feature-content h4{

    font-size:17px;

    font-weight:600;

    color:#fff;

    margin-bottom:4px;

}

.feature-content p{

    font-size:14px;

    color:var(--muted);

    line-height:1.6;

}

/*=============================
  CONTACT INFO
=============================*/

.contact-list{

    margin-top:35px;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:18px;

}

.contact-icon{

    width:54px;

    height:54px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    font-size:20px;

}

.contact-details h5{

    font-size:16px;

    font-weight:600;

    color:#fff;

    margin-bottom:3px;

}

.contact-details span{

    font-size:15px;

    color:var(--muted);

}

/*=============================
  SOCIAL ICONS
=============================*/

.social-links{

    display:flex;

    gap:15px;

    margin-top:35px;

}

.social-links a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    color:#fff;

    transition:var(--transition);

}

.social-links a:hover{

    background:var(--primary);

    transform:translateY(-5px);

    box-shadow:0 12px 25px rgba(139,30,63,.45);

}

/*=============================
  STATS
=============================*/

.stats{

    display:flex;

    gap:50px;

    margin-top:45px;

    flex-wrap:wrap;

}

.stat-box h2{

    font-size:42px;

    color:#fff;

    font-weight:700;

    margin-bottom:6px;

}

.stat-box p{

    color:var(--muted);

    font-size:15px;

}

/*=============================
  SCROLL INDICATOR
=============================*/

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:30px;

    transform:translateX(-50%);

    animation:bounce 2s infinite;

    z-index:10;

}

.scroll-indicator i{

    font-size:28px;

    color:#fff;

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translateY(0);

    }

    40%{

        transform:translateY(-10px);

    }

    60%{

        transform:translateY(-5px);

    }

}
/* ==========================================================
   Doston - Premium Coming Soon Part 03
   ========================================================== */

/*==============================================================
  PART 3
  Premium Contact Form
==============================================================*/

/*=============================
  FORM WRAPPER
=============================*/

.contact-form-wrapper{

    position:relative;

    padding:24px;

    border-radius:24px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(22px);

    -webkit-backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.18);

    box-shadow:0 20px 45px rgba(0,0,0,.35);

    overflow:hidden;

}

/* Decorative Glow */

.contact-form-wrapper::before{

    content:"";

    position:absolute;

    width:240px;

    height:240px;

    border-radius:50%;

    background:rgba(139,30,63,.25);

    top:-120px;

    right:-120px;

    filter:blur(20px);

}

.contact-form-wrapper::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-90px;

    left:-90px;

    filter:blur(20px);

}

/*=============================
  FORM TITLE
=============================*/

.form-title{

    position:relative;

    z-index:2;

    font-size:26px;

    font-weight:700;

    color:#fff;

    margin-bottom:6px;

    line-height:1.3;

}

.form-subtitle{

    position:relative;

    z-index:2;

    margin-bottom:16px;

    font-size:14px;

    line-height:1.6;

    color:var(--muted);

}

/*=============================
  FORM
=============================*/

.contact-form{

    position:relative;

    z-index:2;

}

.contact-form .form-group{

    margin-bottom:14px;

}

/*=============================
  LABEL
=============================*/

.contact-form label{

    display:block;

    margin-bottom:6px;

    font-size:14px;

    font-weight:500;

    color:#fff;

}

/*=============================
  INPUT
=============================*/

.contact-form input,

.contact-form textarea,

.contact-form select{

    width:100%;

    padding:13px 16px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:14px;

    transition:all .35s ease;

    outline:none;

}

.contact-form input::placeholder,

.contact-form textarea::placeholder{

    color:rgba(255,255,255,.60);

}

/*=============================
  FOCUS
=============================*/

.contact-form input:focus,

.contact-form textarea:focus,

.contact-form select:focus{

    border-color:var(--primary);

    background:rgba(255,255,255,.12);

    box-shadow:0 0 0 4px rgba(139,30,63,.20);

}

/*=============================
  TEXTAREA
=============================*/

.contact-form textarea{

    resize:none;

    min-height:90px;

}

/*=============================
  BUTTON
=============================*/

.contact-form button{

    width:100%;

    padding:13px;

    border:none;

    border-radius:12px;

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:all .35s ease;

    box-shadow:0 18px 35px rgba(139,30,63,.35);

}

.contact-form button:hover{

    transform:translateY(-3px);

    box-shadow:0 22px 45px rgba(139,30,63,.45);

}

.contact-form button:active{

    transform:translateY(0);

}

/*=============================
  LOADING BUTTON
=============================*/

.contact-form button.loading{

    pointer-events:none;

    opacity:.85;

}

.contact-form button.loading::after{

    content:"";

    display:inline-block;

    width:16px;

    height:16px;

    margin-left:10px;

    border:3px solid rgba(255,255,255,.35);

    border-top-color:#fff;

    border-radius:50%;

    animation:spin .8s linear infinite;

}

/*=============================
  SUCCESS
=============================*/

.form-success{

    display:none;

    margin-top:16px;

    padding:14px 16px;

    border-radius:10px;

    background:#1d7f47;

    color:#fff;

    font-size:14px;

}

/*=============================
  ERROR
=============================*/

.form-error{

    display:none;

    margin-top:16px;

    padding:14px 16px;

    border-radius:10px;

    background:#b71c1c;

    color:#fff;

    font-size:14px;

}

/*=============================
  SMALL TEXT
=============================*/

.form-note{

    margin-top:14px;

    text-align:center;

    font-size:12px;

    color:rgba(255,255,255,.70);

}

.form-note a{

    color:#fff;

    font-weight:600;

}

.form-note a:hover{

    color:#ffd8e4;

}

/*=============================
  REQUIRED MARK
=============================*/

.required{

    color:#ff6b81;

}

/*=============================
  ICON INPUT
=============================*/

.input-icon{

    position:relative;

}

.input-icon i{

    position:absolute;

    left:16px;

    top:50%;

    transform:translateY(-50%);

    color:rgba(255,255,255,.65);

}

.input-icon input{

    padding-left:46px;

}

/*=============================
  SPINNER
=============================*/

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }


}
/* ==========================================================
   Doston - Premium Coming Soon Part 04
   ========================================================== */
   
   /*==============================================================
  PART 4
  Footer • Countdown • Utilities • Animations
==============================================================*/

/*=============================
  COUNTDOWN
=============================*/

.countdown{

    display:flex;

    gap:20px;

    margin:45px 0;

    flex-wrap:wrap;

}

.countdown-box{

    min-width:95px;

    padding:18px;

    text-align:center;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    transition:var(--transition);

}

.countdown-box:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.12);

}

.countdown-box h2{

    font-size:34px;

    font-weight:700;

    color:#fff;

    line-height:1;

    margin-bottom:10px;

}

.countdown-box span{

    display:block;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1px;

    color:var(--muted);

}

/*=============================
  NEWSLETTER
=============================*/

.newsletter{

    margin-top:45px;

}

.newsletter form{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.newsletter input{

    flex:1;

    min-width:220px;

    padding:16px 20px;

    border:none;

    border-radius:12px;

    background:rgba(255,255,255,.08);

    color:#fff;

    outline:none;

}

.newsletter button{

    padding:16px 30px;

    border:none;

    border-radius:12px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

}

.newsletter button:hover{

    background:var(--primary-dark);

}

/*=============================
  COPYRIGHT
=============================*/

.site-footer{

    margin-top:70px;

    padding-top:35px;

    border-top:1px solid rgba(255,255,255,.10);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.site-footer p{

    color:rgba(255,255,255,.75);

    font-size:14px;

}

.site-footer a{

    color:#fff;

    transition:var(--transition);

}

.site-footer a:hover{

    color:#ffccd9;

}

/*=============================
  BACK TO TOP
=============================*/

.back-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    box-shadow:0 12px 28px rgba(0,0,0,.35);

    z-index:999;

}

.back-top.show{

    opacity:1;

    visibility:visible;

}

.back-top:hover{

    background:var(--primary-dark);

    transform:translateY(-6px);

}

/*=============================
  FADE ANIMATION
=============================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.active{

    opacity:1;

    transform:translateY(0);

}

/*=============================
  ZOOM ANIMATION
=============================*/

.zoom-in{

    opacity:0;

    transform:scale(.9);

    transition:all .8s ease;

}

.zoom-in.active{

    opacity:1;

    transform:scale(1);

}

/*=============================
  LEFT ANIMATION
=============================*/

.fade-left{

    opacity:0;

    transform:translateX(-50px);

    transition:all .8s ease;

}

.fade-left.active{

    opacity:1;

    transform:translateX(0);

}

/*=============================
  RIGHT ANIMATION
=============================*/

.fade-right{

    opacity:0;

    transform:translateX(50px);

    transition:all .8s ease;

}

.fade-right.active{

    opacity:1;

    transform:translateX(0);

}

/*=============================
  ROTATE
=============================*/

.rotate{

    animation:rotate360 20s linear infinite;

}

@keyframes rotate360{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*=============================
  PULSE
=============================*/

.pulse{

    animation:pulse 2s infinite;

}

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.05);

    }

    100%{

        transform:scale(1);

    }

}

/*=============================
  SHADOW HELPERS
=============================*/

.shadow-sm{

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.shadow-md{

    box-shadow:0 18px 40px rgba(0,0,0,.25);

}

.shadow-lg{

    box-shadow:0 30px 70px rgba(0,0,0,.40);

}

/*=============================
  TEXT HELPERS
=============================*/

.text-center{

    text-align:center;

}

.text-left{

    text-align:left;

}

.text-right{

    text-align:right;

}

/*=============================
  SPACING HELPERS
=============================*/

.mt-20{margin-top:20px;}
.mt-30{margin-top:30px;}
.mt-40{margin-top:40px;}
.mt-50{margin-top:50px;}

.mb-20{margin-bottom:20px;}
.mb-30{margin-bottom:30px;}
.mb-40{margin-bottom:40px;}
.mb-50{margin-bottom:50px;}

.pt-50{padding-top:50px;}
.pb-50{padding-bottom:50px;}

/*=============================
  HIDE ELEMENT
=============================*/

.d-none{

    display:none!important;

}

/*=============================
  FLEX HELPERS
=============================*/

.d-flex{

    display:flex;

}

.align-center{

    align-items:center;

}

.justify-center{

    justify-content:center;

}

.justify-between{

    justify-content:space-between;

}

/*=============================
  BORDER RADIUS
=============================*/

.rounded{

    border-radius:var(--radius);

}

.rounded-circle{

    border-radius:50%;

}
/* ==========================================================
   Doston - Premium Coming Soon PArt 05
   ========================================================== */
   /*==============================================================
  PART 5
  Responsive Design & Final Optimizations
==============================================================*/

/*=============================
  LARGE DESKTOP
=============================*/

@media (max-width:1400px){

    .container{

        max-width:1140px;
        padding:60px;

    }

    .hero-title{

        font-size:56px;

    }

}

/*=============================
  LAPTOP
=============================*/

/*=============================
  LAPTOP
=============================*/

@media (max-width:1200px){

    .container{

        max-width:1140px;

        padding:50px;

    }

    .hero{

        min-height:100vh;

    }

    .hero-content{

        display:grid;

        grid-template-columns:56% 44%;

        gap:45px;

        align-items:center;

    }

    .left-content{

        padding-right:10px;

    }

    .right-content{

        display:flex;

        justify-content:flex-end;

    }

    .site-logo img{

        width:160px;

    }

    .hero-title{

        font-size:48px;

        line-height:1.15;

    }

    .hero-subtitle{

        font-size:18px;

    }

    .hero-description{

        font-size:16px;

        max-width:500px;

    }

    .contact-form-wrapper{

        width:100%;

        max-width:430px;

        padding:30px;

    }

    .form-title{

        font-size:28px;

    }

}
/*=============================
  TABLET
=============================*/

/*=============================
  TABLET
=============================*/

@media (max-width:992px){

    .container{

        padding:45px 30px;

    }

    .hero{

        min-height:auto;

        padding:70px 0;

    }

    .hero-content{

        display:grid;

        grid-template-columns:1fr;

        gap:35px;

        align-items:center;

    }

    .left-content{

        text-align:center;

        padding-right:0;

    }

    .right-content{

        display:flex;

        justify-content:center;

    }

    .site-logo{

        justify-content:center;

    }

    .site-logo img{

        width:150px;

    }

    .hero-title{

        font-size:42px;

    }

    .hero-subtitle{

        font-size:20px;

    }

    .hero-description{

        max-width:100%;

        margin:0 auto 30px;

    }

    .contact-list{

        align-items:center;

    }

    .contact-form-wrapper{

        width:100%;

        max-width:500px;

    }

}
/*=============================
  MOBILE
=============================*/

@media (max-width:768px){

    .container{

        padding:30px 20px;

    }

    .hero-title{

        font-size:36px;

    }

    .hero-subtitle{

        font-size:20px;

    }

    .hero-description{

        font-size:16px;

    }

    .section-title{

        font-size:34px;

    }

    .section-text{

        font-size:16px;

    }

    .site-logo img{

        width:150px;

        margin:auto;

    }

    .feature-grid{

        grid-template-columns:1fr;

    }

    .feature-card{

        padding:16px;

    }

    .contact-item{

        flex-direction:column;

        text-align:center;

        gap:12px;

    }

    .contact-form-wrapper{

        padding:28px;

    }

    .form-title{

        font-size:28px;

    }

    .newsletter form{

        flex-direction:column;

    }

    .newsletter button{

        width:100%;

    }

    .countdown{

        gap:12px;

    }

    .countdown-box{

        min-width:80px;

        padding:14px;

    }

    .countdown-box h2{

        font-size:28px;

    }

    .social-links{

        justify-content:center;

        flex-wrap:wrap;

    }

}

/*=============================
  SMALL MOBILE
=============================*/

@media (max-width:576px){

    .hero-title{

        font-size:30px;

    }

    .hero-subtitle{

        font-size:18px;

    }

    .hero-description{

        font-size:15px;

    }

    .form-title{

        font-size:24px;

    }

    .contact-form-wrapper{

        padding:22px;

        border-radius:18px;

    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select{

        padding:14px 16px;

        font-size:14px;

    }

    .contact-form button{

        padding:15px;

    }

    .stats{

        gap:30px;

    }

    .stat-box h2{

        font-size:34px;

    }

    .back-top{

        width:46px;

        height:46px;

        right:15px;

        bottom:15px;

    }

}

/*=============================
  EXTRA SMALL
=============================*/

@media (max-width:380px){

    .hero-title{

        font-size:26px;

    }

    .hero-subtitle{

        font-size:17px;

    }

    .company-tag{

        font-size:12px;

        padding:7px 14px;

    }

    .contact-form-wrapper{

        padding:18px;

    }

    .feature-card{

        flex-direction:column;

        text-align:center;

    }

}

/*=============================
  ACCESSIBILITY
=============================*/

button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus{

    outline:2px solid rgba(255,255,255,.35);

    outline-offset:3px;

}

/*=============================
  SMOOTH IMAGE RENDERING
=============================*/

img{

    image-rendering:auto;

}

/*=============================
  DISABLE ANIMATION
=============================*/

@media (prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{

        animation:none!important;

        transition:none!important;

        scroll-behavior:auto!important;

    }

}

/*=============================
  PRINT
=============================*/

@media print{

    body{

        background:#fff;

        color:#000;

    }

    .hero::before,
    .hero::after,
    .back-top,
    .circle,
    .newsletter,
    .contact-form-wrapper{

        display:none!important;

    }

}

/*==============================================================
  END OF FILE
==============================================================*/