:root{
    --wc-white: #fff;
    --wc-black: #000;
    --wc-gray100: #efefef;
    --wc-gray200: #666;
    --wc-gray300: #999;
    --wc-gray400: #444;
    --wc-gray500: #f6f7f8;
    --wc-gray600: #d9d9d9;
    --wc-gray700: #e8e8e8;
    --wc-lightgray:#f5f5f5;
    --wc-gray900: #212932;
    --wc-black100: #222;
    --wc-black200: #111;
    --wc-blue: #3065fa;
    --wc-blue100: #f6f7ff;
    --wc-blue200: #eaf8ff;
    --wc-primary: #1A60FE;
    --wc-primary100: rgba(239, 68, 78, 0.1);
    --wc-primary800: #AACB37;
    --wc-purpole100: #f2eeff;
    --wc-purpole200:#dfd1f4;
    --wc-orange100: #fff7e2;
    --wc-orange200: #dfc9c0;
    --wc-danger100: #ffeaea;
    --wc-navyblue: #29b8ff;
    --wc-navyblue100: #dff3f6;
    --wc-darknavy: #007bff;

    --button-default:linear-gradient(267.87deg, #014EFE 6.41%, #3E7EFF 83.93%);
    --button-default-hover:linear-gradient(92.65deg, #3871E6 0.46%, #0146E5 85.66%);
     /*white color button*/
    --button-white-hover:#fff;
    --button-white-hover-text:#1A60FE;

    /*black color button*/
    --button-black-hover:#222;
    --button-black-hover-text:#fff;

    --btnprimary-color1:#fff;
    --btnprimary-color2:#1A60FE;

    --btnsecondary-color1:linear-gradient(255.35deg, #014EFE 21.84%, #3E7EFF 77.76%);
    --btnsecondary-color2:#fff;
    --btnsecondary-color3:linear-gradient(92.65deg, #3871E6 0.46%, #0146E5 85.66%);

    --btntertiary-color1:#222222;
    --btntertiary-color2:#fff;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: auto;
    font-family: 'hk_groteskregular', sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    margin: 0;
}
@font-face {
    font-family: 'Proxima-Nova-Regular';
    src: url('../fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Proxima-Nova-Extrabold';
    src: url('../fonts/montserrat/Montserrat-ExtraBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Proxima-Nova-Light';
    src: url('../fonts/montserrat/Montserrat-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Proxima-Nova-Semibold';
    src: url('../fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'ProximaNova-Bold';
    src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'proxima-nova-medium';
    src: url('../fonts/montserrat/Montserrat-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'gilroy-bold';
    src: url('../fonts/gilroy-bold.ttf') format('truetype');
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav1,
section,
summary,
img {
    display: block;
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden],
template {
    display: none;
}
a {
    background-color: transparent;
    text-decoration: none;
}
a:active,
a:hover {
    outline: 0;
}
abbr[title] {
    border-bottom: 1px dotted;
}
b,
strong {
    font-weight: 500;
}
small {
    font-size: 80%;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 0;
}
hr {
    box-sizing: content-box;
    height: 0;
}
pre {
    overflow: auto;
}
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}
button[disabled],
html input[disabled] {
    cursor: default;
    pointer-events: none;
    opacity: .5;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #f5f5f5 inset !important;
}
input {
    line-height: normal;
}
input[type=checkbox],
input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    margin-right: 8px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    opacity: .7;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    height: auto;
}
input[type=search] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}
textarea {
    overflow: auto;
}
html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-style: normal;
    background-color: var(--wc-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Proxima-Nova-Light';
}
ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}
body::-webkit-scrollbar{
    width: 7px;
    background: var(--wc-white);
    transition: all .5s ease-in-out;
}
body::-webkit-scrollbar-track {
    background: #f7f7f7;
    box-shadow: inset 0 0 5px rgb(219, 219, 219);
    border-radius: 0;
}
body::-webkit-scrollbar-thumb {
    background:var(--wc-black100);
    border-radius: 0;
}
.material-icons,
.material-icons-outlined {
    padding: 0;
}
.hide {
    display: none !important;
}
header {
    height: 70px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10;
    transition: all .5s cubic-bezier(.25, .74, .22, .99);
}
header.headerTop {
    background: var(--wc-white);
    border-bottom: 1px solid var(--wc-gray100);
}
.blog-headpara{
    margin-bottom: 15px;
}
header.headerTop .nav1 li .menuDD {
    color: var(--wc-black200);
}
header.headerTop .memberLoginBtn a {
    border: 1px solid var(--button-black-hover);
    color: var(--button-black-hover);
}
header.headerTop .memberLoginBtn a:hover{
        background-color: var(--button-black-hover);
    color: var(--button-black-hover-text);
    transition: all 0.4s ease 0s;
}
.mainnav1 {
    width: 100%;
    padding: 10px 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ilceLogo a {
    width: 176px;
    display: flex;
    height: 50px;
}
.ilceLogo a img {
    width: 100%;
    height: 100%;
}
.white-logo {
    display: block;
}
.color-logo {
    display: none;
}
#blog-Detailpage .color-logo {
    display: block;
}
#blog-Detailpage .white-logo {
    display: none;
}
.headerTop .color-logo {
    display: block;
}
.nav1 li {
    display: inline-block;
    margin: 0 10px;
    position: relative;
}
.nav1 li .menuDD {
    display: inline-block;
    padding: 11px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all .7s;
    color: var(--wc-white);
    text-align: center;
    font-family: 'ProximaNova-Bold';
    font-size: 14px;
    font-style: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
}
.nav1 li .menuDD.active {
    color: var(--wc-primary);
}
.nav1 li .menuDD a {
    color: var(--wc-white);
    transition: all .5s ease-in-out;
}
.nav1 li .menuDD a:hover{
    color: var(--wc-primary);
    transition: all .5s ease-in-out;
}
.nav1 li.active .menuDD,
.nav1 li.active .menuDD a {
    color: var(--wc-primary) !important;
}
.nav1 li .menuDD img {
    margin-left: 5px;
    transition: all .5s ease-in-out;
}
.footerArrow {
    display: none;
}
.nav1Toggle {
    display: none;
    width: 30px;
    height: 24px;
    margin-top: 0;
    position: fixed;
    top: 28px;
    right: 6%;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 99999;
}
.nav1Toggle span {
    width: 25px;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--wc-black);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav1Toggle span:nth-child(1) {
    top: 3px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.nav1Toggle span:nth-child(2) {
    top: 11px;
    opacity: 1;
}
.nav1Toggle span:nth-child(3) {
    top: 19px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.nav1Toggle.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav1Toggle.open span:nth-child(2) {
    top: 11px;
    opacity: 0;
}
.nav1Toggle.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav1Search,
.nav1Member {
    display: inline-block;
    vertical-align: middle;
}
.memberLoginBtn a {
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    border: 1.11px solid var(--wc-white);
    border-radius: 25px;
    opacity: 1;
    color: var(--wc-white);
    opacity: 1;
    text-align: center;
    font-size: 12px;
    font-style: normal; 
    line-height: normal;
    text-transform: uppercase;
    font-family: 'ProximaNova-Bold';
    transition: all 0.4s ease 0s;
}
.memberLoginBtn a img {
    margin-left: 10px;
}
.memberBtn {
    display: none;
}
.memberLoginBtn a:hover{
    background: var(--button-black-hover);
    color: var(--button-white-hover);
    transition: all .5s ease-in-out;
}
.nav1Member.request-demo .memberLoginBtn a:hover{
    border: 0 solid var(--wc-primary800);
    transition: all 0.4s ease 0s;
    background: var(--button-default-hover);
}
.banner-link a:hover{
    color: var(--wc-primary);
    transition: all 0.4s ease 0s;
}
.mobnav1Overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: var(--wc-white);
    z-index: 1;
    display: none;
}
main {
    position: relative;
    z-index: 1;
}
footer,
.footer {
    width: 100%;
    position: relative;
    z-index: 9;
}
footer {
    bottom: 0;
}
.footer {
    background-color: var(--wc-black100);
}
.footer-logo {
    height: 60px;
    margin-bottom: 47px;
}
.show-mob {
    display: none;
}
.hide-mob {
    display: flex;
}
section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: var(--wc-white);
    overflow: hidden;
}
.container {
    width: 100%;
    padding: 0 140px;
    max-width: none;
}

#loader .loader_container {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  height: 96px;
  width: 96px;
  animation: rotate_3922 1.2s linear infinite;
  background-color: #9b59b6;
  background-image: linear-gradient(#9b59b6, #84cdfa, #5ad1cd);
}

#loader .loader_container span {
  position: absolute;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  background-color: #9b59b6;
  background-image: linear-gradient(#9b59b6, #84cdfa, #5ad1cd);
}

#loader .loader_container span:nth-of-type(1) {
  filter: blur(5px);
}

#loader .loader_container span:nth-of-type(2) {
  filter: blur(10px);
}

#loader .loader_container span:nth-of-type(3) {
  filter: blur(25px);
}

#loader .loader_container span:nth-of-type(4) {
  filter: blur(50px);
}

#loader .loader_container::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-color: #fff;
  border: solid 5px #ffffff;
  border-radius: 50%;
}

#loader.loader_wrappper img {
    width: 78px;
    height: 78px;
    position: relative;
    z-index: 1;
}

@keyframes rotate_3922 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.btn_common{
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    font-family: "ProximaNova-Bold";
    letter-spacing: -0.16px;
    padding: 20px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 56px;
    transition: all .5s ease-in-out;
}
.btn_common:hover{transition: all .5s ease-in-out;}
.btn_common.btn_primary{
    border: 1px solid var(--btnprimary-color1);
    color: var(--btnprimary-color1);
}
.btn_common.btn_primary:hover{
    background: var(--btnprimary-color1);
    color: var(--btnprimary-color2);
}
.btn_common.btn_secondary{
    background: var(--btnsecondary-color1);
    color: var(--btnsecondary-color2);
}
.btn_common.btn_secondary:hover{
    background: var(--btnsecondary-color3);
}
.headerTop .navigation_buttons .btn_primary,
.btn_common.btn_tertiary{
    border: 1px solid var(--btntertiary-color1);
    color: var(--btntertiary-color1);
}
.headerTop .navigation_buttons .btn_primary:hover,
.btn_common.btn_tertiary:hover{
    background:var(--btntertiary-color1) ;
    color: var(--btntertiary-color2);
}
.smButtonGroup .btn_common{width: 136px;height: 40px;}
.border_radius_0{border-radius: 0 !important;}

.template_heading_common{
    color: var(--wc-black100);
    font-size: 64px;
    font-weight: normal;
    line-height: 70px;
    letter-spacing: -3px;
    text-transform: capitalize;
    font-family: 'Proxima-Nova-Semibold';
}
.text_white{color: var(--wc-white) !important;}
.margin_btm{margin-bottom: 80px;}

@media only screen and (max-width: 1650px) {
    .nav1 li .menuDD {
        padding: 11px 5px;
        font-size: 14px;
    }
    .footerAreacol ul li {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .footer-logo {
        height: 53px;
    }
    .footerAreacol.social a {
        width: 44px;
        height: 44px;
    }
    .footerArea {
        padding: 88px 10% 60px 10%;
    }
    .footerBottom {
        padding: 35px 8%;
    }
    .footerAreacol ul a {
        font-size: 13px;
        margin-bottom: 9px !important;
    }
    .footerBottom {
        font-size: 12px;
    }
    .container {
        padding: 0 100px;
    }
    .memberLoginBtn a {
        font-size: 12px;
    }
    .btn {
        padding: 18px 41px;
        font-size: 14px;
    }

    .btn_common{height: 50px;}
    .nav1 li{margin: 0 0;}
    .template_heading_common{font-size: 54px;line-height: 60px;}
    .margin_btm {margin-bottom: 54px;}
}
@media only screen and (max-width: 1550px) {
    .topnav1,
    .mainnav1 {
        padding: 10px 2%;
    }
    .ilceLogo {
        left: 5.684%;
        top: 13px;
    }
    .nav1Right {
        right: 5.684%;
        top: 10px;
    }
    .nav1 li .menuDD {
        font-size: 14px;
        padding: 0px 5px;
    }
    .ilceLogo img {
        height: 48px;
    }
    .temp4 {
        padding: 0px 0;
    }
    .footerArea {
        padding: 60px 100px 50px 100px;
    }
    .footerAreacol ul li {
        font-size: 16px;
    }
    .footerAreacol ul a {
        font-size: 12px;
    }
    .footer-logo {
        height: 48px;
    }
    .footerAreacol.social a {
        width: 44px;
        height: 44px;
    }
    .footerBottom {
        padding: 30px 8%;
    }
}
@media only screen and (max-width: 1280px){
.btn_common{height: 44px;}
.template_heading_common {font-size: 44px;line-height: 48px;}
}
@media only screen and (max-width: 1100px) {
    .ilceLogo {
        left: 40px;
        top: 13px;
    }
    .nav1Right {
        right: 40px;
        top: 10px;
    }
    .nav1 li {
        margin: 0 7px;
    }
    .nav1 li .menuDD {
        padding: 11px 0;
        font-size: 12px;
    }
    .nav1Search {
        margin-right: 5px;
    }
    .memberLoginBtn a {
        font-size: 12px;
    }
    .footerAreacol.social a {
        width: 32px;
        height: 32px;
    }
    .footerAreacol.social a img {
        height: 12px;
    }
    .footerAreacol ul li {
        font-size: 16px;
        letter-spacing: -0.32px;
        margin-bottom: 17px;
    }
    .footerBottom {
        padding: 22px 40px;
        font-size: 10px;
    }
    .footer-logo {
        height: 40px;
        margin-bottom: 45px;
    }
    .footerArea {
        padding: 60px 40 20px 40;
    }
    .footerArea {
        padding: 60px 70px 50px 70px;
    }
    .container {
        padding: 0 40px;
    }
}
@media only screen and (max-width: 991px) {
    header {
        position: fixed;
        z-index: 99;
    }
    .container {
        padding: 0 40px;
    }
    .ilceLogo {
        left: 6%;
        top: 16px;
    }
    .topnav1 {
        display: none;
    }
    .nav1Toggle span {
        background-color: var(--wc-white);
    }
    i #blog-Detailpage .nav1Toggle span {
        background-color: var(--wc-black100);
    }
    .headerTop .nav1Toggle span {
        background-color: var(--wc-black);
    }
    nav1 {
        opacity: 0;
        visibility: hidden;
        max-width: 350px;
        width: 100%;
        height: 100%;
        padding: 30px 40px;
        position: fixed;
        top: 0;
        right: -100%;
        border-top: 0;
        background: var(--wc-white);
        border-radius: 0;
        z-index: 1;
        -webkit-transition: all .3s ease-in;
        -moz-transition: all .3s ease-in;
        -ms-transition: all .3s ease-in;
        -o-transition: all .3s ease-in;
        transition: all .3s ease-in;
    }
    nav1.open-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: auto;
        right: 350px;
        width: calc(100vw - 350px);
        height: 100%;
        z-index: 0;
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
    }
    .ilceLogo {
        position: relative;
        z-index: 1;
    }
    .nav1 li .menuDD img {
        margin-left: 5px;
        transition: all .5s ease-in-out;
        -webkit-filter: invert(1);
        filter: invert(1);
        opacity: .3;
    }
    .nav1 li .menuDD {
        justify-content: space-between;
    }
    nav1.open-menu {
        opacity: 1;
        visibility: visible;
        right: 0;
    }
    .nav1 li {
        margin: 10px 0 0;
        width: 100%;
        text-align: left;
    }
    .nav1 li .menuDD {
        width: 100%;
        font-size: 16px;
        letter-spacing: 1.12px;
        color: #A8AAAC;
        line-height: 1.3;
        padding: 0;
        position: relative;
        margin: 0 0 0;
    }
    .nav1Desc,
    .submenuList li img {
        display: none;
    }
    .header {
        top: 15px;
    }
    .footerArea {
        padding: 60px 30px 20px 30px;
    }
    .footerAreacol:first-child {
        border-right: 0px solid rgba(255, 255, 255, .2);
        width: 100%;
    }
    .footer-logo {
        height: 50px;
        margin-bottom: 40px;
    }
    .nav1 {
        padding-right: 0;
    }
    .menuDD img {
        transform: rotate(358deg) !important;
        transition: all .5s;
        opacity: 1;
        color: #53565A;
    }
    .backToTopButton{
        width: 36px;
        height: 36px;
    }
    .backToTopButton::after{font-size: .8em;}
}
@media only screen and (max-width: 650px) {
    .container {
        padding: 0 20px;
    }
    .memberLoginBtn a,
    .btn {
        font-size: 12px;
        border-radius: 28px;
        letter-spacing: 0;
    }
    .nav1Right {
        right: 70px;
        top: 14px;
    }
    .memberLoginBtn a img {
        margin-left: 4px;
        width: 10px;
        margin-top: -2px;
    }
    .ilceLogo img {
        height: 36px;
        margin-top: 3px;
    }
    .nav1Toggle {
        right: 17px;
        top: 19px;
    }
    .mainnav1 {
        height: 60px;
    }
    .ilceLogo {
        top: 3px;
        left: 30px;
    }
    .footerLogo {
        text-align: center;
    }
    .footerLogo img {
        height: 75px;
        display: inline-block;
    }
    .footer-logo {
        height: 40px;
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 576px){
    .template_heading_common {font-size: 34px;line-height: 40px;}
    .margin_btm {margin-bottom: 22px;}
}
.banner-overlay {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000000 0% 0% no-repeat padding-box;
    opacity: 0.5;
}
.breadcrumb-area {
    width: 100%;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    margin-top: 10%;
}
.inputbox input:focus {
    box-shadow: none;
    border: 0;
    outline: 00;
}
.input-group-text {
    background-color: transparent;
}
.inputbox {
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}
.comn-red-btn.scale-action{
    margin-top: 25px;
}
.inputiconbg::before {
    content: '';
    position: absolute;
    top: 5px;
    width: 50px;
    height: 50px;
    background-color: var(--wc-white);
    border-radius: 50%;
    left: 6px;
    z-index: 1;
}
.inputbox img {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    z-index: 1;
}
.inputbox input, .inputbox select {
    padding-left: 70px;
    border-radius: 16px;
    border: 1px solid var(--wc-gray100);
    background: #F5F5F5;
    height: 60px;
    width: 100%;
    border-radius: 50px;
}
.inputbox textarea {
    padding: 20px;
    border-radius: 16px;
    border: 1px var(--wc-gray100);
    background: #F5F5F5;
    width: 100%;
    border-radius: 16px;
}
.inputbox input::placeholder {
    color: var(--wc-gray300);
    font-family: 'Proxima-Nova-Semibold';
    font-size: 14px;
    line-height: 18px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.16px;
    text-transform: uppercase;
    opacity: 1;
}
.inputbox textarea::placeholder {
    color: var(--wc-gray300);
    font-family: 'Proxima-Nova-Semibold';
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.16px;
    text-transform: uppercase;
    opacity: 1;
}
.inputbox select{
    color: var(--wc-gray300);
    font-size: 16px;
    letter-spacing: -0.16px;
    outline: 0;
}
.inputbox input{
    color: var(--wc-black200);
    font-family: 'Proxima-Nova-Semibold';
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.16px;
    box-shadow: none;
    outline: 0;
}
.inputbox textarea {
    color: var(--wc-black200);
    font-family: 'Proxima-Nova-Semibold';
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.16px;
    resize: none;
    box-shadow: none;
    outline: 0;
}
.blueheader .nav1 {
    width: auto;
    float: left;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    padding-right: 0%;
    background: var(--wc-white);
    margin-left: 37%;
    border-radius: 60px;
    margin-top: 15px;
}
.blueheader .nav1 li .menuDD {
    display: inline-block;
    padding: 24px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all .7s;
    color: #0d243a;
    text-align: center;
    font-family: 'ProximaNova-Bold';
    font-size: 14px;
    font-style: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}
.swiper-slide.swiper-slide-active {
    transition: none;
}
a.link-colorlogo {
    display: none;
}
.headerTop a.link-colorlogo {
    display: block;
}
.sharelinkText {
    color: var(--wc-white);
    font-family: 'ProximaNova-Bold';
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.16px;
    text-decoration-line: underline;
    text-transform: uppercase;
    cursor: pointer;
}
.socialmedia-icons {
    transform: translateY(0px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
.socilmediaShareWrap.open .socialmedia-icons {
    transform: translateY(-37px);
    opacity: 1;
    visibility: visible;
}
.share-socialmedia {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
.socilmediaShareWrap.open .share-socialmedia {
    transform: translateY(-50px);
    opacity: 0;
    visibility: hidden;
}
p {
    margin: 0;
}
.backToTopButton {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--wc-primary);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: all .5s ease-in-out;
}
.backToTopButton::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.2em;
    line-height: 50px;
    color: var(--wc-white);
}
.backToTopButton:hover {
    cursor: pointer;
    background-color:rgba(239, 68, 78, .8);
    transition: all .5s ease-in-out;
}
.backToTopButton.show {
    opacity: 1;
    visibility: visible;
    transition: all .5s ease-in-out;
}
.open-menu1 .backToTopButton, .backtotopremove .backToTopButton{
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out;
}
.knowledgeInfoBlocklist .blogdot,
.blog-small-card-sectn .blogdot-white{
    height: 3px;
    width: 3px;
    background-color: var(--wc-gray300);
    border-radius: 50px;
}
.blog-small-card-sectn .blogdot-white{
    background-color: var(--wc-white);
}
.blog-group-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}
.temp10-area h6{
    text-align: center;
}