@charset "utf-8";
/* CSS Document */

#aboutsec {
	margin: 100px auto 200px;
}

#map {
	width: 100%;
	height: 300px;
}

.mapiframe{
    width:100%;
    height:100%;
    border:0;
}

#abouttxtdiv {
    max-width: 900px;
    margin: 0 auto;
}

#policytopsec {
    margin-top: 100px;
    background-color: #1493D5;
    padding: 50px 20px;
    text-align: center;
}

h1#policyhed {
    font-family: 'CronosPro-bold-subhead', sans-serif;
    font-size: 60px;
    color: #fff;
    font-weight: normal;
    margin: 0;
}

h2#aboutsubhed {
    font-family: 'CronosPro-bold-subhead', sans-serif;
    font-size: 40px;
    color: #1493D5;
    font-weight: normal;
    margin: 0 0 25px;
}

p.abouttxt {
    font-family: 'CronosPro-regular', sans-serif;
    font-size: 20px;
    color: #000;
    line-height: 30px;
    margin: 0 0 20px;
}

#aboutagentsdiv {
    max-width: 900px;
    margin: 0 auto;
}

h2#aboutagentshed {
    font-family: 'CronosPro-bold-subhead', sans-serif;
    font-size: 30px;
    color: #1493D5;
    font-weight: normal;
    margin: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #ededed;
}

.aboutagentsrow {
    display: flex;
    gap: 30px;
}

.aboutagentcard {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: #f9f9f9;
    border: 1px solid #ededed;
    border-radius: 12px;
    padding: 25px;
    transition: box-shadow 0.2s;
    box-sizing: border-box;
}

.aboutagentcard:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.aboutagentimgdiv {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #FFF;
	outline: 3px solid #1493D5;
}

img.aboutagentimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

p.aboutagentname {
    font-family: 'CronosPro-bold-subhead', sans-serif;
    font-size: 25px;
    color: #000;
    margin: 0;
}

.aboutagentcontactitm {
    display: flex;
    align-items: center;
    gap: 8px;
}

img.aboutagenticon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

a.aboutagentlink {
    font-family: 'CronosPro-regular', sans-serif;
    font-size: 16px;
    color: #1493D5;
    text-decoration: none;
    transition: color 0.2s;
}

a.aboutagentlink:hover {
    color: #0f7ab5;
}







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

    #aboutsec {
        margin: 50px auto 100px;
    }



    .aboutagentsrow {
        flex-direction: column;
        gap: 20px;
    }

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

    .aboutagentcontactitm {
        justify-content: center;
    }
	
	#policytopsec {
        margin-top: 70px;
        padding: 35px 20px;
    }


}