/* STARTING ROOT VARIABLES */

:root {
    --bg-blue-light: #1d1388;
    --bg-blue-dark: #130f40;
    --bg-text-color: #fff;
    --bg-text-color-dark: #130f40;
    --bg-grey: #f5f6f8;
    --border-color: rgba(255, 255, 255, 0.103);
    --bg-text-hover: #0be881;
    --bg-text-active: #05c46b;
}

/* ENDING ROOT VARIABLES */

/* STARTING FONT */

@font-face {
    font-family: 'font-light';
    font-display: swap;
    src: url("/assets/fonts/Nunito-Light.ttf");
}

@font-face {
    font-family: 'font-regular';
    font-display: swap;
    src: url("assets/fonts/Nunito-Regular.ttf");
}

@font-face {
    font-family: 'font-bold';
    font-display: swap;
    src: url("assets/fonts/Nunito-SemiBold.ttf");
}

/* ENDING FONT */

/* STARTING DEFAULT CSS */

#loading-page {
    width: 100%;
    height: 100%;
    background-color: var(--bg-blue-dark);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

#loading-page .loading-title {
    width: min-content;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

#loading-page .loading-title svg {
    min-width: 40px;
    transform: scale(1.2);
    display: flex;
}

#loading-page .loading-title span {
    padding-right: 12px;
}

#loading-page .loading-title * {
    display: flex;
    align-items: center;
}

#loading-page .loading-title i {
    margin-right: 7px;
}

* {
    box-sizing: border-box;
}

body, html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    font: 100%;
}
.popup-container {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
  }
  
  .popup-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    max-width: 400px;
    margin-right: 20px;
    margin-bottom: 20px;
    animation: slide-in 0.5s ease-out forwards;
  }
  
  @keyframes slide-in {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }

main {
    flex-grow: 1;
}

header, main, footer {
    flex-shrink: 1;
}

section {
    padding: 70px;
    text-align: center;
}

section * {
    color: var(--bg-text-color-dark);
}
section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section .container > p {
    max-width: 820px;
    text-align: center;
    font-size: 18px;
}

section .container > *:nth-child(2) {
    margin-top: 10px;
    margin-bottom: 27px;
}

section .container > p a {
    color: rgb(2, 2, 177);
    text-decoration: none;
}

section .partners {
    flex-wrap: nowrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

section .partners .content-img {
    margin-left: 18px !important;
    margin-right: 18px !important;
}

.icon-unset > li > a > i,
.icon-unset > li > .nav-title > i {
    display: none !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-grey {
    background-color: var(--bg-grey) !important;
}

.d-none {
    display: none !important;
}

p {
    padding: unset;
    margin: unset;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(128, 128, 128, 0.33);
    outline: none;
}

.domain {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.domain input {
    max-width: 740px;
    border-radius: 4px;
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
}

.domain button {
    min-width: 80px;
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
    margin: unset;
}

.domain input,
.domain button {
    padding: 14px;
}

.border-unset .box-item {
    border: unset !important;
}

.border-color-unset .box-item {
    border-color: transparent !important;
}

.border-bottom {
    border-bottom: 1px solid var(--border-color) !important;
}

.border-top {
    border-top: 1px solid var(--border-color) !important;
}

.border-left {
    border-left: 1px solid var(--border-color) !important;
}

.border-right {
    border-right: 1px solid var(--border-color) !important;
}

.border-dark-bottom {
    border-bottom: 1px solid rgba(221, 221, 221, 0.487) !important;
}

.border-dark-top {
    border-top: 1px solid rgba(221, 221, 221, 0.487) !important;
}

.border-dark-left {
    border-left: 1px solid rgba(221, 221, 221, 0.487) !important;
}

.border-dark-right {
    border-right: 1px solid rgba(221, 221, 221, 0.487) !important;
}

.borded {
    border: 1px solid rgba(97, 97, 97, 0.193);
}

.h1 {
    display: block;
    font-size: 2em;
    margin: unset;
    font-weight: bold;
}

.h2 {
    display: block;
    font-size: 1.5em;
    margin: unset;
    font-weight: bold;
}

.h3 {
    display: block;
    font-size: 1.17em;
    margin: unset;
    font-weight: bold;
}

.h4 {
    display: block;
    margin: unset;
    font-weight: bold;
}

.h5 {
    display: block;
    font-size: 0.83em;
    margin-block-start: 1.67em;
    margin-block-end: 1.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

.h6 {
    display: block;
    font-size: 0.67em;
    margin-block-start: 2.33em;
    margin-block-end: 2.33em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

.btn {
    padding: 10px;
    text-align: center;
    border-radius: 2.5px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

.m-unset {
    margin: unset !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-0 {
    margin-top: unset !important;
}

.mb-0 {
    margin-bottom: unset !important;
}

.ml-0 {
    margin-bottom: unset !important;
}

.mr-0 {
    margin-bottom: unset !important;
}

.pt-0 {
    padding-bottom: unset !important;
}

.pb-0 {
    padding-bottom: unset !important;
}

.pl-0 {
    padding-bottom: unset !important;
}

.pr-0 {
    padding-bottom: unset !important;
}

.mb-1 {
    margin-bottom: 1px !important;
}

.mb-2 {
    margin-bottom: 2px !important;
}

.mb-3 {
    margin-bottom: 3px !important;
}

.mb-4 {
    margin-bottom: 4px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-1 {
    margin-top: 1px !important;
}

.mt-2 {
    margin-top: 2px !important;
}

.mt-3 {
    margin-top: 3px !important;
}

.mt-4 {
    margin-top: 4px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.ml-1 {
    margin-left: 1px !important;
}

.ml-2 {
    margin-left: 2px !important;
}

.ml-3 {
    margin-left: 3px !important;
}

.ml-4 {
    margin-left: 4px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.mr-1 {
    margin-right: 1px !important;
}

.mr-2 {
    margin-right: 2px !important;
}

.mr-3 {
    margin-right: 3px !important;
}

.mr-4 {
    margin-right: 4px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.w-100 {
    width: 100% !important;
}

.mw-100 {
    max-width: 100% !important;
}

.w-mc {
    width: max-content !important;
}

.btn {
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
}

.btn-blue {
    background-color: #2c50df;
    color: #fff;
}

.btn-blue:hover {
    background-color: #122987;
}

.btn-blue:active {
    background-color: #0d237a;
}

.btn-orange {
    background-color: #c14e1e;
    color: #fff;
}

.btn-orange:hover {
    background-color: #cc653a;
}

.btn-orange:active {
    background-color: #b94614;
}

.btn-blue-01 {
    background-color: #0d61b4;
    color: #fff;
}

.btn-blue-01:hover {
    background-color: #1f63a1;
}

.btn-blue-01:active {
    background-color: #07417a;
}

.btn-blue-02 {
    background-color: #305399;
    color: #fff;
}

.btn-blue-02:hover {
    background-color: #3c5fa7;
}

.btn-blue-02:active {
    background-color: #1e386d;
}

.btn-blue-03 {
    background-color: #355bca;
    color: #fff;
}

.btn-blue-03:hover {
    background-color: #4a6cd1;
}

.btn-blue-03:active {
    background-color: #1a42b9;
}

.btn-blue-dark {
    background-color: #154c69;
    color: #fff;
}

.btn-blue-dark:hover {
    background-color: #185374;
}

.btn-blue-dark:active {
    background-color: #022c42;
}

.btn-grey {
    background-color: #9797972f;
    color: var(--bg-text-color-dark);
}

.btn-grey:hover {
    background-color: #bbbaba2f;
}

.btn-grey:active {
    background-color: #7978782f;
}

.btn-pink-transparent {
    border: 1px solid #eb3cdc !important;
    border-radius: 5px;
    color: #eb3cdc !important;
}

.btn-pink-transparent:hover {
    border: 1px solid #eb3cdc !important;
    background-color: #dd35cf;
    color: #fff !important;
}

.btn-pink-transparent:active {
    border: 1px solid #eb3cdc !important;
    background-color: #b90eab;
    color: #fff !important;
}

.btn-orange-transparent {
    color: #ce3e00 !important;
    border: 1px solid #ff6c2c !important;
}

.btn-orange-transparent:hover {
    color: #dd5920 !important;
    border: 1px solid #dd5920 !important;
}

.btn-orange-transparent:active {
    color: #c23e05;
    border: 1px solid #c23e05 !important;
}

.btn-blue-transparent {
    border: 1px solid #2225c7 !important;
    border-radius: 5px;
    color: #2225c7 !important;
}

.btn-blue-transparent:hover {
    border: 1px solid #2225c7 !important;
    background-color: #2225c7;
    color: #fff !important;
}

.btn-blue-transparent:active {
    border: 1px solid #0d1096 !important;
    background-color: #0d1096;
    color: #fff !important;
}

.btn-transparent {
    border: 1px solid #a7a7a72a;
}

.btn-transparent:hover {
    border-color: transparent;
    background-color: #122987;
}

.btn-transparent:active {
    background-color: #0d237a;
}

.btn-transparent-black {
    border: 1px solid #bdbdbd9c;
    color: var(--bg-blue-dark) !important;
}

.btn-transparent-black:hover {
    border-color: transparent;
    background-color: #122987;
    color: #fff !important;
}

.btn-transparent-black:active {
    background-color: #0d237a;
    color: #fff !important;
}

.btn-medium {
    font-size: 16px;
}

.btn-large {
    font-size: 20px;
}

.btn-group {
    display: flex;
    align-items: center;
}

.btn-group * {
    margin: 3px;
}

.content-left .btn-group > * {
    margin: unset;
    margin-right: 8px;
}

.content-right .btn-group > * {
    margin: unset;
    margin-left: 8px;
}

.btn-scroll-top {
    background-color: #19116d;
    color: #fff;
    width: 42px;
    height: 42px;
    position: fixed;
    right: 40px;
    bottom: 100px;
    padding: 6px;
    font-size: 24px;
    border-radius: 5px;
    z-index: 1;
}

.btn-scroll-top i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-self-unset {
    align-self: unset !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

button {
    background-color: transparent;
    outline: none;
    border: none;
}

button:hover {
    cursor: pointer;
}

.font-light, span, p, cite, li, a, label {
    font-style: normal;
    font-family: "font-light";
}

.font-regular {
    font-style: normal;
    font-family: "font-regular";
}

.font-bold, h1, h2, h3, h4, h5, h6 {
    font-style: normal;
    font-family: "font-bold";
}

.text-left {
    text-align: start !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: end !important;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.46);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.bg-text-hover {
    transition: color 0.2s ease-in-out;
}

.bg-text-hover:hover,
.bg-text-hover:hover a,
.bg-text-hover:hover i {
    color: var(--bg-text-hover);
    cursor: pointer;
}

.bg-text-hover:active,
.bg-text-hover:active a {
    color: var(--bg-text-active);
}

[class*="container-"] {
    width: 100%;
}

[class*="content-"] {
    width: 100%;
}

.content-img {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    object-fit: cover;
}

.content-img img {
    width: 100%;
    height: 100%;}

.content-img-reverse {
    display: flex;
    flex-direction: row-reverse;
}

.content-img-borded {
    border-radius: 4px;
    border: 3px solid rgba(0, 0, 0, 0.029);
}

.content-img-small {
    max-width: 354px !important;
}

.content-img-medium {
    max-width: 400px !important;
}

.content-left,
.content-center,
.content-right {
    display: flex;
}

.content-left {
    justify-content: flex-start;
}

.content-center {
    justify-content: center;
}

.content-right {
    justify-content: flex-end;
}

.logo {
    max-width: 180px;
}

.container {
    width: 100%;
    height: auto;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.nav-in-line {
    display: flex;
    align-items: center;
}

.list-in-line,
.nav-in-line ul,
.list-in-column,
.nav-in-column ul {
    display: flex;
    list-style-type: none;
    margin: unset;
    padding: unset;
}

.nav-in-column ul {
    flex-direction: column;
}

.list-in-line li,
.list-in-line li a,
.nav-in-line li,
.nav-in-line li a,
.nav-title {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    position: relative;
}

.list-in-column li a {
    display: flex !important;
    flex-direction: row !important;
}

.list-in-column li a i {
    font-size: 18px !important;
    margin-right: 7px;
}

.list-in-line li i,
.nav-in-line li i {
    margin-right: 6px;
    display: flex;
    align-items: center;
}

.header-sticky {
    position: fixed;
    top: 0;
    opacity: 0;
    margin-top: -100%;
    z-index: 100;
    transition: margin-top 0.4s  ease-in-out;
}

header .container-02 {
    z-index: 223;
}

header .container-02 .nav-in-line ul {
    position: relative;
}

header .container-02 .nav-in-line ul li {
    position: unset;
}

header .container-02 .nav-title {
    user-select: none;
}

header .container-02 .nav-in-line li .nav-title {
    position: relative;
}

header .container-02 .nav-in-line [aria-expanded*="true"] .nav-title:before {
    content: "";
    position: absolute;
    top: 22.5px;
    left: 13px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid#fff;
    clear: both;
    overflow: hidden;
    transform: rotate(180deg);
}

.nav-menu,
.menu-drop {
    width: 300px;
    height: max-content;
    background-color: rgba(255, 255, 255, .923);
    box-shadow: -1px 1px 20px 1px rgba(189, 189, 189, 0.391);
    border: 1px solid rgba(255, 255, 255, 0.515);
    border-radius: 18px;
    padding: 10px 1px 10px 1px !important;
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 1;
}

.menu-drop {
    left: unset;
    right: 0;
}

.nav-title:after {
    font-size: 10px;
    font-size: 11px;
    margin-left: 5px;
    font-family: crowbarcode-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f116";
    transition: transform 0.2s ease-in-out;
}

header .nav-in-line [aria-expanded*="true"] .nav-title::after {
    transform: rotate(180deg);
}

header .container-01 .nav-in-line [aria-expanded*="true"]::after {
    content: "";
    position: absolute;
    top: 22.5px;
    left: 13px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid#fff;
    clear: both;
    
    overflow: hidden;
    transform: rotate(180deg);
}

.nav-menu-list {
    flex-direction: column;
    overflow: hidden;
    display: none !important;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
}

.nav-menu-list-active {
    display: flex !important;
}

.nav-menu-list-active-animation {
    max-height: 1000px;
}

.nav-menu-list li {
    margin-top: 2px;
    margin-bottom: 2px;
    margin-left: unset !important;
    margin-right: unset !important;
}

.nav-menu-list li,
.nav-menu-list li a {
    display: flex;
    align-items: center;
    align-self: flex-start;
    z-index: 5;
    color: var(--bg-text-color-dark) !important;
}

.nav-menu-list li:hover,
.nav-menu-list li a:hover {
    color: rgb(1, 1, 131) !important;
}

.nav-menu-list li:active,
.nav-menu-list li a:active {
    color: rgb(0, 0, 90) !important;
}

.nav-menu-list .content-img {
    max-width: 32px;
    margin-right: 6px;
}

.nav-menu-list strong {
    margin-left: 3px;
}

.nav-menu li > a i {
    font-size: 37px;
}

.nav-menu li > a > div {
    margin-left: 10px;
}

.nav-menu li > a > div span {
    font-family: "font-regular";
    font-size: 16px;
}

.nav-menu li > a > div p {
    padding: unset;
    margin: unset;
}

.nav-second-menu {
    width: 360px;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

.nav-second-menu li {
    display: flex;
    align-items: center;
    margin-top: 6.5px;
    margin-bottom: 6.5px;
    margin-left: 13px !important;
}

.nav-menu .font-bold {
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 12px !important;
}

.nav-menu-large {
    width: max-content;
    height: max-content;
    flex-direction: row-reverse;
    box-shadow: unset;
    border: unset;
    padding: unset !important;
}

.nav-menu-large [class*="content-0"] {
    width: 200px;
    margin: 7px;
}

.nav-menu-large [class*="content-0"] * {
    color: var(--bg-blue-dark);
    flex-direction: column;
}

.nav-menu-large .content-left .nav-menu-body {
    flex-grow: 1;
}

header .container-02 .nav-menu-list-active-animation {
    transition: unset !important;
}

.nav-menu-body {
    display: flex;
    flex-wrap: wrap;
    padding: 26px;
}

.nav-menu-large .content-left,
.nav-menu-large .content-right {
    width: max-content !important;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.nav-menu-large .content-left {
    max-width: 500px;
}

.nav-menu-large .content-left li {
    margin-left: 8px !important;
}

.nav-menu-large .content-right {
    width: 320px !important;
    padding: 14px;
    background-image: url("../img/design/globe-02.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nav-menu-large .content-right * {
    margin-top: 3.5px;
    margin-bottom: 3.5px;
}

.nav-menu-large .content-right .btn {
    margin-top: 5px;
}

.nav-menu-footer {
    background-color: rgba(204, 204, 204, 0.35);
    padding: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 1;
}

.nav-menu-footer * {
    color: var(--bg-blue-dark);
}

.nav-menu-footer a {
    margin-left: 8px;
    color: blue !important;
}

[data-open*="menu-mobile"],
[data-close*="menu-mobile"] {
    font-size: 20px;
    transition: color 0.2s ease-in-out;
    display: none;
}

[data-open*="menu-mobile"]:hover,
[data-close*="menu-mobile"]:hover {
    color: var(--bg-text-hover) !important;
}

[data-open*="menu-mobile"]:active,
[data-close*="menu-mobile"]:active {
    color: var(--bg-text-active) !important;
}

[data-close*="menu-mobile"] {
    color: #fff;
    font-size: 20px;
}

.menu-mobile-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
    display: none;
}

.menu-mobile-header > * {
    width: max-content;
    height: max-content;
    display: flex;
    align-self: flex-start;
}

.menu-mobile-header .content-img {
    max-width: 150px;
    height: 100%;
    justify-content: flex-start;
}

.menu-mobile-header button {
    margin-left: auto;
    margin-right: 0;
}

.menu-mobile-header button,
.menu-mobile-header button i {
    justify-content: flex-end;
}

.list-icons {
    list-style-type: none;
    margin: unset;
    padding: unset;
}

.list-icons li {
    width: max-content;
    height: max-content;
    font-size: 23px;
    margin: 5px;
}

.list-icons li a {
    text-decoration: none;
}

.list-in-row {
   display: flex;
   flex-direction: row !important;
}

.list-in-row-left li {
    margin-right: unset;
}

.list-in-row-right li {
    margin-left: unset;
}

.partners {
    display: flex;
}

.partners .content-img {
    max-width: 120px;
    margin-right: 30px;
    
}

address {
    font-family: "font-regular";
    font-style: normal;
}

address p {
    margin-top: 3px !important;
}

.side-by-side {
    width: 100%;
    max-width: 960px;
    padding: 10px;
    display: flex;
}

.side-by-side .content-left,
.side-by-side .content-center,
.side-by-side .content-right {
    display: flex;
    align-self: flex-start;
    flex-direction: column;
    padding: 10px;
    margin: 10px;
}

.side-by-side .content-left *,
.side-by-side .content-center *,
.side-by-side .content-right * {
    margin-top: 2px;
    margin-bottom: 2px;
}

.side-by-side .content-left {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.side-by-side [class*="content-left content-text"] {
    align-items: flex-start;
    text-align: start;
}

.side-by-side .content-right {
    align-items: flex-start;
    text-align: start;
}

.side-by-side .content-right span:nth-child(1),
.side-by-side [class*="content-left content-text"] span:nth-child(1) {
    font-size: 19px;
    font-family: "font-regular";
}

.side-by-side .content-right span:nth-child(2),
.side-by-side [class*="content-left content-text"] span:nth-child(2) {
    font-size: 25px;
    font-family: "font-bold";
}

.side-by-side .btn {
    margin-left: unset;
    margin-right: 8px;
}

.side-by-side .content-img {
    width: 100% !important;
    max-width: 600px !important;
    padding: 2px;
}

.side-by-side-reverse {
    flex-direction: row-reverse;
}

.side-by-side p {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    font-size: 17px;
}

.side-by-side-question .content-right,
.side-by-side-question .content-left {
    padding: 20px;
}

.thumb {
    padding-top: 40px;
    padding-bottom: 40px;
}

.thumb .content-text * {
    margin-top: 3px;
    margin-bottom: 3px;
}

.thumb .content-text .btn {
    margin-top: 13px;
}

.thumb-blue-dark {
    background-color: var(--bg-blue-dark);
}

.thumb-blue-dark * {
    color: #fff;
}

.thumb .container {
    display: flex;
    align-items: center;
}

.text-center {
    text-align: center;
}

.document * {
    text-align: start !important;
    margin-top: 3px !important;
    margin-bottom: 3px !important;
}

.document .h2 {
    margin-bottom: 6px !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

fieldset {
    width: 100%;
    outline: none;
    border: none;
    background-color: unset;
    display: flex;
    flex-direction: column;
    padding: unset;
}

.fieldset-in-line {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.fieldset-in-line > button,
.fieldset-in-line > a {
    margin: unset;
}

fieldset label {
    margin: 10px;
    margin-left: unset;
    text-align: start;
    font-weight: bolder;
    font-size: 15.4px;
}

.input-group {
    display: flex;
    align-items: center;
}

.input-modern {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .17rem !important;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    outline: none;
}

.input-modern:active {
    color: #252525;
}

.input-modern-error {
    border: 1px solid #ff0000a1 !important;
}

[type*="file"] {
    border: unset;
    padding-left: unset !important;
    padding-right: unset !important;
    box-shadow: unset !important;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link,
.alert-success p {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link,
.alert-danger p {
  color: #843534;
}

/* ENDING DEFAULT CSS */

/* STARTING HEADER AND FOOTER */

header,
footer {
    width: 100%;
    height: auto;
}

header [data-open*="menu-mobile"] {
    color: #fff;
}

header > .container-01 li a:hover,
footer > li a:hover {
    color: var(--bg-text-hover);
}

header > .container-01 li a:active,
header > li a:active {
    color: var(--bg-text-active);
}

header > .container-01 .container,
header > .container-02 .container,
footer > .container {
    display: flex;
}

header > .container-01 .content-left ul li,
header > .container-02 .content-left ul li {
    margin-right: 13px;
}

header > .container-01 .content-right ul li {
    margin-left: 13px;
}

header > .container-02 .content-right ul li {
    margin-left: 22px;
}

header > .container-01 ul li,
header > .container-01 ul li a,
header > .container-02 ul li,
header > .container-02 ul li a {
    color: var(--bg-text-color);
    font-size: 1rem;
}

header > .container-01 {
    background-color: var(--bg-blue-dark);
    display: flex;
    min-height: 50px;
}

header .container-02 {
    width: 100%;
    min-height: 70px;
    background-color: var(--bg-blue-dark);
    display: flex;
    align-items: center;
}

header .container-02 .nav-menu {
    left: unset;
    right: 0;
}

header .container-02 .content-left {
    width: max-content;
}

header .container-02 [data-open*="menu-mobile"] {
    font-size: 40px;
}

.header-separate .container-02 {
    background-color: #171254;
    border-color: unset;
}

.header-fill-border-top .container-02 {
    border-top: 1px solid var(--border-color);
}

header .container-02 {
    border-bottom: 1px solid var(--border-color);
}

.header-fill-borded .container-02 {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.header-white .container-02 {
    background-color: #fff;
}

.header-white .container-02 *,
.footer-white .container-02 *,
.footer-white .container-03 *,
.footer-white .container-04 * {
    color: var(--bg-blue-dark);
}

.header-white .bg-text-hover:hover,
.header-white .bg-text-hover:hover a,
.header-white .bg-text-hover:hover i,
.footer-white .bg-text-hover:hover,
.footer-white .bg-text-hover:hover a,
.footer-white .bg-text-hover:hover i {
    color: var(--bg-blue-light);
}

.header-white .bg-text-hover:active,
.header-white .bg-text-hover:active a,
.footer-white .bg-text-hover:active,
.footer-white .bg-text-hover:active a {
    color: var(--bg-text-active);
}

.footer-white .container-02,
.footer-white .container-03 {
    background-color: #fff;
}

.footer-white .container-04 {
    background-color: rgba(220, 220, 220, 0.467);
}

footer span {
    font-size: 17px;
}

footer [class*="container-"] {
    min-height: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
}

footer [class*="content-0"] {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

footer a {
    text-decoration: none;
}

footer .container-01 {
    background-color: var(--bg-blue-light);
}

footer .container-02 .container {
    display: flex;
}

footer .container-02 .container .content-01 {
    width: 100%;
}

footer .container-02 [class*="content-0"] {
    margin: unset !important;
    margin-left: 10px !important;
    margin-right: 1px !important;
}

footer .container-02 [class*="content-0"] .list-in-column {
    margin: unset !important;
    margin-top: 7.5px !important;
    margin-bottom: 20px !important;
}

footer .container-02 li {
    padding: 1.5px;
}

footer .container-01 *,
footer .container-02 *,
footer .container-03 *,
footer .container-04 *  {
    color: var(--bg-text-color);
}

footer .container-01 * {
    text-align: center;
}

footer .container-01 .btn {
    margin-top: 18px;
}

footer .container-02,
footer .container-03 {
    background-color: var(--bg-blue-dark);
    padding-top: 70px;
    padding-bottom: 70px;
}

footer .container-02 .btn {
    width: max-content;
}

footer .container-02 .content-01 {
    width: 1700px !important;
    padding-right: 120px;
}

footer .container-02 .content-01 p {
    margin-top: 16px;
}

footer .container-02 .content-01 span {
    margin-top: 12px;
    margin-bottom: 2px;
}

footer .container-02 .list-in-column li {
    margin-top: 2.5px;
    margin-bottom: 2.5px;
}

footer .container-03 {
    padding: unset;
    display: flex;
}

footer .container-03 .container {
    border-bottom: 1px solid var(--border-color);
}

footer .container-03 .content-right li {
    font-size: 40px;
    margin-left: 6px;
}

.container-02 address {
    margin-bottom: 6px;
}

footer .container-04 {
    width: 100%;
    min-width: 200px;
    min-height: 50px;
    background-color: var(--bg-blue-dark);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: unset !important;
    text-align: center;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

footer .container-03 .container,
footer .container-04 .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

footer .container-03 .content-left,
footer .container-03 .content-right,
footer .container-04 .content-left,
footer .container-04 .content-right {
    width: max-content;
    margin: 7px;
    margin-left: unset;
    margin-right: unset;
}

footer .container-03 .content-right,
footer .container-04 .content-right {
    margin-left: auto;
}

footer .container-04 nav ul {
    flex-wrap: wrap;
    justify-content: center;
}

footer .container-04 nav li {
    margin: unset;
    margin-left: 20px;
}

/* ENDING HEADER AND FOOTER */

/* STARTING BOX STYLE */

.box {
    width: 100%;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.box .box-item {
    background-color: #fff;
    width: max-content;
    height: max-content;
    margin: 10px;
    padding: 25px;
}
.box .box-item2 {
    background-color: #fff;
    width: max-content;
    height: max-content;
    min-height: 280px;
    margin: 10px;
    padding: 25px;
}

.box > a {
    text-decoration: none;
}

.box .box-item > * {
    margin-top: 4.4px;
    margin-bottom: 4.4px;
}

.box-left .box-item {
    align-items: flex-start !important;
    text-align: start !important;
}

.box-right .box-item {
    align-items: flex-end !important;
    text-align: end !important;
}

.box-info .box-item {
    max-width: 340px;
    min-height: 340px;
    border: 1px solid rgba(97, 97, 97, 0.193);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.box-info .box-item i {
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-info .box-item span {
    font-family: "font-bold";
    font-size: 23px;
}

.box-info .box-item .btn {
    color: #fff;
    margin-top: 14px;
}

.box-info ul {
    flex-direction: column;
}

.box-info ul li {
    display: flex;
    align-items: center;
}

.box-info ul li i {
    font-size: 22px !important;
    margin-right: 6px;
}

.box-info nav {
    margin-top: 4px !important;
    margin-bottom: 10px !important;
}

.box-info nav ul li {
    margin: unset;
}

.box-info ul li [class*="cci-check-"] {
    color: rgb(10, 158, 10);
}

.box-info ul li [class*="cci-uncheck-"] {
    color: rgb(235, 33, 33);
}

.price-value {
    font-family: "font-bold" !important;
    font-weight: normal !important;
    font-size: 22px !important;
}

.price-value cite {
    font-size: 54px !important;
}

.price-value span:first-child {
    position: relative;
    bottom: 18px;
}

.price-value span:last-child {
   position: relative;
   left: 4px;
   font-family: "font-regular" !important;
}

.box-price .box-item {
    width: 100% !important;
    max-width: 320px !important;
    padding-bottom: 12px !important;
    padding: unset;
}

.box-price .box-item > span:nth-child(1) {
    border-bottom: 1px solid rgba(97, 97, 97, 0.193);
    padding: 12px;
    margin-bottom: 20px;
    font-size: 18.5px;
}

.box-price .box-item > p {
    margin-left: 20px;
    margin-right: 20px;
}

.box-price .box-item .btn {
    margin-left: 20px;
    margin-right: 20px;
}

.box-price .box-item ul {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 14px;
}

.box-price .box-item ul li * {
    font-family: "font-regular";
    text-align: start;
    font-size: 18px !important;
    margin-top: 3.5px;
    margin-bottom: 3.5px;
}

.box-price .box-item ul li i {
    margin-right: 14px;
    font-size: 20px !important;
}

.box-transparent .box-item {
    background-color: transparent !important;
}

.price-style-01 .box-item span:nth-child(1) {
    border: unset;
    margin: unset;
    margin-top: 20px;
    font-size: 22px;
}

.price-style-01 .box-item ul li * {
    font-size: 15.8px !important;
    color: black;
}

.price-value cite {
    font-size: 40px;
}

.domain-ext .box-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: unset;
}

.domain-ext .box-item .content-img {
    max-width: 80px;
    margin: unset !important;
}

.domain-ext .box-item cite {
    margin: unset;
    font-size: 16px;
}

.box-customer .box-item {
    border: unset;
    flex-direction: row;
    overflow: hidden !important;
    transition: margin-left 0.4s ease-in-out !important;
    display: none;
}

.box-customer .box-item {
    width: 100%;
    max-width: 350px;
    border: 1px solid rgba(97, 97, 97, 0.193);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin: 5px;
}

.box-customer-slider .box-item {
    width: max-content !important;
    max-width: 100% !important;
    margin: unset !important;
}

.box-customer .box-item span {
    font-size: 18px;
}

.box-customer .box-item span, 
.box-customer .box-item p {
    color: var(--bg-blue-dark);
}

.box-customer .box-item .content-img {
    max-width: 90px;
}

.box-customer .box-item .content-img img {
    border-radius: 100%;
}

.box-customer .slider-btn-active {
    background-color: rgba(0, 0, 0, 0.508) !important;
}

.box-two .box-item {
    max-width: 450px;
}

.box-three .box-item {
    max-width: 340px !important;
}

.box-four .box-item {
    max-width: 250px;
}

.box-five .box-item {
    width: 190px;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-system .content-img {
    max-width: 70px !important;
}

.questions .box-item {
    width: 100%;
    background-color: #f5f5f5;
    align-items: flex-start;
    text-align: start;
    font-family: "font-bold";
    padding: unset;
    margin: unset;
    margin-top: 3.3px;
    margin-bottom: 3.3px;
}

.questions .box-item * {
    margin: unset !important;
}

.questions .box-item .box-item-header,
.questions .box-item .box-item-body {
    padding: 20px !important;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
}

.questions .box-item .box-item-header {
    z-index: 222;
    padding-right: 50px !important;
}

.questions .box-item .box-item-header:after {
    content: "\f116";
    font-family: crowbarcode-icons !important;
    transition: transform 0.2s ease-in-out;
    position: absolute;
    right: 15px;
}

.questions .box-item .box-item-header:hover {
    cursor: pointer;
}

.questions [aria-expanded*="true"] .box-item-header:after {
    transform: rotate(180deg);
}

.questions .box-item .box-item-body {
    padding-top: unset !important;
    display: none;
}

.question-active {
    display: flex !important;
}

.question-active-animation {
    max-height: 1000px !important;
}

.questions .box-item-body ul {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    padding: unset !important;
    margin-left: 20px !important;
}

.box-info-small .box-item {
    min-width: 240px;
}

.box-info-small i {
    font-size: 40px;
}

.box-img .box-item .content-img {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    margin-bottom: 6px;
}

/* ENDING BOX STYLE */

/* STARTING THUMB  */

.thumb-info {
    padding: 40px;
}

.thumb-info,
.thumb-info .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.thumb-info .content-left,
.thumb-info .content-center,
.thumb-info .content-right {
    margin: 10px;
}

.thumb-info .content-left {
    width: max-content;
    text-align: center !important;
}

.thumb-info .content-right {
    width: 260px;
}

/* ENDING THUMB */

/* STARTING SLIDER  */

.slider {
    width: 100%;
    align-items: stretch;
    background-color: var(--bg-blue-dark);
    overflow: hidden;
}

.slider-items {
    display: flex;
}

.slider-items .container {
    display: flex;
    height: 100%;
    min-height: 392px;
    align-items: center;
}

.slider-items * {
    color: var(--bg-text-color);
}

.slider-items > .slider-item {
    width: 100%;
    height: max-content;
    flex-shrink: 0;
    display: none;
    transition: margin-left .9s ease-in-out !important;

}

.slider-active {
    display: flex !important;
    margin-left: unset;
}

.slider-control {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    height: 100%;
}

.slider-control ul {
    display: flex;
    flex-direction: row;
    padding: unset;
}

.slider-control ul li {
    list-style-type: none;
} 

.slider-control ul li button {
    background-color: rgba(211, 211, 211, 0.686);
    list-style-type: none;
    width: 40px;
    height: 2.5px;
    margin: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn-active {
    background-color: #fff !important;
}

.slider-item .content-left,
.slider-item .content-right,
.thumb .content-left,
.thumb .content-right {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.slider-item .content-left *,
.slider-item .content-right * {
    margin-top: 7px;
    margin-bottom: 7px;
}

.slider-item .content-left p,
.slider-item .content-right p {
    margin-top: 4px;
}

.slider .content-img {
    max-width: 430px;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ENDING SLIDER */

/* STARTING TIMELINE */

.timeline {
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px 0;
  }
  
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--bg-blue-dark);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline .container {
    padding: 15px 30px;
    position: relative;
    background: inherit;
    margin: unset;
    width: 50%;
}

.timeline .container:nth-of-type(2n+1) {
    left: 0;
}

.timeline .container {
    left: 50%;
}

.timeline .container::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: -8px;
    background: #ffffff;
    border: 2px solid var(--bg-blue-dark);
    border-radius: 16px;
    z-index: 1;
}

.timeline .container:nth-of-type(2n+2)::after {
    left: -8px;
}

.timeline .container::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    top: calc(50% - 1px);
    right: 8px;
    background: var(--bg-blue-dark);
    z-index: 1;
}

.timeline .container:nth-of-type(2n+2)::before {
    left: 8px;
}

.timeline .container .date {
    position: absolute;
    display: inline-block;
    top: calc(50% - 8px);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--bg-blue-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.timeline .container:nth-of-type(2n+1) .date {
    right: -75px;
}

.timeline .container:nth-of-type(2n+2) .date {
    left: -75px;
}

.timeline .container .icon {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 9px 0;
    top: calc(50% - 20px);
    background: #fff;
    border: 2px solid var(--bg-blue-dark);
    border-radius: 40px;
    text-align: center;
    font-size: 18px;
    color: var(--bg-blue-dark);
    z-index: 1;
}

.timeline .container:nth-of-type(2n+1) .icon {
    right: 56px;
}

.timeline .container:nth-of-type(2n+2) .icon {
    left: 56px;
}

.timeline .container .content {
    padding: 30px 90px 30px 30px;
    background: #fff;
    border: 1px solid rgba(128, 128, 128, 0.172);
    position: relative;
    border-radius: 0 500px 500px 0;
}

.timeline .container:nth-of-type(2n+2) .content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
}

.timeline .container .content h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: normal;
    color: var(--bg-blue-dark);
}

.timeline .container .content p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

@media (max-width: 767.98px) {
    
.timeline::after {
    left: 90px;
}

.timeline .container {
    width: 100%;
    padding-left: 120px;
    padding-right: 30px;
}

.timeline .container:nth-of-type(2n+2) {
    left: 0%;
}

.timeline .container:nth-of-type(2n+1)::after, 
.timeline .container:nth-of-type(2n+2)::after {
    left: 82px;
}

.timeline .container:nth-of-type(2n+1)::before,
.timeline .container:nth-of-type(2n+2)::before {
    left: 100px;
    border-color: transparent var(--bg-blue-dark) transparent transparent;
}

.timeline .container:nth-of-type(2n+1) .date,
.timeline .container:nth-of-type(2n+2) .date {
    right: auto;
    left: 15px;
}

.timeline .container:nth-of-type(2n+1) .icon,
.timeline .container:nth-of-type(2n+2) .icon {
    right: auto;
    left: 146px;
}

.timeline .container:nth-of-type(2n+1) .content,
.timeline .container:nth-of-type(2n+2) .content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
}

}

/* ENDING TIMELINE */

/* START FORM STYLES */

form button {
    margin-top: 15px;
}

.form-01 {
    padding: 50px;
    box-shadow: 0 2px 15px 0 rgb(0 0 0 / 12%);
    border-radius: .25rem;
}

.form-01 .content-text .title {
    margin-top: 6px;
    margin-bottom: 6px;
}

.form-01 fieldset {
    padding: 8px;
    padding-top: unset !important;
}

.form-01 input,
.form-01 textarea {
    background-color: transparent;
}

.form-01 > button, 
.form-01 > .content-text {
    margin: 10px;
}

.form-02 {
    width: 55%;
}

.form-rounded input,
.form-rounded button {
    border-radius: 999px !important;
    padding: 15px !important;
    padding-left: 20px !important;
    padding-right: 127px !important;
}

.form-rounded button {
    width: 100%;
    max-width: 125px !important;
    padding: 17px !important;
    margin-right: unset;
    position: absolute;
    right: 0;
}

/* END FORM STYLES */

/* STARTING HOVER EFFECT */

.bg-bd-hover,
.scale-hover {
    transition: all 0.2s ease-in-out;
}

.bg-bd-hover:hover {
    background-color: var(--bg-blue-dark) !important;
}

.bg-bd-hover:hover * {
    color: #fff !important;
}

.scale-hover:hover {
    transform: scale(1.050) !important;
}

/* ENDING HOVER EFFECT */

/* STARTING FIREFOX STYLE */

@-moz-document url-prefix() {
 
    .logo,
    .menu-mobile-header .content-img {
        width: 160px;
    }
 
}

/* ENDING FIREFOX STYLE */