@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;

}

.orange {
    color: orangered;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background-color: black;
    color: white;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    cursor: url(../img/missile-\ normal.cur), pointer;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: orange;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 70vw;
    margin: auto;
    margin-top: 4rem;
    background-color: rgb(225, 225, 225);
    box-shadow: 0 0 10px 1px rgb(168, 168, 168);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
}

.content p {
    text-align: justify;
    margin-top: 1rem;
}

.container h1 {
    font-weight: bolder;
    /* background-image: url(../img/missile.png); */
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.card {
    margin-top: 1rem;
}

.imgsection {
    width: 20rem;
    height: 10rem;
    border: 5px solid orange;
    border-bottom: 0;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* object-fit: cover; */
}

.description {
    width: 20rem;
    height: 9rem;
    border: 5px solid orange;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.img1 {
    /* width:12rem; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    /* object-fit:fill; */
}

.img2 {
    width: 15rem;
    /* object-fit:fill; */
}

/* .imgsection .img1{
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.formcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70vw;
    /* border: 2px solid red; */
}

input {
    margin: 1rem;
    width: 70vw;
    height: 2rem;
    border: 1px solid orange;
    background-color: rgb(255, 213, 136);
    /* border-radius: 20px; */
    /* padding-left: 10px; */
    /* color: white; */
    text-align: center;
}

textarea {
    text-align: justify;
    margin: 1rem;
    width: 70vw;
    height: 10rem;
    border: 1px solid orange;
    background-color: rgb(255, 213, 136);
    resize: none;
    /* border-radius: 20px; */
    /* padding-left: 10px; */
    /* color: white; */
}

.checkbox {
    width: 01rem;
}

.check {
    display: flex;
    align-items: center;
}

button {
    width: 70vw;
    height: 2rem;
    background-color: orange;
    border: 0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.5s;
}



button:hover {
    transition: 0.5s;
    background-color: rgb(255, 132, 0);
}

.testimoniallist {
    display: flex;
    flex-wrap: wrap;
    width: 70vw;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.testimonial {
    /* border: 3px solid red; */
    margin: 1rem;
}

.flag {
    width: 3rem;
    /* border: 2px solid red; */
    border-radius: 50%;
}

.info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    padding-bottom: 5px;
    /* padding: 20px 0 0 20px; */
    border-bottom: 1px solid;
}

.designation {
    margin-left: 20px;
}

.experience {
    text-align: justify;
}

.arsenal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* margin-top: 1rem; */
}

.weapons {
    display: flex;
    margin-top: 2rem;
    justify-content: center;
    /* border: 2px solid red; */

}

.weaponimg {
    width: 15rem;
    height: 10rem;
    object-fit: cover;
    overflow: hidden;
    margin-right: 1rem;
}

.img3 {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* margin-right: 15px; */
    /* padding: 1px 1px; */
}

.weapondesc {
    width: 60vw;
    text-align: justify;
    /* padding: 0 5px 0 5px; */
}

@media only screen and (max-width: 688px) {

    .weapons{
        flex-direction: column;
        align-items: center;
    }
}

@media only screen and (max-width: 625px) {

    nav{
        justify-content: center;
    }
    nav ul{
        justify-content: center;
    }
}
