/*==========================================
Large Laptop
==========================================*/

@media (max-width:1400px){

.container{

max-width:1200px;

}

.hero-content h1{

font-size:64px;

}

.hero-grid{

gap:50px;

}

}

/*==========================================
Laptop
==========================================*/

@media (max-width:1200px){

.hero-grid,
.about-grid{

grid-template-columns:1fr;
text-align:center;

}

.hero-content{

order:2;

}

.hero-image{

order:1;
margin-bottom:50px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

}

.services-grid{

grid-template-columns:repeat(3,1fr);

}

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.process-grid{

grid-template-columns:repeat(2,1fr);

}

.portfolio-grid{

grid-template-columns:repeat(2,1fr);

}

.technology-grid{

grid-template-columns:repeat(4,1fr);

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*==========================================
Tablet
==========================================*/

@media (max-width:992px){

.section-title h2{

font-size:42px;

}

.hero-content h1{

font-size:52px;

}

.hero-content p{

font-size:18px;

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.technology-grid{

grid-template-columns:repeat(3,1fr);

}

.trusted-grid{

grid-template-columns:repeat(4,1fr);

}

.hero-wrapper{

max-width:500px;

}

}

/*==========================================
Mobile Navigation
==========================================*/

@media (max-width:768px){

.navbar{

height:80px;

}

.logo img{

height:45px;

}

.menu{

position:fixed;

top:80px;
left:-100%;

width:100%;
height:calc(100vh - 80px);

background:#081228;

display:flex;

flex-direction:column;

justify-content:flex-start;

align-items:flex-start;

padding:40px;

gap:25px;

transition:.4s;

overflow:auto;

}

.menu.active{

left:0;

}

.menu li{

width:100%;

}

.menu li a{

display:block;
width:100%;
font-size:18px;

}

.dropdown>a{

justify-content:space-between;

}

.mega-menu{

position:static;

transform:none;

width:100%;

display:none;

opacity:1;

visibility:visible;

padding:20px;

margin-top:15px;

grid-template-columns:1fr;

}

.dropdown.active .mega-menu{

display:grid;

}

.hamburger{

display:block;

}

.hero{

padding:140px 0 80px;

}

.hero-content h1{

font-size:42px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.hero-features{

flex-direction:column;

align-items:center;

}

.hero-wrapper{

max-width:100%;

}

.services-grid,
.why-grid,
.process-grid,
.portfolio-grid,
.stats-grid,
.testimonial-grid,
.footer-grid{

grid-template-columns:1fr;

}

.technology-grid{

grid-template-columns:repeat(2,1fr);

}

.trusted-grid{

grid-template-columns:repeat(2,1fr);

}

.section-title{

margin-bottom:45px;

}

.section-title h2{

font-size:34px;

}

.about-content h2{

font-size:38px;

}

.cta-box{

padding:40px 25px;

}

.cta-box h2{

font-size:32px;

}

.footer-grid{

text-align:center;

}

}

/*==========================================
Small Mobile
==========================================*/

@media (max-width:576px){

.container{

width:92%;

}

.hero-content h1{

font-size:34px;

}

.hero-content p{

font-size:17px;

}

.section-title h2{

font-size:30px;

}

.service-card,
.why-card,
.process-card,
.stat-card,
.testimonial-card,
.tech-card{

padding:28px 22px;

}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary{

width:100%;
text-align:center;

}

.technology-grid{

grid-template-columns:1fr;

}

.trusted-grid{

grid-template-columns:1fr;

}

.footer{

padding-top:70px;

}

.copyright{

font-size:14px;

}

}