/* CSS Document */

/* Table of Contents
-----------------------------------------------------------------------------
=> Clean Base
=> Base Typography
=> Images
=> Links
=> Forms
=> Framework
*/

/* Clean Base
------------------------------------------------------------------------------*/
html {
    scroll-behavior: smooth;
}
:root {
    --color-100: #0D121F;
    --color-200: #0D2BFE;
    --color-300: #DB2B39;
    --color-400: #AFC0FF;
    --color-500: #F0F0E9;
    --color-600: #D3D3D3;
    --color-700: #878995;
    --color-white: #ffffff;
    --color-black: #000000;
    --font-inter: 'Inter', sans-serif;
    --font-oswald: 'Oswald', sans-serif;
    /* 14px */
    --text-sm: .75rem;
    /* 16px */
    --text-base: 1.25rem;
    /* 18px */
    --text-lg: 1.125rem;
    /* 1198px */
    --container: 105.625rem;
    /* 1690px */
    --container-fluid: 105.625rem;
    /* 40px */
    --gutter: 2.5rem;
    /* 64px */
    --h1: 4rem;
    /* 39px */
    --h2: 2.4375rem;
    /* 31px */
    --h3: 1.937rem;
    /* 25px */
    --h4: 1.562rem;
    /* 20px */
    --h5: 1.25rem;
    /* 16px */
    --h6: 1rem;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, a, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    outline: none;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
    -webkit-text-size-adjust: none;
    height: 100%;
}
body{
    overflow-x: hidden;
}
.overflow-hidden{
    overflow: hidden;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
}

iframe {
    vertical-align: top;
}

textarea:focus, input:focus, a, div, img {
    outline: none;
}

picture {
    display: inline-block;
    vertical-align: top;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Base Typography
------------------------------------------------------------------------------*/

body {
    font-size: 16px;
    font-family: var(--font-inter);
    font-weight: 400;
    line-height: 1.3;
    background-color: var(--color-white);
    display: flex;
    flex-wrap: wrap;
    min-height: -webkit-fill-available;
    height: auto;
    color: var(--color-100);
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    body {
        height: 100%;
    }
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--color-100);
    font-family: var(--font-oswald);
    margin-bottom: 16px;
    line-height: 1.125;
    text-transform: uppercase;
    span {
        color: var(--color-200);
    }
}

.h1, h1 {
    font-size: var(--h1);
}
.h2, h2 {
    font-size: var(--h2);
}
.h3, h3 {
    font-size: var(--h3);
}
.h4, h4 {
    font-size: var(--h4);
    line-height: 1.5;
}
.h5, h5 {
    font-size: var(--h5);
}
.h6, h6 {
    font-size: var(--h6);
    color: var(--color-300);
    font-weight: 700;
}

h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    color: inherit;
    text-decoration: none;
}

p {
    font-family: var(--font-inter);
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
}

p:last-child {
    margin-bottom: 0;
}

.thank-you-msg {
    padding: 50px;
    background: var(--color-white);
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    color: var(--color-200);
}

.bullet-check li{
    position: relative;
    padding-left: 35px;
}
.bullet-check li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url(./lp_images/bullet-check.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

ul {
    padding-left: 20px;
    list-style: none;
    padding: 0;
}

ul li {
    padding-bottom: 14px;
    font-weight: 300;
    font-size:16px;
}

ul li:last-child {
    padding-bottom: 0;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: top;
}

img[src$=".svg"] {
    height: auto;
    display: inline-block;
    vertical-align: top;
}

/* Link
------------------------------------------------------------------------------*/

a {
    color: var(--color-100);
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}

a:hover {
    color: var(--color-black);
    text-decoration: underline;
    transition: all 0.6s ease;
}

a:focus {
    outline: none;
}

.space-lg-m{
    margin: 100px 0;
}

/* swiper button */
.swiper-arrowwrap {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75px;
}
.swiper-button{
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    width: 30px;
    height: 30px;
    color: var(--color-white);
    transform: unset;
    background-color: var(--color-200);
    border-radius: 50%;
    background-image: unset;
    transition: 0.3s ease all;
}
.swiper-button:hover{
    background-color: var(--color-100);
}
.swiper-button:before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: rotate(-45deg) translate(10%, -50%);
    width:8px;
    height:8px;
    border-left: 2px solid var(--color-white);
    border-top: 2px solid var(--color-white);
}
.swiper-button-next.swiper-button:before {
    transform: rotate(135deg) translate(10%, 80%);
}

/* slick button */
ul.slick-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
ul.slick-dots li button {
    font-size: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: rgba(13 , 43 , 254 , 0.25);
    border-radius: 8px;
    transition: 0.3s;
}
ul.slick-dots li {
    width: 30px;
    padding: 0;
    height: 12px;
    transition: 0.3s;
}
ul.slick-dots li.slick-active{
    width: 60px;
}
ul.slick-dots li.slick-active button{
    background-color: var(--color-200);
}


/* Form
------------------------------------------------------------------------------*/
form {
    display: flex;
    flex-wrap: wrap;
    /* margin: 0 -8px; */
}
form .row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 27px;
    justify-content: center;
}
form .col {
    width: 48%;
}

input, select, textarea, button {
    --font-inter: var(--font-inter);
}

input[type="text"], input[type="submit"], input[type="button"], input[type="password"], input[type="email"], input[type="tel"], input[type="search"], textarea {
    -webkit-appearance: none;
    outline: none;
}

select, input[type="text"], input[type="number"], input[type="password"], input[type="email"], input[type="tel"], input[type="search"], input[type="number"], textarea {
    border: 1px solid var(--color-500);
    padding: 24px 16px 2px;
    color: var(--color-100);
    font-size: 16px;
    height: 50px;
    font-weight: 300;
    width: 100%;
    border-radius: 6px;
}
.form-control{
    position: relative;
}
.form-control label {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-700);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}
.form-control.focus-name label {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Oswald';
    text-transform: uppercase;
    color: var(--color-200);
    position: absolute;
    top: 30%;
    /* transform: translateY(-130%); */
}

textarea {
    display: block;
    height: 150px;
    padding: 20px 15px;
    resize: none;
    overflow: auto;
}

select {
    -webkit-appearance: none;
    color: rgba(99, 102, 106, 0.7);
    padding-right: 1.4em;
    background-image: url(images/select-down-arrow.svg);
    background-size: 12px 10px;
    background-position: right 1.35em center;
    background-repeat: no-repeat;
}

select:focus {
    outline: none;
}

/* for ie */

select::-ms-expand {
    display: none;
}

/* input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="search"]:focus, input[type="number"]:focus, textarea:focus {
    border-width: 2px;
    border-color: var(--color-100);
    outline: none;
} */
.btn-link {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-oswald);
    color: var(--color-200);
    padding-right: 20px;
    position: relative;
    text-transform: uppercase;
}
.btn-link:hover{
    color: var(--color-200);
    text-decoration: none;
}
.btn-link::before{
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    width: 7px;
    height: 10px;
    transform: translateY(-40%);
    background-image: url(./lp_images/right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s;
}
.btn-link:hover::before{
    background-image: url(./lp_images/right-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    right: -1px;
    top: 50%;
    width: 10px;
}
button, input[type="button"], input[type="reset"], input[type="submit"],.btn {
    -webkit-appearance: button;
    cursor: pointer;
    outline: none;
    display: inline-block;
    vertical-align: top;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: auto;
    text-align: center;
    border-width: 0;
    border-radius: 8px;
    color: var(--color-white);
    background-color: var(--color-200);
    transition: 0.4s ease;
    font-family: var(--font-oswald);
    width: max-content;
    text-transform: uppercase;
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover,.btn:hover {
    background-color: var(--color-100);
    color: var(--color-white);
    outline: none;
    text-decoration: none;
}

input[type="search"] {
    -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-input-placeholder {
    opacity: 1 !important;
    color: rgba(99, 102, 106, 0.7);
}

:-moz-placeholder {
    opacity: 1 !important;
    color: rgba(99, 102, 106, 0.7);
}

::-moz-placeholder {
    opacity: 1 !important;
    color: rgba(99, 102, 106, 0.7);
}

:-ms-input-placeholder {
    opacity: 1 !important;
    color: rgba(99, 102, 106, 0.7);
}


/* Layout Framework
------------------------------------------------------------------------------*/

/*--- main container ---*/

.wrapper {
    position: relative;
    justify-content: space-between;
    align-content: space-between;
    width: 100%;
    min-height: 100%;
    flex-wrap: wrap;
}

.main-container {
    width: 100%;
}

.container, .container-fluid {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.container,.container-fluid,.container-right,.container-left {
    max-width: 2062px;
    margin: 0 auto;
}
.container {
    /* max-width: var(--container); */
    /* max-width: 100%; */
    padding: 0px 140px;
}

.container-fluid {
    /* max-width: 100%; */
}

.container-right {
    /* max-width: 100%; */
    padding-right: 142px;
}

.container-left {
    /* max-width: 100%; */
    padding-left: 142px;
}

/* .container-left{
    position: relative;
    padding-left: calc((100% - var(--container)) / 2);
}

.container-left> div {
    padding-left: var(--gutter);
}

.container-right{
    position: relative;
    padding-right: calc((100% - var(--container)) / 2);
}

.container-right> div {
    padding-right: var(--gutter);
} */


/* flex */
.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.items-start {
    align-items: flex-start;
}

.items-baseline {
    align-items: baseline;
}

.d-flex-1 {
    flex: 1;
}

.lg-text{
    font-size: 20px;
    font-weight: 300;
}
/* header start */
.main-header {
    padding: 25px 0;
    position: fixed;
    top: 0;
    z-index: 99999;
    width: 100%;
    transition: 0.3s;
    background: var(--color-white);
    transform: translateY(0);
}
.user.search{
    transition: 0.3s;
}
.user:hover,.search:hover {
    margin-top: -5px;
}
.main-header.top{
    background: transparent;
    transform: translateY(0);
}
.main-header.header-pinned {
    transform: translateY(-100px);
}
.main-header.header-pinned:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
}
.main-header .mh-wrapper{
    justify-content: space-between;
    gap: 20px;
    position: relative;
}
.main-header .btn-group {
    display: flex;
    align-items: center;
    gap: 24px;
}
.main-header .mh-wrapper ul {
    gap: 15px;
    align-items: center;
}
.main-header .mh-wrapper ul li {
    padding: 0;
}
.main-header .mh-wrapper ul li a {
    font-weight: 700;
}
.main-header .logo img,.main-header .hamburger img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.main-header .logo {
    width: 100%;
    max-width: 210px;
    display: block;
}
.main-header .hamburger {
    width: 30px;
    height: 30px;
    display: none;
    cursor: pointer;
}
.main-header .hamburger .close{
    display: none;
}
.main-header .mh-wrapper.menu .hamburger .close{
    display: block;
}
.main-header .mh-wrapper.menu .hamburger .open{
    display: none;
}
.main-header .mh-wrapper.menu ul{
    position: absolute;
    left: 50%;
    background: var(--color-white);
    flex-direction: column;
    width: 110%;
    padding: 30px 20px;
    top: 100%;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 10px 10px var(--color-500);
}
/* header end */

/* footer start */
.main-container {
    background: var(--color-white);
    position: relative;
    z-index: 1;
}
.main-footer{
    background-color: var(--color-100);
    padding: 70px 20px 50px;
    position: sticky;
    bottom: 0;
    z-index: 0;
}
.main-footer *{
    color: var(--color-white);
}
.main-footer .mf-wrapper{
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}
.main-footer .mf-wrapper .copyright p{
    font-size: var(--text-sm);
}
.main-footer .mf-wrapper .logo {
    width: 100%;
    max-width: 210px;
    height: auto;
}
.main-footer .mf-wrapper .logo img{
    object-fit: contain;
}
.main-footer .mf-wrapper ul {
    gap: 10px 40px;
}
.main-footer .mf-wrapper ul li{
    padding: 0;
    font-size: 12px;
}
.main-footer .mf-wrapper ul li a {
    text-decoration: underline;
}
.main-footer .mf-wrapper ul li a:hover {
    color: var(--color-300);
}
/* footer end */

/* banner start */
.hero-banner {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 970px;
}
.hero-banner .hv-bgimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.hero-banner .hv-bgimg video,.hero-banner .hv-bgimg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
.hero-banner .hb-detailwrap {
    position: relative;
    max-width: 543px;
    padding-top: 90px;
}
.hero-banner .hb-detailwrap p{
    color: var(--color-100);
}

/* banner end */

/* fifty-fifty start */
.fifty-fifty .ff-mainwrap {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0;
}
.fifty-fifty .ff-right {
    width: 47%;
}
.fifty-fifty .ff-left{
    width: 53%;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: inset 0px 7px 14px rgba(32, 40, 59, 0.75);
    backdrop-filter: blur(16px);
    padding: 27px 27px 27px 0;
    border-radius: 0 4px 4px 0;
    height: fit-content;
}
.fifty-fifty .ff-imgwrap {
    position: relative;
    padding-top: 51.5%;
    perspective: 1000px;
}
.fifty-fifty .ff-imgwrap img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotateY(16deg);
    transition: 3s;
    border-radius: 0 8px 8px 0;
}
.fifty-fifty.aos-animate .ff-imgwrap img{
    transform: rotateY(0deg);
}
.fifty-fifty .ff-detailwrap{
    padding-left: 30px;
}
/* fifty-fifty end */

/* vertical-tab start */
.vertical-tab .sec-heading{
    margin-bottom: 40px;
}
.vertical-tab .vt-mainwrap {
    display: flex;
    justify-content: space-between;
}
.vertical-tab .vt-left {
    width: 39.4%;
}
.vertical-tab .vt-right {
    width: 60.6%;
}
.vertical-tab .vt-tabwrap {
    padding-right: 37px;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}
.vertical-tab .tab-part p {
    display: none;
}
.vertical-tab .tab-part h5 {
    margin-bottom: 0;
    line-height: 1.5;
}
.vertical-tab .tab-part {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    cursor: pointer;
}
.vertical-tab .tab-part.active {
    background: var(--color-500);
    padding: 15px 15px 15px 28px;
    border-radius: 8px;
    pointer-events: none;
}
.vertical-tab .tab-part.active:after{
    content: '';
    position: absolute;
    left: 0;
    top:0 ;
    width: 12px;
    height: 100%;
    background-color: var(--color-600);
}
.vertical-tab .tab-part:before{
    content: '';
    position: absolute;
    left: 0;
    top:0 ;
    width: 12px;
    height: 0;
    background-color: var(--color-200);
    z-index: 1;
}
.vertical-tab .tab-part.active:before{
    height: 100%;
    transition: 8s;
}
.vertical-tab .tab-img {
    position: relative;
    padding-top: 65%;
}
.vertical-tab .tab-img img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top left;
    border-radius: 8px;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #007bff;
    transition: width linear;
}
.tab-part {
    position: relative; /* Ensures progress bar is positioned correctly */
}
/* vertical-tab end */

/* counter start */
.counter-card .cc-heading p {
    font-size: 20px;
}
.counter-card .cc-heading {
    margin-bottom: 60px;
}
.counter-card .cc-cardrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    max-width: 1270px;
    margin: auto;
}
.counter-card .cc-cardcol {
    padding: 40px 20px 26px;
    background: var(--color-500);
    border-radius: 8px;
    flex: 1;
    max-width: 364px;
}
.counter-card .cc-carddetail {
    text-align: center;
}
.counter-card .cc-carddetail img {
    width: 156px;
    height: 156px;
    object-fit: contain;
    margin-bottom: 23px;
}
.counter-card .cc-counterwrap .cc-numbar {
    font-size: 96px;
    font-family: var(--font-oswald);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.counter-card .cc-counterwrap .cc-text {
    font-size: 20px;
    font-weight: 300;
}
/* counter end */

/* two-row start */
.two-rowslider .tr-row {
    display: flex;
    justify-content: space-between;
}
.two-rowslider .tr-detail {
    padding-right: 50px;
}
.two-rowslider .tr-left.tr-col{
    width: 64%;
}
.two-rowslider .tr-right.tr-col{
    width: 36%;
}
/* .two-rowslider .tr-detail{
    max-width: 460px;
} */
.two-rowslider .tr-slider{
    padding-bottom: 40px;
}
.two-rowslider .tr-slider .swiper-wrapper{
    row-gap: 30px;
    align-items: center;
}
.two-rowslider .tr-imgwrap {
    margin-top: 0 !important;
}
.two-rowslider .tr-imagewapper {
    padding-top: 61.25%;
    position: relative;
    max-width: 150px;
    margin: auto;
}
.two-rowslider .tr-imagewapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
}
/* two-row end */

/* Our Partners start*/
.our-partners{
    overflow-x: clip;
    max-width: 2062px;
    margin: auto;
    position: relative;
}
.our-partners ,.our-partners .op-wrap{
    position: relative;
}
.our-partners .container-wrap {
    max-width: 1696px;
    margin-left: 0;
    padding-left: 142px;
}
.our-partners .op-wrap {
    overflow: hidden;
    padding: 70px 55px 8px 50px;
    margin: auto;
    border-radius: 8px 0 0 0;
}
.our-partners .op-wrap:before{
    content: '';
    position: absolute;
    left: -550px;
    top: -350px;
    width: 902px;
    height: 679.45px;
    background: radial-gradient(50% 50% at 50% 50%, #AFC0FF 0%, rgba(175, 192, 255, 0.35) 49.5%, rgba(175, 192, 255, 0) 100%);
    border-radius: 8px;
    pointer-events: none;
}
.our-partners .container-wrap:after{
    content: '';
    position: absolute;
    width: 110%;
    height: 1160px;
    right: -21%;
    bottom: 0;
    background-image: url(./lp_images/shape.svg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}
.our-partners .op-wrap {
    position: relative;
    z-index: 1;
}
.our-partners .op-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.our-partners .op-col.op-left {
    width: 39.5%;
}
.our-partners .op-col.op-right {
    width: 59.5%;
}
.our-partners .op-card{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 16px;
    max-width: 676px;
    margin-left: auto;
}
.our-partners .op-card .op-cardcol{
    width: 49%;
}
.our-partners .op-cardcolwrap {
    position: relative;
    height: 100%;
    border-radius: 8px;
    border-left: 5px solid var(--color-500);
    background: var(--color-500);
    overflow: hidden;
    transition: 0.3s;
}
.our-partners .op-cardcolwrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: linear-gradient(150deg, #FFFFFF 40%, #DEE5FF 100%, #AFC0FF 170%);
    opacity: 0;
    pointer-events: none;
}
.our-partners .op-cardcolwrap::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -80px;
    width: 101px;
    height: 159px;
    transition: 0.3s;
    background-image: url(./lp_images/shape-2.png);
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
}
.op-cardlink{
    text-decoration: none;
    padding: 20px 24px;
    display: block;
}
.op-cardlink:hover{
    text-decoration: none;
}
.our-partners .op-cardcolwrap:hover{
    border-left: 5px solid var(--color-200);
}
.our-partners .op-cardcolwrap:hover:before,.our-partners .op-cardcolwrap:hover:after {
    opacity: 1;
}
.our-partners .op-cardcolwrap h5,.our-partners .op-cardcolwrap p,.our-partners .op-cardcolwrap .btn-link{
    position: relative;
    z-index: 1;
}
/* Our Partners end*/

/* contact-us start */
.contact-us{
    background: var(--color-500);
    padding: 80px 0;
    margin-bottom: 0;
}
.contact-us .cu-wrap {
    max-width: 761px;
    margin: auto;
}
.contact-us .cu-wrap .frm-loader svg {
    width: 30px;
    height: 30px;
}
.contact-us .sec-heading {
    margin-bottom: 20px;
    text-align: center;
}
.contact-us .submit-btn {
    margin-top: 35px;
}
.contact-us span.error {
    color: red;
    font-size: 12px;
}
 /* Chrome, Safari, Edge ke liye arrows hatane ke liye */
 input[type=number]::-webkit-inner-spin-button,
 input[type=number]::-webkit-outer-spin-button {
   -webkit-appearance: none;
   margin: 0;
 }
 
 /* Firefox ke liye arrows hatane ke liye */
 input[type=number] {
   -moz-appearance: textfield;
 }
/* contact-us end */

/* media query */
@media (max-width: 1440px) {
    :root {
        --container: 77.5rem;
    }
    .container {
        max-width: var(--container);
        padding: 0px 40px;
    }
    .container,.container-fluid,.container-right,.container-left {
        max-width: 100%;
    }
    .our-partners .container-wrap:after {
        background-size: unset;
    }
    .our-partners .container-wrap {
        max-width: 1340px;
        margin: auto;
        padding: 0 40px;
    }
    .our-partners .op-card{
        max-width: 100%;
        margin-left: unset;
    }
    .our-partners .container-wrap:after{
        height: 1010px;
    }
    .container-left{
        position: relative;
        padding-left: calc((100% - var(--container)) / 2);
    }
    .container-left> div {
        padding-left: var(--gutter);
    }
    .container-right{
        position: relative;
        padding-right: calc((100% - var(--container)) / 2);
    }
    .container-right> div {
        padding-right: var(--gutter);
    }
    .fifty-fifty .ff-right {
        width: 44.6%;
    }
    .fifty-fifty .ff-left{
        width: 55.4%;
    }
    .fifty-fifty .ff-imgwrap {
        padding-top: 70%;
    }
    .vertical-tab .vt-left {
        width: 30%;
    }
    .vertical-tab .vt-right {
        width: 70%;
    }
    .vertical-tab .vt-tabwrap {
        padding-right: 18px;
    }
    .counter-card .cc-heading {
        max-width: 650px;
    }
    .counter-card .cc-cardrow {
        gap: 32px;
        max-width: 100%;
        justify-content: center;
    }
    .counter-card .cc-cardcol {
        max-width: 100%;
    }

    .two-rowslider .tr-detail {
        padding-right: 0;
        max-width: 460px;
    }
    .two-rowslider .tr-left.tr-col{
        width: 48%;
    }
    .two-rowslider .tr-right.tr-col{
        width: 48%;
    }
    .two-rowslider .tr-row {
        gap: 30px;
    }
}
@media (max-width: 1199px) {
    :root {
        --h1: 2.5rem;
        --h2: 2.25rem;
    }
    /* .container {
        max-width: var(--container);
        padding: 0px 40px;
    } */
    h1,.h1{
        line-height: 1.2;
    }
    .space-lg-m{
        margin: 72px 0;
    }
    .main-header {
        padding: 20px 0;
    }
    .main-header .hamburger {
        display: block;
    }
    .main-header .btn-link, .main-header .btn {
        display: none;
    }
    .main-header .mh-wrapper ul{
        display: none;
    }
    .main-header .mh-wrapper.menu ul{
        display: flex;
    }
    .main-header .mh-wrapper ul li a {
        padding: 10px;
        display: block;
    }
    .main-header .mh-wrapper ul li{
        width: 100%;
        text-align: center;
    }
    .main-header .mh-wrapper ul li a:hover {
        background: var(--color-200);
        color: var(--color-white);
        width: 100%;
    }
    .main-header .logo {
        max-width: 130px;
    }
    .main-header .btn-group{
        display: none;
    }
    .fifty-fifty .ff-right {
        width: 48%;
    }
    .fifty-fifty .ff-left{
        width: 52%;
    }
    /* .main-header.top{
        background: var(--color-white);
    } */
    .hero-banner .hb-detailwrap {
        max-width: 443px;
    }
    .hb-detailwrap h1 {
        max-width: 350px;
    }
    .our-partners .op-wrap {
        padding: 25px 25px 0 25px;
    }
    .contact-us{
        margin-bottom: 0;
    }
    .vertical-tab .tab-part p {
        display: block;
    }
    .vertical-tab .tab-part{
        background: var(--color-500);
        padding: 15px 15px 15px 28px;
        border-radius: 8px;
    }
    .vertical-tab .tab-part:after{
        content: '';
        position: absolute;
        left: 0;
        top:0 ;
        width: 12px;
        height: 100%;
        background-color: var(--color-600);
    }
    .vertical-tab .tab-part:before{
        content: '';
        position: absolute;
        left: 0;
        top:0 ;
        width: 12px;
        height: 0;
        background-color: var(--color-200);
        z-index: 1;
    }
    .vertical-tab .tab-part:before{
        height: 100%;
        transition: 6s;
    }
    .vertical-tab .vt-left {
        width: 36%;
    }
    .vertical-tab .vt-right {
        width: 64%;
    }
    .vertical-tab  .tab-detailwrap {
        padding-right: 30px;
    }
    .our-partners .op-row {
        flex-direction: column;
        row-gap: 30px;
    }
    .our-partners .op-col.op-left,.our-partners .op-col.op-right{
        width: 100%;
    }
    .our-partners .container-wrap:after {
        height: 830px;
    }
    .our-partners .container-wrap {
        padding: 0 15px;
    }
    .counter-card .cc-cardcol {
        margin-right: 24px;
        height: auto;
    }
    .counter-card ul.slick-dots {
        margin-top: 0;
        width: 100%;
        justify-content: center;
    }
    .counter-card .cc-heading {
        max-width: 100%;
    }
    .counter-card .cc-heading {
        margin-bottom: 24px;
        padding: 0 40px;
    }
    .counter-card .slick-track {
        display: flex;
    }
    .counter-card .cc-counterwrap .cc-numbar {
        font-size: 72px;
    }
    .counter-card .cc-carddetail img {
        width: 149px;
        height: 149px;
    }
    .counter-card .container {
        padding: 0;
    }
    .counter-card .cc-cardrow {
        padding-left: 40px;
    }
    .contact-us .submit-btn {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .fifty-fifty .ff-left {
        padding:16px 16px 16px 0;
    }
    .two-rowslider .tr-slider {
        padding-bottom: 80px;
        max-width: 365px;
        margin: auto;
    }
    
    .hero-banner .hv-bgimg img,.hero-banner .hv-bgimg video {
        object-fit: contain;
    }
    /* .our-partners .op-row {
        flex-direction: column;
        row-gap: 30px;
    }
    .our-partners .op-col.op-left,.our-partners .op-col.op-right{
        width: 100%;
    }
    .our-partners .container-wrap:after {
        height: 930px;
    }
    .our-partners .container-wrap {
        padding: 0 15px;
    } */
    .h5, h5 {
        font-size: 20px;
    }
    .hb-detailwrap h1 {
        margin-bottom: 86px;
    }
    .hero-banner .hb-detailwrap {
        max-width: 443px;
        padding-top: 0;
    }
    .hero-banner {
        height: 100%;
        min-height: unset;
    }
    .hero-banner .hv-bgimg{
        position: unset;
        height: unset;
        padding-top: 63.5%;
    }
    .hero-banner .hv-bgimg img,.hero-banner .hv-bgimg video {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-position: top;
        object-fit: contain;
    }
    .hero-banner .hb-detailwrap {
        height: auto;
        margin-top: -410px;
    }
}
@media (max-width: 767px) {
    :root {
        --h1: 2.5rem;
        --gutter: 1.25rem;
    }
    .container {
        padding: 0px 20px;
    }
    .space-lg-m{
        margin:70px 0;
    }
    form .col {
        width: 100%;
    }
    .vertical-tab .vt-tabwrap {
        padding-right: 0;
    }
    .counter-card .cc-heading {
        margin-bottom: 30px;
    }
    .contact-us {
        padding: 48px 0;
        margin-bottom: 0 !important;
    }
    .counter-card .cc-counterwrap .cc-numbar {
        font-size: 58px;
    }
    .counter-card .cc-heading {
        padding: 0 20px;
    }
    .counter-card .cc-cardrow {
        padding-left: 20px;
    }
    .our-partners .op-card {
        flex-direction: column;
    }
    .our-partners .op-card .op-cardcol {
        width: 100%;
    }
    .our-partners .op-wrap {
        padding: 20px;
    }
    .our-partners .container-wrap {
        padding: 0 10px;
    }
    .hb-detailwrap h1 {
        margin-bottom: 16px;
    }
    .hero-banner .hb-detailwrap {
        margin-top: 0;
        height: auto;
        max-width: 100%;
    }
    .fifty-fifty .ff-mainwrap {
        flex-direction: column;
    }
    .fifty-fifty .ff-left,.fifty-fifty .ff-right {
        width: 100%;
    }
    .fifty-fifty .container-right > div{
        padding: 0 20px 0 0;
    }
    .fifty-fifty .ff-detailwrap{
        padding-left: 20px;
        margin-top: 30px;
    }
    .two-rowslider .tr-row {
        flex-direction: column;
        gap: 24px;
    }
    .two-rowslider .tr-detail {
        max-width: 100%;
    }
    .two-rowslider .tr-left.tr-col{
        width: 100%;
    }
    .two-rowslider .tr-right.tr-col{
        width: 100%;
    }
    .tr-imgwrap {
        text-align: center;
    }
    .swiper-arrowwrap {
        right: unset;
        left: 50%;
        transform: translateX(-50%);
    }
    ul.slick-dots {
        justify-content: center;
    }
    .vertical-tab .vt-mainwrap {
        flex-direction: column;
        row-gap: 24px;
    }
    .vertical-tab .vt-left {
        width: 100%;
    }
    .vertical-tab .vt-right {
        width: 100%;
    }
    .vertical-tab .container-left {
        padding: 0 20px;
    }
    .vertical-tab .container-left> div {
        padding-left:0;
    }
    .vertical-tab .tab-img {
        padding-top: 70%;
    }
    .vertical-tab .sec-heading{
        margin-bottom: 32px;
    }
    .our-partners{
        overflow: hidden;
    }
    .two-rowslider .tr-slider .swiper-wrapper {
        row-gap: 24px;
    }
}
@media (max-width: 575px) {
    .our-partners .container-wrap:after {
        background-size: cover;
        height: 60%;
        bottom: -25%;
        width: 130%;
    }
}
