/* ================= VARIABLES ================= */
:root {
  --primary: #ff0000;
	--primary-rgb: 255,0,0;
  --primary-dark: color-mix(in srgb, var(--primary), black 5%);
  --secondary: #FDC400;
   --secondary-dark: color-mix(in srgb, var(--secondary), black 20%);
  --bg-dark: #000;
  --bg-soft: #111111;
  --text-light: #fff;
  --text-muted: #aaa;
  --text-footer: #90A1B9;
}

/* ================= GLOBAL ================= */
.primary-text{
	color:var(--primary);
}
.secondary-text{
	color:var(--secondary);
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
}
H1{
font-size: 3.25rem;
font-weight: 700;
}
h2{
font-size: 2.625rem;
font-weight: 700;
}
p{
  font-size: 1rem;
  font-weight: 400;
}
.section {
  margin: 80px 0;
}

/* ================= BUTTON ================= */
.btn-primary {
  background: var(--primary);
  border: none;
  border-radius: 30px;
  padding: 10px 36px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  box-shadow: rgba(0,0,0,0.35) 0 5px 5px;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s linear;
	position:relative;
}
.btn-primary:before{
	background:url(../images/arrow-forward.svg) no-repeat 0 0;
	width: 18px;
    height: 18px;
    position: absolute;
    content: '';
    right: 40px;
    top: calc(50% - 9px);
    background-size: 18px;
    opacity: 0;
	transition: all 0.3s linear;
}
.btn-primary:hover,
.btn-primary:active {
  background: var(--primary-dark);
  box-shadow: rgba(0,0,0,0.15) 0 2px 2px;
}
.btn-primary:hover:before,
.btn-primary:active:before {
    right: 20px;
    opacity: 1;
	transition: all 0.3s linear;
}
/* ================= NAVBAR ================= */
.top-nav{
  background: url(../images/Nav-top-BG.svg) no-repeat 50% 100%;
}
.navbar {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  border-radius: 100px;
    padding: 17px 20px;

}

.navbar-brand {
  padding: 0;
}

.nav-link {
  color: var(--text-light) !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: rgba(0,0,0,0.35) 0 5px 5px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 20px !important;
}

.nav-link:hover,
.nav-link.active,
.current-menu-item .nav-link.active {
  color: var(--primary) !important;
}
/* Mobile Right Call Icon */
.call-btn {
  display: none;
}



/* ================= HERO ================= */
#heroCarousel .carousel-caption,
#innerCarousel .carousel-caption {
      padding: 0;
      bottom: 80px;
      left: 0;
      right: 0;
      width: 100%;
}
#heroCarousel .carousel-item {
  height: 80vh;
  background: linear-gradient(135deg, #1a1a1a, #1a1a1a);
  /*display: flex;*/
  align-items: center;
}
#innerCarousel .carousel-item {
  height: 50vh;
  background: linear-gradient(135deg, #1a1a1a, #3a0f0f);
  display: flex;
  align-items: center;
}
#heroCarousel .hero-text{
  text-align: start;
}
#heroCarousel .hero-text h1 {
  margin-bottom: 30px;
}

#heroCarousel .hero-text p {
  color: var(--text-light);
}

/* ================= WELCOME ================= */
.welcome {
  
  position: relative;
}

.welcome-img {
     margin-top: -170px;
}

.welcome-img img,
.round-img img {
  border-radius: 20px;
  width: 100%;
}
.about-img-shadow{
  box-shadow: rgba(255,0,0,0.5) 0 0 100px;
  transition: all 0.3s linear;
}
.about-img-shadow:hover{
  transform: translateY(-12px);
  transition: all 0.3s linear;
}


/* ================= PORTFOLIO ================= */
.portfolio-slider .slick-list{
  padding: 30px 0 !important;
  
}
.portfolio-card {
  background: #111014;
  border-radius: 15px;
  padding: 30px;
  margin: 0;
  height: 100%;
  border: #323232 solid 1px;
  transition: all 0.3s linear;
}
.portfolio-card:hover{
  transition: all 0.3s linear;
  background: #201E25;
}
.portfolio-card.slick-center,
.portfolio-card.slick-center:hover
{
transition: all 0.3s linear;
scale: 1.1;
background: #201E25;
box-shadow: rgba(0,0,0,0.7) 0 0 40px;
}
.portfolio-card:hover
{
transition: all 0.3s linear;
scale: 1.075;
background: #201E25;
box-shadow: rgba(0,0,0,0.7) 0 0 40px;
}
.portfolio-card img {
  width: 100%;
  border-radius: 10px;
	max-height:220px;
}

.portfolio-card .tag {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 30px;

}
.portfolio-card h5 {
 font-weight: 600;
}
.portfolio-card p{
  color: #848484;
}

.portfolio-slider .slick-arrow{
  background-color: rgba(217,217,217,0.2);
  border: rgba(217,217,217,0.3) solid 1px;
 width: 50px;
 height: 50px;
 line-height: 50px;
 text-align: center;
 border-radius: 50%;
 text-indent: -99999px;
     position: absolute;
    z-index: 9;
    top: 50%;
}
.portfolio-slider .slick-arrow:hover{
  background-color: rgba(217,217,217,0.4);
  border: rgba(217,217,217,0.5) solid 1px;
}
.portfolio-slider .slick-arrow.slick-prev{
  background-image: url(../images/arrow-left.svg);
   background-repeat: no-repeat;
  background-position: 50% 50%;  
  left: 0;
}
.portfolio-slider .slick-arrow.slick-next{
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  right: 0;
}
.portfolio-card .portfolio-link{
  background: url(../images/gotopage-icon.svg) no-repeat 100% 50%;
  color: var(--secondary);
  font-size: 0.8125rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  padding-inline-end: 18px;
}
.portfolio-card .portfolio-link:hover{
  color: var(--secondary-dark);
}


/* ================= FOOTER FIX ================= */
footer {
  background: var(--bg-soft);
  position: relative;
  z-index: 5;
}

.footer-top {
  padding: 60px 12px 36px 12px;
  color: var(--text-footer);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-footer);
  border-top: 1px solid #353535;
}

footer h5, footer h6 {
  color: #fff;
}

footer p, footer a {
  color: var(--text-footer);
  font-size: 14px;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.section.main-content p{
	font-size: 1.25rem !important;
	font-weight: 500;
}

/* ================= contact page ================= */
/* Row item */
.contact-item {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
}

/* Icon Box */
.icon-box {
  width: 64px;
  height: 64px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.icon-box i {
  color: #fff;
  font-size: 26px;
}

/* Text */
.contact-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-text h5{
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.contact-text p{ 
margin-bottom:0;
}
/* QR Section */
.qr-box {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 30px;
  border: #323232 solid 1px ;
}

.qr-box h5 {
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.qr-box img {
  width: 150px;
}
.contact-form{
	background:#201E25;	
}
.contact-form .row p{
	margin-bottom:0 !important;
}
.contact-form .row label{
	color:#848484;
	font-size: 0.875rem;
	font-weight:600;
	padding-bottom:8px;
}
.contact-form .row .form-control,
.contact-form .row .form-select
{
	background:#000;
	border:#000 solid 1px;
	border-radius:0;
	min-height:42px;
	    color: #b1b1b1;
}
.contact-form .row .form-select {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23848484' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") #000 no-repeat;
    background-size: 14px;
    background-position: 98% 50%;
}


.contact-form .row .btn.btn-primary{
	background: var(--primary) url(../images/send-icon.svg) no-repeat 80% 50%;
    padding-right: 56px;
    float: right;
}

/* ================= about ================= */
.client-item{
border: #323232 solid 1px;
background: url(../images/bullet.png) no-repeat 18px 23px #000;
padding: 18px;
padding-left: 40px;
height: 100%;
font-weight: 700;
font-size: 1rem;
letter-spacing: 2px;
transition: all 0.3s linear;
	border-radius:8px;
}
.client-item:hover{
  background: url(../images/bullet.png) no-repeat 18px 23px #201E25;
transition: all 0.3s linear;
scale: 1.075;
box-shadow: rgba(255, 0, 0, 0.2) 0 0 20px;

}

/* ================= pagination ================= */
.pagination li{
  padding: 0;
  margin: 0;
  background: transparent;
}
.pagination li a{
width: 40px;
height: 40px;
border-radius: 8px !important;
background: #D9D9D9;
text-align: center;
color: #565656 !important;
font-size: 20px;
transition: all 0.3s linear;
    border: none;
    padding: 0;
    align-items: center;
    display: flex;
    justify-content: center;

}
.pagination li.disabled a{
background: #565656;
}
.pagination li a:hover,
.pagination li a.active{
background: var(--primary);
color: var(--text-light) !important;
transition: all 0.3s linear;
}

/* Services */
 .service-icon {
    width: 54px;
    height: 54px;
    background: rgba(var(--primary-rgb),0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
	 transition: 0.3s ease;
}

.service-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    /*filter: brightness(0) invert(1);*/ /* makes icon white */
}

.portfolio-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    
}


.cta-section {
    margin-top: 60px;
}

.cta-left {
    background: #000;
    color: #aaa;
    min-height: 300px;
    padding: 60px 20px;
}

.cta-right {
    background: linear-gradient(135deg, #2c2c3a, #1f1f2b);
    color: #fff;
    min-height: 300px;
    padding: 60px 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-price {
    color: var(--secondary) !important;
    font-weight: bold;
    margin-bottom: 25px;
}

.cta-btn {
    background: #ff1a1a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #cc0000;
    color: #fff;
}

.cta-icon i {
    font-size: 32px;
    color: #ff1a1a;
}
/* End Services */




/* ================= responsive ================= */
@media (min-width: 992px){
	
	#contact .contact-info{
		width:320px;
	}
	
#menu-top-menu{overflow: hidden !important;}
#menu-top-menu a{
	position:relative;
	-webkit-transition:all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-o-transition:all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition:all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
#menu-top-menu a:after{
	content:attr( data-menu-name ); 
	line-height:100%;
	display:block;
	width:100%; 
	height:100%; 
	position:absolute;
	left:0; 
	top:0;
	text-shadow: rgba(0, 0, 0, 0.35) 0 5px 5px;
	line-height:36px;
    font-size: 11px;
    font-weight: 700;
	text-align:center;
	-webkit-transform:translateY( -100% );
	-ms-transform:translateY( -100% );
	-o-transform:translateY( -100% );
	transform:translateY( -100% );
}
#menu-top-menu a:hover{
	-webkit-transform:translateY( 100% );
	-ms-transform:translateY( 100% );
	-o-transform:translateY( 100% );
	transform:translateY( 100% );
}
#menu-top-menu .current_page_item a.nav-link 
{    -webkit-transform: translateY(100%);
    -ms-transform: translateY( 100% );
    -o-transform: translateY( 100% );
    transform: translateY(100%);
    color:var(--primary) !important;
}
}
@media (max-width: 991px) {
  .navbar-toggler{
    background-color: var(--primary) !important;
    color: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-align: center;
    padding: 0;
}
.navbar-collapse{
      position: absolute;
    top: 0px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 35px 35px 20px 20px;
    padding: 70px 20px 17px;
    width: 100%;
    left: 0px;
    z-index: -1;
}
.navbar-collapse .nav-link{
  letter-spacing: 2px;
  font-size: 14px;
    font-weight: 600;
    border-bottom: rgba(255, 255, 255, 0.1) solid 1px;
}
.navbar-collapse ul li:last-child .nav-link{
    border-bottom: none;
}
#menu-top-menu .current_page_item a.nav-link 
{  
    color:var(--primary) !important;
}	
  H1{
font-size: 2.25rem;
font-weight: 700;
}
h2{
font-size: 1.625rem;
font-weight: 700;
}
p{
  font-size: 0.875rem;
  font-weight: 400;
}
.btn-primary {
    padding: 10px 30px;
    letter-spacing: 2px;
}
  .call-btn {
        display: inline-block;
        font-size: 20px;
        margin-right: 10px;
        background-color: var(--primary) !important;
        border-radius: 50%;
        width: 34px;
        height: 34px;
        text-align: center;
        padding: 0;
    }
  .welcome-img {
    margin-top: 30px;
  }
  .about-img-shadow {
    box-shadow: rgba(255, 0, 0, 0.5) 0 0 50px;
    transition: all 0.3s linear;
}
  .portfolio-slider .slick-list{
  padding: 30px 180px !important;
  }
	#heroCarousel .carousel-item {
    height: auto;
	}
	#heroCarousel .carousel-caption,
	#innerCarousel .carousel-caption
	{
		bottom:30px;
	}
}
@media (max-width: 767px) {
    H1{
font-size: 1.5rem;
font-weight: 700;
}
h2{
font-size: 1.25rem;
font-weight: 700;
}
.btn-primary {
    padding: 10px 32px;
    letter-spacing: 1px;
}
.portfolio-slider .slick-list{
  padding: 30px 120px !important;
  }
	.contact-info{
		    background: #111014;
    border-radius: 15px;
    padding: 20px;
    margin: 0;
    border: #323232 solid 1px;
	}
	.btn-primary:hover:before,
	.btn-primary:active:before{
    right: 15px;
	}
}
@media (max-width: 575px) {
  .portfolio-slider .slick-list{
  padding: 30px 50px !important;
  
}
.home .portfolio-slider	.portfolio-card img{
		max-height:120px;
	}	
}