@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --black: #000000;
    --white: #ffffff;
    --white-1: #E1E8F0;
    --blue-1: #051229;
    --blue-2: #4e92ea;
    --blue-3: #848ce7;
    /*#a1a7f1*/
    --filter-1: invert(1) brightness(1000);
}

body {
    color: var(--white);
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

.text-white {
    color: var(--white) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-blue1 {
    color: var(--blue-1) !important;
}

.text-blue2 {
    color: var(--blue-2) !important;
}

.text-blue3 {
    color: var(--blue-3) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-white-1 {
    background-color: var(--white-1) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-blue-1 {
    background-color: var(--blue-1) !important;
}

.bg-blue-2 {
    background-color: var(--blue-2) !important;
}

.bg-blue-3 {
    background-color: var(--blue-3) !important;
}

h1,
h2,
h3 {
    font-family: "Libre Franklin", sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 60px;
    color: var(--blue-2);
}

h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

h2.f-40 {
    font-size: 40px;
}

h3 {
    font-size: 28px;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero {
    background: var(--blue-1);
    height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(../images/hero-bg.png);
    opacity: .03;
    z-index: 0;
}

.hero h1 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 20px;
}

.hero-shape {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-animation: move 5s linear infinite;
    animation: move 5s linear infinite;
    width: 200px;
    opacity: .5;
}

.hero-shape-1 {
    left: -70px;
}

.hero-shape-2 {
    right: -70px;
}


.z-1 {
    position: relative;
    z-index: 1;
}

.subtitle {
    padding: 7px 22px 10px;
    background-color: var(--blue-1);
    border: 1px solid var(--blue-3);
    display: inline-block;
    margin-bottom: 32px;
    line-height: 1;
    position: relative;
        min-width: 140px;
}

.subtitle>span {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.subtitle .corner {
    width: 8px;
    height: 8px;
    border: 1px solid var(--blue-2);
    background-color: var(--white);
    position: absolute;
}

.subtitle .corner.tl {
    top: -4px;
    left: -4px;
}

.subtitle .corner.tr {
    top: -4px;
    right: -4px;
}

.subtitle .corner.br {
    bottom: -4px;
    right: -4px;
}

.subtitle .corner.bl {
    bottom: -4px;
    left: -4px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

}

@keyframes move {

    0%,
    100% {
        transform: translateY(-50%) translateY(0);
        /* keep centered */
    }

    50% {
        transform: translateY(-50%) translateY(20px);
        /* move relative to center */
    }
}

/* Header Styles */
header.custom-header {
    background: var(--blue-1);
    /*box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);*/
    border-bottom: 1px solid #27354d;
    padding: 25px 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.logo {
    height: 40px;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#nav-icon3 {
    width: 40px;
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 0px;
    width: 100%;
    background: transparent;
    border-bottom: 3px solid var(--blue-3);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

/* Icon 3 */

#nav-icon3 span:nth-child(1) {
    top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 15px;
}

#nav-icon3 span:nth-child(4) {
    top: 30px;
}

#nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}


/* Full Screen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.215, 0.610, 0.355, 1);
    transform: translateY(-100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-menu.active {
    transform: translateY(0%);
}

.menu-content {
    margin: 0 auto;
    padding: 140px 12px 40px;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    max-height: 620px;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.fullscreen-menu.active .menu-content {
    opacity: 1;
}

.menu-column {
    padding: 0 25px;
    border-right: 1px solid #000000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.menu-column-1 {
    flex: 0 0 30%;
    padding-left: 0px !important;
}

.menu-column-2 {
    flex: 0 0 40%;
    border-right: 0px;
}

.menu-column-3 {
    flex: 0 0 30%;
}

.fullscreen-menu.active .menu-column {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active .menu-column:nth-child(1) {
    transition-delay: 0.2s;
}

.fullscreen-menu.active .menu-column:nth-child(2) {
    transition-delay: 0.3s;
}

.fullscreen-menu.active .menu-column:nth-child(3) {
    transition-delay: 0.4s;
}

.menu-column:last-child {
    border-right: none;
}

.menu-column h3 {
    font-size: 32px;
    color: #2c3e50;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: relative;
}

.menu-column h3::before {
    content: '';
    width: 100px;
    height: 0px;
    border-bottom: 2px solid #000000;
    position: absolute;
    left: 0px;
    bottom: -14px;
    border-radius: 1000px;
}

.menu-column h3::after {
    content: '';
    width: 10px;
    height: 0px;
    border-bottom: 2px solid #000000;
    position: absolute;
    left: 110px;
    bottom: -14px;
    border-radius: 1000px;
}

.menu-column-3 h3::before {
    border-bottom: 2px solid #ffffff;
}

.menu-column-3 h3::after {
    border-bottom: 2px solid #ffffff;
}

.fullscreen-menu.active .menu-column h3 {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active .menu-column:nth-child(1) h3 {
    transition-delay: 0.3s;
}

.fullscreen-menu.active .menu-column:nth-child(2) h3 {
    transition-delay: 0.4s;
}

.fullscreen-menu.active .menu-column:nth-child(3) h3 {
    transition-delay: 0.5s;
}

.menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 86%;
}

.menu-links li {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    height: 33.333333%;
}

.fullscreen-menu.active .menu-links li {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active .menu-links li:nth-child(1) {
    transition-delay: 0.4s;
}

.fullscreen-menu.active .menu-links li:nth-child(2) {
    transition-delay: 0.5s;
}

.fullscreen-menu.active .menu-links li:nth-child(3) {
    transition-delay: 0.6s;
}

.menu-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 0px;
    display: block;
    border-bottom: 1px solid #000000;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
}

.menu-links a::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #4e92ea;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-links a::after {
    content: '';
    width: 30px;
    height: 0px;
    border-bottom: 1.5px solid #4e92ea;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-links a:hover::after {
    opacity: 1;
}

.menu-links a.active::after {
    opacity: 1;
}

.menu-links a:hover {
    color: var(--blue-2);
    padding-left: 50px;
}

.menu-links a.active {
    color: var(--blue-2);
    padding-left: 50px;
}

.help-column {
    background-image: url('../images/menu-image.jpg');
    background-size: cover;
    background-position: center;
    /*border-radius: 12px;*/
    padding: 30px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fullscreen-menu.active .help-column {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.help-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(153.92deg, #051229 43.48%, #4e92ea 124.42%);
    opacity: 0.9;
    z-index: 1;
    /*border-radius: 12px;*/
}

.help-content {
    position: relative;
    z-index: 2;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    height: 100%;
}

.help-inner-content {
    position: relative;
}

.help-inner-content img {
    position: absolute;
    bottom: -74px;
    right: 10px;
    width: 100px;
    transform: rotate(0deg);
}

.fullscreen-menu.active .help-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.help-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.help-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fullscreen-menu.active .help-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.btn-contact {
    display: inline-block;
    background: #fff;
    color: #0075ff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fullscreen-menu.active .btn-contact {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.2s;
}

.btn-contact:hover {
    background: transparent;
    color: white;
}

ul,
ol {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

.btn-default {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 5.5px;
    /*padding: 4.5px;*/
    border-radius: 50px;
    position: relative;
    background: #f7f7f7;
    line-height: 1;
    white-space: nowrap;
}

.btn-default .btn_inner {
    position: relative;
    z-index: 1;
    padding: 15px 20px 15px 60px;
    width: 100%;
    text-align: center;
    /*padding: 12px 18px 12px 58px;*/
}

/*a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}*/

.btn_inner::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    background-color: var(--blue-2);
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 48px;
    line-height: 1;
}

.btn-default-1 .btn_inner::before {
    background-color: var(--blue-3);
}

.btn-default-2 {
    background-color: var(--blue-1);
}

.btn_inner .btn_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset-inline-start: 0px;
    top: 0px;
    line-height: 1;
    min-width: 48px;
    height: 100%;
    font-size: 21px;
    z-index: 1;
    color: var(--white);
}

.btn_inner .btn_icon>span {
    overflow: hidden;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.btn_inner .btn_icon>span i:first-child,
.btn_inner .btn_icon>span i:last-child {
    -webkit-transition: -webkit-transform 0.4s ease-in-out 0s;
    transition: -webkit-transform 0.4s ease-in-out 0s;
    transition: transform 0.4s ease-in-out 0s;
    transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
}

.btn_inner .btn_icon>span i:last-child {
    position: absolute;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
}

.btn_inner .btn_text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    color: var(--blue-1);
    text-shadow: 0 23px 0 var(--blue-1);
}

.btn_inner .btn_text>span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.btn-default:hover .btn_inner::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}

.btn-default:hover .btn_inner .btn_icon i:first-child {
    -webkit-transform: translateX(150%);
    -ms-transform: translateX(150%);
    transform: translateX(150%);
}

.btn-default:hover .btn_inner .btn_icon i:last-child {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.btn-default:hover .btn_inner .btn_text {
    color: var(--white);
    text-shadow: 0 23px 0 var(--white);

}

.btn-default:hover .btn_inner .btn_text>span {
    -webkit-transform: translateY(-24px);
    -ms-transform: translateY(-24px);
    transform: translateY(-24px);
}

.btn-default-2 .btn_inner .btn_text {
    color: var(--white);
}

.hero-btns {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* icons */

@font-face {
    font-family: "solvior-icons";
    src: url("../fonts/solvior-icons.eot?wmr4q0");
    src: url("../fonts/solvior-icons.eot?wmr4q0#iefix") format("embedded-opentype"), url("../fonts/solvior-icons.ttf?wmr4q0") format("truetype"), url("../fonts/solvior-icons.woff?wmr4q0") format("woff"),
        url("../fonts/solvior-icons.svg?wmr4q0#solvior-icons") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="tji-"],
[class*=" tji-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "solvior-icons" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tji-angle-up:before {
    content: "\e92e";
}

.tji-operations:before {
    content: "\e916";
}

.tji-process-1:before {
    content: "\e917";
}

.tji-manage:before {
    content: "\e918";
}

.tji-strategy:before {
    content: "\e919";
}

.tji-performance:before {
    content: "\e92c";
}

.tji-organize:before {
    content: "\e92d";
}

.tji-reply:before {
    content: "\e900";
}

.tji-calender:before {
    content: "\e901";
}

.tji-coments:before {
    content: "\e902";
}

.tji-square-cube:before {
    content: "\e903";
}

.tji-minus:before {
    content: "\e904";
}

.tji-plus:before {
    content: "\e905";
}

.tji-personalization:before {
    content: "\e906";
}

.tji-quick:before {
    content: "\e907";
}

.tji-results:before {
    content: "\e908";
}

.tji-brand:before {
    content: "\e909";
}

.tji-paper-plane:before {
    content: "\e90a";
}

.tji-single-cube:before {
    content: "\e90b";
}

.tji-cube:before {
    content: "\e90c";
}

.tji-left-quote:before {
    content: "\e90d";
}

.tji-right-quote:before {
    content: "\e90e";
}

.tji-double-check:before {
    content: "\e90f";
}

.tji-business:before {
    content: "\e910";
}

.tji-executive:before {
    content: "\e911";
}

.tji-leadership:before {
    content: "\e912";
}

.tji-optimization:before {
    content: "\e913";
}

.tji-process:before {
    content: "\e914";
}

.tji-strategic:before {
    content: "\e915";
}

.tji-angle-down:before {
    content: "\e91a";
}

.tji-angle-left:before {
    content: "\e91b";
}

.tji-angle-right:before {
    content: "\e91c";
}

.tji-arrow-up:before {
    content: "\e91d";
}

.tji-arrow-bown:before {
    content: "\e91e";
}

.tji-arrow-left:before {
    content: "\e91f";
}

.tji-arrow-right:before {
    content: "\e920";
}

.tji-check:before {
    content: "\e921";
}

.tji-clock:before {
    content: "\e922";
}

.tji-location:before {
    content: "\e923";
}

.tji-phone:before {
    content: "\e924";
}

.tji-email:before {
    content: "\e925";
}

.tji-chat:before {
    content: "\e926";
}

.tji-globe:before {
    content: "\e927";
}

.tji-play:before {
    content: "\e928";
}

.tji-search:before {
    content: "\e929";
}

.tji-star-2:before {
    content: "\e92a";
}

.tji-star:before {
    content: "\e92b";
}

.image-box {
    position: relative;
}

.image-box-1 {
    width: calc(100% - 210px);
    display: block;
    min-height: 282px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.image-box-2 {
    width: calc(100% - 180px);
    display: block;
    position: relative;
    margin-left: auto;
    margin-top: -80px;
    z-index: 2;
}

.image-box-3 {
    position: absolute;
    bottom: 50px;
    width: 160px;
    z-index: 0;
    -webkit-animation: dance 2s alternate infinite;
    animation: dance 2s alternate infinite;
    transform: rotate(0);
}

.f-20 {
    font-size: 16px;
}

.border-r {
    border-radius: 10px;
}

.about-exprnc-shape-html {
    background: var(--blue-2);
    padding: 27px 36px 23px 36px;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    z-index: 1;
    overflow: hidden;
    width: fit-content;
    top: 0px;
    right: 0px;
    z-index: 4;
}

.about-exprnc-shape-html:before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--blue-1);
    transition: .5s;
    border-radius: 0 0 80px 80px;
}

.about-exprnc-shape-html h3 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 0 10px 0;
}

.about-exprnc-shape-html h3:before {
    position: absolute;
    content: "";
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: .5s;
}

.about-exprnc-shape-html h4 {
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    padding: 20px 0 0 0;
    position: relative;
}

.sub-title {
    /*text-transform:uppercase;*/
    font-size: 18px;
    margin-bottom: 12px;
    /*font-style: italic;*/
    position: relative;
    border: 1px solid var(--blue-2);
    width: fit-content;
    padding: 5px 26px;
}

.sub-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--blue-3);
    border-radius: 100%;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.sub-title::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--blue-3);
    border-radius: 100%;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes dance {
    0% {
        -webkit-transform: scale(0.75) rotate(0deg);
        transform: scale(0.75) rotate(0deg);
    }

    100% {
        -webkit-transform: scale(1.05) rotate(0deg);
        transform: scale(1.05) rotate(0deg);
    }
}

p:last-child {
    margin-bottom: 0px;
}

.title-line1 {
    margin-right: 10px;
}

.title-line2 {
    margin-left: 10px;
}

.service-images {
    display: flex;
    gap: 24px;
    position: relative;
    padding-left: 20px;
}

.service-image-1 {
    width: 100%;
    border-radius: 1000px 1000px 0px 0px;
    position: relative;
    z-index: 1;
}

.service-item {
    padding-top: 50px;
    padding-bottom: 50px;
}

.row.service-item:nth-child(3) .service-images {
    padding-left: 0px;
    padding-right: 20px;
}

.service-icon-cover {
    margin-bottom: 20px;
}

.service-icon {
    width: 70px;
}

.service-images::after {
    content: '';
    width: 100%;
    height: calc(100% - 20px);
    border: 1px solid #ffffff;
    position: absolute;
    border-radius: 1000px 1000px 0px 0px;
    left: 0px;
    z-index: 0;
    top: -20px;
}

.cursor1 {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--blue-2);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.15s;
    transition: 0.15s;
    z-index: 9999999999;
    /*mix-blend-mode: difference;*/
}

.cursor2 {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: var(--blue-3);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 9999999999;
    /*mix-blend-mode: difference;*/
}

ul.list-1 li {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 15px;
    margin-bottom: 20px;
}

/*ul.list-1 li .list-icon {
    filter: var(--filter-1);
}*/

/*ul.list-1 li:last-child {
    margin-bottom: 0px;
}
*/
.image-cover {
    height: 100%;
    position: relative;
    padding: 20px;
    min-height: 350px;
}

.image-cover::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    border: 1px solid var(--blue-2);
}

.image-cover-border-black.image-cover::before {
    border: 1px solid var(--blue-1);
}

.image-cover-border-white.image-cover::before {
    border: 1px solid var(--white);
}

.image-cover img {
    position: absolute;
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    object-fit: cover;
    object-position: top center;
}

.border-1 {
    border: 1px solid var(--blue-2);
}

.eb_h4-footer-area {
    background-color: var(--black);
    padding-top: 90px;
    padding-bottom: 90px;
}

.eb_h4-footer-top {
    position: relative;
    z-index: 1;
    border: 1px solid var(--white);
    border-bottom: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30% 20% 30% 20%;
    grid-template-columns: 31% 23% 23% 23%;
}


.eb_h4-footer-top-item {
    padding: 50px 50px 50px 45px;
}

.eb_h4-footer-top-item p {
    font-size: 16px;
}

.eb_h4-footer-top-item:not(:first-child) {
    border-left: 1px solid var(--white);
}

.eb_h4-footer-logo {
    margin-bottom: 30px;
}

.eb_h4-footer-logo img {
    max-width: 210px;
    width: 100%;
}

.eb_h4-footer-widget-title {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.eb_h4-footer-widget ul {
    list-style: none;
}

.eb_h4-footer-widget ul li a {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.eb_h4-footer-widget ul li a:hover {
    color: var(--blue-2);
}

.eb_h4-footer-widget ul li a.active {
    color: var(--blue-2);
    pointer-events: none !important;
    cursor: default !important;
}

.eb_h4-footer-widget ul li:last-child a {
    margin-bottom: 0;
}

.eb_h4-footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid var(--white);
    padding: 21px 45px 21px 45px;
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}

.eb_h4-footer-copyright-text p {
    margin-bottom: 0;
    color: var(--white);
    font-size: 16px;
}

.eb_h4-footer-menu ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.eb_h4-footer-menu ul li a {
    color: var(--white);
    display: block;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.eb_h4-footer-menu ul li a:hover {
    color: var(--blue-2);
}

.eb_h4-footer-menu ul li:not(:last-child) a::before {
    position: absolute;
    right: -11px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: #A1A1A1;
    content: "";
}

.cta-inner {
    padding: 80px 40px;
    background-color: var(--blue-2);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.counter-two-shape1 {
    height: 304px;
    width: 304px;
    background-color: var(--blue-1);
    position: absolute;
    bottom: -260px;
    left: -189px;
    /*mix-blend-mode: soft-light;*/
    border-radius: 8px;
    transform: rotate(45deg);
    animation: rectMove 9s linear 0ms infinite;
}

.counter-two-shape2 {
    position: absolute;
    top: -535px;
    right: -75px;
    width: 575px;
    height: 575px;
    background-color: var(--blue-3);
    border-radius: 20px;
    /*mix-blend-mode: screen;*/
    transform: rotate(45deg);
    animation: rectMove 9s linear 0ms infinite;
}

.counter-two-shape3 {
    position: absolute;
    top: -326px;
    right: -516px;
    width: 575px;
    height: 575px;
    background-color: var(--blue-1);
    border-radius: 8px;
    /*mix-blend-mode: soft-light;*/
    transform: rotate(45deg);
    animation: rectMove 9s linear 1s infinite;
}

@keyframes rectMove {
    0% {
        transform: rotate(45deg) translateY(0px);
    }

    25% {
        transform: rotate(43deg) translateY(-20px);
    }

    50% {
        transform: rotate(45deg) translateY(-40px);
    }

    75% {
        transform: rotate(43deg) translateY(-20px);
    }

    100% {
        transform: rotate(45deg) translateY(0px);
    }
}

.cta-arrow {
    position: absolute;
    right: 200px;
    bottom: -50px;
    width: 400px;
    z-index: -1;
}

.icon-cover {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-bottom: 15px;
    position: relative;
}

.icon-cover:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--blue-3);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: 0;
}

.icon-cover img {
    width: 100%;
    position: relative;
    z-index: 1;
    transition: all .3s linear;
    /*transition-delay: 0.3s;*/
    transform: scale(1);
}

.oe-2 .card-item:hover .icon-cover::before {
    transform: scale(1);
}

.oe-2 .card-item:hover .icon-cover img {
    transform: scale(.9);
}

.card-item h3 {
    font-size: 20px;
    font-weight: 600;
}

.oe-2 .icon-cover {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    background-color: var(--blue-2);
    margin: 0 auto;
    margin-bottom: 15px;
    border-radius: 100%;
    padding: 16px;
    margin-bottom: 20px;
}

.oe-2 .icon-cover img {
    filter: var(--filter-1);
}

.oe-2 .card-item-cover {
    border-right: 1px solid rgba(161, 167, 241, .31);
}

.oe-2 .card-item-cover:last-child {
    border-right: 0px;
}

.no-break {
    white-space: nowrap;
}

.oe-3 {
    padding-top: 0px;
}

.sub-title-black.sub-title {
    border: 1px solid var(--blue-1);
}

.sub-title-white.sub-title {
    border: 1px solid var(--white);
}

.sub-title-black.sub-title::before,
.sub-title-black.sub-title::after {
    background-color: var(--blue-1);
}

.sub-title-white.sub-title::before,
.sub-title-white.sub-title::after {
    background-color: var(--white);
}

.oe-3-left {
    position: relative;
}

.oe-3-left::before {
    content: '';
    width: 5000px;
    height: 300px;
    right: 0px;
    top: 0px;
    background-color: var(--blue-1);
    position: absolute;
    z-index: 0;
}

.oe-3-left img {
    position: relative;
    z-index: 1;
    border-radius: 10px 0px 10px 10px;
}

.oe-4 .col-md-6>div {
    padding: 40px;
}

.oe-4 h2 {
    font-size: 36px;
}

.oe-1 .position-relative {
    padding-left: 36px;
}

.oe-1 .shape-1 {
    position: absolute;
    left: 12px;
    bottom: 0px;
    width: 200px;
}

.h-line-style {
    height: 100%;
    width: 10px;
    background-color: var(--blue-2);
    position: absolute;
    left: 12px;
    top: 0px;
}

.rop-1 .position-relative {
    padding-left: 36px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.rop-1 .position-relative img {
    z-index: 1;
    position: relative;
}

.rop-1 .position-relative .shape-1 {
    position: absolute;
    left: 12px;
    bottom: 0px;
    width: 140px;
    animation: pulse 2s infinite;
}
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

}
.rop-1 .shape-2-design {
    height: 100%;
    width: 75%;
    background-color: transparent;
    position: absolute;
    left: 12px;
    top: 0px;
    z-index: 0;
    border: 1px solid var(--blue-2);
}

.timeline {
    position: relative;
    margin: 40px 0 20px;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--blue-2);
    background: linear-gradient(45deg, transparent, var(--blue-2), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0px;
}

.timeline-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--blue-2);
    border: 1.5px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    z-index: 2;
    margin-right: 20px;
    flex-shrink: 0;
    transform: unset;
}

.timeline-content {
    flex: 1;
    margin-left: 60px;
    margin-top: -40px;
}

.timeline-image {
    width: calc(100% - 60px);
    height: 180px;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 60px;
    margin-top: 20px;
    flex-shrink: 0;
}

.timeline-image img {
    max-width: 100%;
    max-height: 100%;
}

.sd-1-cover {
    padding-bottom: 50px;
    padding-left: 70px;
    position: relative;
}

.sd-1-cover img {
    position: relative;
    z-index: 1;
}

.sd-1-cover .image-2 {
    height: 200px;
    position: absolute;
    left: 0px;
    bottom: 0;
    max-width: 242px;
    background-image: linear-gradient(90deg, rgba(78, 146, 234, 0) 0%, rgba(78, 146, 234, 1) 100%);
    border-radius: 250px;
    padding: 10px;
    object-fit: cover;
}

.sd-1-cover .image-3 {
    position: absolute;
    left: 0px;
    top: 0px;
    height: calc(100% - 250px);
    z-index: 0;
    animation: move1 5s linear infinite;
    width: 100%;
    object-fit: cover;
}

@keyframes move1 {

    0%,
    100% {
        transform: translateY(0);
        /* keep centered */
    }

    50% {
        transform: translateY(30px);
        /* move relative to center */
    }
}

.sd-3 {}

.sd-3 .card-item {
    background-color: var(--blue-1);
    color: var(--white);
    padding: 20px 20px 25px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.sd-3 .card-item .icon-cover {
    padding: 0px;
    width: 65px;
    height: 65px;
    flex: 0 0 65px;
}

.sd-3 .card-item .icon-cover img {
    filter: var(--filter-1);
}

.sd-3 .card-item h3 {
    color: var(--blue-2);
}

.sd-3 .card-item .icon-cover::before {
    content: '';
    width: 40px;
    height: 40px;
    background-color: rgba(78, 146, 234, .5);
    position: absolute;
    left: -7px;
    top: -8px;
    transform: scale(1);
}

.sd-3 .card-item:hover .icon-cover::before {
    transform: scale(1.2);
}

.sd-3 .position-relative img {
    position: absolute;
    right: 10px;
    top: 130px;
    z-index: 0;
}

.sd-4 .icon-cover {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    border: 1px solid var(--blue-2);
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
    padding: 20px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.card-item {
    height: 100%;
    position: relative;
}

.sd-4 .card-item:hover .icon-cover {
    transform: rotateY(180deg);
    background-color: var(--blue-2);
}

.sd-4 .card-item:hover .icon-cover img {
    filter: var(--filter-1);
}

.step-arrow {
    position: absolute;
    right: -60px;
    top: 30px;
}

/*.sd-5{
    background-color:#0E313A;
}*/
.sd-5-innner {
    position: relative;
    padding: 0px 30px;
}

.sd-5-innner::before {
    position: absolute;
    left: 0px;
    top: -20px;
    right: 0px;
    bottom: 140px;
    border-style: solid;
    border-width: 2px;
    -o-border-image: linear-gradient(#4e92ea 15%, #ffffff 30%, #ffffff 45%, #848ce7 60%, #848ce7 75%, #4e92ea 90%, transparent 100%) 1;
    border-image: -webkit-gradient(linear, left top, left bottom, from(#4e92ea), color-stop(#848ce7), color-stop(#848ce7), color-stop(#4e92ea), to(transparent)) 1;
    border-image: linear-gradient(#4e92ea 15%, #ffffff 30%, #ffffff 45%, #848ce7 60%, #848ce7 75%, #4e92ea 90%, transparent 100%) 1;
    content: "";
    z-index: 0;
    height: 110%;
}

.sd-6 .card-item {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 15px;
    height: auto;
    margin-bottom: 24px;
}

.sd-6 .card-item:last-child {
    margin-bottom: 0px;
}

.sd-6 .card-item .icon-cover {
    padding: 0px;
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
}

/*.sd-6 .card-item .icon-cover img{
    filter:var(--filter-1);
}*/
.sd-6 .position-relative .card-item {
    position: relative;
    z-index: 1;
}

.sd-6-bg-image {
    position: absolute;
    left: -360px;
    right: 0;
    top: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../images/bg-image.jpg);
    overflow: hidden;
    border-radius: 0px 15px 0px 0px;
}

.sd-6-bg-image::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#171717), to(#E8A133));
    background: linear-gradient(90deg, #171717, #4e92ea);
    opacity: .9;
    content: "";
}

.sd-6-image {
    height: 250px;
    object-fit: cover;
    object-position: top center;
    width: 100%;
    margin-top: 30px;
}

#contactForm {
    margin-top: 32px;
}

.inner-contact {
    background-color: var(--blue-1);
    padding: 50px 50px 80px;
    border-radius: 15px;
}

.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.form-control {
    border: 1px solid var(--blue-2) !important;
    box-shadow: none;
    outline: none;
    background: transparent;
    padding: 14px 16px;
    border-radius: 5px;
    color: var(--white);
}

textarea.form-control {
    border-radius: 0px;
}

.recaptch-cover {
    border: 1px solid var(--blue-2) !important;
    padding: 0px;
    position: relative;
    background-color: transparent;
    border-radius: 5px;
}

.recaptch-cover .recaptch-cover-header {
    padding: 12px 16px;
    text-align: left;
    display: block;
    border-bottom: 1px solid var(--blue-2) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0px;
}

.recaptch-cover .recaptch-cover-header button {
    background: var(--blue-3);
    border-color: var(--blue-3);
    border-radius: 3px;
    color: #ffffff;
    border-radius: 4px;
    padding: 8px 18px 8px;
}

.recaptch-cover .recaptch-cover-header button i {
    margin-right: 5px;
}

.recaptch-cover .recaptch-cover-header button:active {
    background: transparent;
    border-color: var(--blue-3);
    color: var(--blue-3);
}

.recaptch-cover .recaptch-cover-header button:hover {
    background: transparent;
    border-color: var(--blue-3);
    color: var(--blue-3);
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background-color: transparent;
    border-color: var(--blue-2);
    color: var(--white);
}

.loading-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #ffffff;
    display: none;
}

.loading-overlay.active {
    display: flex;
}

#refreshCaptcha {
    cursor: pointer;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, .55);
    opacity: 1;
    /* Firefox */
}

.form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(255, 255, 255, .55);
}

.error {
    color: red;
    display: none;
}

.recaptch-cover-body {
    min-height: 300px;
    padding: 30px 20px 0px 20px;
}

#captchaContainer {
    max-width: 463px;
    margin: 0 auto;
}

.captcha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 250px;
    margin-bottom: 1.5rem;
}

.captcha-grid-item {
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    outline: 1px solid var(--blue-2);
    padding: 10px;
    outline-offset: 5px;
}

.emoji-options {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.emoji-option {
    font-size: 2rem;
    cursor: pointer;
    padding: 0px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0px;
    background-color: transparent;
    border: 2px solid var(--white);
    flex: 1;
    min-width: 60px;
    text-align: center;
}

.emoji-option:hover {
    background-color: var(--blue-2);
    border-color: var(--blue-2);
}

.emoji-option.selected {
    border-color: var(--blue-2);
    background-color: var(--blue-2);
}

.captcha-feedback {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    min-height: 24px;
}

.captcha-success {
    color: #198754;
}

.captcha-error {
    color: #dc3545;
}

#submitBtn.btn-default {
    border: 0px;
    outline: none !important;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.dr-2 .card-item {
    background-color: #183c69;
    padding: 30px;
    display: flex;
    gap: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.dr-2 .card-item .icon-cover {
    margin-top: -30px;
    background: var(--blue-2);
    height: 120px;
    border-radius: 0px 0px 100px 100px;
}

.dr-2 .card-item .icon-cover img {
    filter: var(--filter-1);
}

.dr-2 .card-item:hover .icon-cover img {
    transform: scale(.9);
}

.dr-2 .card-item .icon-cover:before {
    transform: scale(1);
    border-radius: 0px 0px 100px 100px;
    height: 0px;
    bottom: auto;
}

.dr-2 .card-item:hover .icon-cover:before {
    height: 100%;
}

.dr-2 .card-item:hover h3 {
    color: var(--blue-3);
}

.dr-3 .position-relative {
    padding-left: 36px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.dr-3 .position-relative img {
    z-index: 1;
    position: relative;
}

.dr-3 .position-relative .shape-1 {
    position: absolute;
    left: 12px;
    bottom: 0px;
    width: 140px;
}

.dr-3 .shape-2-design {
    height: 100%;
    width: 75%;
    background-color: transparent;
    position: absolute;
    left: 12px;
    top: 0px;
    z-index: 0;
    border: 1px solid var(--blue-2);
}

.dr-4 .card-item {
    background-color: transparent;
    padding: 30px 0px 20px 20px;
    text-align: center;
}

.dr-4 .card-item .icon-cover {
    margin-left: auto;
    margin-right: auto;
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    background: var(--blue-2);
    padding: 10px;
    position: absolute;
    top: -35px;
    left: 20px;
    transition: .3s;
}

.dr-4 .card-item:hover .icon-cover {
    background: #41489c;
}

.dr-4 .card-item .icon-cover img {
    filter: var(--filter-1);
}

.dr-4 .card-item .card-item-inner {
    background: #41489c;
    padding: 50px 32px 32px;
    position: relative;
    z-index: 1;
    height: 100%;
    transition: .3s;
}

.dr-4 .card-item:hover .card-item-inner {
    background-color: var(--blue-2);
}

.dr-4 .card-item::before {
    content: '';
    width: calc(100% - 20px);
    height: calc(100% - 50px);
    position: absolute;
    left: 0px;
    top: 50px;
    border: 1px solid var(--white);
}

.dr-4 .card-item .image-cover {
    min-height: auto;
}

.dr-4 .card-item .image-cover img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    left: 0px;
    top: 0px;
}

.dr-4 .card-item .icon-cover::after {
    content: '';
    position: absolute;
    background: var(--blue-2);
    width: 14px;
    height: 35px;
    top: 0;
    right: -14px;
    -webkit-clip-path: polygon(0 0, -100% 100%, 100% 100%);
    clip-path: polygon(0 0, -100% 100%, 100% 100%);
    -webkit-transition: 0.3;
    transition: 0.3s;
}

.dr-4 .card-item:hover .icon-cover::after {
    background: #41489c;
}

.dr-4 .last-card-item {
    padding: 30px 0px 20px 20px;
}

.dr-4 .last-card-item .card-item-inner {
    padding: 20px;
}

.dr-5 .list-icon img {
    filter: var(--filter-1);
}

.dr-6-box {
    padding: 30px 30px 40px;
    background-color: var(--blue-1);
    color: var(--white);
}

.dr-6-box .dr-6-box-image {
    height: 241px;
    object-fit: cover;
}

.dr-6 .card-item {
    background-color: var(--blue-1);
    padding: 18px 18px 24px;
    color: var(--white);
    transition: .3s;
}

.dr-6 .card-item:hover {
    background-color: var(--blue-2);
}

.dr-6 .card-item:hover .icon-cover img {
    filter: var(--filter-1);
}

.dr-6 .card-item .icon-cover {
    padding: 0px;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
}

.dr-6-card-shape {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 60%;
    height: 60%;
    opacity: .1;
}

.dr-7 {
    position: relative;
}

.dr-7::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(../images/bg-1.webp);
    background-size: cover;
    opacity: .5;
}

.dr-7::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(../images/bg-2.webp);
    background-size: cover;
    opacity: .5;
}

.dr-7 svg.divider {
    position: absolute;
    top: 20px;
    filter: var(--filter-1);
    height: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
}

.nsm-1.rop-1 .position-relative {
    padding-right: 36px;
}

.nsm-1.rop-1 .shape-2-design {
    height: 100%;
    width: 40%;
}

.nsm-1.rop-1 .position-relative .shape-1 {
    width:100px;
    bottom: auto;
    top: 0px;
}

.nsm-1.rop-1 .shape-3-design {
    position: absolute;
    bottom: 0px;
    right: 12px;
    height: 40%;
    width: calc(60%);
    background-color: transparent;
    position: absolute;
    z-index: 0;
    border: 1px solid var(--blue-2);
}

.nsm-2 .card-item {
    text-align: center;
    height: 100%;
}

.nsm-2 .card-item .card-item-inner {
    background-color: #41489c;
    padding: 24px;
    padding-top: 50px;
    border-radius: 10px;
    box-shadow: 0px 10px 60px 0px rgba(255, 255, 255, 0.07);
    height: 100%;
}

.nsm-2 .card-item .icon-cover {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--blue-2);
    border-radius: 100%;
    padding: 16px;
    border: 3px solid var(--white);
}

.nsm-2 .card-item .icon-cover img {
    filter: var(--filter-1);
}

.nsm-2 .card-item * {
    position: relative;
    z-index: 1;
}

.nsm-2 .card-item::before {
    content: '';
    width: calc(100% - 80px);
    height: 100%;
    position: absolute;
    margin: 0 auto;
    top: -20px;
    border-radius: 20px;
    border: 2px dotted #ffffff;
    transform: translateX(-50%);
}

.nsm-3 .card-item {
    padding: 24px 24px 32px;
    border-radius: 12px;
}

.nsm-3 .card-item {
    /*background-color: var(--blue-2);*/
    text-align: center;
}

.nsm-3 .card-item .icon-cover {
    margin-left: auto;
    margin-right: auto;
}

.nsm-3-shape {
    width: 100%;
    height: 100%;
    opacity: 1;
    filter: var(--filter-1);
    opacity: .8;
}

.nsm-3 .card-item-inner {
    position: relative;
    z-index: 1;
}

.nsm-last .list-icon img {
    /*filter: var(--filter-1);*/
    width: 20px;
}

.nsm-last ul.list-1 li {
    gap: 10px;
}

.nsm-last li strong {
    font-size: 20px;
    display: block;
    color: var(--blue-2);
}

.nsm-6 .about-exprnc-shape-html {
    position: relative;
    height: 100%;
    padding: 20px 30px 30px;
}

.nsm-6 .about-exprnc-shape-html h3 {
    font-size: 20px;
}

.nsm-6 .about-exprnc-shape-html p {
    margin-top: 32px;
    color: var(--white);
}

.nsm-6-heading {
    position: relative;
    overflow: hidden;
}

.arrow-fade {
    width: 100%;
    height: calc(100% - 100px);
    background: url(../images/arrow-1.png) no-repeat center / contain;
    opacity: 1;
    mask-image: linear-gradient(to right, transparent 7%, black 45%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 7%, black 45%, black 100%);
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    transform: rotate(20deg);
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.legal-pages h2 {
    margin-bottom: 6px;
    font-size: 32px;
}

.legal-pages p+ul {
    margin-top: -8px;
}

.legal-pages ul+p {
    margin-top: -15px;
}

.legal-pages ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-pages ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.legal-pages stronge {
    font-weight: 500;
}

.legal-pages a {
    color: var(--blue-2);
    text-decoration: none;
}

.legal-pages ul li::marker {
    left: 0px;
    position: absolute;
}