#masthead {
    border-bottom: 1px solid #4E435D;
}

.hero-sec {
    padding: 85px 0;
    /* background: linear-gradient(135deg, #172245 0%, #000237 75%, #172245 100%); */
    background-color: var(--Primary-color);
    border-bottom: 1px solid #FFFFFF;
    box-shadow: 0px 4px 7px 1px rgba(222, 219, 219, 1);
}

.hero-sec .content-wraper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.hero-sec h1 {
    font-size: 56px;
    line-height: 40px;
    font-weight: 700;
    font-family: var(--EuclidCircularA);
    color: #fff;
}

.hero-sec p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--EuclidCircularA);
    color: #fff;
}

.content-sec .content-wraper {
    max-width: 1000px;
    padding: 0 0 50px;
}

.content-sec .content-wraper h2 {
    font-size: 26px;
    line-height: 60px;
    font-weight: 600;
    font-family: var(--EuclidCircularA);
    color: var(--Primary-color);
    margin-top: 50px;
    letter-spacing: 2px;
}

.content-wraper p:first-child {
    margin-top: 50px;
}

.content-sec .content-wraper p,
.content-sec .content-wraper li {
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--EuclidCircularA);
    color: #474747;
    margin-bottom: 15px;
}

.content-sec .content-wraper p a,
.content-sec .content-wraper li a {
    color: var(--Secondary-color);
    text-decoration: none;
    transition: all ease .3s;
}

.content-sec .content-wraper p a:hover,
.content-sec .content-wraper li a:hover {
    color: var(--Primary-color);
}

.content-sec .content-wraper ul {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

.content-sec .content-wraper ul li {
    margin: 0;
    padding-left: 40px;
    position: relative;
}

.content-sec .content-wraper ul li::before {
    content: "\f192";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--Secondary-color);
}

.content-sec .content-wraper h3 {
    font-size: 20px;
    line-height: 60px;
    font-weight: 600;
    font-family: var(--EuclidCircularA);
    color: var(--Primary-color);
    margin-bottom: 15px;
}





@media (max-width: 767px) {
    .hero-sec {
        padding: 50px 10px 50px;
    }

    .hero-sec h1 {
        font-size: 36px;
        line-height: 53px;
    }

    .hero-sec p {
        font-size: 16px;
        line-height: 28px;
    }

    .content-sec .content-wraper {
        padding: 0 20px 30px;
    }

    .content-sec .content-wraper h2 {
        font-size: 24px;
        line-height: 28px;
        margin-top: 60px;
        margin-bottom: 15px;
        letter-spacing: 1.5px;
    }

    .content-wraper p:first-child {
        margin-top: 60px;
    }

    .content-sec .content-wraper p,
    .content-sec .content-wraper li {
        font-size: 15px;
        line-height: 32px;
        margin-bottom: 15px;
    }
}