/*
Theme Name: Zynova Child
Template: zynova
Version: 0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zynova-child

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

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


* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

:root {
    --white: #ffffff;
    --color032d60: #032d60;
    --color0b79e9: #0b79e9;
    --color494949: #494949;
    --color000111: #000111;
    --color213343: #213343;
    --inter: "Inter", sans-serif;
    --questrial: "Questrial", sans-serif;
    --default-trans:all 0.3s ease-in-out;
}

/**
 * Remove default margin.
 */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */

    vertical-align: baseline;
    /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */

a {
    background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
    outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
    margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */

    font: inherit;
    /* 2 */

    margin: 0;
    /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
/* 1 */

input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */

    cursor: pointer;
    /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
    line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1 */

    padding: 0;
    /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */

    box-sizing: content-box;
    /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0;
    /* 1 */

    padding: 0;
    /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

::-moz-selection {
    background-color: #007d9d;
    color: #fff;
    text-shadow: none;
}

::selection {
    background-color: #007d9d;
    color: #fff;
    text-shadow: none;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
    color: inherit;
    opacity: 0.7;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    color: inherit;
    opacity: 0.7;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.7;
}

body {
    margin: 0;
    padding: 0;
    font-size: 20px !important;
    overflow-x: hidden;
    color: var(--color213343) !important;
    background: var(--white);
    font-family: var(--questrial) !important;
    position: relative;
}

.container:after,
.container:before {
    content: " ";
    display: table;
}

.container:after {
    clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
figure {
    margin: 0;
    padding: 0;
}

img {
    margin: 0;
    padding: 0;
    border: none;
    max-width: 100%;
    height: auto !important;
    display: block;
}

a,
button,
input {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a {
    text-decoration: none !important;
}

/**************global css end*******/

.container {
    position: relative;
}

h1,
h2,
h3 {
    font-family: var(--inter);
}

.main-heading h2 {
    font-size: 45px;
    font-weight: 800;
    color: #032d60;
}


/* Header Start */
header.main_header {
    position: relative;
    width: 100%;
    z-index: 999;
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
    padding: 20px 0;
    box-shadow: 7px 11px 18px rgb(65 64 64 / 14%);
}

.main_header.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    width: 100%;
    transition: all 0.3s ease-in-out;
    animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}


.nav_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}

.nav_bar .nav_sec ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav_bar .nav_sec ul li {
    display: inline-block;
    position: relative;
    margin: 0 13px;
    padding: 5px 0;
}


.nav_bar .nav_sec ul li a {
    display: block;
    position: relative;
    z-index: 99;
    font-size: 17px;
    line-height: 27px;
    color: var(--color032d60);
    font-family: var(--inter);
    text-transform: uppercase;
    font-weight: 500;
}

.nav_bar .nav_sec ul li:hover>a,
.nav_bar .nav_sec ul li.active>a,
.nav_bar .nav_sec ul li.current-menu-item>a {
    color: var(--color0b79e9);
}

.nav_bar .nav_sec ul li .arw-nav {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23032d60" d="M12 14.5a.74.74 0 0 1-.53-.22L8 10.78a.75.75 0 0 1 1-1.06l3 3l3-3a.75.75 0 0 1 1 1.06l-3.5 3.5a.74.74 0 0 1-.5.22"/></svg>') no-repeat center;
    position: absolute;
    right: -18px;
    top: 8px;
    width: 22px;
    height: 22px;
}


.nav_bar .nav_sec ul li ul {
    position: absolute;
    width: 200px;
    background: var(--white);
    display: none;
    box-shadow: 1px 1px 5px rgb(64 64 64 / 22%);
}

.nav_bar .nav_sec ul li:hover ul {
    display: block;
    animation: smoothScroll2 1s forwards;
}

@keyframes smoothScroll2 {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(5px);
    }
}

.nav_bar .nav_sec ul li ul li {
    display: block;
    margin: 0;
    padding: 0;
}

.nav_bar .nav_sec ul li ul li a {
    text-transform: none;
    width: 100%;
    padding: 8px 12px;
}

.nav_bar .nav_sec ul li ul li a:hover {
    background-color: #f8f8f8;
}

span.toggle-menu {
    display: none;
}

.login-btn a {
    font-size: 17px;
    line-height: 27px;
    color: var(--color032d60);
    font-family: var(--inter);
    text-transform: uppercase;
    font-weight: 500;
}

.login-btn a:hover {
    color: var(--color0b79e9);
}

/* Header End */

/* Banner Start */

.home-banner {
    background-position: top right;
    background-repeat: no-repeat;
    padding: 80px 0 30px;
    background-color: #f8f8f8;
}

.banner-text {
    max-width: 820px;
    color: var(--color494949);
    font-size: 22px;
}

.banner-text h1 {
    font-size: 65px;
    font-weight: 800;
    color: var(--color032d60);
    margin-bottom: 24px;
}

.banner-text h1 span {
    color: var(--color0b79e9);
}

.banner-text h1+p {
    max-width: 715px;
}

.banner-text .btns-group {
    display: flex;
    gap: 5px 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}


a.border-btn {
    color: var(--color032d60);
    border: 2px var(--color032d60) solid;
    border-radius: 8px;
    min-width: 260px;
    min-height: 52px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

a.border-btn:hover {
    background-color: var(--color032d60);
    color: var(--white);
}

/* Banner end */


/* Body start */
.info-sec {
    background-repeat: no-repeat;
    background-position: center bottom 50px;
    padding: 20px 0 370px;
    position: relative;
    background-size: cover;
    background-color: #f8f8f8;
}

.info-sec::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 166px;
    background: url(images/shape-img.webp) no-repeat center bottom;
    background-size: 100%;
}

.info-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.info-card {
    width: calc(35% - 20px);
    text-align: center;
}

.info-card:nth-child(n+3) {
    width: calc(33.333% - 20px);
}

.info-card-box {
    max-width: 280px;
    height: 287px;
    margin: 0 auto;
    perspective: 1000px;
}

.info-card-box h2 {
    font-size: 20px;
    font-weight: 600;
}

.info-card-box .flip-box-front h2 {
    margin-bottom: 0;
}

.info-card-box img {
    margin: 0 auto 30px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.info-card-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--white);
    padding: 20px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 7%);
}

.flip-box-back {
    background: url(images/flip-bg.webp) no-repeat center;
    background-size: cover;
    transform: rotateY(180deg);
}

.flip-box-back h2 {
    margin-bottom: 15px;
}

.flip-box-back p {
    margin-bottom: 0;
    line-height: 26px;
}

.info-bottom-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.info-bottom-img img {
    margin: 0 auto;
}

.how-it-works {
    padding: 40px 0 70px;
}

.how-it-works-wrapper {
    max-width: 1126px;
    margin: 70px auto 0;
}

.how-it-work-part {
    background-position: center;
    background-size: cover;
    max-width: 275px;
    min-height: 275px;
    padding: 10px;
    border-radius: 50%;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    font-family: var(--inter);
    position: relative;
    margin: 0 auto;
    box-shadow: 0px 9px 10px #c4def7;
}

.how-it-work-part>p {
    text-transform: uppercase;
    margin-bottom: 5px;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #66adf5;
    font-size: 18px;
    text-align: center;
    background-color: var(--white);
    margin-bottom: 20px;
}

.how-it-work-part h3,
.who-we-serve-box h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 0;
}

.how-it-works-wrapper>.row>*:first-child .how-it-work-part::after {
    content: '';
    position: absolute;
    right: -150px;
    top: 0;
    background: url(images/dott-chain1.webp);
    width: 204px;
    height: 100px;
    z-index: -1;
}

.how-it-works-wrapper>.row>*:nth-child(2) .how-it-work-part::after {
    content: '';
    position: absolute;
    right: -150px;
    bottom: 0;
    background: url(images/dott-chain2.webp);
    width: 204px;
    height: 100px;
    z-index: -1;
}

.who-we-serve {
    background-color: #f8f8f8;
    position: relative;
    padding: 100px 0 90px;
    overflow: hidden;
}

.who-we-serve::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 164px;
    background: url(images/shape-img2.webp) no-repeat top center;
    background-size: 100%;
}

.who-we-serve .main-heading h2 {
    margin-bottom: 40px;
}

.who-we-serve .main-heading {
    margin-bottom: 50px;
}

.who-we-serve-wrapper {
    max-width: 1126px;
    margin: 0 auto 0;
    position: relative;
    z-index: 9;
}

.who-we-serve-box {
    max-width: 286px;
    min-height: 286px;
    background-color: var(--white);
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    margin: 15px auto;
    box-shadow: 0px 9px 10px #0000000d;
    border-radius: 18px;
}


.who-we-serve-box img {
    margin-bottom: 15px;
}


.object-1 {
    position: absolute;
    left: -15px;
    bottom: -9px;
}

.object-2 {
    position: absolute;
    right: -45px;
    bottom: -9px;
}

.counter-sec {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    padding: 80px 0;
}

.counter-wrapper {
    max-width: 1126px;
    margin: 0 auto;
    font-family: var(--inter);
}

.counter-row {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
}

.counter-item {
    text-align: center;
    min-height: 360px;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.counter-item h3 {
    font-size: 80px;
    font-weight: 800;
}

.counter-item h3 p {
    font-size: 28px;
    margin-bottom: 0;
}

.counter-item:nth-child(2),
.counter-item:nth-child(4) {
    border-left: 2px #66adf5 solid;
}

.counter-item:nth-child(1),
.counter-item:nth-child(2) {
    border-bottom: 2px #66adf5 solid;
}

.trust-sec {
    padding: 90px 0 80px;
    background-position: center;
    background-size: cover;
}

.trust-sec .main-heading h2 {
    margin-bottom: 25px;
}

.main-heading h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color032d60);
}

.trust-sec .main-heading p {
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}

.trust-box {
    max-width: 930px;
    margin: 70px auto 0;
    background-color: var(--white);
    padding: 0 50px 30px;
    box-shadow: 0px 13px 35px #00000026;
    border-radius: 40px;
    text-align: center;
    position: relative;
}

.trust-list ul {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.trust-list ul li {
    width: 50%;
    float: left;
    font-size: 17px;
    background: url(images/check-icon.webp) no-repeat left top 3px;
    padding-left: 35px;
    padding-right: 56px;
    margin-bottom: 25px;
    text-align: left;
}

.trust-box h3 {
    font-size: 25px;
    color: var(--white);
    font-weight: 700;
    background-color: var(--color0b79e9);
    min-width: 530px;
    min-height: 65px;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 55px;
    transform: translateY(-35px);
}

.trust-box + p {
    max-width: 780px;
    margin: 60px auto 0;
    text-align: center;
}

.stay-informed-form {
    background-color: #fbfbfb;
    padding: 90px 0;
}

.stay-informed-form .main-heading h2 {
    margin-bottom: 24px;
}

.stay-informed-form .form-box {
    max-width: 960px;
    margin: 0 auto;
}

.stay-informed-form .form-box .custom-form-wrapper {
    display: flex
;
    flex-direction: column;
    gap: 5px;
}
.stay-informed-form .form-box .custom-form-wrapper input::placeholder{
	color:transparent !important;
}
.custom-form-wrapper label {
    font-size: 18px;
    text-align: center;
}

.custom-form-wrapper {
    margin-bottom: 40px;
}

input.custom-form-control,
select.custom-form-control,
textarea.custom-form-control {
    min-height: 50px;
    background-color: var(--white);
    border-radius: 8px;
	padding: 2px 15px;
    border-color: transparent;
	width:100%;
    box-shadow: 0 4px 20px #00000012;
}
.stay-informed-form .form-box form .text-center {
    position: relative;
}
.stay-informed-form .form-box form .text-center .wpcf7-spinner {
    position: absolute;
    left: 50%;
    bottom: -32px;
    transform: translate(-50%, 0);
    margin: 0;
}
input.blue-btn,
a.white-btn,
a.blue-btn {
    min-width: 242px;
    min-height: 70px;
    background-color: var(--color032d60);
    border: 2px var(--color032d60) solid;
    color: var(--white);
    font-family: var(--inter);
    font-size: 18px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

input.blue-btn:hover,
a.blue-btn:hover,
a.white-btn {
    background-color: var(--white);
    color: var(--color032d60);
}

a.white-btn:hover {
    background-color: var(--color032d60);
    color: var(--white);
}

.contact-our-team {
    max-width: 1270px;
    margin: 0 auto;
    background-position: center;
    background-size: cover;
    border-radius: 25px;
    margin-top: 90px;
    padding: 0 36px;
}

.contact-our-team-left h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color032d60);
}

.contact-our-team-left .btns-group {
    display: flex;
    gap: 5px 20px;
    margin-top: 20px;
}

.contact-our-team-right {
    margin-top: -90px;
}

footer.main-footer {
    background-color: #000111;
    padding: 90px 0;
}

footer.main-footer,
footer.main-footer a {
    color: #cccccc;
}

footer.main-footer a:hover {
    color: var(--color0b79e9);
}

.footer-left a img {
    margin-bottom: 65px;
}

.footer-left p {
    font-size: 17px;
    margin: 0;
}

.footer-left p strong {
    font-family: var(--inter);

}

.footer-right ul {
    padding: 0;
    margin: 0;
}

.footer-right>ul {
    overflow: hidden;
}

.footer-right>ul>li {
    width: 16.66%;
    float: left;
    font-family: var(--inter);
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 20px;
    font-size: 15px;
}

.footer-right>ul>li a {
    border-bottom: 2px #ccc solid;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-right>ul>li>ul>li {
    font-size: 14px;
    font-family: var(--questrial);
    text-transform: none;
    font-weight: 400;
    margin-top: 30px;
}

.footer-right>ul>li>ul>li a {
    border: none;
    padding: 0;
}

li.footer-login {
    margin-top: 60px;
}
/* Body end */

/* inner-page start  */
.banner-text h6{
    font-size: 28px;
    font-family: var(--inter);
    font-weight: 800;
    color: #0b79e9;
    margin-bottom: 30px;
}
.inner_banner{
    background-color: white;
}
.tab_sec {
    padding-top: 130px;
    max-width: 1125px;
    margin: 0 auto;
    padding-bottom: 75px;
}
.dropdown-button {
    display: none;
}
.dropdown-container{
    position: relative;
	margin-bottom: 90px;
}
.dropdown-list{
    padding: 0;
    margin: 0;
}
.dropdown-list li {
    font-family: var(--inter);
    font-weight: 700;
    font-size: 28px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}
.dropdown-list li:hover,.dropdown-list li.active{
    border-top: 2px solid #0B79E9;
    border-left: 2px solid #0B79E9;
    border-right: 2px solid #0B79E9;
}
.dropdown-list li a{
    color: var(--color032d60);
    display: block;
    padding: 11px 15px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}
.dropdown-list li a:hover{
    color: var(--color0b79e9);
}
.dropdown-list li + li{
    margin-top: 35px;
}
.form_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0 30px;
}
.form_title h4{
    font-family: var(--inter);
    font-weight: 900;
    margin-bottom: 0;
    font-size: 18px;
    text-transform: uppercase;
    color: #212529;
}
.side_form .input_wrapper{
    width: 100%;
    margin-bottom: 18px;
}
.side_form .input_wrapper input,.side_form .input_wrapper textarea{
    width: 100%;
    border: 1px solid #000;
    padding: 15px;
    min-height: 40px;
    font-family: var(--questrial);
    font-weight: 400;
    outline: none;
    color: #212529;
}
.side_form .input_wrapper input:placeholder,.side_form .input_wrapper textarea:placeholder{
	color:#000 !important;
}
.side_form .input_wrapper textarea{
    min-height: 100px;
}
.side_form .input_wrapper input[type="submit"]{
    min-height: 40px;
    text-align: center;
    background:var(--color032d60);
    color: var(--white);
    border: 1px solid var(--color032d60);
    padding: 10px;
    transition: all 0.3s ease-in-out;
}
.side_form .input_wrapper input[type="submit"]:hover{
    background: var(--white);
    color: var(--color032d60);
}
.request_sec_holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.request_sec{
    background:#68A7E7 ;
    padding: 27px 0;
}
.request_sec_holder h3{
    font-family: var(--inter);
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 0;
    color: var(--white);
}
.request_sec .white-btn {
    margin-left: 18px;
}
.catagory_Sec ul{
    margin: 0;
    padding: 0;
    padding-top: 30px;
}
.catagory_Sec ul li{
    position: relative;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    font-family: var(--questrial);
}
.catagory_Sec ul li + li{
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--color032d60);
}
.catagory_Sec ul li a{
    color: #032d60;
    display: inline-block;
    transition: var(--default-trans);
}
.catagory_Sec ul li a:hover{
    color: var(--color0b79e9);
}
.tab_sec_2 .default_content{
    padding-left: 0;
}
.pagination-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}
.page-numbers.current {
    background: #14143b;
    color: white;
}

.page-numbers.current {
    background: #14143b;
    color: white;
}
.page-numbers {
    display: block;
    border: 1px solid var(--color0b79e9);
    padding: 3px 12px;
    border-radius: 4px;
    color: #14143b;
    transition: all 0.3s ease-in-out;
}
.page-numbers:hover {
    color: #fff;
    background: #14143b;
}
/*///////////// default_content start  /////////////*/

.default_content {
   position: relative;
   z-index: 1;
   overflow: hidden;
   clear: both;
   padding-left: 85px;
}
.default_content ol,.default_content ul{
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    list-style: disc;
    padding-left: 23px;
}
.default_content ol em,.default_content ul em {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: #213343 !important;
}
.default_content b {
    font-size: 20px;
    line-height: 27px;
    color: #213343 !important;
}
.default_content ol li::marker,.default_content ul li::marker{
    color: #032d60 !important;
}
.default_content ol li{
  padding-left: 0;
  overflow: visible;
}
.default_content ol{ 
  padding-left: 20px;
  list-style: decimal;
}
.default_content p,.default_content ul li a,.default_content ol li a ,.default_content ul li,.default_content ol li{
    position: relative;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    font-family: var(--questrial);
}
.default_content p{
    margin-bottom: 30px;
    color: #213343;
}
.default_content p a,.default_content ul li a,.default_content ol li a,
.default_content h2 a,.default_content h3 a,.default_content h4 a,.default_content h5 a,.default_content h6 a
{
    transition: all 0.3s ease-in-out;
    color: var(--color0b79e9)
}
.default_content a:hover,.default_content ul li a:hover,
.default_content h2 a:hover,.default_content h3 a:hover,.default_content h4 a:hover,.default_content h5 a:hover,.default_content h6 a:hover
{
   color:#213343;
}
.default_content ul li + li,.default_content ol li + li{
    margin-top: 9px;
}
.default_content h2,.default_content h3,.default_content h4,.default_content h5,.default_content h6{
    margin-bottom: 30px !important;
    line-height: 110%;
    color: var(--color032d60);
    font-family: var(--inter);
    font-weight: 800;
}
.default_content h2{
    font-size: 45px;
}
.default_content h3{
    font-size: 35px;
}
.default_content h4{
    font-size: 30px;
}
.default_content h5{
    font-size: 27px;
}
.default_content h6{
    font-size: 20px;
}
.default_content blockquote {
    display: block;
    overflow: hidden;
    position: relative;
    clear: both;
    background: white;
    color:black;
    padding: 20px 50px 10px;
    border: 2px solid var(--color032d60);
    border-radius: 10px;
    font-weight: 500;
    font-size: 22px;
    line-height: 110%;
    margin-bottom: 30px;
}
.default_content blockquote b{
    margin-top: 10px;
    display: block;
    font-weight: 400 !important;
    font-size: 18px;
    color: var(--color032d60);
}
.alignleft{
  float: left;
  margin: 0px 30px 25px 0px;
  border-radius: 6px;
}
.alignright{
  float: right;
  margin: 0px 0px 25px 30px;
  border-radius: 6px;
}
.aligncenter{
  float: none;
  margin: 30px auto;
  border-radius: 6px;
}
.default_content .border-btn{
    display: inline-block;
    margin-top: 40px;
    padding: 15px 10px;
}
.default_content .border-btn:hover{
    color: var(--white);
}
.def_btns{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.def_btns a {
    background-color: var(--color032d60);
    border: 2px var(--color032d60) solid;
    color: var(--white);
    font-family: var(--inter);
    font-size: 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
}
.def_btns a:hover{
    color: var(--color032d60);
    background: var(--white);
}
/*//////////////// default_content end ///////////////// */

/*///// accordion css start ////// */
.c_accordion_wrap {
  position: relative;
  border-radius: 34px;
  z-index: 1;
  color: #4D4D4D;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  text-align: left;
  margin-bottom: 15px;
}
.acc_heading p{
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    text-align: left;
    color: var(--white);
    background: var(--color032d60);
    width: 100%;
    padding: 15px 40px 15px 15px;
}
.acc_heading p::before {
  content: '';
  background: url(images/up-arw.svg) no-repeat right center;
  background-size: 100%;
  vertical-align: middle;
  display: inline-block;
  float: right;
  width: 20px;
  height: 20px;
  transition: all 0.5s;
  position: absolute;
  right: 15px;
  left: auto;
  top: 50%;
  transform: translate(0, -50%);
}
.acc_heading.active p::before {
  background: url(images/down-arw.svg) no-repeat right center;
  background-size: 100%;
}
.acc_contents {
  display: none;
  padding: 12px 20px;
  background: #f1f1f1;
}
.acc_contents p {
  margin-bottom: 15px;
}
/*///// accordion css end ////// */

/* inner-page end  */

.page-id-42 .default_content .text-center {
	text-align: left!important;
}
.page-id-42 .default_content .text-center a {
	display: inline-flex!important;
}
.frm-container .form-group {
	margin-bottom: 14px;
}
.frm-container .form-group label {
	display: block;
	margin-bottom: 8px;
}
.frm-container .form-group input {
	border: 1px solid #999;
	border-radius: 5px;
	height: 50px;
	width: 100%;
	outline: none;
	padding: 0 20px;
}
.frm-container .form-group textarea {
	border: 1px solid #999;
	border-radius: 5px;
	height: 120px;
	width: 100%;
	outline: none;
	padding: 20px;
}
.frm-container {
	margin-bottom: 30px;
}
.frm-container input[type="submit"] {
	color: #fff;
    border: 2px var(--color032d60) solid;
    border-radius: 8px;
    min-width: 260px;
    min-height: 52px;
    background-color: var(--color032d60);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
	transition: all .3s ease-in-out;
}
.frm-container input[type="submit"]:hover {
	background: transparent;
	color: var(--color032d60);
}
.page-id-42 .default_content ul li {
	position: relative;
	padding-left: 25px;
	list-style: none;
	margin-bottom: 14px;
}
.page-id-42 .default_content ul li::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 10px;
	height: 10px;
	background: var(--color032d60);
	transform: rotate(45deg);
}
.page-id-42 .default_content ul {
	padding-left: 10px!important;
}
.page-id-42 .wpcf7-response-output {
	margin-top: 0!important;
}
.page-id-42 .default_content p strong {
	font-size: 24px;
}
.page-id-42 .default_content p em {
	font-size: 16px;
	line-height: 1.2;
}
.main_header .nav_bar .nav_sec ul li ul li {
	position: relative;
}
.main_header .nav_bar .nav_sec ul li ul li ul.sub-menu {
	position: absolute;
	/* right: -10em; */
	top: -5px;
	opacity: 0;
	pointer-events: none;
    left: 100%;
}
.main_header .nav_bar .nav_sec ul li ul li .arw-nav {
	right: 0;
	top: 11px;
	transform: rotate(-90deg);
}
.main_header .nav_bar .nav_sec ul li ul li:hover ul.sub-menu {
	opacity: 1;
	pointer-events: all;
}
.blog-top-sec {
	padding-top: 100px;
}
.blog-content-row {
	margin-top: 70px!important;
}
.blog-content {
	width: 100%;
	height: 100%;
	overflow: hidden;
		background: #F5F5F5;
	transition: all .3s ease-in-out;
}
.blog-content:hover {
	box-shadow: 0 0 10px 0px rgba(0,0,0,0.2);
}
.blog-content .img {
	overflow: hidden;
	height: 300px;
}
.blog-content .img img {
	transition: all .3s ease-in-out;
	width: 100%;
	height: 300px;
}
.blog-content .blog-info {

	padding: 30px 15px 40px;
}
.blog-content .blog-info h4 a {
	font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color032d60);
	font-family: 'Inter', sans-serif!important;
}
.blog-info-flex {
	margin-top: 30px!important;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.blog-info-flex .right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0 15px;
}
.blog-info-flex .right a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color032d60);
	color: #fff;
	border-radius: 50px;
	border: 1px solid var(--color032d60);
}
.blog-info-flex .right a:hover {
	background: transparent;
	color: var(--color032d60);
}
.blog-info-flex .left {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.blog-info-flex .left h6 {
	margin: 0;
}
.blog-info-flex .left span.blue-txt {
	padding-right: 12px;
	display: inline-block;
	border-right: 1px solid #000;
}
.blog-info-flex .left span.dark-txt {
	padding-left: 12px;
}

.blog-sec-btm {
	padding-top: 50px;
	padding-bottom: 70px;
}
.blog-sec-btm .blog-content h4 a {
	font-size: 22px;
}
.blog-sec-btm .blog-info-flex .right a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color032d60);
    color: #fff;
    border-radius: 50px;
    border: 1px solid var(--color032d60);
    font-size: 12px;
}
.blog-sec-btm .blog-info-flex .right a:hover {
	background: transparent!important;
	color: var(--color032d60)!important;
}
.blog-sec-btm .blog-info-flex .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 6px;
}
.blog-sec-btm .blog-info-flex .right span {
	font-size: 12px;
}
.blog-top-right h3 {
	font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color032d60);
	font-family: 'Inter', sans-serif!important;
	text-transform: capitalize;
	margin-bottom: 32px;
	line-height: .7;
}
.blog-top-right li h5 a {
	font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color032d60);
    font-family: 'Inter', sans-serif !important;
}
.blog-top-right ul li {
	margin-bottom: 30px;
}
/* //////// */
.catagory_boxes_text{
    padding: 15px 20px;
    background: #f5f5f5;
}
.catagory_boxes_text h4{
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 115%;
    color: var(--color032d60);
    font-family: var(--inter);
    font-weight: 600;
}
.catagory_boxes_text h4 a{
    color: var(--color494949);
    display: inline-block;
    transition: var(--default-trans);
}
.catagory_boxes_text h4 a:hover{
    color: #0B79E9;
}
.cbt_info ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    gap: 7px 10px;
}
.cbt_info_social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px 10px;
}
.cbt_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cbt_info ul a, .cbt_info ul li {
    font-size: 17px;
    line-height: 110%;
    font-family: var(--inter);
    font-weight: 400;
    position: relative;
    color: var(--color494949);
    display: block;
}
.cbt_info ul a{
    color: var(--color0b79e9);
    transition: var(--default-trans);
}
.cbt_info ul a:hover{
    color: var(--color494949);
}
.cbt_info ul li + li{
    padding-left: 10px;
    border-left: 1px solid var(--color032d60);
}
.cbt_info_social a{
    width: 30px;
    height: 30px;
    font-size: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    background: var(--color032d60);
    color: var(--white);
    transition: var(--default-trans);
}
.cbt_info_social a:hover{
    background: var(--white);
    color: var(--color032d60);
    border: 1px solid var(--color032d60);
}
.tab_sec_2 .row >*:first-child > .row>*{
    margin-bottom: 30px;
}
.catagory_boxes_img{
    overflow: hidden;
	
}
.catagory_boxes_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: var(--default-trans);
}
.catagory_boxes:hover .catagory_boxes_img img{
    transform: scale(1.05);
}
.catagory_boxes{
    transition: var(--default-trans);
}
.catagory_boxes:hover{
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.12);
}
.tab_sec_2 {
    padding-top: 60px;
}
.details_banner {
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding: 150px 0;
}
.details_banner:after{
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
}
.details_banner  .banner-text {
    max-width: unset !important;
}
.details_banner  .banner-text h1 {
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 !important;
}
.blog-top-right .blog-info-flex {
	margin-top: 10px!important;
}
.blog-sec-btm .blog-info-flex h6 {
	font-size: 14px!important;
}
.blog-sec-btm .blog-info-flex .left span.blue-txt {
	padding-right: 6px!important;
} 
.blog-sec-btm .blog-info-flex .left span.dark-txt {
	padding-left: 4px!important;
} 
.blog-content .blog-info h4 a:hover, .blog-top-right li h5 a:hover {
	color: #0b79e9!important;
}
.modal-inivition {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left:0;
	background: rgb(0,0,0,0.7);
	display: flex;
	align-items: center;
	justify-content:center;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: all .3s ease-in-out;
}
.modal-inivition.active {
	opacity: 1;
	pointer-events: all;
}
.modal-inivition .container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content:center;
}
.modal-invitaton-form {
	max-width: 450px;
	background: #fff;
	padding: 30px;
}
.modal-invitaton-form h2 {
	text-align:center;
	font-family: 'Inter', sans-serif;
	font-size: 31px;
	font-weight: 700;
	color: #032d60;
}
.modal-invitaton-form p {
	text-align: center;
	font-family: 'Questrial', sans-serif;
	font-size: 16px;
	font-weight: 400;
	margin-top:10px;
}
.modal-invitaton-form form .form-group {
	margin-bottom: 18px;
}
.modal-invitaton-form form .form-group input {
	width: 100%;
	height: 50px;
	border: 1px solid #989898;
	border-radius: 8px;
	padding: 0 15px;
	font-family: 'Questrial', sans-serif;
	font-size: 15px;
	font-weight: 400;
	outline: none;
} 
.modal-invitaton-form form .btnn-group {
	text-align: center;
}
.modal-invitaton-form form .btnn-group input {
	height: 50px;
	background: #032d60;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	padding:14px 30px;
	border: 1px solid #032d60;
	transition: all .3s ease-in-out;
	margin-top: 20px;
}
.modal-invitaton-form form .btnn-group input:hover {
	background: transparent;
	color: #032d60;
}
.modal-invitaton-form form .wpcf7-spinner {
	display: none;
}
.modal-invitaton-form .wpcf7-response-output {
	font-size: 16px;
	margin-top: 0;
	padding-top: 0;
}
.modal-invitaton-form .wpcf7-not-valid-tip {
	font-size:16px;
}
/* //////// */