/*=========================================
  responsive.css
=========================================*/

/* 1600px+ */
@media (min-width:1600px){

    :root{
        --container:1400px;
    }

    .hero h1{
        font-size:96px;
    }

    .hero p{
        font-size:20px;
    }

}

/* ========================= */
/* Laptop */
/* ========================= */

@media (max-width:1200px){

    .hero h1{
        font-size:64px;
    }

    .cards{
        grid-template-columns:repeat(2,1fr);
    }

    .features .container{
        grid-template-columns:repeat(2,1fr);
    }

    .about-grid{
        gap:50px;
    }

}

/* ========================= */
/* Tablet */
/* ========================= */

@media (max-width:992px){

    .header .container{
        height:80px;
    }

    .menu{
        display:none;
    }

    .burger{
        display:flex;
        flex-direction:column;
        gap:5px;
        cursor:pointer;
    }

    .burger span{
        width:28px;
        height:2px;
        background:#fff;
        transition:.3s;
    }

    .hero{
        min-height:100vh;
        text-align:center;
    }

    .hero-content{
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero h1{
        font-size:56px;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-image{
        order:-1;
    }

    .about-content{
        text-align:center;
    }

    .about-content ul{
        /* display:inline-block; */
        text-align:left;
    }

    .section-title h2{
        font-size:46px;
    }

    .cta h2{
        font-size:46px;
    }

}

/* ========================= */
/* Mobile */
/* ========================= */

@media (max-width:768px){

    section{
        padding:80px 0 !important;
    }

    .header .container{
        height:74px;
    }

    .logo img{
        height:42px;
    }

    .btn-header{
        /* display:none; */
    }

    .hero{
        padding-top:80px;
    }

    .hero h1{
        font-size:46px;
    }

    .hero p{
        font-size:16px;
        line-height:1.8;
    }

    .subtitle{
        letter-spacing:2px;
        font-size:12px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .features .container{
        grid-template-columns:1fr;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:40px;
    }

    .contacts h2{
        font-size:42px;
    }

    .contacts a{
        font-size:22px;
    }

}

/* ========================= */
/* Small Mobile */
/* ========================= */

@media (max-width:480px){

    .container{
        width:92%;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:15px;
    }

    .section-title h2{
        font-size:36px;
    }

    .about-content h2{
        font-size:34px;
    }

    .cta h2{
        font-size:34px;
    }

    .card h3{
        font-size:26px;
    }

    .feature{
        padding:30px 20px;
    }

    .card-body{
        padding:22px;
    }

    .price strong{
        font-size:20px;
    }

    .contacts a{
        font-size:20px;
    }

}

/* ========================= */
/* Mobile Menu */
/* ========================= */

@media (max-width:992px){

    .menu.active{

        display:flex;

        flex-direction:column;

        position:fixed;

        top:74px;
        left:0;

        width:100%;

        padding:30px;

        background:#14091C;

        gap:22px;

        border-top:1px solid rgba(255,255,255,.08);

        animation:menuFade .3s ease;

    }

}

@keyframes menuFade{

    from{

        opacity:0;
        transform:translateY(-20px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}