@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary: #001D66;
    --dark: #000;
    --light:#FFF;
    --text: #001D66;
    --fbody: "Raleway", sans-serif;
}
body {
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    font-family: var(--fbody);
    line-height: 150%; 
    overflow-x: hidden; 
    background: var(--light);
}
section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}
html .container {
    padding: 0 25px;
    width: 1370px;
    max-width: 100%;
}
html .container-lg {
    width: 1430px;
}
html .container-sm {
    width: 1200px;
    max-width: 100%;
}
html .container-xs {
    width: 1020px;
}
img,svg{
    height:auto;
    width:auto;
    max-width: 100%;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
}
a{
    color:var(--primary);
    text-decoration: none;
    transition: all 0.4s;
}
a:hover{
    color:var(--dark);
    text-decoration: none;
}
p:last-child{
    margin-bottom:0;
}
::selection{
    color:var(--light);
    background:var(--primary);
}
img{
    max-width:100%;
    width:auto;
    height:auto;
}

header {
    padding: 30px 0;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    transition: all 0.4s;
}
.sticky header {
    backdrop-filter: blur(8px);
    padding: 18px 0;
}
.overlay {
    display: none;
}
.header-wpr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-wpr > * {
    flex: 1;
}
.header-logo a {
    display: block;
    width: 193px;
}
.header-logo a img {
    display: block;
    width: 100%;
}
.header-wpr .hcta {
    display: flex;
    justify-content: flex-end;
}
.header-wpr .header-menu {
    flex: unset;
    padding: 0 5px;
    background: rgba(0, 29, 102, 0.05);
    border: 1px solid rgba(0, 29, 102, 0.04);
    border-radius: 50px;
    transition: all 0.4s;
}
.sticky .header-menu {
    background: var(--light);
}
.header-menu .menu {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    list-style: none;
}
.header-menu .menu > li > a {
    padding: 0 20px;
    font-weight: 600;
    font-size: 15px;
    line-height: 48px;
    letter-spacing: 0.04em;
    border-radius: 50px;
    margin: 5px 2px;
    display: flex;
    align-items: center;
    gap: 7px;
    /* position: relative;
    z-index: 1; */
}
/* .header-menu .menu > li > a:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 calc(100% - 15px), 0 0);
    background: var(--primary);
    height: 0px;
    transition: all 0.4s;
} */
.header-menu .menu > li.active > a,
.header-menu .menu > li > a:hover {
    background: var(--primary);
    color: var(--light);
}
/* .header-menu .menu > li > a:hover:before {
    height: calc(100% + 15px);
    top: 0;
    bottom: auto;
} */
.header-menu .menu > li.menu-parent > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.header-menu .menu > li.menu-parent > a:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-image: url('data:image/svg+xml,<svg width="8" height="5" viewBox="0 0 8 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.75 0.750074C6.75 0.750074 4.54055 3.75005 3.75 3.75005C2.9594 3.75005 0.75 0.75005 0.75 0.75005" stroke="%23001D66" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s;
}
.header-menu .menu > li.menu-parent.active > a:after,
.header-menu .menu > li.menu-parent > a:hover:after {
    filter: brightness(0) invert(1);
}
li.menu-parent {
    position: relative;
}
.submenu {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 100%;
    background: var(--light);
    min-width: 240px;
    padding: 10px;
    border-radius: 8px;
    margin: 0;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
}
li.menu-parent:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.submenu li + li {
    margin-top: 4px;
}
.submenu a {
    font-size: 15px;
    line-height: 120%;
    font-weight: 500;
    padding: 6px 10px;
    display: block;
    border-radius: 6px;
}
.submenu a:hover,
.submenu .active a {
    color: var(--light);
    background: var(--primary);
}
.hcta a {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.04em;
}
.hcta a img {
    transform-origin: left center;
    transition: all 0.4s;
}
.hcta a:hover img {
    transform: scale(1.2);
}
.navbar-toggle {
    display: none;
}


.hbanner {
    padding-top: 165px;
    padding-bottom: 0;
}
.hbanner .container {
    width: 1044px;
}
.hbanner .txt {
    width: 950px;
    max-width: 100%;
    margin-inline: auto;
}
.hbanner .txt h6 {
    font-size: 35px;
    line-height: 130%;
    font-weight: 400;
    margin-bottom: 15px;
}
.hbanner .txt h1 {
    text-transform: uppercase;
    font-size: 60px;
    line-height: 120%;
    font-weight: 800;
    margin-bottom: 15px;
}
.hbanner .txt p {
    width: 380px;
    max-width: 100%;
    font-size: 16px;
    font-weight: 500;
    margin-inline: auto;
    line-height: 150%;
}
.hbanner .txt .btn-wpr {
    margin-top: 38px;
}
html .btn {
    display: inline-block;
    padding: 0 40px;
    background: var(--primary);
    color: var(--light);
    border: 0;
    border-radius: 9px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 50px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    transition: all 0.4s;
}
html .btn:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 29px;
    background: linear-gradient(180deg, rgba(0, 29, 102, 1) 0%, rgba(0, 29, 102, 0) 100%);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    transition: all 0.4s;
}
html .btn-light {
    color: var(--primary);
    background: var(--light);
}
html .btn-defualt {
    margin-bottom: 0;
}
html .btn-defualt:before {
    display: none;
}
html .btn:hover,
html .btn:focus {
    background: var(--dark);
    color: var(--light);
}
html .btn:hover:before,
html .btn:focus:before {
    filter: brightness(0);
}
.hbanner .image {
    margin-top: 23px;
    /*transform: translateX(-40px);*/
}
.bg-img {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 80px;
    border-radius: 0 0 80px 80px;
    overflow: hidden;
}
.bg-img img {
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}
.float-imgs img {
    display: block;
    width: 205px;
    position: absolute;
    left: 5%;
    top: 33%;
    animation: floatY 4s ease-in-out infinite;
}
.float-imgs .fl2 {
    width: 160px;
    left: 79%;
    top: 15%;
    transform: rotate(25.61deg);
    animation: floatY 4.8s ease-in-out infinite 0.5s;
}
.float-imgs .fl3 {
    width: 143px;
    left: 77%;
    top: 48%;
    transform: rotate(-30.94deg);
    animation: floatY 4.5s ease-in-out infinite 1s;
}

@keyframes floatY {
    0% {
        transform: translateY(0) scale(1) rotate(var(--initial-rotate, 0deg));
    }
    50% {
        transform: translateY(-25px) scale(1.03) rotate(var(--initial-rotate, 0deg));
    }
    100% {
        transform: translateY(0) scale(1) rotate(var(--initial-rotate, 0deg));
    }
}
.float-imgs .fl2 { --initial-rotate: 25.61deg; }
.float-imgs .fl3 { --initial-rotate: -30.94deg; }
.title {
    margin-bottom: 40px;
}
.title h6 {
    font-size: 26px;
    line-height: 130%;
    margin-bottom: 15px;
}
.title h2 {
    font-size: 100px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 0;
}
.title-sm h2 {
    font-size: 50px;
}
.abt-sec .logoimage {
    width: 360px;
    height: 360px;
    max-width: 100%;
    margin: 52px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.abt-sec .txt {
    padding: 50px 40px;
    position: relative;
    z-index: 1;
}
.abt-sec .txt .animbg {
    position: absolute;
    z-index: -1;
    width: 37.2%;
    height: 97%;
    top: -412px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 200px;
    overflow: hidden;
}
.abt-sec .txt .animbg img {
    height: 100%;
    object-fit: cover;
}
.abt-sec .txt-light {
    color: var(--light);
}
.abt-sec .txt p {
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 12px;
    transition: all 0.4s;
}
.abt-sec .txt p:last-child {
    margin-bottom: 0;
}
.abt-sec .txt-light .btn {
    background: var(--light);
    color: var(--primary);
}
.abt-sec .txt-light .btn:hover {
    background: var(--primary);
    color: var(--light);
}
.abt-sec .btn-wpr {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.abt-bg-img {
    position: absolute;
    z-index: -1;
    width: 380px;
    bottom: -420px;
    right: 0;
}
.counter-sec .g-4 {
    --bs-gutter-y: 20px;
    --bs-gutter-x: 20px;
}
.counter-sec [class*="col-"]:nth-child(2) {
    margin-top: 70px;
}
.counter-sec [class*="col-"]:nth-child(3) {
    margin-top: 140px;
}
.counter-sec [class*="col-"]:nth-child(4) {
    margin-top: 210px;
}
.counter-box {
    padding: 39px 49px 49px;
    border: 1px solid rgba(0, 29, 102, 0.08);
    border-radius: 20px;
    background: #F9FAFF;
}
.counter-box h3 {
    font-size: 74px;
    line-height: 130%;
    margin-bottom: 10px;
}
.counter-box p {
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    text-transform: uppercase;
}

.wcy-box-wpr .g-5 {
    --bs-gutter-y: 62px;
    --bs-gutter-x: 40px;
}
.wcy-box {
    padding: 10px;
    height: 100%;
    border-radius: 20px;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.wcy-box:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    inset: 0;
    margin: -14px;
    background: var(--primary);
    border-radius: 20px;
    opacity: 0;
    transition: all 0.4s;
}
.wcy-box .num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: var(--primary);
    color: var(--light);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.4s;
}
.wcy-box h5 {
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 0;
    transition: all 0.4s;
}
.wcy-box.active {
    color: var(--light);
}
.wcy-box.active:before {
    opacity: 1;
}
.wcy-box.active .num {
    background: var(--light);
    color: var(--primary);
}
.prd-sec {
    padding-block: 120px 260px;
    background: #F9FAFF;
    border-radius: 50px;
}
.prd-wpr .item {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 1015px;
    max-width: 100%;
    margin-bottom: 136px;
    margin-left: 122px;
}
.prd-wpr .item .image {
    flex: 1;
}
.prd-wpr .image a {
    display: block;
    width: 442px;
    margin-top: 18px;
}
.prd-wpr .image a:hover {
    transform: scale(1.1);
}
.prd-wpr .item .txt {
    width: 500px;
    max-width: 100%;
}
.prd-wpr .txt h3 {
    color: var(--primary);
    font-size: 60px;
    line-height: 120%;
    margin-bottom: 13px;
}
.prd-wpr .txt h3 a {
    display: block;
    color: inherit;
}
.prd-wpr .txt h3 a:hover {
    color: var(--dark);
}
.prd-wpr .txt p {
    width: 400px;
    max-width: 100%;
}
.prd-wpr .txt .arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 1px solid var(--primary);
    border-radius: 100px;
    background: transparent;
    margin-top: 30px;
}
.prd-wpr .txt .arrow-btn:hover {
    transform: rotate(45deg);
    box-shadow: 0 0 0 40px var(--primary) inset;
}
.prd-wpr .txt .arrow-btn img {
    transition: all 0.4s;
}
.prd-wpr .txt .arrow-btn:hover img {
    filter: brightness(0) invert(1);
}

.prd-wpr .item:nth-child(even) .image {
    order: 1;
}
.prd-wpr .item:nth-child(2) {
    width: 1061px;
    margin-bottom: 153px;
    margin-left: 133px;
}
.prd-wpr .item:nth-child(2) .image a {
    width: auto;
    margin-top: 0;
    margin-left: -44px;
}
.prd-wpr .item:nth-child(2) .txt {
    margin-top: 39px;
}
.prd-wpr .item:nth-child(3) {
    width: 1063px;
    margin-bottom: 132px;
    margin-left: 103px;
}
.prd-wpr .item:nth-child(3) .image a {
    width: 479px;
}
.prd-wpr .item:nth-child(4) {
    width: 1071px;
    margin-bottom: 198px;
    margin-left: 123px;
}
.prd-wpr .item:nth-child(4) .image a {
    width: auto;
    margin-top: 0;
    margin-left: -15px;
}
.prd-wpr .item:nth-child(4) .txt {
    margin-top: 43px;
}
.prd-wpr .item:nth-child(5) {
    width: 1014px;
    margin-bottom: 0;
    margin-left: 112px;
}
.prd-wpr .item:nth-child(5) .image a {
    width: 442px;
}
.prd-wpr .item:nth-child(5) .txt {
    margin-top: 41px;
}
.blue-wave-full {
    position: absolute;
    z-index: -1;
    top: 13%;
    right: 0;
    left: 0;
    width: 1260px;
    max-width: 100%;
    margin: 0 auto;
}
.blue-wave-full.wave2 {
    top: 79.5%;
}



footer .container {
    width: 1450px;
}
.ftrtop {
    padding-block: 57px 47px;
}
.flogo {
    display: flex;
    align-items: center;
    height: 725px;
    position: relative;
    z-index: 1;
}
.flogo:before, 
.flogo:after {
    content: '';
    display: block;
    width: 725px;
    height: 725px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(2, 43, 136, 0) 46.15%, rgba(15, 74, 204, 0.06) 100%);
    border-radius: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: -225px;
    margin: auto;
    translate: -80px 0;
    transform: scale(0.6);
    animation: scale 3s linear 0s infinite;
}
.flogo:after {
    animation-delay: 1.5s;
}
@keyframes scale {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
.flogo a {
    display: block;
    width: 234px;
}
.ftrtop .fwpr {
    padding-right: 10px;
}
.ftrtop .dots {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    padding-left: 20px;
}
@keyframes scaleInOutRandom {
    0%,10% {
        transform: scale(0);
        opacity: 0.7;
    }
    25% {
        transform: scale(1.1);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    75% {
        transform: scale(1.1);
        opacity: 1;
    }
    90%,100% {
        transform: scale(0);
        opacity: 0.7;
    }
}
.ftrtop .dots .anim {
    position: absolute;
    max-width: unset;
    width: 127px;
    left: -24px;
    top: -60px;
    animation: scaleInOutRandom 3.5s cubic-bezier(0.42,0,0.58,1) 0s infinite both;
	z-index: 1;
}
.ftrtop .dots .anim2 {
    width: 125px;
    left: -30px;
    top: -51px;
    animation: scaleInOutRandom 3.5s cubic-bezier(0.42,0,0.58,1) 0.8s infinite both;
}
.ftrtop .dots .anim3 {
    width: 125px;
    left: -50px;
    top: -31px;
    animation: scaleInOutRandom 3.5s cubic-bezier(0.42,0,0.58,1) 0.6s infinite both;
}
.ftrtop .dots .anim4 {
    width: 120px;
    left: -39px;
    top: -39px;
    animation: scaleInOutRandom 3.5s cubic-bezier(0.44,0,0.58,1) 0.4s infinite both;
}
.ftrtop .dots .anim5 {
    width: 105px;
    left: -190px;
    top: -142px;
    animation: scaleInOutRandom 3.5s cubic-bezier(0.42,0,0.58,1) 1.4s infinite both;
}
.ftrtop .dots .anim6 {
    width: 120px;
    left: -125px;
    top: -80px;
    animation: scaleInOutRandom 3.5s cubic-bezier(0.45,0,0.55,1) 0.9s infinite both;
}
.ftrtop .dots .item {
    width: 3px;
    height: 3px;
    background: var(--primary);
    position: relative;
}
.ftrtop .fwpr h2 {
    font-size: 40px;
    line-height: 140%;
    text-transform: uppercase;
    margin-block: 53px 64px;
    transform: translateX(-160px);
}
.cinfo {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 61px;
}
.cinfo .item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    white-space: nowrap;
}
.cinfo .item:first-child .txt {
    min-width: 258px;
}
.cinfo .item:last-child {
    white-space: normal;
}
.cinfo .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: #F9FAFF;
    border-radius: 50px;
}
.cinfo .item .txt {
    flex: 1;
}
.cinfo .txt h4 {
    font-size: 17px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 0;
}
.cinfo .txt h4 a {
    display: block;
}
.cinfo .txt h4 a:hover {
    color: var(--dark);
}
.ftrbottom {
    padding: 30px 0;
    border-top: 1px solid rgba(0, 29, 102, 0.1);
}
.ftrbottom p {
    font-size: 17px;
    line-height: 118%;
}
.social-i {
    display: flex;
    align-items: center;
    gap: 4px;
}
.social-i a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 60px;
    border-radius: 70px;
    background: #F9FAFF;
}
.social-i a img {
    transition: all 0.4s;
}
.social-i a:hover {
    background: var(--primary);
	color: white;
}
.social-i a:hover img {
    filter: brightness(0) invert(1);
}
.laxraj-love svg {
    color: var(--primary);
    margin: 0 3px;
    font-size: 10px;
    animation: pound .35s infinite alternate;
    -webkit-animation: pound .35s infinite alternate;
    width: 12px;
    height: auto;
}
@keyframes pound {
    100% {
        transform: scale(1.1);
    }
}



.ibanner {
    padding-top: 165px;
    padding-bottom: 202px;
}
.ibanner .bg-img {
    bottom: 100px;
}
.ibanner h1 {
    text-align: center;
    font-weight: 800;
    font-size: 60px;
    line-height: 120%;
    margin-bottom: 0;
    text-transform: uppercase;
}
.ibanner .float-imgs img {
    top: 54%;
    left: 8%;
}
.ibanner .float-imgs .fl2 {
    top: 35%;
    left: 79%;
}
.abtnoanim .container {
    width: 1000px;
}
.abtnoanim .txt {
    padding: 0 !important;
}
.abtnoanim .txt p {
    text-align: justify;
    margin-bottom: 17px;
}
.abtnoanim .txt h5 {
    font-size: 22px;
    font-weight: 700;
    line-height: 150%;
    margin-top: 30px;
    margin-bottom: 18px;
}
.abtnoanim .txt ul {
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px 30px;
    margin-bottom: 30px;
}
.abtnoanim .txt ul li {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.abtnoanim .txt ul li:before {
    content: '';
    display: block;
    width: 6px;
    min-width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 10px;
}
.prdbanner {
    padding-top: 136px;
    padding-bottom: 107px;
}
.prdbanner h1 {
    text-align: left;
    margin-bottom: 19px;
    margin-right: -90px;
    margin-top: 20px;
}
.prdbanner p {
    margin-right: -80px;
}
.prdbanner .image {
    width: 769px;
    max-width: 100%;
    margin-left: auto;
    margin-right: -20px;
    margin-bottom: -107px;
    filter: drop-shadow(0px 12px 10px rgba(0, 0, 0, 0.1));
}
.prdbanner .bg-img {
    bottom: 107px;
}
.features-sec .title {
    margin-bottom: 50px;
}
.features-sec .title h2 {
    font-size: 40px;
}
.features-sec .title h2:after,
.prd-list-sec .title h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background: var(--primary);
    margin-top: 20px;
}
.features-sec .g-4 {
    --bs-gutter-y: 40px;
    --bs-gutter-x: 20px;
}
.icon-box {
    display: flex;
    align-items: center;
    gap: 14px;
}
.icon-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 29, 102, 0.1);
    border-radius: 100px;
    width: 80px;
    min-width: 80px;
    height: 80px;
}
.icon-box h4 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 0;
}

.prd-list-sec .title {
    margin-bottom: 60px;
}
.prd-list-sec .title h2 {
    font-weight: 500;
}
.prd-list-sec .title h2:after {
    width: 100px;
    height: 3px;
    margin-inline: auto;
}
.prd-list-sec .g-5 {
    --bs-gutter-y: 60px;
    --bs-gutter-x: 100px;
}
.prd-box {
    display: block;
    padding: 9px 9px 19px;
    border: 1px solid transparent;
    border-radius: 20px;
    background: transparent;
}
.prd-box:hover {
    background: #F9FAFF;
    border-color: var(--primary);
}
.prd-box .image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    margin-bottom: 10px;
}
.prd-box .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding-block: 8px;
}
.prd-box h4 {
    color: var(--primary);
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 0;
}
.prd-bg {
    width: 1280px;
    max-width: 100%;
    position: absolute;
    z-index: -1;
    top: -101px;
    right: -410px;
    transform: rotate(-35.15deg);
}
.prd-info-popup .modal-dialog {
    --bs-modal-width: 1044px;
}
.prd-info-popup .modal-content {
    border: 0;
    border-radius: 0;
    display: block;
    background: transparent;
}
.prd-info-popup .btn-close {
    background-image: unset;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    cursor: pointer;
}
.prd-info-popup .btn-close:hover {
    transform: rotate(90deg);
    transition: all 0.4s;
}
.prd-info-popup .modal-body {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 29, 102, 0.08);
    background: #FFF;
}
.prd-info-popup .col-sticky {
    position: sticky;
    top: 20px;
}
.prd-info-popup .image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 298px;
    border: 2px solid #ECEEF7;
    border-radius: 10px;
    margin-right: -25px;
}
.prd-info-popup .image img {
    object-fit: contain;
	margin: 10px;
}
.prd-info-popup .txt {
    padding-left: 25px;
}
.prd-info-popup .txt h6 {
    font-size: 14px;
    line-height: 120%;
    font-weight: 500;
    margin-bottom: 8px;
}
.prd-info-popup .txt h2 {
    font-size: 34px;
    line-height: 120%;
    font-weight: 600;
}
.prd-info-popup .txt table {
    margin-block: 30px;
    width: 100%;
    text-align: center;
}
.prd-info-popup table :is(th,td) {
    font-size: 15px;
    font-weight: 500;
    line-height: 120%;
    color: var(--primary);
    padding: 14px 6px;
    min-width: 80px;
    border: 1px solid rgba(0, 29, 102, 0.04);
}
.prd-info-popup table th {
    font-weight: 600;
    background: rgba(0, 29, 102, 0.05);
    min-width: 0;
}
.prd-info-popup .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 25px;
    line-height: 44px;
    font-size: 15px;
}
.prd-info-popup .wa-btn {
    background: #188D18;
}
html .modal-backdrop.show {
    --bs-backdrop-opacity: 0.6;
}
.prd-info-popup form {
    padding: 30px;
    background: rgba(0, 29, 102, 0.05);
    border: 1px solid rgba(0, 29, 102, 0.04);
    margin-top: 20px;
    border-radius: 14px;
}
.prd-info-popup form .g-4 {
    --bs-gutter-y: 20px;
    --bs-gutter-x: 20px;
}
html .form-control {
    height: 44px;
    background: var(--light);
    border: 0;
    border-radius: 10px;
    padding: 13px 22px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
}
html .form-control:focus {
    box-shadow: none;
}
html .form-control::placeholder {
    color: var(--primary);
}
html textarea.form-control {
    height: 100px;
    resize: none;
}
.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    position: relative;
}
.form-submit .btn {
    padding: 0 50px;
}
.form-submit .btn[disabled] {
    background-color: var(--primary);
    color: var(--light);
}
@keyframes spin-infinite {
    to {
        transform: rotate(360deg);
    }
}
.form-submit:has(.btn[disabled]):before {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 30px;
    height: 30px;
    margin: auto;
    border-radius: 40px;
    border: 2px dashed var(--light);
    animation: spin-infinite 2s linear infinite;
}

.cbanner {
    padding-bottom: 85px;
}
.contact-sec .g-5 {
    --bs-gutter-x: 120px;
}
.contact-sec h2 {
    font-weight: 600;
    font-size: 50px;
    line-height: 130%;
    margin-bottom: 30px;
}
.contact-sec p {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
}
.contact-sec .cnti {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 42px 60px;
    margin-top: 60px;
}
.contact-sec .cnti h4 {
    font-weight: 600;
    font-size: 30px;
    line-height: normal;
    margin-bottom: 20px;
}
.contact-sec .cnti a {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 5px;
}
.contact-sec .cnti a:last-child {
    margin-bottom: 0;
}
.contact-sec .cnti :is(.location,.email) a {
    font-size: 16px;
    line-height: 150%;
}
.contact-sec .social-i a {
    background: transparent;
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    margin-bottom: 0;
}
.contact-sec .social-i a img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.contact-sec .social-i a:hover {
    background: var(--primary);
}
.cformbox {
    padding: 50px;
    border-radius: 14px;
    background: #F2F4F7;
}
.cformbox h3 {
    font-weight: 600;
    font-size: 38px;
    line-height: 120%;
    margin-bottom: 30px;
}
.cformbox p {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
}
.cformbox form {
    margin-top: 30px;
}
.form-field {
    margin-bottom: 20px;
}
.cformbox .form-control {
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    height: 50px;
}
.cformbox textarea.form-control {
    height: 100px;
}
.cformbox .form-submit {
    display: block;
    margin-top: 30px;
}
.cformbox .form-submit .btn {
    font-size: 15px;
}
.contact-sec .abt-bg-img {
    bottom: -80px;
}
.modal-open section {
    z-index: unset;
}
.prd-list-sec .row > .modal {
    padding: 0;
    margin: auto;
}
.prd-list-sec .collapse > .emailMsg {
    margin-top: 20px;
}
.prd-list-sec .collapse > .emailMsg .alert {
    padding: 10px 16px;
    font-size: 15px;
    line-height: normal;
}
.prd-list-sec .collapse > .emailMsg .alert strong {
    font-weight: 600;
}