@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.header
{
    width: 100%;
    background-color: #d6d3d3;
    height: 70px;
    display: flex;
    padding-left: 10%;
    padding-right: 10%;
    justify-content: space-between;
}

.logo
{
    width: 15%;
    height: 70px;
    /*background-color: yellow;*/
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
}

.nav
{
    width: 30%;
    height: 70px;
    /*background-color: blue;*/
}

.nav-links
{
    height: 70px;
    width: 100%;
    /*background-color: red;*/
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
}

.banner
{
    width: 100%;
    height: 700px;
    background-color: #d6d3d3;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 30px;
    display: flex;
    align-items: center;
}

.details
{
    width: 60%;
    padding: 20px;
    /*background-color: white;*/
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
}

.t1
{
    font-size: 60px;
}

.t2
{
    font-size: 70px;
    font-weight: 700;
    color: rgb(101, 101, 195);
}

.cta
{
    padding: 15px 40px;
    font-size: 20px;
    margin-top: 35px;
    color: white;
    background-color: rgb(101, 101, 195);
    border: 2px solid rgb(101, 101, 195);
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s; 
}

.cta:hover
{
    background-color: transparent;
    color: rgb(101, 101, 195);
}

.person
{
    /*align-self: flex-end;*/
    background-color: rgb(101, 101, 195);
    border-radius: 100px;
    width: 500px;
    height: 500px;
}

.jeevan-png
{
    width: 500px;
    height: 500px;
    border-radius: 100px;
}

.services
{
    width: 100%;
    padding: 30px 10%;
    /*background-color: red;*/
}

.section-tittle
{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 200;
}

.section-child
{
    width: 100%;
    padding: 30px 0px;
    /*background-color: white;*/
    margin-top: 30px;
    display: flex;
    column-gap: 4%;        
}

.service
{
    width: 22%;
    /*background-color: yellow;*/
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
    row-gap: 15px;
    box-shadow: 0 0 2px gray;
    border-radius: 10px;

}

.icon
{
    padding: 50px;
    font-size: 70px;
    align-self: center;
    color: #4a4a4a;
}

.service-text
{
    font-size: 15px;
}

.service-btn
{
    padding: 12px 25px;
    background-color: rgb(101, 101, 195);
    border: 2px solid rgb(101, 101, 195);
    color: white;
    border-radius: 10px;
    align-self: center;
}

.achievements
{
    padding: 30px 10%;
    background-color: #d6d3d3;;
    font-family: "Montserrat", sans-serif;
}

.achievement
{
    width: 18%;
    padding: 50px;
    /*background-color: yellow;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

.achievements-child
{
    column-gap: 2.5%;
}

.number
{
    font-size: 45px;
    font-weight: bold;
}

.tag
{
    font-size: 12px;

}

.quote
{
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-image: url(https://images.pexels.com/photos/1714208/pexels-photo-1714208.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
}

.overlay
{
    width: 100%;
    height: 100%;
    padding: 30px 10%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
}

.quote-area
{
    width: 100%;
    padding: 30px 0px;
    /*background-color: white;*/
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inp-email
{
    width: 70%;
    height: 60px;
    border: 2px solid gray;
    font-size: 18px;
    text-indent: 20px;
    border-radius: 10px;
    background-color: transparent;
    outline: none;
}

::placeholder
{
    color: white;
}

.clients
{
    width: 100%;
    padding: 30px 10%;
    /*background-color: red;*/
}

.client-sction-child
{
    /*background-color: white;*/
    column-gap: 5%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
}

.client-img
{
    width: 5%;
    filter: grayscale(100%);
    transition: .3s;
    cursor: pointer;
}

.client-img:hover
{
    filter: grayscale(0);
    transform: scale(1.2);
}

.footer
{
    width: 100%;
    padding: 30px 10%;
    background-color: #4a4a4a;
    font-family: "Montserrat", sans-serif;
    color: white;
}

.footer-child
{
    width: 22%;
    padding: 20px 20px;
    /*background-color: gray;*/
    display: flex;
    flex-direction: column;
    row-gap: 10px;

}

.footer-list
{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.map
{
    width: 46%;
    padding: 0;

}

.desc
{
    font-weight: 500;
    /*font-family: Verdana, Geneva, Tahoma, sans-serif;*/
}