/*=========================================
MAX SOLUTIONS INDIA
Premium Agency Website CSS
=========================================*/
html,
body{
overflow-x:hidden;
width:100%;
}
/* Logo Text */

.logo-text{
font-size:32px;
font-weight:800;
color:#0d6efd !important;
text-decoration:none;
letter-spacing:1px;
text-transform:uppercase;
}

.logo-text span{
color:#ffc107;
}

.logo-text:hover{
color:#0d6efd;
}

.logo-text:hover span{
color:#ffb300;
}
/* Footer Logo */

.footer-logo{
display:inline-block;
font-size:32px;
font-weight:800;
text-transform:uppercase;
letter-spacing:1px;
margin-bottom:15px;
color:#ffffff !important;
}

.footer-logo span{
color:#ffc107;
}

.footer-logo:hover{
color:#ffffff !important;
text-decoration:none;
}

.footer-logo:hover span{
color:#ffb300;
}
*{
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:#1f2937;
background:#f8fafc;
overflow-x:hidden;
}

a{
text-decoration:none;
transition:.35s ease;
}

img{
max-width:100%;
display:block;
}

ul{
list-style:none;
padding:0;
margin:0;
}

section{
padding:90px 0;
}

.container{
max-width:1200px;
}

/*==========================
COLORS
==========================*/

:root{

--primary:#0d6efd;
--secondary:#ffc107;
--dark:#0f172a;
--light:#ffffff;
--text:#4b5563;
--bg:#f8fafc;
--border:#e5e7eb;
--shadow:0 15px 40px rgba(0,0,0,.08);

}

/*==========================
HEADER
==========================*/

.header{

background:#ffffff;
box-shadow:0 2px 20px rgba(0,0,0,.08);
padding:12px 0;
transition:.3s;

}

.header.scrolled{

padding:8px 0;
box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.logo img{

height:55px;

}

.navbar-nav .nav-link{

font-size:16px;
font-weight:600;
color:#222;
margin-left:20px;
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:-6px;
width:0%;
height:2px;
background:var(--secondary);
transition:.3s;

}

.navbar-nav .nav-link:hover::after{

width:100%;

}

/*==========================
BUTTONS
==========================*/

.btn{

border-radius:50px;
padding:14px 34px;
font-weight:600;
transition:.35s;
}

.btn-warning{

background:var(--secondary);
border:none;
color:#111;

}

.btn-warning:hover{

transform:translateY(-4px);
box-shadow:0 10px 25px rgba(255,193,7,.35);

}

.btn-primary{

background:var(--primary);
border:none;

}

.btn-primary:hover{

transform:translateY(-4px);

}

/*==========================
HERO
==========================*/

.hero{

padding-top:170px;
padding-bottom:110px;
background:linear-gradient(135deg,#0f172a 0%,#0d6efd 100%);
color:#fff;
position:relative;
overflow:hidden;

}

.hero::before{

content:"";
position:absolute;
width:550px;
height:550px;
background:rgba(255,255,255,.05);
border-radius:50%;
right:-180px;
top:-150px;

}

.hero h1{

font-size:58px;
font-weight:800;
line-height:1.2;
margin-bottom:20px;

}

.hero p{

font-size:19px;
opacity:.95;
margin-bottom:30px;

}

.hero-img{

animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

.badge{

font-size:15px;
padding:10px 18px;
border-radius:50px;

}
/*=========================================
SECTION TITLE
=========================================*/

.section-tag{
display:inline-block;
background:#eaf3ff;
color:var(--primary);
padding:8px 18px;
border-radius:50px;
font-size:14px;
font-weight:700;
margin-bottom:15px;
}

.section-title{
font-size:42px;
font-weight:800;
color:var(--dark);
margin-bottom:15px;
}

.section-subtitle{
max-width:700px;
margin:auto;
color:var(--text);
font-size:18px;
}

/*=========================================
SERVICES
=========================================*/

.services{
background:#fff;
}

.service-card{

background:#fff;
padding:40px 30px;
border-radius:20px;
text-align:center;
box-shadow:var(--shadow);
transition:.4s;
height:100%;
border:1px solid #eef2f7;
position:relative;
overflow:hidden;

}

.service-card::before{

content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#0d6efd,#ffc107);
transform:scaleX(0);
transition:.4s;

}

.service-card:hover::before{

transform:scaleX(1);

}

.service-card:hover{

transform:translateY(-12px);
box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.service-icon{

width:90px;
height:90px;
margin:auto;
margin-bottom:25px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#0d6efd,#1d4ed8);
color:#fff;
font-size:36px;

}

.service-card h4{

font-size:24px;
font-weight:700;
margin-bottom:15px;

}

.service-card p{

color:var(--text);
margin-bottom:25px;

}

/*=========================================
FEATURE BOX
=========================================*/

.feature-box{

background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:var(--shadow);
height:100%;
transition:.35s;

}

.feature-box:hover{

transform:translateY(-10px);

}

.feature-box i{

font-size:55px;
margin-bottom:20px;
color:var(--primary);

}

.feature-box h4{

font-size:24px;
font-weight:700;
margin-bottom:12px;

}

.feature-box p{

color:var(--text);

}

/*=========================================
ABOUT
=========================================*/

.about img{

border-radius:25px;
box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.about p{

font-size:17px;
color:var(--text);

}

.about li{

margin-bottom:14px;
font-weight:500;

}

/*=========================================
COUNTER
=========================================*/

.stats{

background:linear-gradient(135deg,#0d6efd,#0f172a);
color:#fff;

}

.counter-box{

padding:35px 20px;

}

.counter-box h2{

font-size:52px;
font-weight:800;
color:#ffc107;

}

.counter-box p{

font-size:18px;
margin-top:10px;

}

/*=========================================
PROCESS
=========================================*/

.process{

background:#f8fafc;

}

.process-box{

background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:var(--shadow);
height:100%;
position:relative;
transition:.35s;

}

.process-box:hover{

transform:translateY(-10px);

}

.process-number{

width:70px;
height:70px;
background:#0d6efd;
color:#fff;
font-size:24px;
font-weight:700;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:20px;

}

.process-box h4{

font-size:24px;
font-weight:700;
margin-bottom:15px;

}

.process-box p{

color:var(--text);

}
/*=========================================
INDUSTRIES
=========================================*/

.industry-box{
background:#fff;
padding:35px 20px;
border-radius:20px;
box-shadow:var(--shadow);
transition:.35s;
height:100%;
text-align:center;
border:1px solid #eef2f7;
}

.industry-box:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.industry-box i{
font-size:55px;
margin-bottom:20px;
}

.industry-box h5{
font-size:20px;
font-weight:700;
margin-bottom:0;
}

/*=========================================
TESTIMONIALS
=========================================*/

.reviews{
background:#f8fafc;
}

.review-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:var(--shadow);
height:100%;
transition:.35s;
border:1px solid #eef2f7;
}

.review-card:hover{
transform:translateY(-10px);
}

.stars{
color:#ffc107;
font-size:22px;
margin-bottom:20px;
letter-spacing:2px;
}

.review-card p{
font-size:16px;
color:var(--text);
font-style:italic;
margin-bottom:20px;
}

.review-card h5{
font-size:20px;
font-weight:700;
margin-bottom:5px;
}

.review-card small{
color:#6b7280;
}

/*=========================================
CTA SECTION
=========================================*/

.cta-section{
background:linear-gradient(135deg,#0d6efd,#0f172a);
color:#fff;
position:relative;
overflow:hidden;
}

.cta-section::before{
content:"";
position:absolute;
top:-120px;
right:-120px;
width:300px;
height:300px;
background:rgba(255,255,255,.08);
border-radius:50%;
}

.cta-section h2{
font-size:42px;
font-weight:800;
margin-bottom:15px;
}

.cta-section p{
font-size:18px;
opacity:.9;
}

/*=========================================
FAQ
=========================================*/

.faq{
background:#f8fafc;
}

.accordion-item{
border:none;
border-radius:15px !important;
overflow:hidden;
margin-bottom:20px;
box-shadow:var(--shadow);
}

.accordion-button{
font-size:18px;
font-weight:600;
padding:20px;
background:#fff;
}

.accordion-button:not(.collapsed){
background:#0d6efd;
color:#fff;
}

.accordion-button:focus{
box-shadow:none;
}

.accordion-body{
padding:22px;
color:var(--text);
line-height:1.8;
}

/*=========================================
CONTACT
=========================================*/

.contact-section{
background:#fff;
}

.contact-section h2{
font-size:40px;
font-weight:800;
margin-bottom:20px;
}

.form-control,
.form-select{
height:58px;
border-radius:12px;
border:1px solid #dbe3ea;
padding:12px 18px;
font-size:16px;
box-shadow:none;
}

textarea.form-control{
height:150px;
resize:none;
}

.form-control:focus,
.form-select:focus{
border-color:#0d6efd;
box-shadow:0 0 0 .2rem rgba(13,110,253,.15);
}

.contact-card{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:var(--shadow);
height:100%;
}

.contact-card h3{
font-size:30px;
font-weight:700;
margin-bottom:20px;
}

.contact-card p{
margin-bottom:18px;
font-size:17px;
}

.contact-card i{
width:28px;
font-size:18px;
}

.contact-card a{
color:#0d6efd;
font-weight:600;
}

/*=========================================
MAP
=========================================*/

.map-section iframe{
display:block;
width:100%;
border:0;
}
/*=========================================
FOOTER
=========================================*/

.footer{
background:#0f172a;
color:#fff;
padding:80px 0 25px;
}

.footer h4{
font-size:22px;
font-weight:700;
margin-bottom:25px;
color:#fff;
}

.footer p{
color:#cbd5e1;
line-height:1.8;
}

.footer-links{
padding:0;
margin:0;
list-style:none;
}

.footer-links li{
margin-bottom:14px;
}

.footer-links a{
color:#cbd5e1;
transition:.3s;
}

.footer-links a:hover{
color:#ffc107;
padding-left:8px;
}

.footer .social-icons{
display:flex;
gap:15px;
margin-top:25px;
}

.footer .social-icons a{
width:45px;
height:45px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:#1e293b;
color:#fff;
font-size:18px;
transition:.35s;
}

.footer .social-icons a:hover{
background:#ffc107;
color:#111;
transform:translateY(-5px);
}

.footer hr{
border-color:rgba(255,255,255,.12);
margin:40px 0 25px;
}

.footer .fa-phone,
.footer .fa-whatsapp,
.footer .fa-envelope,
.footer .fa-location-dot{
margin-right:10px;
color:#ffc107;
}

.footer a{
color:#cbd5e1;
}

.footer a:hover{
color:#ffc107;
}

/*=========================================
FLOATING BUTTONS
=========================================*/

.call-btn,
.whatsapp-btn,
.back-to-top{

position:fixed;
width:58px;
height:58px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:22px;
box-shadow:0 10px 25px rgba(0,0,0,.20);
z-index:999;
transition:.35s;

}

.call-btn{

left:20px;
bottom:20px;
background:#0d6efd;

}

.whatsapp-btn{

right:20px;
bottom:20px;
background:#25D366;

}

.back-to-top{

right:20px;
bottom:95px;
background:#ffc107;
color:#111;
border:none;
cursor:pointer;
opacity:0;
visibility:hidden;

}

.back-to-top.show{

opacity:1;
visibility:visible;

}

.call-btn:hover,
.whatsapp-btn:hover,
.back-to-top:hover{

transform:translateY(-6px) scale(1.08);

}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#edf2f7;
}

::-webkit-scrollbar-thumb{
background:#0d6efd;
border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
background:#084298;
}

/*=========================================
UTILITY CLASSES
=========================================*/

.shadow-box{
box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.rounded-xl{
border-radius:20px;
}

.bg-gradient-primary{
background:linear-gradient(135deg,#0d6efd,#0f172a);
}

.text-gradient{
background:linear-gradient(90deg,#0d6efd,#ffc107);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/*=========================================
ANIMATIONS
=========================================*/

.fade-up{
animation:fadeUp .8s ease both;
}

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

.zoom-in{
animation:zoomIn .8s ease both;
}

@keyframes zoomIn{

0%{
opacity:0;
transform:scale(.8);
}

100%{
opacity:1;
transform:scale(1);
}

}

/*=========================================
IMAGE EFFECTS
=========================================*/

img{
transition:.35s;
}

.service-card:hover img,
.about img:hover{
transform:scale(1.03);
}

/*=========================================
SELECTION
=========================================*/

::selection{
background:#ffc107;
color:#111;
}
/*========== CASE STUDY SECTION ==========*/

.portfolio-case{

background:#fff;

transition:.35s;

border:1px solid #eee;

}

.portfolio-case:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.portfolio-case h3{

font-size:28px;

font-weight:700;

margin-bottom:15px;

}

.portfolio-case ul li{

font-size:15px;

margin-bottom:10px;

}
/*=============================
PREMIUM PORTFOLIO V2
==============================*/

.portfolio-card{

background:#fff;

transition:.4s;

border-radius:20px;

overflow:hidden;

}

.portfolio-card img{

height:250px;

width:100%;

object-fit:cover;

transition:.4s;

}

.portfolio-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.portfolio-card:hover img{

transform:scale(1.08);

}

.portfolio-card h4{

font-size:24px;

font-weight:700;

}

.portfolio-card p{

color:#6b7280;

min-height:90px;

}

.portfolio-card .badge{

font-size:14px;

padding:8px 15px;

}
/*=============================
CLIENT LOGOS
=============================*/

.client-logo img{
    opacity:.7;
    transition:.3s;
}

.client-logo img:hover{
    opacity:1;
    transform:scale(1.08);
}

.portfolio-case img{
    object-fit:cover;
    border:4px solid #f5f5f5;
}
/*==========================
PORTFOLIO HERO V3
==========================*/

.portfolio-v3-hero{

position:relative;

background:#08111f;

overflow:hidden;

padding:120px 0;

color:#fff;

}

.hero-overlay{

position:absolute;

inset:0;

background:

radial-gradient(circle at top right,#2563eb33,transparent 40%),

radial-gradient(circle at bottom left,#7c3aed33,transparent 40%);

}

.hero-badge{

display:inline-block;

background:#ffffff12;

padding:10px 20px;

border-radius:40px;

backdrop-filter:blur(10px);

margin-bottom:25px;

}

.portfolio-v3-hero h1{

font-size:64px;

font-weight:800;

line-height:1.1;

margin-bottom:25px;

}

.portfolio-v3-hero span{

color:#fbbf24;

}

.portfolio-v3-hero p{

font-size:18px;

opacity:.9;

line-height:1.8;

}

.hero-buttons{

margin:40px 0;

display:flex;

gap:20px;

flex-wrap:wrap;

}

.hero-stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:40px;

}

.hero-stats h2{

font-size:42px;

font-weight:800;

color:#fbbf24;

}

.hero-image{

position:relative;

}

.hero-image img{

width:100%;

border-radius:30px;

box-shadow:0 30px 80px rgba(0,0,0,.4);

}

.floating-card{

position:absolute;

background:#ffffff15;

backdrop-filter:blur(15px);

padding:20px;

border-radius:20px;

color:#fff;

min-width:180px;

box-shadow:0 20px 50px rgba(0,0,0,.2);

}

.card-one{

top:8%;

right:-40px;

}

.card-two{

bottom:20%;

left:-40px;

}

.card-three{

bottom:-20px;

right:40px;

}
/*==============================
PORTFOLIO V3 PROJECTS
==============================*/

.portfolio-v3-section{

padding:120px 0;

background:#f8fafc;

}

.section-heading{

max-width:760px;

margin:auto auto 70px;

}

.section-badge{

display:inline-block;

padding:10px 24px;

border-radius:50px;

background:#eef4ff;

color:#2563eb;

font-weight:600;

margin-bottom:20px;

}

.section-heading h2{

font-size:52px;

font-weight:800;

margin-bottom:20px;

}

.section-heading p{

font-size:18px;

color:#64748b;

}

.project-card{

background:#fff;

border-radius:28px;

overflow:hidden;

transition:.35s;

box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.project-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 80px rgba(0,0,0,.15);

}

.project-image{

position:relative;

overflow:hidden;

}

.project-image img{

width:100%;

height:260px;

object-fit:cover;

transition:.4s;

}

.project-card:hover img{

transform:scale(1.08);

}

.project-category{

position:absolute;

top:20px;

left:20px;

background:#2563eb;

color:#fff;

padding:8px 16px;

border-radius:50px;

font-size:14px;

font-weight:600;

}

.project-category.website{

background:#f59e0b;

}

.project-category.seo{

background:#10b981;

}

.project-content{

padding:28px;

}

.project-content h3{

font-size:28px;

font-weight:700;

margin-bottom:15px;

}

.project-content p{

color:#64748b;

line-height:1.8;

}

.project-metrics{

display:flex;

justify-content:space-between;

margin:30px 0;

text-align:center;

}

.project-metrics h4{

font-size:28px;

font-weight:800;

margin-bottom:5px;

}

.project-metrics span{

font-size:14px;

color:#64748b;

}

.project-btn{

display:flex;

justify-content:space-between;

align-items:center;

text-decoration:none;

font-weight:700;

color:#2563eb;

}
/*==============================
SHOWCASE
==============================*/

.showcase-v3{

padding:120px 0;

}

.showcase-list{

margin-top:40px;

}

.showcase-item{

display:flex;

gap:20px;

margin-bottom:30px;

}

.showcase-item i{

font-size:28px;

color:#2563eb;

margin-top:5px;

}

.laptop-mockup{

position:relative;

}

.laptop-mockup img{

border-radius:25px;

box-shadow:0 30px 80px rgba(0,0,0,.15);

}

.floating-kpi{

position:absolute;

background:#fff;

padding:20px;

border-radius:18px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

text-align:center;

}

.floating-kpi h3{

font-size:30px;

font-weight:800;

}

.one{

top:30px;

right:-20px;

}

.two{

bottom:80px;

left:-20px;

}

.three{

bottom:-20px;

right:80px;

}

/*==============================
DASHBOARD
==============================*/

.dashboard-section{

padding:120px 0;

background:#08111f;

color:#fff;

}

.dashboard-card img{

box-shadow:0 30px 80px rgba(0,0,0,.3);

}

.kpi-card{

background:#ffffff12;

backdrop-filter:blur(12px);

padding:30px;

border-radius:20px;

margin-top:25px;

text-align:center;

}

.kpi-card h2{

font-size:42px;

font-weight:800;

color:#fbbf24;

}

.kpi-card p{

margin:0;

opacity:.9;

}
/*==================================================
MAX SOLUTIONS INDIA
PREMIUM CSS V2
PART 5
RESPONSIVE CSS
==================================================*/

/*==========================
LAPTOP (1200px)
==========================*/

@media (max-width:1200px){

.hero h1{
font-size:52px;
}

.section-title h2{
font-size:38px;
}

.container{
padding:0 20px;
}

}

/*==========================
TABLET (992px)
==========================*/

@media (max-width:992px){

section{
padding:70px 0;
}

.hero{
padding:140px 0 80px;
text-align:center;
}

.hero h1{
font-size:42px;
}

.hero p{
margin:auto auto 30px;
}

.hero-img{
margin-top:40px;
}

.about-content{
margin-top:40px;
text-align:center;
}

.about-list li{
justify-content:center;
}

.case-stats{
grid-template-columns:repeat(3,1fr);
}

.stats-box{
margin-bottom:30px;
}

.footer{
text-align:center;
}

.social-icons{
justify-content:center;
display:flex;
flex-wrap:wrap;
}

}

/*==========================
MOBILE (768px)
==========================*/

@media (max-width:768px){

h1{
font-size:34px;
}

h2{
font-size:30px;
}

h3{
font-size:24px;
}

.hero{
padding:120px 0 70px;
}

.hero h1{
font-size:36px;
}

.hero p{
font-size:16px;
}

.btn{
width:100%;
margin-bottom:12px;
}

.section-title{
margin-bottom:40px;
}

.section-title h2{
font-size:30px;
}

.service-card{

padding:25px;

}

.portfolio-card{

margin-bottom:25px;

}

.case-card{

padding:25px;

}

.case-stats{

grid-template-columns:1fr;

gap:15px;

}

.cta{

padding:60px 20px;

}

.cta h2{

font-size:32px;

}

.footer{

padding:60px 0 25px;

}

.footer .col-lg-4{

margin-bottom:35px;

}

.call-btn,
.whatsapp-btn{

width:55px;

height:55px;

font-size:20px;

right:15px;

}

.call-btn{

bottom:145px;

}

.whatsapp-btn{

bottom:80px;

}

.back-to-top{

width:50px;

height:50px;

right:15px;

bottom:15px;

}

}

/*==========================
SMALL MOBILE (576px)
==========================*/

@media (max-width:576px){

.container{

padding:0 18px;

}

.hero h1{

font-size:30px;

}

.hero p{

font-size:15px;

}

.logo-text{

font-size:24px;

}

.navbar-brand{

font-size:24px;

}

.service-card{

padding:22px;

}

.service-icon{

width:70px;

height:70px;

font-size:28px;

}

.portfolio-content{

padding:20px;

}

.portfolio-content h3{

font-size:22px;

}

.case-card{

padding:20px;

}

.contact-box{

padding:22px;

}

.testimonial-card{

padding:25px;

}

.testimonial-card img{

width:75px;

height:75px;

}

.stats-box h2{

font-size:38px;

}

.cta h2{

font-size:28px;

}

.footer h3{

font-size:26px;

}

}

/*==========================
EXTRA SMALL DEVICES
==========================*/

@media (max-width:400px){

.hero h1{

font-size:27px;

}

.hero p{

font-size:14px;

}

.btn{

padding:12px 20px;

font-size:15px;

}

.section-title h2{

font-size:26px;

}

.stats-box h2{

font-size:34px;

}

.portfolio-meta{

flex-direction:column;

gap:8px;

}

.case-list li{

font-size:15px;

}

}

/*==========================
UTILITY CLASSES
==========================*/

.shadow-hover{

transition:.35s;

}

.shadow-hover:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.radius{

border-radius:20px;

overflow:hidden;

}

.text-primary{

color:var(--primary)!important;

}

.bg-light{

background:#f8fafc!important;

}

.bg-dark{

background:#08111f!important;

color:#fff;

}

/*=========================================
END OF STYLE.CSS
=========================================*/