/* import link from google fonts is here */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: normal;
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;                                    
    padding: 0;
}

/* Header (m)-------------------------------------------*/
.header1 {
    grid-area: header1;
}

/* About US Page --------------------------------------------- */
#aboutus {
    height: 100vh;                                                                                  
    background-color: white;
    display: grid;                                                                                  
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;                                         
    grid-template-rows: 1fr 1fr 1fr;                 
    grid-template-areas: 
        "header1 header1 header1 header1 header1 header1"
        ". mainarea-au mainarea-au mainarea-au mainarea-au ."
        "footer footer footer footer footer footer";
}
#mainarea-au {
    background: white;
    grid-area: mainarea-au;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    min-height: 1134;
}
#about_us {
    margin: 0;
    padding: 0;
}
.container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    /* max-width: 1300px; */
    /* margin: auto; */
}
.man-img {
    width: 100%;
}
.man-img img{
    width: 100%;
    padding: 5%;
}
.about-text{
    width: 100%;
    flex-wrap: wrap;
    flex-basis: 100%;
}
.about-text h1{
    font-size: 34px;
    font-weight: 800;
    margin: 20px 18px;
    padding-top: 10px;
}
.about-text h2{
    font-size: 24px;
    padding: 0 20px;
}
.about-text p{
   width: 80%;
   font-style: italic;
   padding: 20px 20px;
   text-align: justify;
   text-justify: inter-word;
}
.scheduleacall {
    display: flex;
    text-decoration: none;
    background-color: #546e7a;
    border: 1px solid #fafafa;
    border-radius: 0.7em;
    color: #fafafa;
    padding: 10px 30px;
    margin: 0 8px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 20px 20px;
    width: 280px;
}
.scheduleacall:hover {
    background-color: #607d8b;
    color: #bdbdbd;
}
.btn{
    padding: 20px 30px;
    margin: 40px 20px;
    background-color: #24ec9f07;
    border:none;
    line-height: 5px;
}
.btn a{
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    word-wrap: break-word;
    line-height: 1.6;
}
/* cards starts from here */
.card-box{
    background-color: #2e333109;
    display: flex;
    max-width: 1300px;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    width: 100%;
    margin-top: 20px;
    padding: 5%;
}
.about-us-card{
    background-color: #24ec9f09;
    width: 23%;
    min-height: 550px;
    /* align-items: center;
    justify-content: space-between;
    text-align: center; */
}
.card-icon img{
    width: 100px;
    padding: 5px;
    margin: 25px 0px 0px 0px;
    background-color: #fff;
    border-radius: 50%;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.about-us-card h1{
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 20px 0px 0px 0px;
}
.about-us-card p{
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    margin: 20px 20px;
    text-align: left;
}
.btn-2 {
    background-color: #fff !important;
}
.card2{
    background-color: #16885c10;
}
.card3{
    background-color: #14805621;
}
.card4{
    background-color: #1580572f;
}

/* Footer (m) -------------------------------------------*/
.footer {
    grid-area: footer;
}

/* ------------------------  RESPONSIVE DESIGN ------------------------------------------------------------------------ */

/* Small devices (landscape phones, less than 768px)  */
@media (max-width: 767.98px) {
    .container{
        display: flex;
        flex-wrap: wrap-reverse;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .about-text p{
        font-size: 19px;
        width: 475px;
        font-style: italic;
        padding: 20px 20px;
    }
     .man-img img{
        width: 400px;
        padding-top: 0px;
    }
    .about-text h2{
        margin-bottom: 0;
    }

    .about-text .btn{
        margin-bottom: 0;
        margin-top: 10px;
    }
    .about-us-card{
        max-width: 100%;
        width: 8500px;
        align-items: center;
        justify-content: center;
    }
    .card-box{
       flex-wrap: wrap;
       width: 380px;
       height: 250px;
    }
    .about-us-card{
        margin-bottom: 20px;
    }
}

