/* media queries */

@media (max-width:1200px) {
    .about__choose {
        .section__content {
            .paragraph {
                max-width: 350px;
            }
        }
    }

    .capabilites__section {
        .wedo__services {
            grid-template-columns: repeat(3, 1fr);
        }

        .wedo__services>.card:nth-child(4) {
            grid-column: 2 / 3;
        }
    }


}

@media (max-width:950px) {

    .about__choose {
        gap: 64px;
        align-items: start;
        flex-direction: column;

        .section__content {
            .paragraph {
                max-width: 850px;
            }
        }
    }

    .hero__section {
        .hero__img {
            display: none;
        }
    }

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

@media (max-width:500px) {
    .capabilites__section {
        .wedo__services {
            display: flex;
            flex-direction: column;
        }
    }
}

@media (max-width:1200px) {

    .tab__off {
        display: none;
    }

    .pc__off {
        display: flex !important;
    }

    .about__section {
        .section__content {
            align-items: center;

            .heading {
                text-align: center;
            }

            .paragraph {
                text-align: center;
            }
        }
    }
}



@media (max-width:620px) {

    .heading {
        font-size: 42px;
    }

    .center__content {
        .title__container {
            .title {
                font-size: 60px;
            }

            .leftimg {
                display: none;
            }

            .rightimg {
                display: none;
            }
        }
    }

}

@media (max-width:450px) {
    .btn {
        width: 100%;
    }
}



@media (max-width:996px) {
    .nav__bar {
        position: relative;
        .nav__links{
            backdrop-filter: blur(10px);
            background-color: #E9FAF7;
            flex-direction: column;
            justify-content: center;
            z-index: 1;
            left: 0;
            top: -500px;
            height: 400px;
            width: 100%;
            position: absolute;
            transition: .3s;
        }
        .active__navlinks{
            top: 0;
        }
        .menu__center {
            z-index: 1;
            display: block;
        }
    }

    .service__container{
        gap: 48px;
        flex-direction: column;
    }

    .reverse{
        flex-direction: column-reverse;
    }
}

/* media queries */

@media (max-width:1200px) {

    .wedo__section {
        flex-direction: column;
        align-items: center;

        .wedo__content {
            text-align: center;
            align-items: center;

            .heading {
                max-width: 600px;
            }
        }

    }

    .about__section {
        flex-direction: column;
    }

    .choose__us {
        .section__cards {
            grid-template-columns: 1fr 1fr;
        }
    }

}

@media (max-width:620px) {

    .hero__section {
        .hero__img {
            display: none;
        }
    }

    .choose__us {
        .section__cards {
            grid-template-columns: 1fr;
        }
    }

    .newsletter__section {

        .mobile__input {
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 20px;

            .btn {
                width: 100%;
            }
        }

        .input {
            display: none;
        }
    }

    .footer__section {
        flex-direction: column;
    }

    .footer__copy {
        gap: 20px;
        flex-direction: column;

        .email {
            align-items: center;
        }
    }
}