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

/* 
font-family: "Figtree", sans-serif;
font-family: "Geist", sans-serif;
*/

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */

:root {
    scroll-behavior: inherit;
    --heading-font: "Figtree", sans-serif;
    --body-font: "Geist", sans-serif;
    --black: #000000;
    --white: #ffffff;
    --theme-blue: #16118B;
    --theme-sky: #01AED8;
    --gray: #D3D3D3;
    --gradient: linear-gradient(110.48deg, #01AED8 0%, #16118B 100%);
    --theme-title: #051B34;
    --body-color: #515154;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: 300;
    font-style: normal;
    color: var(--body-color);
    font-size: 16px;
    line-height: 1.6;
    background-color: #fff;
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px 0;
    padding: 0;
    color: var(--theme-title);
    font-weight: 600;
    font-family: var(--heading-font);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}



h1,
.h1-title {
    line-height: 1;
    font-size: 60px;
    letter-spacing: -1.2px;
}

h2,
.h2-title {
    font-size: 50px;
    line-height: 1.1;
}

h3,
.h3-title {
    font-size: 40px;
    line-height: 1;
}

h4,
.h4-title {
    font-size: 24px;
    line-height: 1.2;

}

h5,
.h5-title {
    font-size: 20px;
    line-height: 1.2;

}




a {
    margin: 0;
    padding: 0;
    display: inline-block;
    text-decoration: none !important;
    outline: none !important;
    color: var(--theme-sky);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--theme-blue);
}

img {
    max-width: 100%;
}


input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    border-radius: 18px;
    color: var(--body-color);
    border: 1px solid #ECECEC;
    height: 60px;
    padding: 0 20px;
    outline: none !important;
    transition: .3s all;
}

textarea {
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    border-radius: 18px;
    border: 1px solid #ECECEC;
    padding: 25px 20px;
    width: 100%;
    color: var(--body-color);
    height: 252px;
    outline: none !important;
    resize: none;
}

select {
    border: 1px solid #ECECEC;
    width: 100%;
    padding: 0 20px;
    background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus,
input[type="text"]:focus-visible,
input[type="tel"]:focus-visible,
input[type="password"]:focus-visible,
input[type="email"]:focus-visible,
select:focus-visible,
textarea:focus-visible {
    background: var(--white);
    box-shadow: 0px 14px 83px rgba(3, 3, 254, 0.08);
    border-color: var(--white);
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: var(--gradient);
    height: 63px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: capitalize;
    color: var(--white);
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 180px;
    cursor: pointer;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 23px 44px rgba(0, 61, 153, 0.35);
}

input[type="submit"]:hover {
    background: linear-gradient(0deg, #01AED8 0%, #16118B 100%);
}

::-webkit-input-placeholder {
    color: var(--body-color);
}

:-ms-input-placeholder {
    color: var(--body-color);
}

::-moz-placeholder {
    color: var(--body-color);
}

:-moz-placeholder {
    color: var(--body-color);
}







/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}



/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 40px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    border: 1px solid #3E3E42;
    background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}



/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */

/* back to top */

#scroll {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 55px;
    height: 55px;
    background-color: #bdd653;
    display: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    line-height: 68px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    z-index: 9;
}

#scroll:hover {
    background: #88a725;
}

#scroll i {
    color: #fff;
    font-size: 44px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#scroll:hover i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}




/* navbar*/

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 108px;
    display: inline-block;
}

.navbar-brand img {
    width: 100%;
}

.navbar {
    background: none;
    margin: 0;
    padding: 8px 10px 8px 26px;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    position: relative;
    z-index: 1;
    transition: .3s all;
}

.navbar::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(12px);
    border-radius: 70px;
    z-index: -1;
    transition: .3s all;
}

.navbar-nav {
    margin: 0 auto;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    margin: 0 32px;
    padding: 0;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li:first-child {
    margin-left: 0;
}

.navbar-nav>li>a {
    line-height: 1.2;
    position: relative;
    font-weight: 400;
    font-size: 18px;
    color: var(--white);
    text-transform: capitalize;
}

.navbar-nav>li>a:after {
    content: '';
    /* display: block; */
    display: none;
    width: 0;
    height: 2px;
    background: #3B61DC;
    /* opacity: 0; */
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
    color: var(--theme-sky);
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
}


/* navbar submenu*/

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: 140px;
    padding: 0;
}

.sub-menu>li>a {
    color: #000;
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    background: #eab71e;
    color: #fff;
}



.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}


/* for push-menu */
.navbar-collapse .navbar-toggler {
    display: none;
}

#navoverlay {
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

/* for push-menu end*/


/* CUSTOM CSS */

.main-head {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    padding-top: 40px;
    padding-bottom: 20px;
    transition: .5s all;
}

.main-head::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(5, 27, 52, 0.6);
    top: 0;
    left: 0;
    transform: translateY(-100%);
    transition: .5s all;
    backdrop-filter: blur(20px);
}

.main-head.fixed {
    padding: 15px 0;
}

.main-head.fixed::before {
    transform: translateY(0);
    box-shadow: 0px 15px 20px 10px rgba(0, 0, 0, 0.15);
}

.main-head.fixed .navbar {
    padding: 0;
}

.main-head.fixed .navbar::before {
    opacity: 0;
}

.main-head.fixed .navbar-brand {
    max-width: 90px;
}

.cmn-btn {
    background: var(--gradient);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: capitalize;
    color: #FFFFFF;
    padding: 20px 31px;
    border-radius: 70px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0px 23px 44px rgba(0, 61, 153, 0.35);
}

.cmn-btn::before {
    position: absolute;
    content: "";
    top: 0;
    left: auto;
    right: 0;
    width: 0%;
    height: 100%;
    z-index: -1;
    background-color: var(--theme-sky);
    pointer-events: none;
    transition: 0.5s all;
}

.cmn-btn:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.cmn-btn:hover {
    color: var(--white);
}

.hdr-btn-wrppr {
    display: flex;
}

.hdr-btn-wrppr .cmn-btn {
    box-shadow: none;
}

.bnnr-sec {
    background-color: #02061E;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-top: 200px;
    overflow: hidden;
}

.custm-bg-light {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.custm-bg-light img {
    height: 100%;
    object-fit: cover;
}

.bnnr-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.bnnr-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bnnr-main {
    width: 100%;
    position: relative;
    z-index: 1;
}

.bnnr-content-col {
    width: 40%;
    flex: 0 0 auto;
    padding: 97px 15px 0;
}

.bnnr-img-col {
    width: 60%;
    flex: 0 0 auto;
    padding: 0 15px;
}

.bnnr-content-wrppr {
    max-width: 468px;
    width: 100%;
}

.bnnr-subtitle {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 32px;
}

.bnnr-subtitle img {
    width: 15px;
    margin-right: 8px;
}

.bnnr-content-wrppr h1 {
    letter-spacing: -1.2px;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 34px;
}

.bnnr-content-wrppr>p {
    margin-bottom: 32px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.36px;
    color: #F7F6FF;
}

.bnnr-btn-wrppr {
    position: relative;
    z-index: 1;
    display: inline-flex;
}

.bnnr-btn-wrppr>img {
    width: 41px;
    position: absolute;
    left: calc(100% + 12px);
    top: -23px;
}

.bnnr-img-wrppr {
    padding: 28px 36px;
    border: 1px solid #2C356E;
    background-color: #050A2A;
    border-top-left-radius: 44px;
    border-bottom-left-radius: 44px;
    width: auto;
    max-width: none;
    margin-right: calc((((100vw - 1095px) + 36px) / 2) *-1);
    margin-bottom: -82px;
}

.bnnr-video-wrppr {
    width: 100%;
    height: 100%;
    position: relative;
    border-top-left-radius: 44px;
    border-bottom-left-radius: 44px;
    overflow: hidden;
}

.bnnr-img-wrppr>img,
.bnnr-img-wrppr video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    border-top-left-radius: 44px;
    border-bottom-left-radius: 44px;
}

.bnnr-video-wrppr .img1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: 1;
    pointer-events: none;
}

.bnnr-video-wrppr .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bnnr-video-wrppr .line {
    position: absolute;
    width: 4.8%;
    top: 57%;
    left: 57%;
    z-index: 0;
    pointer-events: none;
}

.bnnr-video-wrppr .line video {
    border-radius: 0;
}

.cmn-gap {
    padding: 130px 0;
}

.sec-head {
    margin-bottom: 40px;
}

.sec-head h2 {
    font-weight: 300;
    text-transform: capitalize;
    line-height: 1;
    margin-bottom: 15px;
}

.sec-head.white-txt,
.sec-head.white-txt h2,
.sec-head.white-txt h2 span {
    color: var(--white);
    background: transparent;
    -webkit-text-fill-color: var(--white);
}

.sec-head h2 span {
    font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sec-head p {
    font-size: 18px;
}

.home-service-sec .sec-head {
    max-width: 801px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.home-service-wrppr {
    padding: 50px 40px 40px 25px;
    background-color: #F8F8F8;
    border-radius: 18px;
    min-height: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .3s all;
    cursor: pointer;
    color: var(--body-color);
}

.home-service-wrppr:hover {
    background: var(--white);
    box-shadow: 0px 40px 74px rgba(4, 0, 234, 0.07);
    color: var(--body-color);
}

.home-service-wrppr .icon {
    display: inline-flex;
    align-items: flex-start;
    /* min-height: 161px; */
    margin-bottom: 35px;
}

.home-service-wrppr h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    text-transform: capitalize;
    color: var(--theme-title);
    margin-bottom: 15px;
}

.home-service-rw {
    --bs-gutter-x: 28px;
    --bs-gutter-y: 30px;
}

.home-service-btn-wrppr {
    padding-top: 35px;
    display: flex;
    justify-content: center;
}

.value-why-sec {
    position: relative;
    z-index: 1;
    background-color: #02061E;
}

.bg-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-why-main {
    max-width: 1290px;
    width: 100%;
    margin: 0 auto;
}

.value-why-rw {
    align-items: center;
}

.value-why-each {
    display: flex;
    flex-wrap: wrap;
}

.value-why-each:not(:last-child) {
    margin-bottom: 45px;
}

.value-why-each .icon-shpe {
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-right: 28px;
}

.value-why-count {
    flex-grow: 1;
}

.value-why-count h3 {
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.4px;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 0;
}

.value-why-count p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.36px;
    color: #C1C4D4;
}

.value-why-img-wrppr {
    max-width: 525px;
    width: 100%;
    margin-left: auto;
    position: relative;
}

.value-why-img-wrppr figure {
    width: 100%;
    margin-bottom: 0;
    border-radius: 20px;
    overflow: hidden;
}

.value-why-img-wrppr figure img {
    width: 100%;
}

.value-why-img-wrppr .smll-shpe {
    max-width: 247px;
    position: absolute;
    top: 28px;
    right: 65px;
    border-radius: 10px;
    overflow: hidden;
}

.value-why-img-wrppr .smll-shpe img {
    width: 100%;
}

.value-why-content-wrppr {
    padding: 0 38px;
}

.value-why-rw:not(:last-child) {
    margin-bottom: 120px;
}

.value-why-rw:nth-child(even) {
    flex-direction: row-reverse;
}

.value-why-rw:nth-child(even) .value-why-img-wrppr {
    max-width: 581px;
    margin-left: 0;
    padding-right: 86px;
}

.value-why-img-wrppr .smll-bttm {
    position: absolute;
    right: 0;
    bottom: 50px;
    max-width: 226px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.value-why-img-wrppr .smll-bttm img {
    width: 100%;
}

.value-why-content-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.value-why-content-list li:not(:last-child) {
    margin-bottom: 30px;
}

.value-why-content-list li {
    color: #C1C4D4;
}

.value-why-content-list li h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.4px;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 5px;
    position: relative;
    padding-left: 30px;
}

.value-why-content-list li h3::before {
    position: absolute;
    content: "";
    width: 19px;
    height: 19px;
    background: url(images/blue-tick.svg) center no-repeat;
    background-size: 19px;
    top: 6px;
    left: 0;
}

.feature-itms {
    padding: 35px 15px;
    height: inherit !important;
}

.feature-slider .slick-list {
    margin: -35px -15px;
}

.feature-slider .slick-track {
    display: flex !important;
}

.feature-card-wrppr {
    padding: 35px 20px;
    background-color: #F8F8FF;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 173px;
    height: 100%;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: .3s all;
}

.feature-card-wrppr::before {
    position: absolute;
    content: "";
    max-width: 144px;
    width: 100%;
    height: 33px;
    background: url(images/cutting-shpe.svg) center no-repeat;
    background-size: 100%;
    top: -25px;
    right: 0;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: .3s all;
}

.feature-card-wrppr .icon-card {
    display: inline-flex;
    line-height: 0;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.feature-card-wrppr .icon-card::before {
    position: absolute;
    content: "";
    width: 51px;
    height: 54px;
    top: -8px;
    left: 11px;
    z-index: -1;
    background: url(images/blue-shpe.svg) center no-repeat;
    background-size: 100%;
    transform: rotate(-7deg);
    opacity: 0.03;
    pointer-events: none;
}

.feature-card-title-wrppr a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-card-title-wrppr a h3 {
    font-weight: 500;
    font-size: 18px;
    color: var(--theme-title);
    line-height: 1.2;
    margin-bottom: 0;
    text-transform: capitalize;
}

.feature-card-title-wrppr a i {
    transition: .3s all;
    filter: brightness(0) invert(0.85);
}

.feature-card-wrppr:hover {
    background: var(--white);
    box-shadow: 0px 20px 40px rgba(4, 0, 234, 0.07);
}

.feature-card-wrppr:hover::before {
    top: 0;
    opacity: 1;
}

.feature-card-wrppr:hover .feature-card-title-wrppr a i {
    filter: none;
}

.feature-slider-outtr {
    position: relative;
    padding: 0 65px;
}

.feature-slider-arrw {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient);
    z-index: 1;
}

.feature-slider-arrw::before {
    position: absolute;
    content: "";
    background-color: var(--white);
    top: 1px;
    bottom: 1px;
    left: 1px;
    right: 1px;
    border-radius: 50%;
    z-index: -1;
    transition: .3s all;
}

.feature-slider-arrw img {
    transition: .3s all;
}

.feature-slider-arrw:hover::before {
    transform: scale(0);
    opacity: 0;
}

.feature-slider-arrw:hover img {
    filter: brightness(0) invert(1);
}

.feature-slider-arrw.prev {
    left: 0;
}

.feature-slider-arrw.next {
    right: 0;
}

.price-sec {
    position: relative;
    background-color: #02061E;
    z-index: 1;
}

.price-rw {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.price-card-wrppr {
    background-color: var(--white);
    border: 1px solid rgba(1, 83, 131, 0.1);
    border-radius: 24px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.price-card-wrppr .price-card-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--gradient);
    margin-bottom: 19px;
    transition: .3s all;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.price-card-wrppr .price-card-icon::before {
    position: absolute;
    content: "";
    width: calc(100% - 6px);
    height: 100%;
    top: 0;
    left: 0;
    background: url(images/icon-shpe.svg) center no-repeat;
    background-size: 100%;
    transition: .3s all;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.price-card-wrppr .price-card-icon img {
    filter: brightness(0) invert(1);
    transition: .3s all;
}

.price-card-wrppr h3 {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: -0.95px;
    color: var(--theme-title);
    margin-bottom: 22px;
    transition: .3s all;
}

.price-card-wrppr .price-amount {
    padding-bottom: 18px;
    border-bottom: 1px solid #E7EBFF;
    margin-bottom: 18px;
    transition: .3s all;
}

.price-card-wrppr .price-amount p {
    font-weight: 500;
    font-size: 58px;
    line-height: 1.3;
    letter-spacing: -0.95px;
    color: var(--theme-title);
    display: flex;
    align-items: center;
    transition: .3s all;
}

.price-card-wrppr .price-amount p span {
    font-weight: 300;
    font-size: 28px;
    text-transform: capitalize;
    color: #797878;
    letter-spacing: 0;
    margin-left: 10px;
    transition: .3s all;
}

.price-card-wrppr ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.price-card-wrppr li:not(:last-child) {
    margin-bottom: 18px;
}

.price-card-wrppr li {
    padding-left: 42px;
    list-style: none;
    line-height: 1.9;
    font-size: 20px;
    position: relative;
    transition: .3s all;
}

.price-card-wrppr li::before {
    position: absolute;
    content: "";
    background: url(images/custm-tick.svg) center no-repeat;
    background-size: 100%;
    width: 18px;
    height: 12px;
    left: 0;
    top: 13px;
    transition: .3s all;
}

.price-card-btn-wrppr {
    flex-grow: 1;
    padding-top: 19px;
}

.price-card-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme-title);
    border-radius: 11px;
    color: var(--theme-title);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-transform: capitalize;
    padding: 17px 20px;
}

.price-card-btn:hover {
    background-color: var(--theme-title);
    color: var(--white);
}

.price-card-wrppr.active {
    border: none;
}

.price-card-wrppr.active::before {
    position: absolute;
    content: "";
    background: url(images/price-card-bg.svg) center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.price-card-wrppr.active .price-card-icon {
    background: var(--white);
}

.price-card-wrppr.active .price-card-icon img {
    filter: none;
}

.price-card-wrppr.active .price-card-icon::before {
    opacity: 1;
}

.price-card-wrppr.active h3,
.price-card-wrppr.active .price-amount p,
.price-card-wrppr.active .price-amount p span,
.price-card-wrppr.active li {
    color: var(--white);
}

.price-card-wrppr.active li::before {
    filter: brightness(0) invert(1);
}

.price-card-wrppr.active .price-amount {
    border-color: rgba(231, 235, 255, 0.23);
}

.price-card-wrppr.active .price-card-btn {
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0px 7px 34px rgba(27, 34, 60, 0.16);
}

.price-card-wrppr.active .price-card-btn span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: .3s all;
}

.price-card-wrppr.active .price-card-btn:hover {
    background: var(--theme-blue);
    border-color: var(--theme-blue);
}

.price-card-wrppr.active .price-card-btn:hover span {
    -webkit-text-fill-color: var(--white);
}

.faq-about-rw {
    align-items: center;
    --bs-gutter-x: 75px;
    margin-bottom: 130px;
}

.faq-about-content-col {
    width: 53%;
    flex: 0 0 auto;
}

.faq-about-img-col {
    width: 47%;
    flex: 0 0 auto;
}

.accrdn-cntnt {
    display: none;
    padding: 0 37px 30px;
}

.faq-about-img-wrppr {
    padding: 0 66px 0 33px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.faq-about-img-wrppr figure {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    border-radius: 25px;
    overflow: hidden;
}

.faq-about-img-wrppr figure img {
    width: 100%;
}

.faq-about-img-wrppr .faq-shpe-one {
    max-width: 257px;
    width: 100%;
    bottom: 30px;
    left: 0;
    position: absolute;
    z-index: 1;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-about-img-wrppr .faq-shpe-two {
    max-width: 263px;
    width: 100%;
    position: absolute;
    top: 48px;
    right: 0;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-about-img-wrppr .faq-shpe-one img,
.faq-about-img-wrppr .faq-shpe-two img {
    width: 100%;
}

.each-faq:not(:last-child) {
    margin-bottom: 30px;
}

.each-faq {
    background: var(--white);
    box-shadow: 0px 16px 74px rgba(48, 46, 163, 0.05);
    border-radius: 20px;
}

.accrd-hdr {
    padding: 25px 16px 25px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.accrdng-hdng {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.accrd-hdr-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    transition: .3s all;
}

.accrd-hdr.active .accrd-hdr-icon {
    transform: rotate(180deg);
}

.accrdn-cntnt-innr {
    padding-left: 13px;
    position: relative;
}

.accrdn-cntnt-innr::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background: var(--gradient);
    top: 0;
    left: 0;
}

.home-abut-rw {
    align-items: center;
    --bs-gutter-x: 94px;
}

.home-abut-img-col {
    width: 55%;
    flex: 0 0 auto;
}

.home-abut-content-col {
    width: 45%;
    flex: 0 0 auto;
}

.faq-about-img-wrppr.about {
    margin-left: -50px;
    padding-left: 85px;
    padding-right: 45px;
    max-width: none;
    width: auto;
}

.hppy-custmr {
    background: var(--white);
    box-shadow: 0px 9px 48px -2px rgba(6, 12, 59, 0.08);
    border-radius: 7px;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 245px;
    width: 100%;
    position: absolute;
    bottom: 40px;
    left: 0;
    z-index: 1;
}

.hppy-custmr>span {
    width: 52px;
    flex: 0 0 auto;
    margin-right: 13px;
}

.hppy-custmr>span img {
    width: 100%;
}

.hppy-custmr-info {
    flex: 1;
}

.hppy-custmr-info h4 {
    font-weight: 700;
    font-size: 21px;
    line-height: 1.2;
    color: #060C3C;
    margin-bottom: 0;
}

.hppy-custmr-info p {
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: 1.3;
    text-transform: capitalize;
    color: #060C3C;
    margin-bottom: 0;
}

.daily-visit-wrppr {
    padding: 20px;
    max-width: 153px;
    width: 100%;
    top: 140px;
    right: 0;
    position: absolute;
    z-index: 1;
    background: var(--white);
    box-shadow: 0px 9px 48px -2px rgba(6, 12, 59, 0.08);
    border-radius: 7px;
}

.daily-visit-wrppr p {
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: 1.3;
    text-transform: capitalize;
    color: #060C3C;
    margin-bottom: 0;
}

.daily-visit-wrppr h4 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #060C3C;
    margin-bottom: 0;
}

.newsletter-sec {
    padding-bottom: 52px;
}

.newsletter-outtr {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto 52px;
    background-color: #02061E;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 77px;
}

.newsletter-outtr .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.newsletter-outtr .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-innr {
    max-width: 615px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    font-size: 18px;
    color: var(--white);
}

.newsletter-innr h2 {
    font-weight: 600;
    font-size: 40px;
    letter-spacing: -0.8px;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-form-wrppr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-form-wrppr h3 {
    max-width: 329px;
    width: 100%;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.48px;
    text-transform: capitalize;
    color: var(--theme-title);
    margin-bottom: 0;
    flex: 0 0 auto;
}

.newsletter-form-wrppr form {
    max-width: 500px;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-form-wrppr form input[type="submit"] {
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: capitalize;
    color: var(--white);
    background: var(--gradient);
    padding: 22px;
    border-radius: 50px;
    flex: 0 0 auto;
    min-width: 130px;
    text-align: center;
    height: auto;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.newsletter-form-wrppr form input[type="submit"]:hover {
    background: linear-gradient(0deg, #01AED8 0%, #16118B 100%);
}

.newlettr-field-wrppr {
    flex: 1;
    padding-right: 10px;
}

.newlettr-field-wrppr input {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--body-color);
    width: 100%;
    border: 1px solid #C1C4D4;
    border-radius: 50px;
    padding: 0 25px;
    height: 62px;
}

.newlettr-field-wrppr input::-webkit-input-placeholder {
    font-weight: 400;
    /* font-size: 18px;
    line-height: 1.5; */
    color: var(--body-color);
}

.footer-main {
    border-top: 1px solid #EFF0F7;
    border-bottom: 1px solid #EFF0F7;
}

.footer-main-rw {
    display: flex;
    flex-wrap: wrap;
}

.footer-logo-col {
    width: 33%;
    padding: 55px 55px 55px 0;
    flex: 0 0 auto;
    border-right: 1px solid #EFF0F7;
}

.footer-logo-wrppr {
    max-width: 393px;
    width: 100%;
}

.fttr-logo-link {
    max-width: 124px;
    width: 100%;
    margin-bottom: 30px;
}

.fttr-logo-link a {
    display: block;
    width: 100%;
}

.fttr-logo-link a img {
    width: 100%;
}

.footer-logo-wrppr>p {
    margin-bottom: 25px;
}

.social-media-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-media-list li:not(:last-child) {
    margin-right: 13px;
}

.social-media-list li a {
    width: 47px;
    height: 47px;
    background: var(--white);
    box-shadow: 0px 0px 30px rgba(1, 75, 124, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.social-media-list li a img {
    transition: .3s all;
}

.social-media-list li a:hover {
    background: var(--gradient);
}

.social-media-list li a:hover img {
    filter: brightness(0) invert(1);
}

.fttr-explore-col {
    width: 21%;
    flex: 0 0 auto;
    padding: 55px 95px;
    border-right: 1px solid #EFF0F7;
}

.fttr-add-link-col {
    width: 21%;
    flex: 0 0 auto;
    padding: 55px 75px 55px 60px;
    border-right: 1px solid #EFF0F7;
}

.fttr-head {
    width: 100%;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.fttr-head p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    text-transform: capitalize;
    color: var(--theme-title);
    margin: 0;
}

.fttr-head::before {
    position: absolute;
    content: "";
    width: 29px;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--theme-title);
}

.footer-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-nav li {
    padding-left: 20px;
    position: relative;
}

.footer-nav li:not(:last-child) {
    margin-bottom: 8px;
}

.footer-nav li a {
    /* line-height: 1.2; */
    text-transform: capitalize;
    color: var(--body-color);
}

.footer-nav li a:hover,
.footer-nav li.current a {
    color: var(--theme-sky);
}

.footer-nav li::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    left: 0;
    top: 7px;
    background: url(images/shpe.svg) center no-repeat;
    background-size: 100%;
}

.fttr-quick-link-col {
    width: 25%;
    padding: 55px 0 55px 85px;
    flex: 0 0 auto;
}

.footer-nav.fttr-quick-list li {
    display: flex;
}

.footer-nav.fttr-quick-list li strong {
    font-weight: 400;
    /* line-height: 1.4; */
    padding-right: 10px;
    min-width: 75px;
}

.fttr-copy-right-part {
    padding: 19px 0;
    text-align: center;
    text-transform: capitalize;
}

.fttr-copy-right-part a {
    color: var(--body-color);
}

.fttr-copy-right-part a:hover {
    color: var(--theme-sky);
}

.home-abut-content-col .sec-head p>b {
    font-weight: 300;
    color: var(--theme-title);
}

.bnnr-sec.innr-bnnr-sec {
    padding-top: 245px;
    padding-bottom: 140px;
}

.bnnr-sec.innr-bnnr-sec .custm-bg-light {
    width: 60%;
}

.bnnr-sec.innr-bnnr-sec .custm-bg-light img {
    width: 100%;
    object-position: top right;
}

.bnnr-sec.innr-bnnr-sec .bnnr-content-wrppr {
    max-width: 100%;
    text-align: center;
}

.bnnr-sec.innr-bnnr-sec .bnnr-content-wrppr h1 {
    margin-bottom: 0;
}

.about-page-img-wrppr {
    width: 100%;
    height: 100%;
    padding-right: 186px;
    padding-bottom: 82px;
    position: relative;
}

.about-page-img-wrppr figure {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    padding: 0 25px;
    background-color: #A89ED1;
    border-radius: 45px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-page-img-wrppr figure img {
    margin-top: -60px;
    height: calc(100% + 60px);
    width: auto;
    object-fit: contain;
    object-position: bottom;
}

.about-page-img-wrppr .sp1 {
    max-width: 251px;
    width: 100%;
    background: var(--white);
    box-shadow: 0px 8px 43px -2px rgba(6, 12, 59, 0.08);
    border-radius: 16px;
    position: absolute;
    right: 0;
    bottom: 22%;
    overflow: hidden;
    z-index: 1;
}

.about-page-img-wrppr .sp2 {
    background: var(--white);
    box-shadow: 0px 8px 43px -2px rgba(6, 12, 59, 0.08);
    border-radius: 16px;
    max-width: 426px;
    width: 100%;
    position: absolute;
    bottom: 0;
    overflow: hidden;
    right: 21%;
}

.about-page-img-wrppr .sp1 img,
.about-page-img-wrppr .sp2 img,
.about-page-img-wrppr .sp3 img,
.about-page-img-wrppr .sp4 img {
    width: 100%;
}

.home-abut-content-col .sec-head {
    margin-bottom: 0;
}

.about-page-rw {
    --bs-gutter-x: 50px;
}

.about-page-rw:not(:last-child) {
    margin-bottom: 130px;
}

.about-page-rw:nth-child(even) {
    flex-direction: row-reverse;
    align-items: center;
}

.about-page-rw:nth-child(even) .about-page-img-wrppr {
    max-width: 770px;
    margin-left: auto;
    padding-right: 100px;
    padding-left: 94px;
    padding-bottom: 50px;
}

.about-page-rw:nth-child(even) .about-page-img-wrppr figure {
    overflow: hidden;
}

.about-page-rw:nth-child(even) .about-page-img-wrppr figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page-img-wrppr .sp3 {
    max-width: 257px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 112px;
    right: 0;
    overflow: hidden;
}

.about-page-img-wrppr .sp4 {
    background: var(--white);
    box-shadow: 0px 9px 48px -2px rgba(6, 12, 59, 0.08);
    border-radius: 7px;
    max-width: 217px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.value-why-sec.about .sec-head h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-why-img-wrppr.about {
    max-width: 670px;
    margin-left: 0;
    padding-left: 106px;
    padding-bottom: 40px;
    padding-right: 70px;
    margin-left: -50px;
}

.value-why-img-wrppr.about .sp6 {
    background: var(--white);
    box-shadow: 0px 8px 42px -2px rgba(6, 12, 59, 0.08);
    border-radius: 6px;
    max-width: 195px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.value-why-img-wrppr.about .sp7 {
    background: var(--white);
    box-shadow: 0px 8px 42px -2px rgba(6, 12, 59, 0.08);
    border-radius: 6px;
    max-width: 170px;
    width: 100%;
    top: 50px;
    right: 0;
    position: absolute;
    overflow: hidden;
}

.value-why-img-wrppr.about .sp6 img,
.value-why-img-wrppr.about .sp7 img {
    width: 100%;
}

.value-why-sec.about {
    padding-bottom: 90px;
}

.vision-cmn-col {
    width: 50%;
    flex: 0 0 auto;
}

.vision-head {
    max-width: 600px;
}

.vision-img-wrppr {
    max-width: 740px;
    margin-left: auto;
    position: relative;
    padding-right: 85px;
    padding-left: 82px;
    padding-bottom: 46px;
}

.vision-img-wrppr figure {
    width: 100%;
    margin-bottom: 0;
    border-radius: 25px;
    overflow: hidden;
}

.vision-img-wrppr figure img,
.vision-img-wrppr .bttm-shpe img,
.vision-img-wrppr .top-shpe img {
    width: 100%;
}

.vision-img-wrppr .bttm-shpe {
    box-shadow: 0px 10px 35px rgba(28, 36, 105, 0.05);
    border-radius: 10px;
    max-width: 346px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.vision-img-wrppr .top-shpe {
    position: absolute;
    top: 34px;
    right: 0;
    overflow: hidden;
    box-shadow: 0px 10px 35px rgba(28, 36, 105, 0.05);
    border-radius: 10px;
    max-width: 200px;
    width: 100%;
}

.vision-rw {
    align-items: center;
}

.feature-card-wrppr.about-page .icon-card {
    width: 60px;
    height: 60px;
    margin-bottom: 45px;
}

.feature-card-wrppr.about-page .icon-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card-wrppr.about-page .icon-card::before {
    width: 67px;
    height: 71px;
    top: -5px;
    right: -26px;
}

.feature-card-wrppr.about-page h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    color: var(--theme-title);
    margin-bottom: 20px;
}

.feature-card-wrppr.about-page {
    padding: 47px 25px 44px;
    min-height: inherit;
    justify-content: flex-start;
}

.feature-card-wrppr.about-page::before {
    max-width: 194px;
    height: 44px;
}

.why-about-rw {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.contact-rw {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.contact-left-col {
    width: 33%;
    flex: 0 0 auto;
}

.contact-right-col {
    width: 67%;
    flex: 0 0 auto;
}

.contact-info-main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.each-contact-info {
    width: 100%;
    height: 33.33%;
    padding-bottom: 28px;
}

.each-contact-info:last-child {
    padding-bottom: 0;
}

.contact-info-wrppr {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    box-shadow: 0px 14px 83px rgba(3, 3, 254, 0.08);
    border-radius: 18px;
    padding: 40px 30px;
}

.contact-info-icon {
    width: 97px;
    height: 97px;
    background: var(--gradient);
    box-shadow: 0px 7px 21px rgba(65, 132, 247, 0.24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    margin-bottom: 20px;
}

.contact-info-wrppr h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
    color: var(--theme-title);
    margin-bottom: 15px;
}

.contact-info-wrppr p,
.contact-info-wrppr a {
    line-height: 1.4;
    margin-bottom: 0;
    color: var(--body-color);
}

.contact-info-wrppr a:hover {
    color: var(--theme-sky);
}

.contact-frm-main {
    padding: 64px 50px;
    background: var(--white);
    box-shadow: 0px 14px 83px rgba(3, 3, 254, 0.08);
    border-radius: 18px;
    height: 100%;
    width: 100%;
}

.contact-frm-main .sec-head {
    max-width: 697px;
    width: 100%;
    margin-bottom: 45px;
}

.contact-frm-rw {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.contact-frm-field-wrppr input,
.contact-frm-field-wrppr textarea,
.contact-frm-field-wrppr select {
    display: block;
    width: 100%;
}

.contact-frm-btn-wrppr {
    padding-top: 40px;
}

.service-dtls-content-col {
    width: 43%;
    flex: 0 0 auto;
}

.service-dtls-img-col {
    width: 57%;
    flex: 0 0 auto;
}

.service-dtls-rw {
    --bs-gutter-x: 20px;
    align-items: center;
}

.about-page-img-wrppr.service {
    max-width: 754px;
    width: 100%;
    padding-right: 100px;
    padding-bottom: 38px;
    padding-left: 53px;
}

.about-page-img-wrppr.service .sp1 {
    background: rgba(255, 255, 255, 0.002);
    box-shadow: 0px 5px 12px rgba(1, 174, 216, 0.13);
    border-radius: 12px;
    max-width: 257px;
    width: 100%;
    bottom: auto;
    top: 83px;
    right: inherit;
    left: 0;
}

.about-page-img-wrppr.service .sp2 {
    box-shadow: 0px 7px 36px -2px rgba(6, 12, 59, 0.08);
    border-radius: 13px;
    max-width: 400px;
    width: 100%;
    right: 0;
}

.sec-head.service-dtls-content-wrppr {
    margin-bottom: 0;
}

.api-service-wrppr {
    width: 100%;
    border-radius: 44px;
    overflow: hidden;
}

.api-service-wrppr img {
    width: 100%;
}

.api-sec {
    padding-top: 90px;
    padding-bottom: 100px;
}

.api-rw {
    --bs-gutter-x: 110px;
    --bs-gutter-y: 30px;
    align-items: center;
}

.api-content-col {
    width: 53%;
}

.api-img-col {
    width: 47%;
}

.faq-sec .faq-about-rw {
    margin-bottom: 0;
}

.api-industry-sec,
.reach-api-sec {
    background-color: #02061E;
    position: relative;
    z-index: 1;
}

.api-industry-sec .sec-head {
    max-width: 756px;
    margin-left: auto;
    margin-right: auto;
}

.api-industry-sec .feature-slider-arrw::before {
    background-color: #02061E;
}

.reach-api-sec .sec-head {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.api-developer-rw {
    --bs-gutter-x: 74px;
    align-items: center;
}

.api-developer-img-col,
.api-developer-content-col {
    width: 50%;
    flex: 0 0 auto;
}

.about-page-img-wrppr.api-developer-img-wrppr {
    padding-right: 54px;
    padding-bottom: 38px;
    padding-left: 100px;
    max-width: 100%;
}

.about-page-img-wrppr.api-developer-img-wrppr .sp1 {
    max-width: 257px;
    bottom: inherit;
    top: 83px;
    right: auto;
    left: 0;
    box-shadow: 0px 5px 12px rgba(1, 174, 216, 0.13);

}

.about-page-img-wrppr.api-developer-img-wrppr .sp2 {
    max-width: 400px;
    right: 0;
}

.cmn-btn-grup-wppr {
    display: flex;
    align-items: center;
}

.cmn-btn-grup-wppr a:not(:last-child) {
    margin-right: 27px;
}

.brdr-btn {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: capitalize;
    color: var(--theme-title);
    padding: 20px 31px;
    border-radius: 70px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--theme-title);
}

.brdr-btn::before {
    position: absolute;
    content: "";
    top: 0;
    left: auto;
    right: 0;
    width: 0%;
    height: 100%;
    z-index: -1;
    background-color: var(--theme-title);
    pointer-events: none;
    transition: 0.5s all;
}

.brdr-btn:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.brdr-btn:hover {
    color: var(--white);
}

.privacy-wrppr {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
}

.privacy-wrppr ul {
    padding: 0;
    margin-bottom: 20px;
}

.privacy-wrppr ul li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-weight: 400;
}

.privacy-wrppr ul li:last-child {
    margin-bottom: 0;
}

.privacy-wrppr ul li::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    left: 0;
    top: 7px;
    background: url(images/shpe.svg) center no-repeat;
    background-size: 100%;
}

.privacy-wrppr h3 {
    font-size: 35px;
}

.mail-link {
    text-transform: lowercase !important;
}

/* ========== responsive css =========== */



@media(min-width:1025px) {

    /* navbar*/
    .navbar-nav .clickD {
        display: none;
    }

    .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }
}

@media(min-width:1200px) {
    .container {
        max-width: 1170px;
        width: 100%;
        padding: 0 15px;
    }

    .container.large {
        max-width: 100%;
        width: 100%;
        padding: 0 60px;
    }
}

@media(min-width:1600px) {
    .container {
        max-width: 1490px;
        width: 100%;
        padding: 0 15px;
    }

    .bnnr-img-wrppr {
        margin-right: calc((((100vw - 1410px) + 36px) / 2) *-1);
    }
}

@media(min-width:1800px) {
    .container.large {
        max-width: 1750px;
        padding: 0 15px;
    }

    .feature-slider-outtr {
        padding: 0 86px;
    }

    .feature-itms {
        padding: 35px 24px;
    }

    .feature-slider .slick-list {
        margin: -35px -24px;
    }
}


@media(max-width:1599px) {

    h1,
    .h1-title {
        font-size: 52px;
    }

    h2,
    .h2-title {
        font-size: 44px;
    }

    .main-head {
        padding-top: 25px;
    }

    .bnnr-sec {
        padding-top: 170px;
    }

    .bnnr-content-col {
        padding: 50px 15px 0;
    }

    .bnnr-subtitle {
        margin-bottom: 15px;
    }

    .bnnr-content-wrppr h1 {
        margin-bottom: 15px;
    }

    .bnnr-content-wrppr>p {
        margin-bottom: 20px;
    }

    .bnnr-img-wrppr {
        margin-bottom: -70px;
    }

    .cmn-gap {
        padding: 100px 0;
    }

    .value-why-rw:not(:last-child) {
        margin-bottom: 80px;
    }

    .value-why-content-list li:not(:last-child) {
        margin-bottom: 20px;
    }

    .price-card-wrppr h3 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .price-card-wrppr .price-amount p {
        font-size: 46px;
    }

    .price-card-wrppr .price-amount p span {
        font-size: 22px;
    }

    .price-card-wrppr li {
        line-height: 1.5;
    }

    .price-card-wrppr li:not(:last-child) {
        margin-bottom: 8px;
    }

    .faq-about-img-wrppr .faq-shpe-two {
        max-width: 140px;
    }

    .faq-about-img-wrppr .faq-shpe-one {
        max-width: 180px;
    }

    .faq-about-img-wrppr {
        padding: 0 40px 0 25px;
    }

    .faq-about-rw {
        --bs-gutter-x: 35px;
        margin-bottom: 80px;
    }

    .home-abut-rw {
        --bs-gutter-x: 45px;
    }

    .faq-about-img-wrppr.about {
        margin-left: -15px;
        padding-left: 45px;
        padding-right: 25px;
    }

    .newsletter-outtr {
        padding: 45px;
    }

    .footer-logo-col {
        width: 30%;
        padding: 35px 35px 35px 0;
    }

    .fttr-explore-col {
        width: 18%;
        padding: 35px 45px;
    }

    .fttr-add-link-col {
        width: 19%;
        padding: 35px 25px 35px;
    }

    .fttr-quick-link-col {
        width: 33%;
        padding: 35px 0 35px 35px;
    }

    .vision-img-wrppr .bttm-shpe {
        max-width: 215px;
    }

    .vision-img-wrppr .top-shpe {
        max-width: 150px;
    }

    .bnnr-sec.innr-bnnr-sec {
        padding-top: 185px;
        padding-bottom: 100px;
    }

    .about-page-img-wrppr {
        padding-right: 66px;
        padding-bottom: 60px;
    }

    .about-page-img-wrppr .sp1 {
        max-width: 150px;
    }

    .about-page-img-wrppr .sp2 {
        max-width: 250px;
    }

    .about-page-rw:not(:last-child) {
        margin-bottom: 70px;
    }

    .about-page-rw:nth-child(even) .about-page-img-wrppr {
        padding-right: 50px;
        padding-left: 60px;
    }

    .value-why-img-wrppr.about {
        margin-left: 0;
        padding-left: 65px;
        padding-bottom: 40px;
        padding-right: 50px;
    }

    .value-why-img-wrppr.about .sp6 {
        max-width: 150px;
    }

    .api-developer-rw,
    .api-rw {
        --bs-gutter-x: 35px;
    }
}

@media (max-width: 1299px) {
    .home-service-wrppr .icon {
        min-height: 100px;
    }
}

@media(max-width:1199px) {

    .cmn-btn,
    .brdr-btn {
        padding: 12px 22px;
    }

    .navbar-nav>li {
        margin: 0 20px;
    }

    .bnnr-img-wrppr {
        padding: 20px;
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
        margin-right: calc((((100vw - 925px) + 36px) / 2) *-1);
        margin-bottom: 0;
    }

    .bnnr-content-col,
    .bnnr-img-col {
        width: 50%;
    }

    .bnnr-content-col {
        padding: 0 15px;
    }

    .bnnr-sec {
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .bnnr-rw {
        align-items: center;
    }

    .cmn-gap {
        padding: 80px 0;
    }

    .home-service-wrppr {
        padding: 25px 15px;
    }

    .value-why-each .icon-shpe {
        margin-right: 15px;
    }

    .value-why-count h3 {
        font-size: 34px;
        margin-bottom: 5px;
    }

    .value-why-img-wrppr .smll-shpe {
        max-width: 190px;
    }

    .value-why-rw:nth-child(even) .value-why-img-wrppr {
        padding-right: 35px;
    }

    .value-why-img-wrppr .smll-bttm {
        max-width: 155px;
    }

    .price-card-wrppr {
        padding: 25px;
    }

    .price-card-wrppr .price-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .price-card-wrppr h3 {
        font-size: 25px;
        margin-bottom: 10px;
        line-height: 1;
    }

    .price-card-wrppr .price-amount p {
        font-size: 40px;
    }

    .price-card-wrppr .price-amount p span {
        font-size: 18px;
    }

    .price-card-wrppr li {
        line-height: 1.2;
        font-size: 16px;
        padding-left: 32px;
    }

    .price-card-wrppr li::before {
        width: 15px;
        height: 10px;
        top: 4px;
    }

    .accrd-hdr {
        padding: 15px 15px 15px 25px;
    }

    .accrdn-cntnt {
        padding: 0 20px 20px;
    }

    .social-media-list li a {
        width: 38px;
        height: 38px;
    }

    .social-media-list li:not(:last-child) {
        margin-right: 8px;
    }

    .fttr-logo-link,
    .footer-logo-wrppr>p {
        margin-bottom: 15px;
    }

    .footer-logo-col {
        width: 27%;
        padding: 35px 15px 35px 0;
    }

    .fttr-explore-col {
        width: 18%;
        padding: 35px 20px;
    }

    .fttr-add-link-col {
        width: 22%;
        padding: 35px 15px 35px;
    }

    .about-page-rw {
        --bs-gutter-x: 30px;
        align-items: center;
    }

    .about-page-rw:nth-child(even) .about-page-img-wrppr figure {
        padding: 0;
    }

    .about-page-img-wrppr .sp3 {
        max-width: 180px;
    }

    .about-page-img-wrppr .sp4 {
        max-width: 155px;
    }

    .feature-card-wrppr.about-page {
        padding: 25px 15px 20px;
    }

    .feature-card-wrppr.about-page h3 {
        font-size: 20px;
    }

    .value-why-content-wrppr {
        padding: 0;
    }

    .about-page-rw .home-abut-img-col,
    .about-page-rw .home-abut-content-col {
        width: 100%;
    }

    .about-page-img-wrppr {
        max-width: 410px;
        margin: 0 auto 35px;
        padding-right: 35px;
        padding-left: 35px;
        padding-bottom: 40px;
    }

    .about-page-img-wrppr figure {
        border-radius: 25px;
    }

    .about-page-img-wrppr .sp1 {
        max-width: 120px;
    }

    .about-page-img-wrppr .sp2 {
        max-width: 200px;
    }

    .about-page-rw:nth-child(even) .about-page-img-wrppr {
        padding-right: 40px;
        padding-left: 40px;
        max-width: 500px;
    }

    .contact-info-icon {
        width: 75px;
        height: 75px;
        padding: 14px;
    }

    .contact-info-wrppr {
        padding: 30px 20px;
    }

    .contact-frm-main {
        padding: 40px 25px;
    }

    .contact-frm-main .sec-head {
        margin-bottom: 25px;
    }

    .contact-frm-rw {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }

    textarea {
        height: 180px;
    }

    .contact-frm-btn-wrppr {
        padding-top: 25px;
    }

    input[type="submit"] {
        height: 44px;
        min-width: 150px;
    }

    .service-dtls-rw {
        --bs-gutter-x: 0;
        --bs-gutter-y: 30px;
    }

    .service-dtls-content-col,
    .service-dtls-img-col {
        width: 100%;
    }

    .about-page-img-wrppr.service {
        max-width: 450px;
        padding: 50px 40px 30px;
        margin-bottom: 0;
    }

    .about-page-img-wrppr.service .sp1 {
        max-width: 175px;
    }

    .about-page-img-wrppr.service .sp2 {
        max-width: 250px;
    }

    .api-content-col,
    .api-img-col,
    .api-developer-img-col,
    .api-developer-content-col {
        width: 100%;
    }

    .api-service-wrppr {
        max-width: 500px;
        margin: 0 auto;
    }

    .api-sec {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-page-img-wrppr.api-developer-img-wrppr {
        max-width: 500px;
        padding-right: 35px;
        padding-bottom: 35px;
        padding-left: 35px;
    }

    .about-page-img-wrppr.api-developer-img-wrppr .sp1 {
        max-width: 145px;
    }

    .about-page-img-wrppr.api-developer-img-wrppr .sp2 {
        max-width: 220px;
    }

    .privacy-wrppr h2 {
        font-size: 38px;
    }

    .privacy-wrppr h3 {
        font-size: 30px;
    }

    .privacy-wrppr ul li {
        margin-bottom: 6px;
    }
}

@media(max-width:1024px) {

    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 17px;
        width: 20px;
        height: 20px;
        background: url(images/sort-down.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 5px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .sub-menu>li.menu-item-has-children .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 20px;
    }

    .sub-menu>li.menu-item-has-children>a {
        padding-right: 20px;
    }

    .sub-menu.show {
        display: block;
    }

    /* .navbar-nav > li{
        padding-top: 15px;
        padding-bottom: 15px;
    } */

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:after,
    .navbar-nav>li.menu-item-has-children>a:after {
        width: 100%;
        opacity: 0;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:hover:after,
    .navbar-nav>li.menu-item-has-children:hover>a:after {
        width: 100%;
        opacity: 1;
    }

    /* navbar end*/


}


@media (max-width: 991px) {

    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 45px;
        margin-left: 15px;
        height: 45px;
        padding: 0;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
        background: var(--gradient);
        border-radius: 50%;
        order: 1;

    }

    .stick,
    .stick:after,
    .stick:before {
        width: 25px;
        height: 2px;
        background: var(--white);
        position: absolute;
        left: 10px;
        top: auto;
        transition: all 0.6s;
        border-radius: 5px;
    }

    .stick:before {
        content: '';
        top: -7px;
        left: 0;
    }

    .stick:after {
        content: '';
        top: 7px;
        left: 0;
    }

    .stick.open {
        transform: translateX(-50px);
        background: transparent;
    }

    .stick.open:before {
        transform: rotate(45deg) translate(38px, -30px);
        left: 2px;
    }

    .stick.open:after {
        transform: rotate(-45deg) translate(40px, 28px);
        left: 2px;
    }

    .navbar-nav .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }


    .sub-menu,
    .navbar-nav>li>.sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
        right: inherit;
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 0;
    }

    .navbar-nav>li {
        margin: 0;
        padding: 0;
    }

    .navbar-nav>li>a {
        padding: 8px 20px;
        display: inline-block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .navbar-nav li.menu-item-has-children>a {
        padding-right: 30px;
    }

    .sub-menu>li>a {
        padding-left: 40px;
    }

    .sub-menu .sub-menu>li>a {
        padding-left: 60px;
    }

    .sub-menu .sub-menu .sub-menu>li>a {
        padding-left: 80px;
    }

    .navbar-nav>li>a:after {
        bottom: 0;
    }

    /* navbar end*/

    /* push nav */

    .navbar-collapse {
        background: var(--theme-title);
        position: fixed;
        top: 0;
        height: 100% !important;
        max-width: 350px;
        width: 100%;
        overflow-y: auto;
        border-left: 2px solid var(--theme-sky);
        transition: inherit !important;
        right: 0;
        margin: 0;
        display: block !important;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        z-index: 100;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
    }

    .navbar-collapse .navbar-nav {
        margin: 100px 0 0;
        padding: 0 0 30px 0;
    }

    .navbar-collapse .navbar-toggler {
        display: block;
        right: 20px;
        top: 20px;
        position: absolute;
    }

    #navoverlay {
        -webkit-transition: all 0.5s linear;
        transition: all 0.5s linear;
    }

    #navoverlay.open {
        background: rgba(21, 17, 139, 0.4);
        border-radius: 0;
        pointer-events: all;
    }

    body.open-nav,
    html.open-nav {
        height: 100%;
        overflow: hidden;
    }

    /* push nav end */

    .navbar {
        z-index: inherit;
    }

    .hdr-btn-wrppr {
        margin-left: auto;
    }

    .navbar-brand {
        max-width: 90px;
    }

    .main-head.fixed .navbar-brand {
        max-width: 80px;
    }

    .main-head.fixed {
        padding: 10px 0;
    }

    .bnnr-sec {
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .bnnr-content-col,
    .bnnr-img-col {
        width: 100%;
    }

    h1,
    .h1-title {
        font-size: 40px;
    }

    h2,
    .h2-title {
        font-size: 36px;
    }

    .bnnr-subtitle {
        font-size: 14px;
    }

    .bnnr-content-wrppr {
        max-width: 530px;
        text-align: center;
        margin: 0 auto 35px;
    }

    .bnnr-content-wrppr>p {
        font-size: 16px;
    }

    .bnnr-img-wrppr {
        padding: 15px;
        max-width: 75%;
        width: 100%;
        margin: 0 auto;
        border-radius: 25px;
    }

    .bnnr-img-wrppr>img,
    .bnnr-img-wrppr video,
    .bnnr-video-wrppr {
        border-radius: 25px;
    }

    .cmn-gap {
        padding: 60px 0;
    }

    .sec-head p {
        font-size: 16px;
        line-height: 1.5;
    }

    .sec-head h2 {
        margin-bottom: 10px;
    }

    .sec-head {
        margin-bottom: 25px;
    }

    .home-service-wrppr .icon {
        margin-bottom: 25px;
        min-height: 80px;
        width: 45px;
    }

    .home-service-wrppr h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .home-service-wrppr {
        padding: 25px;
        min-height: 350px;
    }

    .home-service-btn-wrppr {
        padding-top: 25px;
    }

    .value-why-count h3 {
        font-size: 28px;
    }

    .value-why-count p {
        font-size: 15px;
    }

    .value-why-each {
        width: 50%;
        padding: 0 15px;
    }

    .value-why-count-main {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px -25px;
    }

    .value-why-count {
        flex: 1;
    }

    .value-why-each .icon-shpe {
        width: 55px;
        height: 55px;
    }

    .value-why-each {
        margin-bottom: 25px;
    }

    .value-why-img-wrppr {
        max-width: 60%;
        margin: 0 auto;
    }

    .value-why-rw:not(:last-child) {
        margin-bottom: 50px;
    }

    .value-why-content-list li h3 {
        line-height: 1.3;
    }

    .value-why-content-list li h3::before {
        top: 4px;
    }

    .value-why-content-wrppr {
        padding: 0 0 25px;
    }

    .value-why-rw:nth-child(even) .value-why-img-wrppr {
        padding-right: 35px;
        max-width: 60%;
        margin: 0 auto;
    }

    .price-rw {
        justify-content: center;
    }

    .faq-about-content-col,
    .faq-about-img-col,
    .home-abut-img-col,
    .home-abut-content-col {
        width: 100%;
    }

    .faq-about-rw {
        --bs-gutter-x: 0;
        --bs-gutter-y: 30px;
        margin-bottom: 50px;
    }

    .each-faq:not(:last-child) {
        margin-bottom: 20px;
    }

    .faq-about-img-wrppr {
        max-width: 60%;
        margin: 0 auto;
    }

    .home-abut-rw {
        --bs-gutter-x: 0;
        --bs-gutter-y: 30px;
        flex-direction: column-reverse;
    }

    .home-abut-content-col .sec-head {
        margin-bottom: 0;
    }

    .faq-about-img-wrppr.about {
        padding-left: 45px;
        padding-right: 25px;
        max-width: 60%;
        width: 100%;
        margin: 0 auto;
    }

    .daily-visit-wrppr h4 {
        font-size: 26px;
    }

    .daily-visit-wrppr {
        padding: 15px;
        max-width: 130px;
    }

    .hppy-custmr>span {
        width: 40px;
    }

    .hppy-custmr {
        padding: 10px;
        max-width: 205px;
    }

    .newsletter-innr h2 {
        font-size: 30px;
        max-width: 445px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-outtr {
        padding: 25px;
        margin-bottom: 30px;
    }

    .newsletter-form-wrppr {
        flex-wrap: wrap;
    }

    .newsletter-form-wrppr h3 {
        width: 100%;
        max-width: 100%;
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    .newsletter-form-wrppr form {
        margin: 0 auto;
    }

    .cmn-btn,
    .brdr-btn {
        font-size: 16px;
    }

    .newsletter-form-wrppr form input[type="submit"] {
        font-size: 16px;
        padding: 14px;
    }

    .newlettr-field-wrppr input {
        font-size: 16px;
        height: 44px;
    }

    .newsletter-sec {
        padding-bottom: 40px;
    }

    .footer-logo-col {
        width: 100%;
        padding: 25px 15px;
        border-bottom: 1px solid #EFF0F7;
        border-right: none;
    }

    .fttr-explore-col {
        width: 22%;
        padding: 25px;
        padding-left: 0;
    }

    .fttr-add-link-col {
        width: 30%;
        padding: 25px;
    }

    .fttr-quick-link-col {
        width: 48%;
        padding: 25px 0 25px 25px;
    }

    .footer-nav li {
        line-height: 1.3;
    }

    .fttr-head p {
        font-size: 18px;
    }

    .footer-nav li::before {
        top: 5px;
    }

    .fttr-copy-right-part {
        padding: 12px 0;
    }

    .fttr-head {
        padding-bottom: 8px;
        margin-bottom: 15px;
    }

    .footer-logo-wrppr {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fttr-logo-link {
        max-width: 100px;
    }

    .navbar-nav>li.current-menu-item>a,
    .navbar-nav>li>a:hover,
    .navbar-nav>li.menu-item-has-children:hover>a {
        background-color: var(--theme-sky);
        color: var(--theme-title);
    }

    .bnnr-sec.innr-bnnr-sec {
        padding-top: 145px;
        padding-bottom: 40px;
    }

    .about-page-img-wrppr {
        padding-top: 50px;
    }

    .about-page-rw:not(:last-child) {
        margin-bottom: 10px;
    }

    .value-why-img-wrppr.about {
        padding-left: 40px;
        padding-bottom: 40px;
        padding-right: 40px;
        max-width: 400px;
        margin: 0 auto 35px;
    }

    .value-why-sec.about .sec-head {
        margin-bottom: 0;
    }

    .value-why-sec.about .value-why-content-wrppr {
        padding: 0;
    }

    .value-why-sec.about {
        padding-bottom: 60px;
    }

    .vision-cmn-col {
        width: 100%;
        flex: 0 0 auto;
    }

    .vision-head {
        max-width: 100%;
    }

    .vision-img-wrppr {
        max-width: 400px;
        position: relative;
        padding-right: 45px;
        padding-left: 46px;
        padding-bottom: 30px;
        margin: 0 auto;
    }

    .vision-img-wrppr .bttm-shpe {
        max-width: 165px;
    }

    .vision-img-wrppr .top-shpe {
        max-width: 110px;
    }

    .contact-left-col,
    .contact-right-col {
        width: 100%;
    }

    .contact-rw {
        --bs-gutter-x: 0;
    }

    .contact-info-main {
        flex-wrap: wrap;
        flex-direction: row;
        width: auto;
        margin: -10px;
    }

    .each-contact-info {
        width: 33.33%;
        height: 100%;
        padding-bottom: 0;
        padding: 10px;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        padding: 15px;
    }

    .contact-info-wrppr h3 {
        font-size: 20px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .about-page-img-wrppr.api-developer-img-wrppr,
    .api-service-wrppr {
        max-width: 400px;
        border-radius: 15px;
    }

    .api-developer-rw,
    .api-rw {
        --bs-gutter-x: 0;
    }

    .privacy-wrppr {
        max-width: 100%;
    }

    .privacy-wrppr h2 {
        font-size: 30px;
    }

    .privacy-wrppr h3 {
        font-size: 24px;
    }

    .privacy-wrppr h4 {
        font-size: 20px;
    }

    .bnnr-video-wrppr .img1 {
        left: -2px;
    }

}

@media (max-width: 767px) {

    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }

    h1,
    .h1-title {
        font-size: 36px;
    }

    h2,
    .h2-title {
        font-size: 30px;
    }

    .bnnr-img-wrppr {
        max-width: 90%;
    }

    .home-service-wrppr {
        min-height: inherit;
    }

    .value-why-img-wrppr {
        max-width: 70%;
    }

    .value-why-img-wrppr .smll-shpe {
        max-width: 180px;
        top: 15px;
        right: 35px;
    }

    .value-why-content-list li h3 {
        font-size: 18px;
    }

    .value-why-content-list li h3::before {
        top: 2px;
    }

    .value-why-rw:nth-child(even) .value-why-img-wrppr {
        max-width: 70%;
    }

    .feature-slider-arrw {
        width: 36px;
        height: 36px;
    }

    .feature-slider-outtr {
        padding: 0 50px;
    }

    .feature-card-wrppr {
        padding: 25px 15px;
    }

    .feature-card-title-wrppr a h3 {
        font-size: 16px;
    }

    .price-card-wrppr {
        padding: 20px;
    }

    .price-card-wrppr h3 {
        font-size: 22px;
    }

    .price-card-wrppr .price-amount p {
        font-size: 30px;
        line-height: 1;
    }

    .price-card-wrppr .price-amount {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .price-card-btn {
        font-size: 16px;
        padding: 15px 20px;
    }

    .faq-about-img-wrppr {
        max-width: 70%;
        padding: 0 25px 0 15px;
    }

    .faq-about-img-wrppr .faq-shpe-two {
        max-width: 120px;
    }

    .faq-about-img-wrppr.about {
        padding-left: 25px;
        padding-right: 15px;
        max-width: 70%;
    }

    .newsletter-innr h2 {
        font-size: 26px;
    }

    .footer-logo-col {
        width: 60%;
        padding-left: 0;
    }

    .footer-logo-wrppr {
        align-items: flex-start;
        text-align: left;
    }

    .fttr-explore-col {
        width: 40%;
        padding-left: 25px;
        border-left: 1px solid #EFF0F7;
        border-right: none;
        border-bottom: 1px solid #EFF0F7;
    }

    .fttr-add-link-col {
        width: 45%;
    }

    .fttr-quick-link-col {
        width: 55%;
    }

    .price-rw,
    .home-service-rw {
        --bs-gutter-x: 0;
        --bs-gutter-y: 20px;
    }

    .value-why-each {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 25px !important;
    }

    .value-why-count-main {
        margin: 0 -10px -25px;
    }

    .why-about-rw {
        --bs-gutter-x: 0;
    }

    .about-page-rw:nth-child(even) .about-page-img-wrppr figure img {
        height: 100%;
        margin-top: 0;
    }

    .about-page-rw:nth-child(even) .about-page-img-wrppr {
        padding-top: 0;
    }

    .about-page-rw:not(:last-child) {
        margin-bottom: 40px;
    }

    .contact-info-main {
        justify-content: center;
    }

    .each-contact-info {
        width: 50%;
        height: auto;
    }

    input[type="text"],
    input[type="tel"],
    input[type="password"],
    input[type="email"],
    select {
        height: 45px;
    }

    textarea {
        height: 120px;
        padding: 15px 20px;
    }

    .about-page-img-wrppr.service {
        max-width: 400px;
        padding: 40px 30px 30px;
    }

    .about-page-img-wrppr.service .sp1 {
        top: 26%;
    }

    .privacy-wrppr h2 {
        font-size: 25px;
    }

    .privacy-wrppr h3 {
        font-size: 20px;
    }

    .privacy-wrppr h4 {
        font-size: 18px;
    }

}

@media (max-width: 575px) {}

@media (max-width: 479px) {
    body {
        font-size: 14px;
    }

    .navbar {
        padding: 8px 10px;
    }

    .navbar-brand {
        max-width: 70px;
    }

    .hdr-btn-wrppr .cmn-btn {
        padding: 10px 16px;
        letter-spacing: 0;
    }

    .navbar-toggler {
        width: 40px;
        height: 40px;
        margin-left: 10px;
    }

    .stick {
        left: 7px;
    }

    h1,
    .h1-title {
        font-size: 30px;
    }

    h2,
    .h2-title {
        font-size: 26px;
    }

    .bnnr-img-wrppr {
        max-width: 100%;
        border-radius: 15px;
        padding: 10px;
    }

    .bnnr-img-wrppr>img,
    .bnnr-img-wrppr video,
    .bnnr-video-wrppr {
        border-radius: 12px;
    }

    .bnnr-sec {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .cmn-gap {
        padding: 40px 0;
    }

    .sec-head p {
        font-size: 14px;
    }

    .home-service-wrppr {
        padding: 20px 15px;
    }

    .home-service-wrppr .icon {
        width: 35px;
        min-height: 60px;
    }

    .cmn-btn,
    .brdr-btn {
        font-size: 14px;
    }

    .value-why-each {
        width: 100%;
        padding: 0;
    }

    .value-why-count-main {
        margin: 0 0 -25px;
    }

    .value-why-count h3 {
        font-size: 24px;
    }

    .value-why-each .icon-shpe {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }

    .value-why-img-wrppr {
        max-width: 100%;
    }

    .value-why-img-wrppr .smll-shpe {
        max-width: 160px;
        right: 25px;
    }

    .value-why-rw:not(:last-child) {
        margin-bottom: 40px;
    }

    .value-why-rw:nth-child(even) .value-why-img-wrppr {
        max-width: 100%;
        padding-right: 20px;
    }

    .value-why-img-wrppr .smll-bttm {
        max-width: 125px;
    }

    .price-card-wrppr h3 {
        font-size: 20px;
    }

    .price-card-wrppr .price-amount p {
        font-size: 28px;
    }

    .price-card-wrppr .price-amount p span {
        font-size: 16px;
    }

    .price-card-wrppr li:not(:last-child) {
        margin-bottom: 12px;
    }

    .accrd-hdr-icon {
        flex: 0 0 auto;
    }

    .accrdng-hdng {
        font-size: 16px;
        flex: 1;
        padding-right: 15px;
    }

    .each-faq {
        border-radius: 10px;
    }

    .accrd-hdr {
        padding: 12px 10px 12px 15px;
    }

    .accrdn-cntnt {
        padding: 0 12px 15px;
    }

    .faq-about-rw {
        margin-bottom: 40px;
    }

    .faq-about-img-wrppr {
        max-width: 100%;
    }

    .faq-about-img-wrppr.about {
        max-width: 100%;
    }

    .daily-visit-wrppr {
        max-width: 110px;
    }

    .daily-visit-wrppr h4,
    .hppy-custmr-info h4 {
        font-size: 20px;
    }

    .hppy-custmr>span {
        width: 30px;
    }

    .hppy-custmr {
        max-width: 180px;
        bottom: 20px;
    }

    .newsletter-innr {
        font-size: 14px;
    }

    .newsletter-innr h2 {
        font-size: 22px;
    }

    .newsletter-form-wrppr h3 {
        font-size: 20px;
    }

    .newsletter-form-wrppr form {
        flex-direction: column;
    }

    .newlettr-field-wrppr {
        padding-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .newlettr-field-wrppr input {
        font-size: 14px;
        height: 40px;
        padding: 0 15px;
    }

    .newsletter-sec {
        padding-bottom: 30px;
    }

    .footer-main .container {
        padding: 0;
    }

    .footer-logo-col {
        width: 100%;
        padding: 25px 15px;
    }

    .fttr-explore-col {
        padding: 25px 15px;
        border-right: 1px solid #EFF0F7;
        border-left: none;
        width: 45%;
    }

    .fttr-add-link-col {
        width: 55%;
        border-right: none;
        border-bottom: 1px solid #EFF0F7;
        padding: 25px 15px;
    }

    .fttr-quick-link-col {
        width: 100%;
        padding: 25px 15px;
        border: none;
    }

    .footer-logo-wrppr {
        align-items: center;
        text-align: center;
    }

    .fttr-logo-link {
        max-width: 85px;
    }

    .fttr-logo-link,
    .footer-logo-wrppr>p {
        margin-bottom: 10px;
    }

    .fttr-head p {
        font-size: 16px;
    }

    .footer-nav.fttr-quick-list li strong {
        min-width: 65px;
    }

    .bnnr-sec.innr-bnnr-sec {
        padding-top: 135px;
        padding-bottom: 20px;
    }

    .about-page-rw {
        --bs-gutter-x: 0px;
    }

    .about-page-img-wrppr .sp1 {
        max-width: 80px;
        border-radius: 8px;
    }

    .about-page-img-wrppr .sp2 {
        max-width: 150px;
        border-radius: 8px;
    }

    .about-page-img-wrppr figure {
        border-radius: 12px;
        padding: 0 15px;
    }

    .about-page-img-wrppr .sp3 {
        max-width: 140px;
    }

    .about-page-img-wrppr .sp4 {
        max-width: 105px;
    }

    .value-why-img-wrppr.about {
        padding-left: 20px;
        padding-bottom: 20px;
        padding-right: 20px;
        margin: 0 auto 25px;
    }

    .value-why-img-wrppr.about .sp6 {
        max-width: 110px;
    }

    .value-why-img-wrppr.about .sp7 {
        max-width: 120px;
        top: 140px;
    }

    .vision-img-wrppr {
        padding-right: 25px;
        padding-left: 25px;
        padding-bottom: 20px;
    }

    .vision-img-wrppr .bttm-shpe {
        max-width: 125px;
    }

    .vision-img-wrppr .top-shpe {
        max-width: 90px;
    }

    .value-why-sec.about {
        padding-bottom: 40px;
    }

    .each-contact-info {
        width: 100%;
        height: auto;
    }

    .contact-info-wrppr {
        padding: 20px 15px;
    }

    .contact-frm-rw {
        --bs-gutter-x: 0;
        --bs-gutter-y: 15px;
    }

    input[type="text"],
    input[type="tel"],
    input[type="password"],
    input[type="email"],
    select {
        border-radius: 10px;
        padding: 0 15px;
    }

    textarea {
        padding: 10px 15px;
        border-radius: 10px;
    }

    input[type="submit"] {
        font-size: 14px;
    }

    .contact-frm-main {
        padding: 20px 15px;
    }

    .about-page-img-wrppr.service {
        padding: 40px 20px 20px;
    }

    .about-page-img-wrppr.service .sp1 {
        max-width: 115px;
    }

    .about-page-img-wrppr.service .sp2 {
        max-width: 160px;
    }

    .api-sec {
        padding: 40px 0;
    }

    .about-page-img-wrppr.api-developer-img-wrppr {
        padding-right: 20px;
        padding-bottom: 20px;
        padding-left: 15px;
    }

    .about-page-img-wrppr.api-developer-img-wrppr .sp1 {
        max-width: 110px;
    }

    .about-page-img-wrppr.api-developer-img-wrppr .sp2 {
        max-width: 170px;
    }

    .cmn-btn-grup-wppr a:not(:last-child) {
        margin-right: 15px;
    }

    .privacy-wrppr h2 {
        font-size: 22px;
    }

    .privacy-wrppr h3 {
        font-size: 18px;
    }

    .privacy-wrppr h4 {
        font-size: 16px;
    }
}

.messaging-section {
    padding: 60px 0;
    background: #f9f9f9;
}
.messaging-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
    font-weight: 600;
}
.messaging-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.baseline1-section {
    padding: 60px 0;
    background: #f9f9f9;
}
.baseline1-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
    font-weight: 600;
}
.baseline1-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}
.features-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}
.sms-chat-img {
    margin-top: 40px;
    text-align: center;
}
.sms-chat-img img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ahoi-icon { 
    font-size: 40px;
    padding-left: 3px;
    color: #113BA0;
}

.smll-shpe p {
    margin: 0;
}   

.small-custom {
    padding: 20px;
    border: 1px solid #fff;
    color: #fff;
    right: 24px;
    top: 34px
}
