:root {
    --global-color-text: #274860;
    --global-color-brand: #0088FF;
    --global-color-brand2: #00BAC7;
    --global-color-brand-dark:#3383f1;
    --global-color-brand-light:#DAF3F6;
    --global-color-brand-light2:#DEF0FF;
    --global-color-brand-light3:#E5F3FF;
    --global-color-faq-gray:#DEE2EC;
    --error-border-color:#fb7171;
    --error-errNote-color: #f59090;
    --error-bgGroup-color: #fffbfb;
}
.nunito-sans-font {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
      "wdth" 100,
      "YTLC" 500;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-family: inherit;
  vertical-align: middle;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: inline-block;
    width: 100%;
}
strong{
    font-weight: 700;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  margin: 0;
  border: solid 1px gray;

}
iframe {
  width: 100%;
}
html, body {
    min-height: 100%;
}
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul{
    list-style-position: inside;
}
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html:not(.has-scroll-smooth) {
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
    font-family:"Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    font-variation-settings:
      "wdth" 100,
      "YTLC" 500;
    opacity: 1;
    -ms-transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
    color: var(--global-color-text);
}
body:after {
    content: "";
    display: block;
    clear: both;
}
body.noScroll {
    overflow: hidden!important;
}

img {
    max-width: 100%;
}
h1, h2, h3, h4, h5, h6{
    line-height: 1.2;
}
p {
    padding: 0;
    border: 0;
    font: inherit;
    display: block;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    margin: 0;
    line-height: 1.4;
}

a {
    text-decoration: none;
}
.content-center{
    text-align: center;
}
.clear{
    clear: both;
}
.lw-container{
    width: 100%;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
}
.lw-container.lw-container-small{
    max-width: 992px;
}
.main-padding{
    padding-left: 15px;
    padding-right: 15px;
}
.lw-row{
    display: flex;
    flex-wrap: wrap;
    padding-left: 15px; /* if main-padding is not used */
    padding-right: 15px; /* if main-padding is not used */
}
.lw-row .lw-row{
    padding-left: 0;
    padding-right: 0;
}


.lw-col{
    min-height: 1px;
    clear: both;
}
.flex{
    display: flex;
}
.flex-hcenter{
    justify-content: center;
}
.flex-vcenter{
    align-items: center;
}
.flex-space-between{
    justify-content: space-between;
}
.relative-position,
section{
    position: relative;
}
.height100{
    height: 100%;
}
.btn {
    cursor: pointer;
}
.btn-round{
    outline: none;
    border: none;
    background-color: var(--global-color-brand-dark);
    color: #fff;
    border-radius: 500px;
    padding: 0.5em 1.6em;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

#preloader_visualizer {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #F5F6FA;
    top: 0;
    left: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -ms-transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

body.body-hide #preloader_visualizer {
    position: fixed;
    z-index: 999999;
    opacity: 1;
}

#preloader_visualizer .loading-text {
    color: #555;
    font-family: inherit;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 10px;
}

#load_progress_bar {
    margin-top: 15px;
    width: 500px;
    max-width: 80%;
    height: 1px;
    background-color: transparent;
    position: relative;
}

#load_progress_bar .inner {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #999;
    opacity: 0.5;
    -webkit-animation: loading 5s ease-in-out;
    animation: loading 5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#load_progress_bar.loaded {
    max-width: 100%;
}

#load_progress_bar.loaded .inner {
    width: 100%!important;
    -webkit-animation: none;
    animation: none;
}

@-webkit-keyframes loading {
    0% {
        width: 0;
    }

    25% {
        width: 50%;
    }

    50% {
        width: 50%;
    }

    75% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

@keyframes loading {
    0% {
        width: 0;
    }

    25% {
        width: 50%;
    }

    50% {
        width: 50%;
    }

    75% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

header.header-main-wrapper{
    display: flex;
    align-items: center;
    /* height: 100px; */
    position: -webkit-sticky;
    position: sticky;
    z-index: 99;
    top:-100px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    background-color: rgba(255, 255, 255, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
body.show-header-sticky header.header-main-wrapper{
    top:0;
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
}
header .header-main-wrapper > .lw-container > .lw-row{
    align-items: stretch;
}
header .header-left-wrapper,
header .header-right-wrapper{
    display: flex;
    align-items: center;
}
header .header-right-wrapper{
    justify-content: flex-end;
}
header .header-main-menu{
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    max-width: 700px;
    margin: auto;
}
header .header-main-menu > .main-menu-heading,
header .header-main-menu > .main-menu-heading > a{
    height: 100%;
}
header .header-main-menu > .main-menu-heading > a{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
header .header-main-menu > .main-menu-heading > a svg{
    margin-left: 5px;
    fill:currentColor;
    width: 0.8em;
    margin-top:2px;
}
header .header-main-menu a{
    display: block;
    text-decoration: none;
    color: var(--global-color-text);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 18px;
}
header .header-main-menu a:hover{
    color: var(--global-color-brand);
}
header .dropdown-wrapper{
    position: absolute;
    z-index: -1;
    left: 0;
    top:auto;
    margin-top: 0;
    width: 100%;
    background-color: #fff;
    padding: 40px 10px;
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transition: transform 0.6s, opacity 0s;
    transition: transform 0.6s, opacity 0s;
}
header .header-main-menu > .main-menu-heading:hover > .dropdown-wrapper,
header .header-main-menu > .main-menu-heading:focus > .dropdown-wrapper{
    opacity: 1;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: transform 0.6s, opacity 1s 0.1s;
    transition: transform 0.6s, opacity 1s 0.1s;
}

header .dropdown-wrapper .dropdown-menu{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
header .dropdown-wrapper .dropdown-menu a.dropdown-link{
    display: block;
    color: var(--global-color-text);
    font-size: 16px;
}
header .dropdown-wrapper .dropdown-menu a.dropdown-link:hover{
    color: var(--global-color-brand-dark);
}
header .dropdown-wrapper .header-megamenu-sec1 .dwrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-right: 30px;
}
header .dropdown-wrapper .header-megamenu-sec1 h4{
    font-size: 24px;
    font-weight: 600;
    color: var(--global-color-text);
}
header .dropdown-wrapper .header-megamenu-sec1 span,
header .dropdown-wrapper .header-megamenu-sec1 a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--global-color-text);
}
header .dropdown-wrapper .header-megamenu-sec1 a{
    color: var(--global-color-brand-dark);
    margin-left: 30px;
}
header .header-left-wrapper a{
    display: block;
}
header .header-left-wrapper .logo{
    height: 100%;
    margin: 10px 0;
    max-height: 60px;
}

header .toggle-mobile-menu{
    outline: none;
    border: none;
    padding: 0;
    background-color: var(--global-color-brand);
    color: #fff;
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    font-size: 25px;
}
header .toggle-mobile-menu svg{
    stroke: #ffffff;
}
header button.canvas-overlay{
    display: none;
}
.section{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-general{
    padding: 80px 0;
}
.general-title-1,
.general-title-2,
.general-title-3{
    color: var(--global-color-brand);
    font-size: 42px;
    font-weight: 600;
}
.general-title-2{
    font-size: 28px;
}
.general-title-3{
    font-size: 21px;
}
.section-hero{
    min-height: 300px;
    background-image: url(../images/hero-bg-min.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.section-hero .section-wrapper{
    padding: 30px 0 80px;
}
.bg-img{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-blue-grad1{
    background-image: url(../images/bg-blue-grad-min.jpg);
}
.bg-blue-grad2{
    background-image: url(../images/bg-blue-grad2-min.jpg);
}
.bg-blue-grad3{
    background-image: url(../images/bg-blue-grad3-min.jpg);
}
.breadcrumb-wrapper .breadcrumbList{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.breadcrumb-wrapper .breadcrumbList svg{
    width: 24px;
    fill: var(--global-color-text);
}
.breadcrumbList a{
    display: block;
}
.breadcrumbList [itemprop="name"]{
    color: var(--global-color-text);
    font-size: 16px;
    display: block;
}
.hero-bg-anim{
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 0;
}
.hero-bg-anim .bg-container{
    height: 100%;
    display: flex;
    justify-content: flex-end;
}
.hero-bg-anim svg{
    height: 100%;
}

.hero-bg-anim svg .svg-elem-1 {
    stroke-dashoffset: 649.9970703125px;
    stroke-dasharray: 649.9970703125px;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s,
                          fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
            transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s,
                  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

.hero-bg-anim svg.active .svg-elem-1 {
    stroke-dashoffset: 0;
}
.hero-bg-anim svg .svg-elem-2 {
    stroke-dashoffset: 1001.2182006835938px;
    stroke-dasharray: 1001.2182006835938px;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s,
                          fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
            transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s,
                  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}
.hero-bg-anim svg.active .svg-elem-2 {
    stroke-dashoffset: 0;
}
.hero-bg-anim svg .svg-elem-3 {
    stroke-dashoffset: 208.47882080078125px;
    stroke-dasharray: 208.47882080078125px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s,
                          fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
            transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s,
                  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}
.hero-bg-anim svg.active .svg-elem-3 {
    stroke-dashoffset: 0;
    fill: rgb(0, 136, 255);
}
.hero-bg-anim svg .svg-elem-4 {
    stroke-dashoffset: 208.95025634765625px;
    stroke-dasharray: 208.95025634765625px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s,
                          fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
            transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s,
                  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}
.hero-bg-anim svg.active .svg-elem-4 {
    stroke-dashoffset: 0;
    fill: rgb(0, 207, 255);
}
.hero-bg-anim svg .svg-elem-5 {
    stroke-dashoffset: 208.47882080078125px;
    stroke-dasharray: 208.47882080078125px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s,
                          fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s;
            transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s,
                  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s;
}  
.hero-bg-anim svg.active .svg-elem-5 {
    stroke-dashoffset: 0;
    fill: rgb(214, 219, 228);
}


.hero-bg-anim svg.active .rect{
    -webkit-transform-origin: top left;
    transform-origin: top left;
}
.hero-bg-anim svg.active .rect.svg-elem-3{
    -webkit-animation: svgElem3 8s linear infinite;
            animation: svgElem3 8s linear infinite;
    -webkit-animation-delay: 2000ms;
            animation-delay: 2000ms;
    -webkit-transform: scale(.85) translate(334.82px, 565.08px) rotate(-141.25deg);
    transform: scale(.85) translate(334.82px, 565.08px) rotate(-141.25deg);
}
.hero-bg-anim svg.active .rect.svg-elem-4{
    -webkit-animation: svgElem4 8s linear infinite;
            animation: svgElem4 8s linear infinite;
    -webkit-animation-delay: 1000ms;
            animation-delay: 1000ms;
    -webkit-transform: scale(.85) translate(433.27px, 599.7px) rotate(-141.25deg);
    transform: scale(.85) translate(433.27px, 599.7px) rotate(-141.25deg);
}
.hero-bg-anim svg.active .rect.svg-elem-5{
    -webkit-animation: svgElem5 8s linear infinite;
            animation: svgElem5 8s linear infinite;
    -webkit-animation-delay: 0ms;
            animation-delay: 0ms;
    -webkit-transform: scale(.85) translate(531.72px, 634.33px) rotate(-141.25deg);
    transform: scale(.85) translate(531.72px, 634.33px) rotate(-141.25deg);
}

.hero-bg-anim svg.active .cls-4{
    -webkit-animation: scaleOut 8s cubic-bezier(.455,.03,.515,.955) -.4s infinite;
            animation: scaleOut 8s cubic-bezier(.455,.03,.515,.955) -.4s infinite;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
        transform-origin: center center;
}
.hero-bg-anim svg.active .cls-4.svg-elem-2{
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
}
@-webkit-keyframes scaleOut {
    0% {
                -webkit-transform: scale(1);
                        transform: scale(1);
    }
    50% {
                    -webkit-transform: scale(1.2);
                            transform: scale(1.2);
    }
    100% {
                    -webkit-transform: scale(1);
                            transform: scale(1);
    }
}
@keyframes scaleOut {
    0% {
                -webkit-transform: scale(1);
                        transform: scale(1);
    }
    50% {
                    -webkit-transform: scale(1.2);
                            transform: scale(1.2);
    }
    100% {
                    -webkit-transform: scale(1);
                            transform: scale(1);
    }
}
@-webkit-keyframes svgElem3 {
    0% {
                -webkit-transform: scale(.85) translate(334.82px, 565.08px) rotate(-141.25deg);
                        transform: scale(.85) translate(334.82px, 565.08px) rotate(-141.25deg);
    }
    50% {
                -webkit-transform: scale(1) translate(334.82px, 565.08px) rotate(-141.25deg);
                        transform: scale(1) translate(334.82px, 565.08px) rotate(-141.25deg);
    }
    100% {
                -webkit-transform: scale(.85) translate(334.82px, 565.08px) rotate(-141.25deg);
                        transform: scale(.85) translate(334.82px, 565.08px) rotate(-141.25deg);
    }
}
@keyframes svgElem3 {
    0% {
                -webkit-transform: scale(.85) translate(334.82px, 565.08px) rotate(-141.25deg);
                        transform: scale(.85) translate(334.82px, 565.08px) rotate(-141.25deg);
    }
    50% {
                -webkit-transform: scale(1) translate(334.82px, 565.08px) rotate(-141.25deg);
                        transform: scale(1) translate(334.82px, 565.08px) rotate(-141.25deg);
    }
    100% {
                -webkit-transform: scale(.85) translate(334.82px, 565.08px) rotate(-141.25deg);
                        transform: scale(.85) translate(334.82px, 565.08px) rotate(-141.25deg);
    }
}
@-webkit-keyframes svgElem4 {
    0% {
                -webkit-transform: scale(.85) translate(433.27px, 599.7px) rotate(-141.25deg);
                        transform: scale(.85) translate(433.27px, 599.7px) rotate(-141.25deg);
    }
    50% {
                -webkit-transform: scale(1) translate(433.27px, 599.7px) rotate(-141.25deg);
                        transform: scale(1) translate(433.27px, 599.7px) rotate(-141.25deg);
    }
    100% {
                -webkit-transform: scale(.85) translate(433.27px, 599.7px) rotate(-141.25deg);
                        transform: scale(.85) translate(433.27px, 599.7px) rotate(-141.25deg);
    }
}
@keyframes svgElem4 {
    0% {
                -webkit-transform: scale(.85) translate(433.27px, 599.7px) rotate(-141.25deg);
                        transform: scale(.85) translate(433.27px, 599.7px) rotate(-141.25deg);
    }
    50% {
                -webkit-transform: scale(1) translate(433.27px, 599.7px) rotate(-141.25deg);
                        transform: scale(1) translate(433.27px, 599.7px) rotate(-141.25deg);
    }
    100% {
                -webkit-transform: scale(.85) translate(433.27px, 599.7px) rotate(-141.25deg);
                        transform: scale(.85) translate(433.27px, 599.7px) rotate(-141.25deg);
    }
}
@-webkit-keyframes svgElem5 {
    0% {
                -webkit-transform: scale(.85) translate(531.72px, 634.33px) rotate(-141.25deg);
                        transform: scale(.85) translate(531.72px, 634.33px) rotate(-141.25deg);
    }
    50% {
                -webkit-transform: scale(1) translate(531.72px, 634.33px) rotate(-141.25deg);
                        transform: scale(1) translate(531.72px, 634.33px) rotate(-141.25deg);
    }
    100% {
                -webkit-transform: scale(.85) translate(531.72px, 634.33px) rotate(-141.25deg);
                        transform: scale(.85) translate(531.72px, 634.33px) rotate(-141.25deg);
    }
}
@keyframes svgElem5 {
    0% {
                -webkit-transform: scale(.85) translate(531.72px, 634.33px) rotate(-141.25deg);
                        transform: scale(.85) translate(531.72px, 634.33px) rotate(-141.25deg);
    }
    50% {
                -webkit-transform: scale(1) translate(531.72px, 634.33px) rotate(-141.25deg);
                        transform: scale(1) translate(531.72px, 634.33px) rotate(-141.25deg);
    }
    100% {
                -webkit-transform: scale(.85) translate(531.72px, 634.33px) rotate(-141.25deg);
                        transform: scale(.85) translate(531.72px, 634.33px) rotate(-141.25deg);
    }
}


.section-hero .lw-container{
    position: relative;
    z-index: 1;
}
.hero-content-wrapper{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section-hero .hero-subTitle{
    font-size: 24px;
    color: var(--global-color-text);
    font-weight: 600;
}
.section-hero .hero-title{
    font-size: 42px;
    color: var(--global-color-brand);
    margin-top: 5px;
    font-weight: 600;
}
.section-hero .hero-description{
    font-size: 16px;
    color: var(--global-color-text);
    margin-top: 30px;
    font-weight: 600;
    max-width: 550px;
}
.section-hero .hero-ctaBtn{
    display: none;
}

.rr-slider-main-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
}

.rr-slider-main-wrapper .controls button {
    outline: none;
    margin: 0;
    position: absolute;
    z-index: 10;
    top:50%;
    left: 1em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}
.rr-slider-main-wrapper .controls button#nextButton{
    left: auto;
    right: 1rem;
}

.rr-slider-main-wrapper .rr-slides-container {
    position: relative;
    overflow: hidden;  
    display: flex;
    flex: 1;
}

.rr-slider-main-wrapper .rr-slide {
    position: absolute;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    opacity: 0;
}

.rr-slider-main-wrapper .slides-inner {
    position: relative;
    height: 100%;
    width: 100%;  
    overflow: hidden;
}
.rr-slider-main-wrapper .bkg-img{
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.rr-slider-main-wrapper .bkg-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.rr-slider-main-wrapper .bkg-img img.mobile-bg{
    display: none;
}
.rr-slider-main-wrapper .inner-element{
    position: relative;
    z-index: 1;
}
  
.footer-faq-section{
    margin-top: 120px;
    margin-bottom: 120px;
}
.faq-wrapper{
    width: 100%;
}
.faq-page .question {
    margin-bottom: 20px;
    cursor: pointer;
    background-color: var(--global-color-brand-light);
}
.faq-page.faq-gray1 .question{
    background-color: var(--global-color-faq-gray);
}
.faq-page .question:last-of-type{
    margin-bottom: 0;
}
.faq-page .question-title {
    padding: 20px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--global-color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-page .answer {
    padding: 0 20px;
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}
.faq-page .question.active .answer {
    padding: 0px 20px 25px;
    height: auto;
    opacity: 1;
}

.faq-page .question .answer .answer-text{
    font-size: 16px;
    color: var(--global-color-text);
}
.faq-page .question .answer .answer-text ol,
.faq-page .question .answer .answer-text ul{
    list-style-position: inside;
}
.faq-page .question .answer .answer-text ol li:not(:last-child),
.faq-page .question .answer .answer-text ul li:not(:last-child){
    margin-bottom: 5px;
}
.faq-page .question-title .question-icon {
    position: relative;
    width: 24px;
    height: 24px;
    background-color: var(--global-color-brand-dark);
    border-radius: 2px;
    flex-shrink: 0;
    align-self: flex-start;
}
.faq-page .question-title .arrow-icon{
    position: relative;
    width: 35px;
    height: 24px;
    background-color: transparent;
    border-radius: 2px;
    flex-shrink: 0;
    align-self: flex-start;
    display: flex;
    align-items: center;
}
.faq-page .question-title .arrow-icon svg{
    width: 100%;
    fill:var(--global-color-brand-dark);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: transform 0.6s;
    transition: transform 0.6s;
}
  
.faq-page .question-title .question-icon:before,
.faq-page .question-title .question-icon:after {
    content: '';
    display: inline-block;
    background-color: #fff;
    width: 50%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: transform 0.6s, opacity 0.6s;
    transition: transform 0.6s, opacity 0.6s;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.faq-page .question-title .question-icon:after{
    width: 1px;
    height: 50%;
}
.faq-page .question.active .question-title .question-icon::before {
    opacity: 0;
}
.faq-page .question.active .question-title .question-icon::before,
.faq-page .question.active .question-title .question-icon:after {
    -webkit-transform: rotate(90deg) translate(-50%, -50%);
    transform: rotate(90deg) translate(-50%, -50%);
}
.faq-page .question.active .question-title .arrow-icon svg{
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}


footer > .lw-container > .lw-row{
    flex-wrap: wrap;
}
.footer-top > .lw-row > .lw-col{
    display: flex;
    justify-content: flex-start;
}
.footer-top > .lw-row > .group2{
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-top .footer-nav{
    padding: 0 10px;
}
.footer-top-first{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-top-first-logo a{
    display: block;
}
.footer-top-first-logo img{
    width: 140px;
    margin: 0 auto;
    display: block;
}
footer .social-icons{
    display: flex;
    justify-content: space-evenly;
    gap: 15px;
}
footer a{
    display: block;
}
footer .social-icons a svg{
    height: 16px;
    width:auto;
    fill:#042631;
}
footer .contact-link a{
    font-size: 18px;
    margin: 20px auto;
    color: var(--global-color-brand-dark);
}

.footer-bottom{
    border-top: solid 1px #eee;
    margin-top: 60px;
    padding: 15px 0;
}
.footer-bottom p{
    flex:1;
    display: block;
    text-align: center;
    font-size: 14px;
    color: var(--global-color-text);
}
footer .footer-nav h6{
    font-size: 18px;
    font-weight: 600;
    color: var(--global-color-brand-dark);
    margin-bottom: 30px;
}
footer .footer-nav ul.nav-list{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap:10px;
}
footer .footer-nav ul.nav-list a{
    display: block;
    font-weight: 600;
    color: var(--global-color-text);
    font-size: 16px;
}

/* Custom Cursor */
.custom-cursor, .custom-cursor-dot {
    position:fixed; 
    z-index:999; 
    top:0; 
    left:0;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    pointer-events:none; 
    mix-blend-mode:soft-light;
}
  
/* decorative */
.custom-cursor {
    width:50px; 
    height:50px; 
    background-color: var(--global-color-brand-dark); 
    border-radius:50%;
    mix-blend-mode: color-burn;
}
  
.custom-cursor-dot {
    width:18px; 
    height:19px; 
    border-radius:50%; 
    background-color:var(--global-color-brand-dark);
    mix-blend-mode: difference;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Set the aspect ratio to 16:9 */
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
  
.video-container .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
}
  
.video-container .play-button {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
  
.video-container .play-button svg {
    fill:#fff;
    width: 50%;
    margin-left:4px;
}
.bg-boxs-wrapper{
    display: flex;
    align-items: stretch;
    justify-content:space-between;
    gap: 60px;
}
.bg-boxs-wrapper .bg-box{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.bg-box .content{
    padding: 60px;
    flex: 1;
}
.bg-box .img img{
    width: 100%;
    height: clamp(210px, 20vw, 420px);
    object-fit: cover;
}
.bg-box.box1 .content{
    background-color: var(--global-color-brand-light2);
}
.bg-box.box2 .content{
    background-color: var(--global-color-brand-light);
}

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="email"],
textarea,
select{
    font-size: 14px;
    min-height: 36px;
    width: 100%;
    outline: none;
    border:solid 1px transparent;
    background-color: var(--global-color-brand-light3);
    padding: 0 10px;
}
input::placeholder,
input::-webkit-input-placeholder,
textarea::placeholder,
textarea::-webkit-input-placeholder,
select::placeholder,
select::-webkit-input-placeholder{
    color: var(--global-color-text);
    opacity: 0.4;
}
.input-group{
    position: relative;
}
.input-group::before{
    content:"";
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 10px;
    background-color: var(--error-bgGroup-color);
    border: solid 1px var(--error-border-color);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}
.input-group.error-group:before{
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.input-wrapper{
    display: flex;
    flex-direction: column-reverse;
}
.input-wrapper label{
    cursor: pointer;
}
.input-wrapper p{
    -webkit-user-select: none;
    user-select: none;
}
.errorNote{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--error-errNote-color);
    color: #fff;
    padding: 2px 15px;
    font-size: 14px;
    -webkit-transform: translateY(40%);
    transform: translateY(40%);
}
.input-wrapper.multiplechoice{
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.input-wrapper label{
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
    cursor: pointer;
}
.input-wrapper input:required ~ label:after,
.input-wrapper select:required ~ label:after,
.input-wrapper textarea:required ~ label:after{
    content: "*";
    margin-left: 2px;
    color:inherit;
}
.input-wrapper input[type="radio"]:required ~ label:after,
.input-wrapper input[type="chekbox"]:required ~ label:after{
    display: none;
}
.input-wrapper.multiplechoice .input-title{
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.input-wrapper.multiplechoice .input-title em{
    font-size: 0.95em;
}
.page .summary-wrapper{
    max-width: 1100px;
    margin: 0 auto;
}
.page .summary-box .detail-edit{
    text-align: right;
    margin-bottom: 5px;
}
.page .summary-box .detail-edit .edit-details{
    all: unset;
    color: var(--global-color-brand);
    font-size: 21px;
    display: inline-block;
    cursor: pointer;
}
.page .summary-wrapper .summary-wrapper-container{
    padding: 50px;
}
.page .summary-box .details-wrapper{
    background-color: #fff;
    padding: 30px;
}
.page .summary-box:not(:last-of-type){
    margin-bottom: 60px;
}
.page .details-container .summary-details{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 0;
}
.page .summary-title{
    font-size: 24px;
    margin-bottom: 15px;
}
.page .details-wrapper .details-container:not(:last-of-type){
    margin-bottom: 30px;
}
.page .details-wrapper .detail-title{
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
.page .details-wrapper .details{
    margin-bottom: 10px;
}
.page .details-wrapper .details p{
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 16px;
    line-height: 1.2;
}
.page .details-wrapper .details p .desc-title{
    font-weight: 700;
    font-size: 14px;
}
/* ******  Form Inputs ****** */

.checkbox-wrapper-33 {
    --c-border-default-color: rgba(51, 131, 241, 0.5);
    --c-primary-20-percent-opacity: rgba(51, 131, 241, 0.20);
    --c-primary-10-percent-opacity: rgba(51, 131, 241, 0.10);
    --t-base: 0.4s;
    --t-fast: 0.2s;
    --e-in: ease-in;
    --e-out: cubic-bezier(.11,.29,.18,.98);
}
input.error,
textarea.error,
select.error{
    border-color: var(--error-border-color)!important;
}

.checkbox-wrapper-33 .visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.checkbox-wrapper-33 .checkbox {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5em;
    font-size: 16px;
}

.checkbox-wrapper-33 .checkbox__symbol {
    flex-shrink: 0;
    margin-top: 0.2em;
    display: flex;
    border: 1px solid var(--c-border-default-color);
    position: relative;
    border-radius: 0.1em;
    width: 0.9em;
    height: 0.9em;
    -webkit-transition: box-shadow var(--t-base) var(--e-out), background-color var(--t-base);
    transition: box-shadow var(--t-base) var(--e-out), background-color var(--t-base);
    box-shadow: 0 0 0 0 var(--c-primary-10-percent-opacity);
}
.checkbox-wrapper-33 input[type="radio"] ~ .checkbox__symbol{
    border-radius: 500px;
}
.box-blue .checkbox-wrapper-33 input[type="radio"] ~ .checkbox__symbol{
    border-radius: 0.1em;
}
.checkbox-wrapper-33 .checkbox__symbol:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.25em;
    height: 0.25em;
    background-color: var(--c-primary-20-percent-opacity);
    opacity: 0;
    border-radius: 3em;
    -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
}
.checkbox-wrapper-33 .checkbox .icon-checkbox {
    width: 80%;
    height: auto;
    margin: auto;
    fill: none;
    stroke-width: 3;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    color: #fff;
    display: inline-block;
}
.checkbox-wrapper-33 .checkbox .icon-checkbox path {
    -webkit-transition: stroke-dashoffset var(--t-fast) var(--e-in);
    transition: stroke-dashoffset var(--t-fast) var(--e-in);
    stroke-dasharray: 30px, 31px;
    stroke-dashoffset: 31px;
}
.checkbox-wrapper-33 .checkbox__textwrapper {
    display: flex;
    flex-direction: column;
    gap:10px;
    line-height: 1.2;
}
.checkbox-wrapper-33 .checkbox__trigger:checked + .checkbox__symbol{
    border-color: transparent;
    background-color: var(--global-color-brand-dark);
}
.checkbox-wrapper-33 .checkbox__trigger:checked + .checkbox__symbol:after {
    -webkit-animation: ripple-33 1.5s var(--e-out);
            animation: ripple-33 1.5s var(--e-out);
}
.checkbox-wrapper-33 .checkbox__trigger:checked + .checkbox__symbol .icon-checkbox path {
    -webkit-transition: stroke-dashoffset var(--t-base) var(--e-out);
    transition: stroke-dashoffset var(--t-base) var(--e-out);
    stroke-dashoffset: 0px;
}
.checkbox-wrapper-33 .checkbox__trigger:focus + .checkbox__symbol {
    box-shadow: 0 0 0 0.25em var(--c-primary-20-percent-opacity);
}
@-webkit-keyframes ripple-33 {
    from {
        width: 0;
        height: 0;
        opacity: 1;
    }
    to {
        width: 5em;
        height: 5em;
        opacity: 0;
    }
}

@keyframes ripple-33 {
    from {
        width: 0;
        height: 0;
        opacity: 1;
    }
    to {
        width: 5em;
        height: 5em;
        opacity: 0;
    }
}

.box-blue{
    background-color: var(--global-color-brand-light3);
    padding: 15px 30px 25px;
}

.box-blue .checkbox-wrapper-33 .checkbox{
    font-size: 21px;
}
.box-blue .checkbox-wrapper-33 .checkbox__textwrapper em{
    font-size: 14px;
}
.box-blue input[type="text"],
.box-blue input[type="tel"],
.box-blue input[type="date"],
.box-blue input[type="email"],
.box-blue select{
    background-color: #fff;
}

.help-box{
    background-image: url(../images/bg-helpBox-min.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    gap:30px;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top:calc(100% - 250px);
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.help-box p{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}
.multistep-form{
    position: relative;
    width: 100%;
}
.page{
    width: 100%;
    /* overflow: hidden; */
    opacity: 1;
    height: auto;
    /* -webkit-transition: height 0.3s;
    transition: height 0.3s; */
}
.page:not(.active){
    position: absolute;
    top:0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 0; 
    overflow: hidden;
    position: relative;
    z-index: -1;
}
.page:not(.active) .input-group,
.page:not(.active) .section-title,
.page:not(.active) .animateItem,
.page:not(.active) .summary-box{
    opacity: 0!important;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.page .slideBtn-wrapper .btn{
    font-size: 28px;
    border: solid 1px transparent;
    width: 35%;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.page .slideBtn-wrapper .btn:disabled{
    opacity: 0.25!important;
    cursor: default;
}
.page .slideBtn-wrapper{
    display: flex;
    gap: 20px;
    justify-content: space-around;
    margin-top: 60px;
}
.page .slideBtn-wrapper .btn.btn-prev{
    background-color: transparent;
    border-color: var(--global-color-brand-dark);
    color: var(--global-color-brand-dark);
}
.page .img-box{
    height: 100%;
}
.page .img-box input{
    height: 0;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    z-index: 0;
}
.page .img-box label{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    border: solid 5px transparent;
    -webkit-transition: border-color 0.4s;
    transition: border-color 0.4s;
}
.page .img-box input:checked ~ label{
    border-color: var(--global-color-brand);
}
.page .img-box.imgbox-blue1 label{
    background-color: var(--global-color-brand-light2);
}
.page .img-box.imgbox-blue2 label{
    background-color: var(--global-color-brand-light3);
}
.page .img-box label > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px 60px;
    height: 100%;
    width: 100%;
    max-width: 500px;
}

.page .img-box img{
    width: 40%;
    max-width: 210px;
}
.page .img-box .heading{
    width: 100%;
    font-size: 21px;
    line-height: 0.5em;
    margin: 25px 0 20px;
}
.page .img-box .heading *{
    color: inherit;
    font-size: 1em;
    line-height: 100%;
}
.page .img-box .heading svg{
    height: 1.4em;
    fill:var(--global-color-brand-dark);
    vertical-align: middle;
}
.page .img-box .desc{
    font-size: 16px;
}
.page .toggle-form{
    overflow: hidden;
}

/* ******  End Form Inputs ****** */

/* newsletter-popup.css */
.newsletter-popup {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--global-color-brand-dark);
    padding: 20px;
    border: none;
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
    -webkit-transition: transform 2s;
    transition: transform 2s;
}
.newsletter-popup.show {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 5s;
    transition-delay: 5s;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
  
.close-btn-news {
    position: absolute;
    z-index: 10;
    top: -30px;
    right: 0;
    font-size: 18px;
    cursor: pointer;
    border: none;
    padding: 5px;
    line-height: 0;
    outline: none;
    background:none;
    color: var(--global-color-text);
    filter: drop-shadow(0px 0px 4px #fff);
}
.close-btn-news svg{
    fill:currentColor;
    width: 18px;
}  
.close-btn-news:hover {
    color: red;
}
.newsletter-popup form{
    flex-shrink: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}
.newsletter-input-wrapper{
    position: relative;
    flex: 1;
}
.newsletter-input-wrapper input{
    display: block;
    width: 100%;
    height: 35px;
    border-radius: 10px;
    border: none;
    padding: 5px 35px;
    font-size: 14px;
}
.newsletter-input-wrapper label{
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 14px;
    z-index: 1;
    color: #999;
}
.newsletter-input-wrapper label svg{
    fill: currentColor;
    height: 100%;
}
.newsletter-popup button[type="submit"]{
    border: solid 1px #fff;
    border-radius: 10px;
    background: none;
    color: #fff;
    padding: 1px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.5px;
    height: 35px;
}
.newsletter-popup .newsletter-title{
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

@media (min-width: 1025px){
    
    .lw-col-md-1{
        width: 8.33%;
    }
    .lw-col-md-2{
        width: 16.66%;
    }
    .lw-col-md-3{
        width: 25%;
    }
    .lw-col-md-4{
        width: 33.33%;
    }
    .lw-col-md-5{
        width: 41.66%;
    }
    .lw-col-md-6{
        width: 50%;
    }
    .lw-col-md-7{
        width: 58.33%;
    }
    .lw-col-md-8{
        width: 66.66%;
    }
    .lw-col-md-9{
        width: 75%;
    }
    .lw-col-md-10{
        width: 83.33%;
    }
    .lw-col-md-11{
        width: 91.66%;
    }
    .lw-col-md-12{
        width: 100%;
    }

    .content-convas-header,
    .content-convas-footer{
        display: none;
    }
    header .header-main-menu > li.main-menu-heading{
        -webkit-transform: none!important;
        transform: none!important;
    }

}
@media (max-width: 1199px){
    .main-padding{
        padding-left: 30px;
        padding-right: 30px;
    }
    .lw-row{
        padding-left: 30px; /* if main-padding not used */
        padding-right: 30px; /* if main-padding not used */
    }
    .section-hero .section-wrapper {
        padding: 30px 0 60px;
    }
    .section-general {
        padding: 60px 0;
    }
    header .header-main-menu a{
        font-size: 16px;
    }
    .breadcrumbList [itemprop="name"]{
        font-size: 14px;
    }
    .section-hero .hero-title{
        font-size: 36px;
    }
    .general-title-1{
        font-size: 36px;
    }
    .general-title-2{
        font-size: 24px;
    }
    .section-hero .hero-subTitle{
        font-size: 21px;
    }
    .section-hero .hero-description{
        font-size: 14px;
    }
}
@media (max-width: 1024px){
    .lw-col-sm-1{
        width: 8.33%;
    }
    .lw-col-sm-2{
        width: 16.66%;
    }
    .lw-col-sm-3{
        width: 25%;
    }
    .lw-col-sm-4{
        width: 33.33%;
    }
    .lw-col-sm-5{
        width: 41.66%;
    }
    .lw-col-sm-6{
        width: 50%;
    }
    .lw-col-sm-7{
        width: 58.33%;
    }
    .lw-col-sm-8{
        width: 66.66%;
    }
    .lw-col-sm-9{
        width: 75%;
    }
    .lw-col-sm-10{
        width: 83.33%;
    }
    .lw-col-sm-11{
        width: 91.66%;
    }
    .lw-col-sm-12{
        width: 100%;
    }
    .sm-hide{
        display: none!important;
    }

    header.header-main-wrapper > .lw-container > .lw-row{
        justify-content: space-between;
        align-items: center;
    }
    header .toggle-mobile-menu{
        display: flex;
    }
    header .header-left-wrapper .logo{
        max-height: 45px;
    }

    header .header-center-wrapper{
        /* max-width: 350px; */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999999;
        height: 0;
        overflow:hidden;
        opacity: 0;
    }
    body.mobile-canvas-isOpen header .header-center-wrapper{
        opacity: 1;
        height: 100vh;
        overflow-y: auto;
    }   
    header .header-center-content-wrapper,
    header .convas-content{
        height: auto;
        min-height: 100vh;
    }
    header .convas-content{
        padding: 30px 30px 60px;
        display: flex;
        flex-direction: column;
        max-width: 700px;
        margin: 0 auto;
    }
    header .content-convas-header{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    header .content-convas-top-left a{
        display: block;
    }
    header .content-convas-top-left img.logo-convas{
        height: 120px;
        width: auto;
    }
    header .header-main-menu{
        flex-direction: column;
        align-items: flex-start;
        margin-top: 60px;
        margin-bottom: 60px;
        gap: 30px;
    }
    header .content-convas-footer{
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }
    header .header-main-menu > .main-menu-heading > a{
        font-size: 21px;
        color: var(--global-color-text)!important;
    }
    header .header-main-menu > .main-menu-heading.active > a{
        color: var(--global-color-brand-dark)!important;
    }
    header button.canvas-overlay{
        display: block;
        padding: 0;
        border:none;
        outline: none;
        position: fixed;
        z-index: 999998;
        top: 32px;
        right: 35px;
        width: 5000px;
        height: 5000px;
        background-color: #fff;
        border-radius: 100%;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    header .header-main-menu > .main-menu-heading > .dropdown-wrapper{
        position: relative;
        z-index: 1;
        box-shadow: none!important;
        max-height: 0!important;
        padding: 0!important;
        overflow: hidden;
        opacity: 0!important;
        -webkit-transform: translate3d(0, 0, 0,)!important;
        transform: translate3d(0, 0, 0)!important;
        -webkit-transition: all 0.6s!important;
        transition: all 0.6s!important;
    }
    header .dropdown-wrapper .lw-row{
        padding: 0;
    }
    header .header-main-menu > .main-menu-heading.active > .dropdown-wrapper{
        max-height: 1000px!important;
        padding: 30px 0!important;
        opacity: 1!important;
    }
    header .header-main-menu > .main-menu-heading, 
    header .header-main-menu > .main-menu-heading > a{
        width: 100%;
        justify-content: flex-start;
    }
    header .content-convas-footer .btn-round{
        font-size: 21px;
        margin-bottom: 30px;
    }
    .footer-faq-section{
        margin-top: 90px;
        margin-bottom: 90px;
    }
    .footer-top > .lw-row > .group2 > .lw-col{
        margin-bottom: 35px;
    }
    footer .footer-nav h6{
        margin-bottom: 20px;
    }
    .footer-bottom{
        margin-top: 30px;
    }
    .custom-cursor, .custom-cursor-dot {
        display: none!important;
    }
    .section-hero .hero-title{
        font-size: 28px;
    }
    .general-title-1{
        font-size: 28px;
    }
    .section-hero .hero-subTitle{
        font-size: 18px;
    }
    .general-title-2{
        font-size: 21px;
    }
    .general-title-3{
        font-size: 18px;
    }
    .bg-box .content{
        padding:5vw;
    }
    .page .slideBtn-wrapper .btn{
        font-size: 21px;
    }
    
    
    .input-wrapper.multiplechoice .input-title{
        margin-bottom: 15px;
        font-size: 16px;
    }
    .checkbox-wrapper-33 .checkbox{
        font-size: 14px;
    }
    .box-blue .checkbox-wrapper-33 .checkbox{
        font-size: 18px;
    }
    .page .summary-title{
        font-size: 21px;
    }
    
}
@media (max-width: 767px){
    .main-padding{
        padding-left: 25px;
        padding-right: 25px;
    }
    .lw-row{
        padding-left: 25px; /* if main-padding not used */
        padding-right: 25px; /* if main-padding not used */
    }
    .lw-col-xs-1{
        width: 8.33%;
    }
    .lw-col-xs-2{
        width: 16.66%;
    }
    .lw-col-xs-3{
        width: 25%;
    }
    .lw-col-xs-4{
        width: 33.33%;
    }
    .lw-col-xs-5{
        width: 41.66%;
    }
    .lw-col-xs-6{
        width: 50%;
    }
    .lw-col-xs-7{
        width: 58.33%;
    }
    .lw-col-xs-8{
        width: 66.66%;
    }
    .lw-col-xs-9{
        width: 75%;
    }
    .lw-col-xs-10{
        width: 83.33%;
    }
    .lw-col-xs-11{
        width: 91.66%;
    }
    .lw-col-xs-12{
        width: 100%;
    }
    .rr-slider-main-wrapper .bkg-img img.mobile-bg{
        display: block;
    }
    .rr-slider-main-wrapper .bkg-img img.desktop-bg{
        display: none;
    }
    #preloader_visualizer .loading-text{
        letter-spacing: 5px;
    }
    .faq-page .question-title {
        font-size: 18px;
    }
    .footer-faq-section{
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .footer-top > .lw-row > .lw-col{
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }
    .footer-top > .lw-row > .group2 > .lw-col{
        max-width: 250px;
    }
    .footer-top-first{
        margin-bottom: 30px;
    }
    .footer-bottom{
        margin-top: 5px;
    }
    .newsletter-popup {
        flex-direction: column;
        align-items: flex-start;
    }
    .newsletter-popup form{
        width: 100%;
    }
    .newsletter-popup .newsletter-title{
        font-size: 16px;
    }
    .section-hero{
        background-position: 80% center;
        background-size: 200% auto;
    }
    .section-hero .section-wrapper{
        padding-bottom: 80px;
    }
    .section-hero .hero-subTitle{
        font-size: 21px;
    }
    .section-hero .hero-description{
        margin-top: 40px;
        font-size: 16px;
    }
    .section-hero .hero-ctaBtn{
        font-size: 21px;
        margin-top: 60px;
        display: inline-block;
        align-self: flex-start;
    }
    .hero-bg-anim .bg-container svg{
        position: absolute;
        z-index: 0;
        bottom: 0;
        right: 0;
        height: 80%;
        -webkit-transform: translate(45%, 25%);
        transform: translate(45%, 25%);
    }
    input[type="text"], 
    input[type="tel"], 
    input[type="date"], 
    input[type="email"], 
    textarea, select{
        min-height: 38px;
    }
    .page .summary-box .detail-edit .edit-details{
        font-size: 18px;
    }
    .checkbox-wrapper-33 .checkbox__symbol{
        width: 1em;
        height: 1em;
        margin-top: 0.1em;
    }
    .bg-boxs-wrapper{
        flex-wrap: wrap;
    }
    .bg-boxs-wrapper .bg-box{
        width: 100%;
    }
    .bg-box .content{
        padding: 30px;
    }
    .bg-blue-grad1{
        background-image: url(../images/bg-blue-grad-mobile-min.jpg);
    }
    .bg-blue-grad3{
        background-image: url(../images/bg-blue-grad3-mobile-min.jpg);
    }
    .help-box{
        display: none;
    }
    .page .slideBtn-wrapper .btn{
        font-size: 18px;
        width: 130px;
    }
    .page .details-container .summary-details{
        display: flex;
        flex-direction: column;
    }
    .page .summary-box .detail-edit{
        margin-bottom: 10px;
    }
    .page .details-wrapper .details{
        margin-bottom: 20px;
    }
    
} 