* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
} */

.header {
    background-color: #ffffff;
    height: 60px;
}

.container {
    /* border: 2px solid red; */
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_left img {
    width: 75px;
    height: 65px;
    color: #2D3748;
    cursor: pointer;

}

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

.header_right nav ul li {
    padding: 10px;
}

.header_right nav ul li a {
    text-decoration: none;
    cursor: pointer;
    color: #4A5568;
    font-family: var(--font-sans);
}

nav ul li a:hover {
  color: #2B6CB0;
  border-bottom: 3px solid #2B6CB0;
}

/* header section end */

/* hero section start  */
.hero_section {
    background-color: #EDF2F7;
    display: flex;
    flex-wrap: wrap;
    padding: 80px 24px 80px 24px;
}

.hero_left {
    flex: 1;
}

.hero_left h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #4a5568;
    font-family: var(--font-sans);

}

.hero_left h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 59px;
    color: #4a5568;
    margin: 0 0 27px 0;
    font-family: var(--font-sans);

}

.btn1 {
    display: inline-block;
    width: 84.18px;
    height: 34.13px;
    font-size: 14.4px;
    line-height: 23.04px;
    text-decoration: none;
    border: 1px solid #718096;
    border-radius: 5px;
    text-align: center;
    vertical-align: middle;
    color: #718096;
    margin: 0 0 16px 0;
    padding: 5px 13px;
    font-family: var(--font-sans);
}

.btn1:hover {
    cursor: pointer;
    color: #FFFFFF;
}

.btn2 {
    display: inline-block;
    width: 123.12px;
    height: 34.13px;
    font-size: 14.4px;
    line-height: 23.04px;
    border: 1px solid #55555500;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    color: #718096;
    margin: 0 0 16px 0;
    padding: 5px 13px;
    font-family: var(--font-sans);

}

.btn2:hover {
    cursor: pointer;
    background-color: #444444;
    color: #FFFFFF;
}

.hero_right {
    flex: 1;
    /* border: 2px solid teal; */
}

.hero_right img {
    width: 100%;
}

/* hero section end */

/* businesses section start  */
.businesses_section {
    background-color: #ffffff;
}

.businesses_heading h2 {
    font-size: 28px;
    padding: 20px;
    font-weight: 700;
    line-height: 42px;
    color: #1a202c;
    text-align: center;
    font-family: var(--font-sans);
}

.highlights_text_text {
    font-size: 17px;
    font-weight: 700;
    color: #2d3748;
    font-family: var(--font-sans);
}

.businesses_heading p {
    font-size: 17px;
    line-height: 27px;
    color: #2d3748;
    text-align: center;
    font-family: var(--font-sans);
}

.businesses_container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 20px;
    padding: 40px 20px;
}

.card {
    flex: 0 1 calc(50% - 10px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #EDF2F7;
}

.card img {
    width: 100px;
    height: 100px;
}

.card h2 {
    font-size: 28px;
    line-height: 42px;
    font-weight: 700;
    margin: 5px 0 10px 0;
    font-family: var(--font-sans);
}

.card p {
    font-size: 17px;
    line-height: 27px;
    color: #555555;
    margin: 5px 0 10px 0;
    font-family: var(--font-sans);
}

.card a {
    display: inline-block;
    width: 111px;
    height: 44px;
    margin: 10px 0;
    font-size: 17px;
    line-height: 27px;
    border-radius: 5px;
    background-color: #454545;
    color: #ffffff;
    border: 5px solid #454545;
    font-family: var(--font-sans);
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
}

.card:hover {
    background-color: #D7ECFB;
}

/* businesses setion end */

/* team section start */
.team_section {
    background-color: #ffffff;
}

.team_section_heading {
    margin-bottom: 14px;
    font-size: 28px;
    font-weight: 700;
    line-height: 24px;
    color: #1a202c;
    text-align: center;
}

.team_container {
    display: flex;
    padding: 10px 10px;
    margin: 20px;
}

.team_card {
    flex: 1 0 calc(25% - 20px);
    /* border: 2px solid tomato; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 10px;
    margin: 10px;
}

.team_name {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-top: 10px;
    font-family: var(--font-sans);
    color: #1a202c;
    text-align: center;
}

.team_hading {
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 10px;
    font-family: var(--font-sans);
    font-style: italic;
    text-align: center;
}

.team_details {
    font-size: 17px;
    line-height: 25px;
    font-weight: 400;
    text-align: center;
    color: #2D3748;
}

.highlights_text {
    font-size: 17px;
    font-weight: 700;
    line-height: 27px;
    color: #2d3748;
    font-family: var(--font-sans);
}

.team_card img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

/* team section endl */

/* glance sectiion start */
.glance_section {
    background-color: #EDF2F7;
}

.glance_section_heading {
    margin-bottom: 14px;
    padding: 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 24px;
    color: #1a202c;
    text-align: center;
}

.glance_container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    /* height: 250px; */
}

.glance_card {
    flex: 1 0 calc(20% - 10px);
    border: 2px solid #eeeeee;
    margin: 5px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.glance_card img {
    width: 100px;
    height: 100px;
}

.glance_name {
    font-size: 37px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-align: center;
    color: #1A202C;
    font-family: var(--font-sans);
}

.glance_details {
    font-size: 17px;
    line-height: 27px;
    text-align: center;
    color: #555555;
    font-family: var(--font-sans);
}

/* glance section end */

/* footer section start */
.footer_section {
    background-color: #2D3748;
    padding: 5px;
}

.footer_container {
    /* border: 2px solid tomato; */
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
}

.footer_left {
    font-size: 17px;
    line-height: 27px;
    font-family: var(--font-sans);
    color: #ffffff;
}

.footer_right {
    display: flex;
}

.footer_right p {
    font-size: 17px;
    line-height: 27px;
    font-family: var(--font-sans);
    color: #ffffff;
}

.footer_right img {
    width: 27px;
    height: 27px;

}

/* footer section end */

@media (max-width: 672px) {

    /* .container{
        display: flex;
        flex-direction: column;
        border: 2px solid red;
    } */
    .hero_container {
        /* border: 2px solid tomato; */
        display: flex;
        flex-direction: column;
    }

    .businesses_container {
        display: flex;
        flex-direction: column;
    }

    .team_container {
        display: flex;
        flex-direction: column;
    }

    .glance_container {
        display: flex;
        flex-direction: column;
    }

    .footer_container {
        display: flex;
        flex-direction: column;
    }

}