@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    background-color: #eee;
}

.main-container {
    width: 575px;
    margin: 0 auto;
    position: relative;
}
.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.header .logo img {
    width: 85px;
}
.banner-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
img {
    width: 100%;
}
.banner-main {
    position: relative;
}
.banner-content {
    position: absolute;
    bottom: 2%;
    text-align: center;
    width: 100%;
}
.banner-main h2 {
    padding-left: 15px;
    padding-right: 15px;
    font-weight: bold;
    line-height: 32px;
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
}
.banner-main h2 span {
    color: red;
}

.top-whatsapp-icon a {
    z-index: 99;
}
.top-whatsapp-icon a, .banner-content a  {
    display: inline-block;
    text-decoration: none;
    background: red;
    padding: 7px 14px;
    border-radius: 37px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    top: 21px;
    right: 20px;
}
.top-whatsapp-icon a img, .banner-content a img {
    width: 18px;
}
.banner-content a {
    position: unset;
    margin-top: 20px;
}
.bg-main {
    background: #213159;
}
.highlight-points {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 40px;
    padding-bottom: 20px;
}

.highlight-points p {
    color: #000;
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
}

.footer-wrapper {
    border-top: 1px solid #fff;
    padding: 10px 0;
}
.footer-wrapper p {
    text-align: center;
    margin-bottom: 0;
    color: #fff;
    font-size: 13px;
}
.footer-wrapper a {
    color: #fff;
    text-decoration: none;
}

.partners-section {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
    padding-top: 15px;
    padding-bottom: 30px;
}

.partner-logo {
    width: 33.33%;
    padding-left: 10px;
    padding-right: 10px;
}

.section-head {
    text-align: center;
    color: #fff;
}

.section-head h3 {
    font-size: 20px;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .main-container {
        width: 100%;
    }
    .header .logo img {
        width: 72px;
    }
}


@media (max-width: 376px) {
    .banner-main h2 {
        line-height: 26px;
        font-size: 28px;
    }
    .banner-content a {
        margin-top: 10px;
    }
    .top-whatsapp-icon a, .banner-content a {
        padding: 5px 10px;
        font-size: 14px;
        top: 10px;
    }
}