/* Front */
html {
    font-size: 10px;
}

:root {
    --Main-blue: #0094FF;
    --Heading-color: #00477A;
    --Blue-light: #A7DEFB;
    --Blue-extention: #EFFAFF;
    --White: #FFF;
    --Light-gray: #797979;
    --Gray: #BBB;
    --black-20: rgba(0, 0, 0, 0.20);
    --Logo-gray: #F1F1F1;
    --Text-color: #222;
    --Logo-gradient: linear-gradient(180deg, #0094FF 0%, #015897 100%);
}

body {
    font-family: Urbanist, sans-serif;;
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--Text-color, #222);
    background: #FFF;
    min-height: 100vh;
}

.table {
    color: var(--Heading-color, #00477A);
}

svg {
    display: block;
}

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

button {
    cursor: pointer;
    outline: 0;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px 12px;
    outline: 0;
}

a {
    text-decoration: none;
    color: var(--Main-blue, #0094FF);
}

@media (hover: hover) {
    a:hover {
        text-decoration: underline;
        color: var(--Heading-color, #00477A);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

h1 {
    color: var(--Heading-color, #00477A);
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.2;
}

h3,
.h3 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.sb {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
}

.sb-2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
}

.txt-1 {
    font-size: 2.8rem;
    font-weight: normal;
    line-height: 1.4;
}

.txt-2 {
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.4;
}

.txt-3 {
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
}

.section-default {
    padding: 5rem 0;
}

.container {
    width: 100%;
    min-height: 100%;
    max-width: 1540px;
    padding: 0 20px;
}

.container-terms {
    max-width: 994px;
}

.hidden-desktop {
    display: none;
}

/*--------------------------------------------------------------

##general style

---------------------------------------------------------------*/

.title {
    margin: 0 0 2rem;
    color: var(--Heading-color, #00477A);
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.2;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-container .title {
    margin-bottom: 0;
    margin-right: 20px;
    text-align: left;
    flex: 0 0 auto;
}

.title-container .container-sub-title {
    margin-left: 20px;
    text-align: left;
    color: var(--Extension-Neutral-dark-20, #313131);
}

/*--------------------------------------------------------------
  ##  Buttons
  --------------------------------------------------------------*/

.btn {
    position: relative;
    display: inline-block;
    padding: 1.5rem 3.1rem;
    border: 2px solid var(--Main-blue, #0094FF);
    border-radius: 50px;
    background: var(--Main-blue, #0094FF);
    transition: all 0.3s;
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    vertical-align: top;
    line-height: 1;
    text-transform: uppercase;
    outline: none;
    box-shadow: none !important;
}

.btn-small {
    padding: 14px 32px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
    letter-spacing: normal;
}

.btn:hover {
    color: var(--Main-blue, #0094FF);
    background: transparent;
}

.btn[disbled],
.btn.disabled {
    color: var(--Gray, #BBB);
    background: var(--Logo-gray, #F1F1F1);
    border-color: var(--Logo-gray, #F1F1F1);
    cursor: default;
}

/* Back To Top */
.return-to-top {
    position: fixed;
    bottom: -30px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: var(--Blue-light, #A7DEFB);
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    z-index: 998;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.return-to-top > i {
    position: relative;
    overflow: hidden;
    font-size: 12px;
    width: inherit;
    height: inherit;
    line-height: inherit;
    display: block;
    color: transparent;
    text-shadow: 0 0 #fff, 0 50px #fff;
    -webkit-transition: text-shadow 0.2s ease;
    -o-transition: text-shadow 0.2s ease;
    transition: text-shadow 0.2s ease;
    z-index: 1;
}

.return-to-top > i:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border: solid 2px var( --Heading-color, #00477A);
    transform: rotate(135deg);
    border-top: 0;
    border-right: 0;
    top: 18px;
    left: 16px;
    position: absolute;
}

.return-to-top:hover {
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
    -webkit-box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
}

.return-to-top:hover > i {
    text-shadow: 0 -50px #fff, 0 0 #fff;
}

.return-to-top.back-top {
    bottom: 20px;
    opacity: 1;
}

@keyframes pixFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes pixFadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes pixFadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes pixFadeDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes pixFadeDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes pixFadeLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes pixFadeLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes pixFadeRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes pixFadeRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes pixZoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pixZoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes pixBounceIn {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pixBounceIn {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.pixFade {
    -webkit-animation-name: pixFade;
    animation-name: pixFade;
}

.pixFadeUp {
    -webkit-animation-name: pixFadeUp;
    animation-name: pixFadeUp;
}

.pixFadeDown {
    -webkit-animation-name: pixFadeDown;
    animation-name: pixFadeDown;
}

.pixFadeLeft {
    -webkit-animation-name: pixFadeLeft;
    animation-name: pixFadeLeft;
}

.pixFadeRight {
    -webkit-animation-name: pixFadeRight;
    animation-name: pixFadeRight;
}

.pixZoomIn {
    -webkit-animation-name: pixZoomIn;
    animation-name: pixZoomIn;
}

.pixBounceIn {
    -webkit-animation-name: pixBounceIn;
    animation-name: pixBounceIn;
}

.zoomIn {
    -webkit-animation-name: zoomin;
    animation-name: zoomin;
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
    background: linear-gradient(0deg, #E9ECF2 0%, #E9ECF2 100%), #FFF;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999999;
}

.page-loader .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.page-loader svg {
    display: none;
}

.blobs {
    -webkit-filter: url(#goo);
    filter: url(#goo);
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 70px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.blobs .blob-center {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: absolute;
    background: var(--Main-blue, #0094FF);
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
    -ms-transform: scale(0.9) translate(-50%, -50%);
    transform: scale(0.9) translate(-50%, -50%);
    -webkit-animation: blob-grow linear 3.4s infinite;
    animation: blob-grow linear 3.4s infinite;
    border-radius: 50%;
    -webkit-box-shadow: 0 -10px 40px -5px rgba(0, 148, 255, 0.7);
    box-shadow: 0 -10px 40px -5px rgba(0, 148, 255, 0.7);
}

.blob {
    position: absolute;
    background: var(--Main-blue, #0094FF);
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-animation: blobs ease-out 3.4s infinite;
    animation: blobs ease-out 3.4s infinite;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
    -ms-transform: scale(0.9) translate(-50%, -50%);
    transform: scale(0.9) translate(-50%, -50%);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
    opacity: 0;
}

.blob:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.blob:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.blob:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.blob:nth-child(4) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.blob:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes blobs {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
        transform: scale(0) translate(calc(-330px - 50%), -50%);
    }
    1% {
        opacity: 1;
    }
    35%,
    65% {
        opacity: 1;
        -webkit-transform: scale(0.9) translate(-50%, -50%);
        transform: scale(0.9) translate(-50%, -50%);
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
        transform: scale(0) translate(calc(330px - 50%), -50%);
    }
}

@keyframes blobs {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
        transform: scale(0) translate(calc(-330px - 50%), -50%);
    }
    1% {
        opacity: 1;
    }
    35%,
    65% {
        opacity: 1;
        -webkit-transform: scale(0.9) translate(-50%, -50%);
        transform: scale(0.9) translate(-50%, -50%);
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
        transform: scale(0) translate(calc(330px - 50%), -50%);
    }
}

@-webkit-keyframes blob-grow {
    0%,
    39% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
    40%,
    42% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    43%,
    44% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    45%,
    46% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    47%,
    48% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    52% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    54% {
        -webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
        transform: scale(1.7, 1.6) translate(-50%, -50%);
    }
    58% {
        -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
        transform: scale(1.8, 1.7) translate(-50%, -50%);
    }
    68%,
    70% {
        -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
        transform: scale(1.7, 1.5) translate(-50%, -50%);
    }
    78% {
        -webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
        transform: scale(1.6, 1.4) translate(-50%, -50%);
    }
    80%,
    81% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    82%,
    83% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    84%,
    85% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    86%,
    87% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    90%,
    91% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    92%,
    100% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
}

@keyframes blob-grow {
    0%,
    39% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
    40%,
    42% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    43%,
    44% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    45%,
    46% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    47%,
    48% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    52% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    54% {
        -webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
        transform: scale(1.7, 1.6) translate(-50%, -50%);
    }
    58% {
        -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
        transform: scale(1.8, 1.7) translate(-50%, -50%);
    }
    68%,
    70% {
        -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
        transform: scale(1.7, 1.5) translate(-50%, -50%);
    }
    78% {
        -webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
        transform: scale(1.6, 1.4) translate(-50%, -50%);
    }
    80%,
    81% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    82%,
    83% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    84%,
    85% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    86%,
    87% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    90%,
    91% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    92%,
    100% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
}

/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/

.site-header {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease-in-out;
    padding: 3rem 0;
    background: #fff;
}

.logo {
    color: #fff;
    font-weight: 700;
}

.logo:hover {
    text-decoration: none;
    color: #fff;
}

.site-header .inverse-logo,
.site-header.header-light .inverse-logo {
    display: none !important;
}

.site-header.pix-header-fixed.header-light .sticky-logo {
    display: inline-block !important;
}

.site-logo {
    max-width: 223px;
    max-height: 56px;
    margin: 0 1rem 0 0;
    z-index: 100;
}

.site-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.site-header .header-inner {
    position: relative;
}

.site-header .header-inner .site-logo a {
    display: block;
}

.site-header .header-inner .site-logo a .sticky-logo {
    display: none;
}

.site-header .header-inner .site-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    transition: all 0.4s;
}


.site-header .header-inner .site-nav .menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}


.site-header .site-mobile-logo {
    display: none;
}

.site-header .site-main-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.site-header .site-main-menu li {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.site-header .site-main-menu li > a {
    color: var(--Text-color, #222);
    display: block;
    font-size: 1.6rem;
    line-height:  1.2;
    margin: 0 1.5rem;
    padding: 0.5rem 0;
    font-weight: 400;
    transition: 0.2s ease;
    text-transform: uppercase;
    position: relative;
}

.site-header .site-main-menu li > a:hover {
    color: var(--Main-blue, #0094FF);
    text-decoration: none;
}

.site-header .toggle-menu .bar {
    background: var(--Heading-color, #00477A);
}

.logo-sticky {
    display: none;
}

.pix-header-fixed {
    z-index: 1000;
    position: sticky;
    top: 0;
    -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
    animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
    overflow: hidden;
    padding: 1rem 0;
}


.pix-header-fixed.site-header:before {
    opacity: 0;
}

.pix-header-fixed .header-inner .site-logo .logo-sticky {
    display: block;
}

.pix-header-fixed .header-inner .site-logo .logo-main {
    display: none;
}

.pix-header-fixed .header-inner .site-nav.nav-two .site-main-menu li a:hover,
.pix-header-fixed .header-inner .site-nav.nav-two .site-main-menu li a.current_page {
    border-color: #0060E7;
}

.pix-header-fixed .site-main-menu li.menu-item-has-children:after {
    color: #333;
}

.pix-header-fixed .site-logo .main-logo {
    display: none;
}

.pix-header-fixed .site-logo .sticky-logo {
    display: block;
}

.mask-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    top: 0;
    left: 0;
}

.close-menu {
    display: none;
}

.hidden {
    display: none;
}

/*--------------------------------------------------------------
  ##  Fullscreen
  --------------------------------------------------------------*/
.fullscreen {
    padding: 0 0 10rem;
    display: flex;
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.fullscreen-container {
    border-radius: 5.5rem;
    padding: 8rem 12.8rem;
    background: url("../images/bg/main-bg.jpg") center/cover no-repeat;
}

.fullscreen-title {
    position: relative;
    z-index: 1;
    max-width: 55.5rem;
}

.fullscreen-text {
    position: relative;
    max-width: 46rem;
    margin-top: 2rem;
    z-index: 1;
}

.fullscreen-text span {
    padding: 0.2rem 0.7rem;
    margin: 0 0.2rem;
    background: var(--White, #FFF);
    border-radius: 5rem;
}

.fullscreen-buttons {
    margin-top: 5rem;
}

.fullscreen-img {
    position: relative;
    text-align: left;
}

.fullscreen-img img {
    position: relative;
    width: 90rem;
    margin-right: -12.8rem;
    margin-left: -16.5rem;
    height: auto;
    max-width: none;
}

/*--------------------------------------------------------------
  ##  Make
--------------------------------------------------------------*/

.make-section {
    padding: 10rem 0;
}

.make-section .title-container {
    margin-bottom: 3.8em;
}

.make-section .title-container .title {
    max-width: 39rem;
}

.make-section .title-container .txt-2 {
    max-width: 48rem;
    width: 100%;
}

.make-item-wrap {
    display: flex;
    justify-content: space-between;
}

.make-item {
    width: calc((100% - 4.8rem) / 3);
}

.make-item-img {
    height: 31.2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 3rem;
    border-radius: 3rem;
}

.make-item-img img {
    max-height: 100%;
    max-width: 90%;
}

.make-item-img.make-1 {
    background: url("../images/bg/make-bg-1.jpg") center/cover no-repeat;
}

.make-item-img.make-2 {
    background: url("../images/bg/make-bg-2.jpg") center/cover no-repeat;
}

.make-item-img.make-3 {
    background: url("../images/bg/make-bg-3.jpg") center/cover no-repeat;
}

.make-item .sb {
    margin-bottom: 2rem;
    color: var(--Heading-color, #00477A);
}

.make-item .txt-3 {
    margin-bottom: 2.2rem;
}

/*--------------------------------------------------------------
  ##  Hiw
--------------------------------------------------------------*/

.hiw-section {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.hiw-container {
    padding: 10rem 12.8rem;
    border-radius: 55px;
    background: url("../images/bg/hiw-bg.jpg") center/cover no-repeat;
}

.hiw-section .title-container {
    align-items: flex-start;
    margin-bottom: 6.4rem;
}

.hiw-section .title-container .title {
    margin-bottom: 2rem;
}

.hiw-section .title-container .txt-2 {
    max-width: 36.2rem;
    width: 100%;
}

.hiw-section .title-container .title .btn {
    margin-top: 2rem;
}

.hiw-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
}

.hiw-img {
    width: 58%;
}

.hiw-img.hiw-1 img {
    margin-left: -8px;
}

.hiw-img.hiw-2 {
    text-align: right;
}

.hiw-img.hiw-2 img {
    margin-right: -8px;
}

.hiw-text {
    width: calc(50% - 20rem);
}

.hiw-text .sb {
    color: var(--Heading-color, #00477A);
    margin-bottom: 2rem;
}

.hiw-text .txt-2 {

}

/*--------------------------------------------------------------
    ##  Faq's
--------------------------------------------------------------*/

.faq-section {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.faq-container {
    position: relative;
    padding: 10rem 12.8rem;
    border-radius: 5.5rem;
    background: url("../images/bg/faq-bg.jpg") center/cover no-repeat;
}

.faq #accordion {
    margin: 0 auto;
}

.card {
    position: relative;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--Blue-light, #A7DEFB);
    border-radius: 0;
    transition: all 0.3s;
}

.card + .card {
    margin-top: 3rem;
}

.card-header {
    border: 0;
    border-radius: 0;
    background: none;
    padding: 0;
}

.card-btn {
    padding: 0 3.2rem 0 0;
    margin-bottom: 3rem;
    position: relative;
    text-decoration: none;
    white-space: normal;
    text-align: left;
    width: 100%;
    /*min-height: 8rem;*/
    color: var(--Heading-color, #00477A);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.3s;
    border: none;
    background: none;
}

.card-btn-indicator {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    background: url("../images/faq-arrow-icon.svg") center no-repeat;
    background-size: contain;
    transition: all 0.3s;
    border: none;
    transform: translateY(-50%);
}

.card-btn-indicator svg path {
    transition: all 0.3s;
}

.card.active .card-btn-indicator {
    transform: translateY(-50%) rotate(180deg);
}

.card-btn:focus {
    outline: none;
}

.card-body {
    padding: 0 0.5rem 1rem 0;
}

.card-body p {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.4;
}

/*--------------------------------------------------------------
    ##  engines
    --------------------------------------------------------------*/

.engines-section {
    padding: 10rem 0 10rem;
}

.engines-descr {
    margin-bottom: 14rem;
}

.engines-wrapper {
    position: relative;
    height: 82rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.engines-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35.7rem;
    height: 26.6rem;

    border-radius: 3rem;
}

.engines-item.engines-1 {
    bottom: 0;
    left: -15rem;
    background: url("../images/bg/support-bg-1.jpg") center/cover no-repeat;
}

.engines-item.engines-2 {
    top: 0;
    left: 15rem;
    background: url("../images/bg/support-bg-2.jpg") center/cover no-repeat;
}

.engines-item.engines-3 {
    top: 37rem;
    right: 10rem;
    background: url("../images/bg/support-bg-3.jpg") center/cover no-repeat;
}

.engines-item img {
    max-width: 100%;
    object-fit: contain;
}

/*======================================================
================contact page============================
========================================================*/

.inner-page {
    min-height: calc(100vh - 116px - 261px);
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

.inner-page-container {
    border-radius: 5.5rem;
    padding: 10rem 12.8rem;
    background: url(../images/bg/main-bg.jpg) center/cover no-repeat;
}

.inner-page > .container {
    position: relative;
    z-index: 2;
}

.inner-page .title {

}

.removed-section .title {
    margin-bottom: 2rem;
}

.removed-section .btn {
    margin-top: 5rem;
}

.page-404__image {
    max-width: 466px;
    width: 100%;
    height: auto;
}


.uninstall-image {
    display: block;
    margin: 5rem auto 0;
}

.contact-section .title {
    margin-bottom: 5rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    text-align: left;
}

.contact-card__image {
    margin-bottom: 3rem;
}

.contact-card img {
    vertical-align: top;
}

.contact-card .sb {
    margin-bottom: 2rem;
    color: var(--Heading-color, #00477A);
}

.contact-card .txt-3 {
    margin-bottom: 3rem;
}

.contact-card__button {
    display: inline-block;
    margin-top: auto;
}

.thanks-page-section .title {
    position: relative;
    z-index: 2;
}

.section-404 .title {
    margin-bottom: 5rem;
}

.page-404-img {
    display: flex;
    justify-content: flex-end;
}

.page-404-img img {
    width: 80rem;
    max-width: none;
    margin-top: -8rem;
    margin-right: -12.8rem;
    margin-bottom: -10rem;
}

.terms-privacy-container {
    padding: 10rem 12.8rem;
    border-radius: 5.5rem;
    background: url("../images/bg/terms-privecy-bg.jpeg") 90% bottom no-repeat;
    background-size: 980% 480%;
}



/*=================page terms===============================*/

.terms_privacy-container {
    position: relative;
    padding: 7rem 10rem;
    background: #FFF;
    border-radius: 48px;
}

.terms-privacy-container .title {
    margin-bottom: 5rem;
}

.terms-privacy-container p,
.terms-privacy-container ul,
.terms-privacy-container table {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 2.6rem;
}

.terms-privacy-container table.table th,
.terms-privacy-container table.table td {
    border-color: #D3E6FF;
    border-width: 1px;
}

.terms-privacy-container strong,
.terms-privacy-container h3 {
    font-weight: 700;
    font-size: 1.8rem;
}

.terms-privacy-container h3 {
    margin-bottom: 2.6rem;
}


/*--------------------------------------------------------------
  ##  Footer
--------------------------------------------------------------*/

.footer {
    position: relative;
    background: #fff;
}

.footer-content {
    padding: 10rem 0 4rem;
}

.footer-info {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 2.9rem;
    color: #fff;
}

.footer-link {
    display: inline-block;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1.6rem;
    color: var(--Text-color, #222);
    vertical-align: top;
    transition: all 0.3s;
}

.footer-link:hover {
    text-decoration: none;
    color: var(--Main-blue, #0094FF);
}

.footer-logo {
    display: flex;
    align-items: center;
    height: 56px;
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo:hover {
    color: #fff;
    text-decoration: none;
}

.footer-text {
    max-width: 35.7rem;
    margin-bottom: 0;
}

.footer-copyright {
    padding-top: 1.4rem;
    text-align: right;
    color: var(--Light-gray, #797979);
}

.footer-copyright p {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2;
    margin: 0;
}


