* {
    margin: 0;
    padding: 0;
    border: none;
}
body {
    font-family: 'Clash Display', sans-serif;
}
section {
    overflow: hidden;
}
img {
    display: block;
}
h4 {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
}
h5 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}
p {
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}
a {
    text-decoration: none;
}
hr {
    height: 1px;
    width: 100%;
    background-color: #fff;
    margin: 20px 0;
}

.banner {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dark_bg {
    background-color: #242A78;
    position: relative;
    width: 60%;
    height: 100%;
}
.light_bg {
    background: #fff;
    position: relative;
    width: 40%;
    height: 100%;
}
.banner_profile {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 75vh;
    overflow: hidden;
}
.left {
    right: 0;
}
.right {
    left: 0;
}
.banner_overlay {
    position: absolute;
    top: 25%;
    left: 0;
}
.banner_overlay img {
    width: 130%;
    height: 100%;
}
.sheilds {
    position: absolute;
    z-index: 99;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: auto!important
}
.sheild_images {
    width: auto!important;
}
.sheild_1 {
    position: relative;
    top: 1px;
    left: 1px;
    cursor: pointer;
}
.sheild_2 {
    position: relative;
    top: -1px;
    left: 1px;
    cursor: pointer;
}
.sheild_3 {
    position: relative;
    top: 1px;
    right: 1px;
    cursor: pointer;
}
.sheild_4 {
    position: relative;
    top: -1px;
    right: 1px;
    cursor: pointer;
}
.si img {
    height: 26vh;
    width: 100%;
}

.hover_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    width: 400px;
    height: auto;
    background: linear-gradient(180deg, rgba(95, 130, 255, 0.5) 0%, rgba(119, 124, 255, 0.5) 33.65%, rgba(143, 151, 255, 0.5) 65.42%, rgba(147, 177, 255, 0.5) 100%), rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12.5px);
    border-radius: 25px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
    cursor: default;
    z-index: 9999!important;
}
.hv1 {
    top: -120px;
    left: -290px;
}
.hv2 {
    top: 60px;
    left: -290px;
}
.hv3 {
    top: -120px;
    left: 100px;
}
.hv4 {
    top:  60px;
    left: 100px;
}
.hover_box_items {
    padding: 30px;
    color: #fff;
}
.hover_box_heading {
    margin-bottom: 10px;
}
.hover_box_url {
    margin-bottom: 20px;
}
.hover_box_text {
    margin-bottom: 15px;
    width: 85%;
}
.hover_btn a {
    position: relative;
    height: 50px;
    width: 50px;
    background: #242A78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
.sheild_1:hover .hover_box, .sheild_2:hover .hover_box, .sheild_3:hover .hover_box, .sheild_4:hover .hover_box  {
    visibility: visible;
    opacity: 1;
    transition: all .3s ease;
}
.sheild_1:hover {
    top: -15px;
    left: -15px;
    transition: all .3s ease;
}
.sheild_2:hover {
    top: 15px;
    left: -15px;
    transition: all .3s ease;
}
.sheild_3:hover {
    top: -15px;
    right: -15px;
    transition: all .3s ease;
}
.sheild_4:hover {
    top: 15px;
    right: -15px;
    transition: all .3s ease;
}

.contents {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
}
.contents_blue {
    color: #242A78;
}
.content_details h1 {
    font-size: 10rem;
    line-height: 1;
}
.content_details.bot {
    position: relative;
    top: 28px;
    display: flex;
    flex-direction: column;
    align-items: end;
}
.phone_left {
    position: absolute;
    bottom: 30px;
    right: 0;
    font-size: 1.5rem;
    color: #fff;
    z-index: 9;
}
.phone_right {
    position: absolute;
    bottom: 30px;
    left: 0;
    font-size: 1.5rem;
    color: #242A78;
    z-index: 9;
}



/* Responsive */
@media screen and (max-width: 1445px) {
    h4 {
        font-size: 1.2rem;
    }
    .hover_box {
        width: 360px;
    }
    .hover_box_items {
        padding: 25px;
    }
    .hover_box_text {
        width: 100%;
    }
    .hv3 {
        top: -120px;
        left: 100px;
    }
    /* .hv4 {
        top: -140px;
        left: 100px;
    } */
    .phone_left {
        font-size: 1.35rem;
    }
    .phone_right {
        font-size: 1.35rem;
    }
}

@media (max-width: 1281px) {
    .content_details h1 {
        font-size: 8.5rem;
    }
}

@media (max-width: 1024px) {
    .content_details h1 {
        font-size: 7.5rem;
    }

    .dark_bg {
        width: 50%;
    }
    .light_bg {
        width: 50%;
    }
    .banner_profile {
        height: 100%;
        display: flex;
        align-items: center;
    }
    .banner_profile img {
        height: 55%;
    }
    .si img {
        height: 20vh;
        width: auto!important;
    }
    .contents {
        justify-content: left;
    }
    .content_details {
        position: relative;
        height: 100%;
        padding: 120px 0;
    }
    .content_details.bot {
        top: 0;
        justify-content: end;
    }
    .hv1 {
        top: -120px;
        left: -170px;
    }
    .hv2 {
        top: 80px;
        left: -170px;
    }
    .hv3 {
        top: -120px;
        left: 80px;
    }
    .hv4 {
        top: 80px;
        left: 80px;
    }
}

@media (max-width: 840px) {
    .content_details h1 {
        font-size: 6.5rem;
    }
    h4 {
        font-size: 1.15rem;
    }

    .banner_profile img {
        height: 50%;
    }
    .content_details {
        padding: 80px 0;
    }
    .phone_left {
        font-size: 1.25rem;
    }
    .phone_right {
        font-size: 1.25rem;
    }
    .si img {
        height: 15vh;
        width: auto!important;
    }
    .hover_box {
        position: fixed;
        width: 400px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        left: 50%!important;
        transform: translateX(-50%);
        
    }
    .hover_box_items {
        padding: 20px;
    }
    .hv1 {
        top: unset;
        left: 0;
        bottom: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .hv2 {
        top: unset;
        left: 0;
        bottom: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .hv3 {
        top: unset;
        left: 0;
        bottom: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .hv4 {
        top: unset;
        left: 0;
        bottom: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .content_details h1 {
        font-size: 3.1rem;
    }
    .si img {
        height: 15vh;
        width: auto!important;
    }
    h4 {
        font-size: 1rem;
    }
    h5 {
        font-size: .9rem;
    }
    p {
        font-size: 14px;
    }

    .banner_profile img {
        height: 36%;
    }
    .content_details {
        padding: 120px 0;
        margin: 0 15px;
    }
    .phone_left {
        font-size: 1.15rem;
    }
    .phone_right {
        font-size: 1.15rem;
    }
    .hover_box {
        position: fixed;
        width: calc(100vw - 30px);
        display: flex;
        align-items: center;
        justify-content: center; 
        height: auto; 
        left: 0!important;
        transform: translateX(0)!important;
    }
    .hover_box_items {
        padding: 20px;
    }
    .hv1 {
        top: unset;
        bottom: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .hv2 {
        top: unset;
        bottom: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .hv3 {
        top: unset;
        bottom: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .hv4 {
        top: unset;
        bottom: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .hover_btn a {
        font-size: 1.2rem;
        height: 40px;
        width: 40px;
    }
    .hover_box_url {
        margin-bottom: 10px;
    }
}