* {
    padding: 0px;
    margin: 0px;
}

html {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
    position: relative;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: white;
}

p {
    font-size: 16px;
}

h1 {
    font-size: 48px;
    color: #000;
}  

h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
}  


h3 {
    font-size: 64px;
    color: #000;
}  

.secondaryCta {
    background: #fff;
    color: #1E4E7E;
    border: #1E4E7E 1px solid;
    width: fit-content;
    padding: 1em 2em;
    border-radius: 5px;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.secondaryCta:hover {
    background-color: #1E4E7E;
    color: white;
}

header {
    position: relative;
    justify-self: center;
    max-width: 1200px;
}

.header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
    justify-content: space-between;
    position: relative;
}

.headerWidth {
    width: 70%;
}

.heroImg {
    width: 700px;
    position: absolute;
    bottom: -1px;
    right: 0;
}

.accreditations {
    background: white;
    width: fit-content;
    margin-top: 4em;
    border-radius: 100px;
}

.privacyContainer {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 8em;
    padding-bottom: 8em;
}

nav {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    background: white;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 100;
}

ul {
    display: flex;
    align-items: center;
}

li {
    list-style-type: none;
}

li {
    margin-right: 2em;
}

li:last-child {
    margin-right: 0px;
}

.navHouse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.navLink {
    color: black;
    transition: 0.3s;
}

.navLink:hover {
    color: #347FD0;
}


.navCta {
    background: #1E4E7E;
    color: white;
    width: fit-content;
    padding: .75em 1.25em;
    border-radius: 5px;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.navCta:hover {
    background-color: #0B3156;
}

.process {
    display: flex;
    align-items: center;
    justify-self: center;
    width: 100%;
    max-width: 1200px;
}

.mainCta {
    background: #1E4E7E;
    color: white;
    width: fit-content;
    padding: 1em 2em;
    border-radius: 5px;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.mainCta:hover {
    background-color: #0B3156;
}

 .svgSpacing {
    margin-right: 10px;
 }

.bigText {
    font-size: 24px;
    line-height: 1.5;
}

.mt-bg {
    margin-top: 45px;
}

.mt-md {
    margin-top: 20px;
}

.mt-sm {
    margin-top: 10px;
}

.mt-xsm {
    margin-top: 5px;
}

.mb-bg {
    margin-bottom: 45px;
}

.mb-md {
    margin-bottom: 20px;
}

.mb-sm {
    margin-bottom: 10px;
}

.mb-xsm {
    margin-bottom: 5px;
}

.mr-bg {
    margin-bottom: 45px;
}

header {
    height: 97vh;
    display: flex;
    align-items: center;
    /* border-bottom: 2px solid #A9C8EA; */
    justify-content: center;
}


section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blueBackground {
    background-color: #F4F6F9;
}

.coverage {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.cardContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.cardHome {
    background-color: white;
    border-radius: 10px;
    border: 1px solid #D2D2D2;
    padding: 20px;
    transition: 0.3s ease-in-out;
}

.cardHome:hover {
    filter: drop-shadow(0px 10px 10px #CED6E3);
    border: 0;
}

.cardTitle {
    font-size: 18px;
    font-weight: bold;
}

.cardText {
    line-height: 1.5;
}

.tag {
    background-color: #EBF2FA;
    color: #347FD0;
    width: fit-content;
    padding: 0.75em 1.5em;
    border-radius: 5px;
    margin-bottom: 0.5em;
}

.tagText {
    margin: 0px;
    font-size: 20px;
}

.textBlock {
    width: 80%;
}

.contact {
    display: flex;
    width: 100%;
    max-width: 1200px;
    flex-direction: column;
}

.contactHouse{
    display: flex;
    flex-direction: row;
}

.contactCardHouse {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.contactCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    /* background:; */
    border-radius: 5px;
    /* text-align: center; */
    /* height: 175px; */
    /* align-items: center; */
}



footer {
    background-color: #303030;
    display: flex;
    justify-content: center;
    color: white;
    height: 200px;
    align-items: center;
}

.footerContainer {
    width: 100%;
    max-width: 1200px;
    display: flex;
}

.footerLogo {
    width: 20%;
}

.footerInfoHouse {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.policy {
    display: block;
    margin-top: 1em;
    margin-left: 1em;
    margin-bottom: 1em;
}

.policy li {
    list-style-type: circle;
    margin-bottom: 0.25em;
}


  