/* reset css start */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Maven+Pro:wght@400;500;600;700&display=swap");

html {
    scroll-behavior: smooth;
}
 
body {
    font-family: "Open Sans", sans-serif;
    color: #464646;
    font-size: 1rem;
    padding: 0;
    margin: 0;
    font-weight: 400;
    position: relative;
    line-height: 1.7;
    background-color: #000;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    overflow-x: hidden;
    line-height: 1.3;
}


body.page-trns-active {
    position: relative;
}

body.page-trns-active::after {
    position: absolute;
    content: "\f110";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: #fff;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    font-size: 4.5rem;
    z-index: 999;
    animation: spinRoll 1s infinite linear;
}

body.page-trns-active::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002046;
    z-index: 99;
    opacity: 0.65;
}

@keyframes jumbo {
    from {
        background-position: 50% 50%, 50% 50%;
    }
    to {
        background-position: 350% 50%, 350% 50%;
    }
}

.jumbo {
    position: absolute;
    inset: 0;
    z-index: -1;
    --stripes: repeating-linear-gradient(
        100deg,
        #fff 0%,
        #fff 7%,
        transparent 10%,
        transparent 12%,
        #fff 16%
    );
    --stripesDark: repeating-linear-gradient(
        100deg,
        #000 0%,
        #000 7%,
        transparent 10%,
        transparent 12%,
        #000 16%
    );
    --rainbow: repeating-linear-gradient(
        100deg,
        #60a5fa 10%,
        #e879f9 15%,
        #60a5fa 20%,
        #5eead4 25%,
        #60a5fa 30%
    );
    background-image: var(--stripes), var(--rainbow);
    background-size: 300%, 200%;
    background-position: 50% 50%, 50% 50%;

    filter: blur(10px) invert(100%);

    mask-image: radial-gradient(ellipse at 100% 0%, black 40%, transparent 70%);

    pointer-events: none;
}


.jumbo::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--stripes), var(--rainbow);
    background-size: 200%, 100%;
    animation: jumbo 120s linear infinite;
    background-attachment: fixed;
    mix-blend-mode: difference;
}

.jumbo {
    background-image: var(--stripesDark), var(--rainbow);
    filter: blur(10px) opacity(50%) saturate(200%);
}
.jumbo::after {
    background-image: var(--stripesDark), var(--rainbow);
}



@-webkit-keyframes spinRoll {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinRoll {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes spinRoll {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinRoll {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

section {
    background-color: #fff;
}

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

select {
    cursor: pointer;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    cursor: pointer;
}

*:focus {
    outline: none;
}

button {
    border: none;
}

button:focus {
    outline: none;
}

span {
    display: inline-block;
}

a:hover {
    color: #4582ff;
}

/* reset css end */
/* global css strat */
.text--primary {
    color: #7367f0 !important;
}

.text--secondary {
    color: #868e96 !important;
}

.text--success {
    color: #28c76f !important;
}

.text--danger {
    color: #ea5455 !important;
}

.text--warning {
    color: #ff9f43 !important;
}

.text--info {
    color: #1e9ff2 !important;
}

.text--dark {
    color: #10163A !important;
}

.text--muted {
    color: #cccccc !important;
}

.text--base {
    color: #4582ff !important;
}

.text--dark {
    color: #373e4a !important;
}

/* background color css start */
.bg--primary {
    background-color: #7367f0 !important;
}

.bg--secondary {
    background-color: #868e96 !important;
}

.bg--success {
    background-color: #28c76f !important;
}

.bg--danger {
    background-color: #ea5455 !important;
}

.bg--warning {
    background-color: #ff9f43 !important;
}

.bg--info {
    background-color: #1e9ff2 !important;
}

.bg--dark {
    background-color: #10163A !important;
}

.bg--light {
    background-color: #eef4ff !important;
}

.bg--base {
    background-color: #4582ff !important;
}

/* background color css end */
.mb-30 {
    margin-bottom: 30px;
}

.mb-none-30 {
    margin-bottom: -30px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-150 {
    padding-top: 150px;
}

.pb-150 {
    padding-bottom: 150px;
}

.bg_img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background: none;
    background-image: none;
    background-color: white;
}

.hero.bg_img {
    background-color: black;
}

.section-shape {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 84%, 82% 95%, 48% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 84%, 82% 95%, 48% 100%, 0 100%);
}

@media (max-width: 1199px) {
    .section-shape {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 95%, 82% 98%, 48% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 95%, 82% 98%, 48% 100%, 0 100%);
    }
}

@media (max-width: 575px) {
    .section-shape {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 98%, 100% 98%, 75% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 98%, 100% 98%, 75% 100%, 0 100%);
    }
}

.section-shape-two {
    -webkit-clip-path: polygon(0 10%, 100% 5%, 100% 90%, 0% 100%);
    clip-path: polygon(0 10%, 100% 5%, 100% 90%, 0% 100%);
}

@media (max-width: 767px) {
    .section-shape-two {
        -webkit-clip-path: polygon(0 8%, 100% 5%, 100% 95%, 0% 100%);
        clip-path: polygon(0 8%, 100% 5%, 100% 95%, 0% 100%);
    }
}

@media (max-width: 575px) {
    .section-shape-two {
        -webkit-clip-path: polygon(0 3%, 100% 5%, 100% 98%, 0% 100%);
        clip-path: polygon(0 3%, 100% 5%, 100% 98%, 0% 100%);
    }
}

.section--bg {
    background-color: #F5F7FA;
}

.section--bg2 {
    background-color: #000;
}

.section-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.dark-overlay {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.dark-overlay::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: -1;
}

.dark-overlay::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    transform: translateY(-50%);
    background-image: radial-gradient(ellipse at center, rgb(45 121 203) 10%, rgba(255, 0, 0, 0) 60%);
    z-index: -1;
}

.opacity20 {
    opacity: 0.2;
}

.opacity30 {
    opacity: 0.3;
}

.opacity50 {
    opacity: 0.5;
}

.bg--one {
    background-color: #071e3e;
}

.slick-arrow {
    cursor: pointer;
}

.z-index-2 {
    z-index: 2;
}

.main-wrapper {
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 4.0625rem;
}

.section-title {
    font-size: 3rem;
}


@media (max-width: 1199px) {
    .section-title {
        font-size: 2.625rem;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle__2,
.section-title--big,
.section-subtitle {
    font-family: "Maven Pro", sans-serif;
    font-size: clamp(2rem, 9vw, 5rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(to bottom, #3d3d3d, #0a0a0a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 10px;
}

.bg-black .section-subtitle__2,
.bg-black .section-title--big,
.bg-black .section-subtitle {
    background: linear-gradient(to bottom, #fafafa, #a3a3a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle__2 {
    font-size: clamp(2rem, 9vw, 6rem);
}

.title-animation {
    background-image: linear-gradient(to right, #818cf8, #e0e7ff, #38bdf8, #e879f9, #38bdf8, #e0e7ff, #818cf8);
    background-size: 200% auto;
    animation: gradient 8s linear infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.text-big {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.section-subtitle.border-left {
    padding-left: 2.1875rem;
    position: relative;
    z-index: 1;
}

.section-subtitle.border-left::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: #4582ff;
    margin-top: -1px;
}

.feature-thumb img {
    aspect-ratio: 16/7;
    object-fit: cover;
    width: 100%;
    height: 100%;
}



body {
    --background-color: #FAFAFA;
    --text-color: #52525B;
    --card-background-color: transparent;
    --card-border-color: rgba(24, 24, 27, 0.08);
    --card-box-shadow-1: rgba(24, 24, 27, 0.02);
    --card-box-shadow-1-y: 3px;
    --card-box-shadow-1-blur: 6px;
    --card-box-shadow-2: rgba(24, 24, 27, 0.04);
    --card-box-shadow-2-y: 2px;
    --card-box-shadow-2-blur: 7px;
    --card-label-color: #18181B;
    --card-icon-color: #18181B;
    --card-icon-background-color: rgba(24, 24, 27, 0.04);
    --card-icon-border-color: rgba(24, 24, 27, 0.1);
    --card-shine-opacity: .3;
    --card-shine-gradient: conic-gradient(from 225deg at 50% 50%, rgba(16, 185, 129, 0) 0deg, #10B981 25deg, #EDFAF6 285deg, #FFFFFF 345deg, rgba(16, 185, 129, 0) 360deg);
    --card-line-color: #E9E9E7;
    --card-tile-color: #2d79cb15;
    --card-hover-border-color: rgba(24, 24, 27, 0.15);
    --card-hover-box-shadow-1: rgba(24, 24, 27, 0.05);
    --card-hover-box-shadow-1-y: 3px;
    --card-hover-box-shadow-1-blur: 6px;
    --card-hover-box-shadow-2: rgba(24, 24, 27, 0.1);
    --card-hover-box-shadow-2-y: 8px;
    --card-hover-box-shadow-2-blur: 15px;
    --card-hover-icon-color: #18181B;
    --card-hover-icon-background-color: rgba(24, 24, 27, 0.04);
    --card-hover-icon-border-color: rgba(24, 24, 27, 0.34);
    --blur-opacity: .1;
  }
.card .shine {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .section-blocks .shine:before {
    content: "";
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 55%;
    filter: blur(35px);
    opacity: var(--card-shine-opacity);
    transform: translateX(-50%);
    background-image: var(--card-shine-gradient);
  }
  .section-blocks .background {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
    mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
  }
  .section-blocks .background .tiles {
    opacity: 0;
    transition: opacity 0.25s;
  }
  .section-blocks .background .tiles .tile {
    position: absolute;
    background-color: var(--card-tile-color);
    -webkit-animation-duration: 8s;
            animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    opacity: 0;
  }
  .section-blocks .background .tiles .tile.tile-4, .section-blocks .background .tiles .tile.tile-6, .section-blocks .background .tiles .tile.tile-10 {
    -webkit-animation-delay: -2s;
            animation-delay: -2s;
  }
  .section-blocks .background .tiles .tile.tile-3, .section-blocks .background .tiles .tile.tile-5, .section-blocks .background .tiles .tile.tile-8 {
    -webkit-animation-delay: -4s;
            animation-delay: -4s;
  }
  .section-blocks .background .tiles .tile.tile-2, .section-blocks .background .tiles .tile.tile-9 {
    -webkit-animation-delay: -6s;
            animation-delay: -6s;
  }
  .section-blocks .background .tiles .tile.tile-1 {
    top: 0;
    left: 0;
    height: 10%;
    width: 22.5%;
  }
  .section-blocks .background .tiles .tile.tile-2 {
    top: 0;
    left: 22.5%;
    height: 10%;
    width: 27.5%;
  }
  .section-blocks .background .tiles .tile.tile-3 {
    top: 0;
    left: 50%;
    height: 10%;
    width: 27.5%;
  }
  .section-blocks .background .tiles .tile.tile-4 {
    top: 0;
    left: 77.5%;
    height: 10%;
    width: 22.5%;
  }
  .section-blocks .background .tiles .tile.tile-5 {
    top: 10%;
    left: 0;
    height: 22.5%;
    width: 22.5%;
  }
  .section-blocks .background .tiles .tile.tile-6 {
    top: 10%;
    left: 22.5%;
    height: 22.5%;
    width: 27.5%;
  }
  .section-blocks .background .tiles .tile.tile-7 {
    top: 10%;
    left: 50%;
    height: 22.5%;
    width: 27.5%;
  }
  .section-blocks .background .tiles .tile.tile-8 {
    top: 10%;
    left: 77.5%;
    height: 22.5%;
    width: 22.5%;
  }
  .section-blocks .background .tiles .tile.tile-9 {
    top: 32.5%;
    left: 50%;
    height: 22.5%;
    width: 27.5%;
  }
  .section-blocks .background .tiles .tile.tile-10 {
    top: 32.5%;
    left: 77.5%;
    height: 22.5%;
    width: 22.5%;
  }
  @-webkit-keyframes tile {
    0%, 12.5%, 100% {
      opacity: 1;
    }
    25%, 82.5% {
      opacity: 0;
    }
  }
  @keyframes tile {
    0%, 12.5%, 100% {
      opacity: 1;
    }
    25%, 82.5% {
      opacity: 0;
    }
  }
  .section-blocks .background .line {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s;
  }
  .section-blocks .background .line:before, .section-blocks .background .line:after {
    content: "";
    position: absolute;
    background-color: var(--card-line-color);
    transition: transform 0.35s;
  }
  .section-blocks .background .line:before {
    left: 0;
    right: 0;
    height: 1px;
    transform-origin: 0 50%;
    transform: scaleX(0);
  }
  .section-blocks .background .line:after {
    top: 0;
    bottom: 0;
    width: 1px;
    transform-origin: 50% 0;
    transform: scaleY(0);
  }
  .section-blocks .background .line.line-1:before {
    top: 10%;
  }
  .section-blocks .background .line.line-1:after {
    left: 22.5%;
  }
  .section-blocks .background .line.line-1:before, .section-blocks .background .line.line-1:after {
    transition-delay: 0.3s;
  }
  .section-blocks .background .line.line-2:before {
    top: 32.5%;
  }
  .section-blocks .background .line.line-2:after {
    left: 50%;
  }
  .section-blocks .background .line.line-2:before, .section-blocks .background .line.line-2:after {
    transition-delay: 0.15s;
  }
  .section-blocks .background .line.line-3:before {
    top: 55%;
  }
  .section-blocks .background .line.line-3:after {
    right: 22.5%;
  }
  /* .section-blocks {
    box-shadow: 0px 3px 6px var(--card-hover-box-shadow-1), 0px var(--card-hover-box-shadow-2-y) var(--card-hover-box-shadow-2-blur) var(--card-hover-box-shadow-2), 0 0 0 1px var(--card-hover-border-color);
  } */
  .section-blocks .icon::after {
    background-color: var(--card-hover-icon-background-color);
    border-color: var(--card-hover-icon-border-color);
  }
  .section-blocks .icon svg {
    color: var(--card-hover-icon-color);
  }
  .section-blocks .shine {
    opacity: 1;
    transition-duration: 0.5s;
    transition-delay: 0s;
  }
  .section-blocks .background .tiles {
    opacity: 1;
    transition-delay: 0.25s;
  }
  .section-blocks .background .tiles .tile {
    -webkit-animation-name: tile;
            animation-name: tile;
  }
  .section-blocks .background .line {
    opacity: 1;
    transition-duration: 0.15s;
  }
  .section-blocks .background .line:before {
    transform: scaleX(1);
  }
  .section-blocks .background .line:after {
    transform: scaleY(1);
  }
  .section-blocks .background .line.line-1:before, .section-blocks .background .line.line-1:after {
    transition-delay: 0s;
  }
  .section-blocks .background .line.line-2:before, .section-blocks .background .line.line-2:after {
    transition-delay: 0.15s;
  }
  .section-blocks .background .line.line-3:before, .section-blocks .background .line.line-3:after {
    transition-delay: 0.3s;
  }

  .z-index-3 {
    z-index: 3;
  }

a.text-white:hover {
    color: #4582ff !important;
}

.text--link {
    text-decoration: underline;
}

.text--link:hover {
    text-decoration: underline;
}

.has--link {
    position: relative;
}

.has--link .item--link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.custom--dropdown .dropdown-toggle.no-arrow::after {
    display: none;
}

.custom--dropdown .dropdown-toggle::after {
    content: "\f107";
    border: none;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
}

.custom--dropdown .dropdown-menu {
    border-color: #e5e5e5;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.custom--dropdown .dropdown-menu li {
    border-bottom: 1px dashed #e5e5e5;
}

.custom--dropdown .dropdown-menu li:last-child {
    border-bottom: none;
}

.custom--dropdown .dropdown-menu li .dropdown-item {
    color: #464646;
    font-size: 0.875rem;
}

.custom--dropdown .dropdown-menu li .dropdown-item:hover {
    color: #4582ff;
    background-color: rgba(69, 130, 255, 0.05);
}

.custom--accordion .accordion-item+.accordion-item {
    margin-top: 1.25rem;
}

.custom--accordion .accordion-item {
    border: 1px solid rgba(69, 130, 255, 0.5);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.custom--accordion .accordion-item:first-child .accordion-button {
    border-top: none;
}

.custom--accordion .accordion-item:last-child .accordion-button {
    border-bottom: none;
}

.custom--accordion .accordion-button {
    padding: 1.25rem 1.5625rem;
    background-color: rgba(69, 130, 255, 0.05);
    font-size: 1.125rem;
    position: relative;
    text-align: left;
}

.custom--accordion .accordion-button::after {
    position: absolute;
    top: 1.25rem;
    right: 0.8125rem;
    font-size: 1.0625rem;
    content: '\f107';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    background-image: none;
    color: #000;
}

.custom--accordion .accordion-button:not(.collapsed) {
    background-color: #4582ff;
    color: #fff;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
    color: #fff;
}

.custom--accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
    border-color: transparent;
}

.custom--accordion .accordion-body {
    padding: 1.25rem 1.5625rem;
}

.page-breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0.9375rem;
}

.page-breadcrumb li {
    color: rgba(255, 255, 255, 0.8);
    text-transform: capitalize;
}

.page-breadcrumb li::after {
    content: '-';
    color: #ffffff;
    margin: 0 0.3125rem;
}

.page-breadcrumb li:first-child::before {
    content: "\f015";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #4582ff;
    margin-right: 0.375rem;
}

.page-breadcrumb li:last-child::after {
    display: none;
}

.page-breadcrumb li a {
    color: #ffffff;
    text-transform: capitalize;
}

.page-breadcrumb li a:hover {
    color: #4582ff;
}

.cmn-list li+li {
    margin-top: 0.9375rem;
}

.cmn-list li {
    position: relative;
    padding-left: 2.1875rem;
}

.cmn-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    content: "\f058";
    font-size: 1.75rem;
    color: #4582ff;
    margin-right: 0.5rem;
    line-height: 1;
}

.cmn-list-two li {
    padding: 0.375rem 0.9375rem;
    font-size: 0.875rem;
}

.cmn-list-two li:nth-child(even) {
    background-color: #EBF5F5;
}

.number-list {
    list-style: decimal;
    padding-left: 1.125rem;
}

.number-list li+li {
    margin-top: 0.625rem;
}

.disc-list li+li {
    margin-top: 0.625rem;
}

.disc-list li {
    position: relative;
    padding-left: 0.9375rem;
}

.disc-list li::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 0.375rem;
    height: 0.375rem;
    margin-top: -0.1875rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #bdbdbd;
}

.caption-list li {
    display: flex;
    flex-wrap: wrap;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px dashed #e5e5e5;
}

.caption-list li:first-child {
    padding-top: 0;
}

.caption-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.caption-list li .caption {
    width: 30%;
    font-family: "Maven Pro", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
}

@media (max-width: 480px) {
    .caption-list li .caption {
        width: 35%;
    }
}

.caption-list li .caption::after {
    position: absolute;
    content: ':';
    top: 0;
    right: 0;
}

.caption-list li .value {
    width: 70%;
    padding-left: 0.9375rem;
}

@media (max-width: 480px) {
    .caption-list li .value {
        width: 65%;
    }
}

.caption-list-two {
    padding: 0.625rem 0.9375rem;
    background-color: rgba(69, 130, 255, 0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.caption-list-two li {
    font-family: "Maven Pro", sans-serif;
    font-weight: 500;
    color: #373e4a;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px dashed #cccccc;
}

.caption-list-two li:first-child {
    padding-top: 0;
}

.caption-list-two li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.caption-list-two li .caption {
    width: 20%;
    position: relative;
}

.caption-list-two li .caption::after {
    position: absolute;
    content: ':';
    top: 0;
    right: 0;
}

.caption-list-two li .value {
    width: 80%;
    text-align: right;
}

body,
.btn--base.btn--custom,
.custom--form-group .form--control~label,
.header .main-menu li.menu_has_children>a::before,
.header .main-menu li .sub-menu,
.header .main-menu li .sub-menu li a,
.header .main-menu li .sub-menu li a::before,
.service-card,
.choose-card,
.user-account-check label,
.user-account-check label i,
.footer-contact-card .icon,
.footer-contact-card .icon::after {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.object-fit--cover {
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.pagination {
    margin: -0.3125rem -0.4375rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination .page-item {
    margin: 0.3125rem 0.4375rem;
}

.pagination .page-item.active .page-link {
    background-color: #4582ff;
    color: #fff;
}

.pagination .page-item .page-link {
    background-color: #e4e4e4;
    width: 2.8125rem;
    height: 2.8125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #777;
}

.pagination .page-item .page-link:hover {
    background-color: #4582ff;
    border-color: #4582ff;
    color: #fff;
}

.pagination-md .page-item .page-link {
    width: 2.5rem;
    height: 2.5rem;
}

.pagination-sm .page-item .page-link {
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 0.875rem;
}

.video--btn {
    width: 7.5rem;
    height: 5.625rem;
    background-color: #4582ff;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0;
    font-size: 2.625rem;
    border: 4px solid #fff;
}

.video--btn:hover {
    color: #fff;
}

.shake {
    animation: shake 0.5s 1 linear;
}

@-webkit-keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@-moz-keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@-ms-keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

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

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-moz-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-ms-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* global css end */
/* preloader css start */
.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #4275c7;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  .loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-left: 4px solid #0e4cb1;
    border-bottom: 4px solid transparent;
    animation: rotation 0.5s linear infinite reverse;
  }
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 

.preloader {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    background: white;
    text-align: center;
}

@media (prefers-color-scheme: dark) {
    body .preloader .animated-preloader,
    .preloader {
      background: #000;
    }
  }

.preloader .preloader-container {
    display: inline-block;
    position: relative;
}


/* preloader css end */
h1 {
    font-size: 3.875rem;
}

h2 {
    font-size: 2rem;
}

@media (max-width: 991px) {
    h2 {
        font-size: 1.875rem;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 1.75rem;
    }
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.375rem;
}

@media (max-width: 767px) {
    h4 {
        font-size: 1.25rem;
    }
}

h5 {
    font-size: 1.25rem;
}

@media (max-width: 767px) {
    h5 {
        font-size: 1.125rem;
    }
}

h6 {
    font-size: 1.125rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Maven Pro", sans-serif;
    color: #373e4a;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    word-break: break-word;
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
    font-family: "Maven Pro", sans-serif;
    color: #373e4a;
    font-weight: 500;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 1.2;
    word-break: break-word;
}

p,
li,
span {
    margin: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

a:hover {
    text-decoration: none;
}

.font-size--18px {
    font-size: 1.125rem !important;
}

.font-size--16px {
    font-size: 1rem !important;
}

.font-size--14px {
    font-size: 0.875rem !important;
}

.font-size--12px {
    font-size: 0.75rem !important;
}

/* button css start */
button:focus {
    outline: none;
}

/* [class*="btn--"]:not(.btn--link):not(.btn--light) {
    color: #fff;
} */

.btn {
    padding: .5rem 1.5rem;
    background-image: linear-gradient(to right, #0e4cb1 0%, #639ef5 51%, #4275c7 100%);
    background-size: 200% auto;
    background-position: left top;
    color: white;
    transition: all .5s ease-in-out;
    font-size: clamp(1.2rem,2vw,1.4rem);
    border-radius: 99px;
    border: none;
}

.btn:hover {
    color:white;
    background-position: right bottom;
}

.btn:focus {
    box-shadow: none;
}

.btn--primary {
    background-color: #7367f0;
}

.btn--primary:hover {
    background-color: #5e50ee;
}

.btn--secondary {
    background-color: #868e96;
}

.btn--secondary:hover {
    background-color: #78818a;
}

.btn--success {
    background-color: #28c76f;
}

.btn--success:hover {
    background-color: #24b263;
}

.btn--danger {
    background-color: #ea5455;
}

.btn--danger:hover {
    background-color: #e73d3e;
}

.btn--warning {
    background-color: #ff9f43;
}

.btn--warning:hover {
    background-color: #ff922a;
}

.btn--info {
    background-color: #1e9ff2;
}

.btn--info:hover {
    background-color: #0d93e9;
}

.btn--light {
    background-color: #eef4ff;
}

.btn--light:hover {
    background-color: #d5e4ff;
}

.btn--dark {
    background-color: #10163A;
    color: #fff;
}

.btn--dark:hover {
    background-color: #0a0e26;
    color: #fff;
}

.btn--link {
    color: #7367f0;
}
/* 
.btn--base {
    background-color: #4582ff;
    color: #fff;
}

.btn--base:hover {
    background-color: #2c71ff;
    color: #fff;
} */

/* .btn--base.btn--custom {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: -6px;
}

.btn--base.btn--custom:hover {
    outline-offset: 0;
    outline: 2px solid rgba(255, 255, 255, 0);
} */

.text-btn {
    padding: 0;
    color: #464646;
    background-color: transparent;
}

.arrow-btn {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #464646;
    display: flex;
    flex-wrap: wrap;
    min-height: 4.375rem;
}

.arrow-btn i {
    width: 95px;
    font-size: calc((5.9375rem / 2) - 0.75rem);
    -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 20% 50%, 0% 0%);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 20% 50%, 0% 0%);
    background-color: #4582ff;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.arrow-btn span {
    width: calc(100% - 95px);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: "Maven Pro", sans-serif;
    background-color: #fff;
    z-index: 1;
    position: relative;
    padding: 0.625rem;
}

.arrow-btn span::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: calc(100% + 50px);
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 3px #2f2f2f1f;
    border: 1px solid #d6d6d6;
    left: -50px;
    z-index: -1;
    border-radius: 0 5px 5px 0;
}

.btn-outline--primary {
    color: #7367f0;
    border-color: #7367f0;
}

.btn-outline--primary:hover {
    background-color: #7367f0;
    color: #ffffff;
}

.btn-outline--secondary {
    color: #868e96;
    border-color: #868e96;
}

.btn-outline--secondary:hover {
    background-color: #868e96;
    color: #ffffff;
}

.btn-outline--success {
    color: #28c76f;
    border-color: #28c76f;
}

.btn-outline--success:hover {
    background-color: #28c76f;
    color: #ffffff;
}

.btn-outline--danger {
    color: #ea5455;
    border-color: #ea5455;
}

.btn-outline--danger:hover {
    background-color: #ea5455;
    color: #ffffff;
}

.btn-outline--warning {
    color: #ff9f43;
    border-color: #ff9f43;
}

.btn-outline--warning:hover {
    background-color: #ff9f43;
    color: #ffffff;
}

.btn-outline--info {
    color: #1e9ff2;
    border-color: #1e9ff2;
}

.btn-outline--info:hover {
    background-color: #1e9ff2;
    color: #ffffff;
}

.btn-outline--light {
    color: #eef4ff;
    border-color: #eef4ff;
}

.btn-outline--light:hover {
    background-color: #eef4ff;
    color: #ffffff;
}

.btn-outline--dark {
    color: #10163A;
    border-color: #10163A;
}

.btn-outline--dark:hover {
    background-color: #10163A;
    color: #ffffff;
}

.btn-outline--base {
    color: #4582ff;
    border: 1px solid #4582ff;
}

.btn-outline--base:hover {
    background-color: #4582ff;
    color: #fff;
}

.btn-shadow--primary {
    box-shadow: 0 0 6px 1px rgba(115, 103, 240, 0.35);
}

.btn-shadow--secondary {
    box-shadow: 0 0 6px 1px rgba(134, 142, 150, 0.35);
}

.btn-shadow--success {
    box-shadow: 0 0 6px 1px rgba(40, 199, 111, 0.35);
}

.btn-shadow--danger {
    box-shadow: 0 0 6px 1px rgba(234, 84, 85, 0.35);
}

.btn-shadow--warning {
    box-shadow: 0 0 6px 1px rgba(255, 159, 67, 0.35);
}

.btn-shadow--info {
    box-shadow: 0 0 6px 1px rgba(30, 159, 242, 0.35);
}

.btn-shadow--light {
    box-shadow: 0 0 6px 1px rgba(238, 244, 255, 0.35);
}

.btn-shadow--dark {
    box-shadow: 0 0 6px 1px rgba(16, 22, 58, 0.35);
}

.btn-shadow--base {
    box-shadow: 0 0 6px 1px rgba(69, 130, 255, 0.35);
}

.btn--capsule {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

.icon-btn {
    width: 1.5625rem;
    height: 1.5625rem;
    background-color: #4582ff;
    color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.icon-btn:hover {
    color: #fff;
}

.video-btn {
    display: inline-flex;
    align-items: center;
}

.video-btn .icon {
    width: 3.75rem;
    height: 3.75rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #1250b4;
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: calc(3.75rem / 2);
    position: relative;
    z-index: 1;
}

.video-btn .icon::before,
.video-btn .icon::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 74px;
    background-color: #4582ff;
    opacity: 0.15;
    z-index: -1;
}

.video-btn .icon::after {
    -webkit-animation: outer-ripple 2000ms linear infinite;
    -moz-animation: outer-ripple 2000ms linear infinite;
    animation: outer-ripple 2000ms linear infinite;
}

.video-btn .icon::before {
    -webkit-animation: inner-ripple 2000ms linear infinite;
    -moz-animation: inner-ripple 2000ms linear infinite;
    animation: inner-ripple 2000ms linear infinite;
}

.video-btn span {
    margin-left: 10px;
}

.video-btn.video-btn--lg .icon {
    width: 5.625rem;
    height: 5.625rem;
    font-size: calc(5.625rem / 2);
}

@-webkit-keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-filter: alpha(opacity=50);
    }

    80% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }

    100% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }
}

@-moz-keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-filter: alpha(opacity=50);
    }

    80% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }

    100% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }
}

@-ms-keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-filter: alpha(opacity=50);
    }

    80% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }

    100% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }
}

@keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-filter: alpha(opacity=50);
    }

    80% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }

    100% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }
}

@-webkit-keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

@-moz-keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

@-ms-keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

@keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

.btn--group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -0.625rem;
    margin-right: -0.625rem;
}

.btn--group *[class*="btn"] {
    margin: 0.3125rem 0.625rem;
    align-items: center;
}

.btn--group *[class*="btn"].d-flex {
    padding: 0.5rem 2.1875rem;
}

.btn--group.style--two {
    margin-left: -0.3125rem;
    margin-right: -0.3125rem;
}

.btn--group.style--two *[class*="btn"] {
    margin: 0.1875rem 0.3125rem;
}

[class*="btn"].btn-md {
    padding: 0.625rem 1.25rem;
}

[class*="btn"].btn-sm {
    padding: 0.375rem 0.625rem;
    font-size: 1rem;
}

/* button css end */
.badge--primary {
    background-color: rgba(115, 103, 240, 0.15);
    border: 1px solid #7367f0;
    color: #7367f0;
}

.badge--secondary {
    background-color: rgba(134, 142, 150, 0.15);
    border: 1px solid #868e96;
    color: #868e96;
}

.badge--success {
    background-color: rgba(40, 199, 111, 0.15);
    border: 1px solid #28c76f;
    color: #28c76f;
}

.badge--danger {
    background-color: rgba(234, 84, 85, 0.15);
    border: 1px solid #ea5455;
    color: #ea5455;
}

.badge--warning {
    background-color: rgba(255, 159, 67, 0.15);
    border: 1px solid #ff9f43;
    color: #ff9f43;
}

.badge--info {
    background-color: rgba(30, 159, 242, 0.15);
    border: 1px solid #1e9ff2;
    color: #1e9ff2;
}

.badge--light {
    background-color: rgba(238, 244, 255, 0.15);
    border: 1px solid #eef4ff;
    color: #eef4ff;
}

.badge--dark {
    background-color: rgba(16, 22, 58, 0.15);
    border: 1px solid #10163A;
    color: #10163A;
}

.badge--base {
    background-color: rgba(69, 130, 255, 0.15);
    border: 1px solid #4582ff;
    color: #4582ff;
}

/* table css start */
.custom--table {
    background-color: #fff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.custom--table.white-space-nowrap th {
    white-space: nowrap;
}

.custom--table thead tr {
    box-shadow: 0 5px 10px 2px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.custom--table thead th {
    border-top: none;
    padding: 0.625rem 1.25rem;
    color: #fff;
    background-color: #002046;
    border: none;
    font-size: 0.8125rem;
    text-transform: uppercase;
    font-weight: 700;
}

.custom--table thead th:first-child {
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
}

.custom--table thead th:last-child {
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
}

.custom--table tbody td {
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 0.9375rem 1.25rem;
    color: #464646;
    vertical-align: middle;
    font-size: 0.875rem;
}

.custom--table tbody tr {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.custom--table tbody tr:nth-child(even) {
    background-color: #afb1b50d;
}

.custom--table tbody tr:last-child td {
    border-bottom: none;
}

[data-label] {
    position: relative;
}

[data-label]::before {
    position: absolute;
    content: attr(data-label);
    font-weight: 700;
    color: #000000;
    top: 0;
    left: 0;
    padding: 0.8125rem 0.9375rem;
    display: none;
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .table-responsive--md thead {
        display: none;
    }

    .table-responsive--md tbody tr:nth-child(odd) {
        background-color: aliceblue;
    }

    .table-responsive--md tr th,
    .table-responsive--md tr td {
        display: block;
        padding-left: 45% !important;
        text-align: right !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .table-responsive--md tr th:first-child,
    .table-responsive--md tr td:first-child {
        border-top: none !important;
    }

    .table-responsive--md [data-label]::before {
        display: block;
    }
}

@media (max-width: 767px) {
    .table-responsive--sm thead {
        display: none;
    }

    .table-responsive--sm tbody tr:nth-child(odd) {
        background-color: aliceblue;
    }

    .table-responsive--sm tr th,
    .table-responsive--sm tr td {
        display: block;
        padding-left: 45% !important;
        text-align: right !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .table-responsive--sm tr th:first-child,
    .table-responsive--sm tr td:first-child {
        border-top: none !important;
    }

    .table-responsive--sm [data-label]::before {
        display: block;
    }
}

@media (max-width: 1199px) {

    *[class*="table-responsive--"].data-label--none tr th,
    *[class*="table-responsive--"].data-label--none tr td {
        padding-left: .75rem;
    }
}

/* table css end */
/* form css start */
.form-group {
    margin-bottom: 1.25rem;
}

.form--control {
    padding: 0.625rem 1.25rem;
    border: 1px solid #e3e3e3 !important;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    color: #000;
    height: 3.125rem;
}

.form--control:focus {
    border-color: #bfbcbc !important;
    transition: all .3s;
}

.form--control[readonly],
.form--control[disabled] {
    background-color: #f5f5f5;
    cursor: no-drop;
}

.form--control.style--two {
    border-width: 0 0 1px 0;
    padding: 0.625rem 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-family: "Maven Pro", sans-serif;
    border-bottom-color: #999999;
}

.form--control.style--two:focus {
    box-shadow: none;
}

.custom--form-group {
    position: relative;
}

.custom--form-group .form--control {
    border-color: #e5e5e5;
    border-width: 0 0 1px 0;
    padding: 0.625rem 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.custom--form-group .form--control:focus,
.custom--form-group .form--control.hascontent {
    box-shadow: none;
}

.custom--form-group .form--control:focus~label,
.custom--form-group .form--control.hascontent~label {
    top: -5px;
    font-size: 0.75rem;
}

.custom--form-group .form--control~label {
    color: #535353;
    font-size: 0.8125rem;
    font-weight: 400;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 1;
}

.select {
    padding: 0.625rem 1.25rem;
    width: 100%;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    color: #464646;
    background-color: #fff;
    height: 3.125rem;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.select option {
    padding: 0.625rem 0;
    display: block;
    border-top: 1px solid #e5e5e5;
}

.select.style--trans {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.select.style--trans option {
    color: #363636;
}

.select.select-sm {
    height: 1.875rem;
    font-size: 0.875rem;
    padding: 0.3125rem;
}

textarea {
    min-height: 9.375rem !important;
    resize: none;
    width: 100%;
}

label {
    color: #535353;
    margin-bottom: 0.625rem;
    font-family: "Maven Pro", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
}

.input-group>.form--control,
.input-group>.select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.custom-radio {
    position: relative;
}

.custom-radio input[type=radio] {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    cursor: pointer;
}

.custom-radio input[type=radio]:checked~label::before {
    border-width: 2px;
    border-color: #4582ff;
}

.custom-radio input[type=radio]:checked~label::after {
    opacity: 1;
}

.custom-radio label {
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
}

.custom-radio label::before {
    position: absolute;
    content: '';
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #888888;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.custom-radio label::after {
    position: absolute;
    content: '';
    top: 7px;
    left: 4px;
    width: 7px;
    height: 7px;
    background-color: #4582ff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.wrong-info .form--control {
    border-color: #ea5455 !important;
    box-shadow: 0 0 6px 1px rgba(234, 84, 85, 0.3) !important;
}

/* form css end*/
/* card css start */
.custom--card {
    background-color: #fff;
    box-shadow: none;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.custom--card .card-header {
    background-color: #4582ff08;
}

.custom--card .card-body {
    padding: 1.25rem;
}

.card {
    border-width: 2px;
}

.card.style--two {
    background-color: transparent;
}

.card.style--two .card-header {
    padding: 0.9375rem 1.5625rem;
    background-color: transparent;
}

/* card css end */
/* modal css start */
.modal {
    z-index: 999999;
}

/* modal css end */
/* header start */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: transparent;
    backdrop-filter: blur(10px);
}

.header.menu-fixed .header__top {
    display: none;
}

.header.menu-fixed .header__bottom {
    background-color: #002046e8;
    border-radius: 38px;
}

header.menu-fixed:has(.show) {
    top:0;
}

.header.menu-fixed .header__bottom:has(.show) {
    border-radius: 0 0 1rem 1rem;
}

header.menu-fixed {
    max-width: 1320px;
    margin: 0 auto;
    top:10px;
    right: 0;
    border-radius: 9999px;
}

.header__top {
    padding: 0.625rem 3.125rem;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 2;
    position: relative;
}

@media (max-width: 480px) {
    .header__top {
        padding: 0.5rem 0.9375rem;
    }
}

.header__bottom {
    background-color: rgba(0, 32, 70, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: none;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .header__bottom {
        padding: 0.625rem 0;
    }
}

.header .site-logo img {
    width: 100px;
}

@media (max-width: 1199px) {
    .header .site-logo img {
        max-width: 5.375rem;
    }
}

.header .main-menu {
    margin-left: 4.375rem;
}

@media (max-width: 1199px) {
    .header .main-menu {
        margin-left: 0;
        padding: 0.9375rem 0;
    }
}

.header .main-menu li {
    position: relative;
}

@media (max-width: 1199px) {
    .header .main-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

.header .main-menu li:last-child a {
    padding-right: 0;
}

.header .main-menu li.menu_has_children {
    position: relative;
}

.header .main-menu li.menu_has_children.open .sub-menu {
    display: block;
}

.header .main-menu li.menu_has_children>a {
    padding-right: 1.5625rem;
}

@media (max-width: 1199px) {
    .header .main-menu li.menu_has_children>a {
        display: block;
    }
}

.header .main-menu li.menu_has_children>a::before {
    position: absolute;
    content: "\f067";
    font-family: "Line Awesome Free";
    font-weight: 900;
    top: 30px;
    right: 0;
    color: #ffffff;
}

@media (max-width: 1199px) {
    .header .main-menu li.menu_has_children>a::before {
        display: block;
        top: 0.5625rem;
    }
}

.header .main-menu li.menu_has_children:hover>a::before {
    content: "\f068";
    color: #4582ff;
}

.header .main-menu li a {
    font-family: "Maven Pro", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    padding: 1.2rem 0.9375rem 1.2rem 0;
    font-size: 1rem;
    color: #fff;
}

@media (max-width: 1199px) {
    .header .main-menu li a {
        color: #ffffff;
        padding: 0.5rem 0;
        display: block;
    }
}

.header .main-menu li a:hover,
.header .main-menu li a:focus {
    color: #4582ff;
}

.header .main-menu li .sub-menu {
    position: absolute;
    width: 220px;
    top: 105%;
    left: 0;
    z-index: 9999;
    background-color: #fff;
    padding: 0.625rem 0;
    -webkit-box-shadow: 0px 18px 54px -8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 25px 2px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    border: 2px solid #e5e5e5;
}

@media (max-width: 1199px) {
    .header .main-menu li .sub-menu {
        opacity: 1;
        visibility: visible;
        display: none;
        position: static;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        width: 100%;
        background-color: #002046;
        border: none;
    }
}

.header .main-menu li .sub-menu::before {
    position: absolute;
    content: '';
    top: -19px;
    left: 20px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

@media (max-width: 1199px) {
    .header .main-menu li .sub-menu::before {
        display: none;
    }
}

.header .main-menu li .sub-menu li {
    border-bottom: 1px dashed #e5e5e5;
}

@media (max-width: 1199px) {
    .header .main-menu li .sub-menu li {
        border-color: rgba(255, 255, 255, 0.15);
    }
}

.header .main-menu li .sub-menu li:last-child {
    border-bottom: none;
}

.header .main-menu li .sub-menu li a {
    padding: 0.5rem 1.5625rem;
    display: block;
    color: #464646;
    position: relative;
    font-size: 0.9375rem;
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .header .main-menu li .sub-menu li a {
        color: #fff;
    }
}

.header .main-menu li .sub-menu li a::before {
    position: absolute;
    content: '';
    top: 0;
    left: -0.25rem;
    width: 0.25rem;
    height: 100%;
    background-color: #4582ff;
    opacity: 0;
}

.header .main-menu li .sub-menu li a:hover {
    background-color: rgba(69, 130, 255, 0.05);
    color: #4582ff;
}

.header .main-menu li .sub-menu li a:hover::before {
    opacity: 1;
    left: 0;
}

.header .main-menu li .sub-menu li+li {
    margin-left: 0;
}

.header .main-menu li:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.header .main-menu li+li {
    margin-left: 1.25rem;
}

@media (max-width: 1399px) {
    .header .main-menu li+li {
        margin-left: .25rem;
    }
}

@media (max-width: 1199px) {
    .header .main-menu li+li {
        margin-left: 0;
    }
}

.header .nav-right {
    padding-left: 3.125rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 1199px) {
    .header .nav-right {
        padding-left: 0;
    }
}

.header-info-list {
    margin: -0.1875rem -0.625rem;
}

.header-info-list li {
    padding: 0.1875rem 0.625rem;
}

.header-info-list li a {
    font-size: 0.875rem;
    color: #fff;
}

.header-info-list li a i {
    font-size: 18px;
}

.header-info-list li a:hover {
    color: #4582ff;
}

.social-links {
    margin: -0.1875rem -0.3125rem;
}

.social-links li {
    margin: 0.1875rem 0.3125rem;
}

.social-links.style--white li a {
    color: #fff;
}

@media (max-width: 1199px) {
    .navbar-collapse {
        padding: 0 1.875rem 1.25rem 1.875rem;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        max-height: 20rem;
        overflow: auto;
    }
}

.navbar-toggler {
    padding: 0;
    border: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.menu-toggle {
    margin: 10px 0;
    position: relative;
    display: block;
    width: 2.1875rem;
    height: 1.25rem;
    cursor: pointer;
    background: transparent;
    border-top: 2px solid;
    border-bottom: 2px solid;
    color: #ffffff;
    font-size: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.menu-toggle:before,
.menu-toggle:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: -webkit-transform 0.25s ease-in-out;
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    -o-transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    -moz-transition: -webkit-transform 0.25s ease-in-out;
    -ms-transition: -webkit-transform 0.25s ease-in-out;
}

@media (max-width: 1199px) {

    .menu-toggle:before,
    .menu-toggle:after {
        background-color: #ffffff;
    }
}

.navbar-toggler[aria-expanded="true"] span {
    border-color: transparent;
}

.navbar-toggler[aria-expanded="true"] span:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] span.menu-toggle:hover {
    color: #ffffff;
}

@media (max-width: 1199px) {
    .navbar-toggler[aria-expanded="true"] span.menu-toggle:hover {
        color: #ffffff;
    }
}

.navbar-toggler[aria-expanded="true"] span {
    border-color: transparent;
}

.navbar-toggler[aria-expanded="true"] span:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* header end */
/* hero section css start */
.hero {
    padding-top: 18.75rem;
    padding-bottom: 15.625rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
}

@media (max-width: 1199px) {
    .hero {
        padding-top: 14.375rem;
        padding-bottom: 8.75rem;
    }
}

@media (max-width: 420px) {
    .hero {
        padding-top: 18.75rem;
    }
}

.hero::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #002046;
    background: -webkit-linear-gradient(to right, rgba(0, 32, 70, 0.65), rgba(0, 32, 70, 0.01));
    background: linear-gradient(to right, rgba(0, 32, 70, 0.65), rgba(0, 32, 70, 0.01));
    z-index: -1;
}

.hero__subtitle {
    color: #fff;
    position: relative;
    width: max-content;
    padding: 0 2.1875rem;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #fff 33%, #0D61BC 66%, #8AA9D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 25px;
    height: 1px;
    background-color: #4582ff;
}

.hero__subtitle::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    width: 25px;
    height: 1px;
    background-color: #4582ff;
}

.hero__title {
    font-size: 4.5rem;
    line-height: 1;
    color: #d5d5ff;
    font-weight: 700;
    text-transform: uppercase;
    mix-blend-mode: difference;
}

@media (max-width: 1399px) {
    .hero__title {
        font-size: 4.125rem;
    }
}

@media (max-width: 1199px) {
    .hero__title {
        font-size: 3.375rem;
    }
}

@media (max-width: 575px) {
    .hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.25rem;
    }
}

.hero__des {
    font-size: 1.125rem;
    color: #fff;
}

@media (max-width: 1199px) {
    .hero__des {
        font-size: 1rem;
    }
}

/* hero section css end */
/* inner-hero css start */
.inner-hero {
    padding-top: 13.75rem;
    padding-bottom: 5rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .inner-hero {
        padding-top: 11.875rem;
    }
}

@media (max-width: 400px) {
    .inner-hero {
        padding-top: 15.625rem;
    }
}

.inner-hero::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002046;
    opacity: 0.7;
    z-index: -1;
}

.page-title {
    font-size: 2.625rem;
}

@media (max-width: 1199px) {
    .page-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }
}

.bg-grid-pattern {
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 800 800%22%3E%3Cg stroke-width=%223.5%22 stroke=%22hsla(215, 16%25, 47%25, 1.00)%22 fill=%22none%22%3E%3Crect width=%22400%22 height=%22400%22 x=%220%22 y=%220%22 opacity=%220.15%22%3E%3C/rect%3E%3Ccircle r=%2210.85%22 cx=%220%22 cy=%220%22 fill=%22hsla(215, 16%25, 47%25, 1.00)%22 stroke=%22none%22%3E%3C/circle%3E%3Crect width=%22400%22 height=%22400%22 x=%22400%22 y=%220%22 opacity=%220.15%22%3E%3C/rect%3E%3Ccircle r=%2210.85%22 cx=%22400%22 cy=%220%22 fill=%22hsla(215, 16%25, 47%25, 1.00)%22 stroke=%22none%22%3E%3C/circle%3E%3Crect width=%22400%22 height=%22400%22 x=%22800%22 y=%220%22 opacity=%220.15%22%3E%3C/rect%3E%3Ccircle r=%2210.85%22 cx=%22800%22 cy=%220%22 fill=%22hsla(215, 16%25, 47%25, 1.00)%22 stroke=%22none%22%3E%3C/circle%3E%3Crect width=%22400%22 height=%22400%22 x=%220%22 y=%22400%22 opacity=%220.15%22%3E%3C/rect%3E%3Ccircle r=%2210.85%22 cx=%220%22 cy=%22400%22 fill=%22hsla(215, 16%25, 47%25, 1.00)%22 stroke=%22none%22%3E%3C/circle%3E%3Crect width=%22400%22 height=%22400%22 x=%22400%22 y=%22400%22 opacity=%220.15%22%3E%3C/rect%3E%3Ccircle r=%2210.85%22 cx=%22400%22 cy=%22400%22 fill=%22hsla(215, 16%25, 47%25, 1.00)%22 stroke=%22none%22%3E%3C/circle%3E%3Crect width=%22400%22 height=%22400%22 x=%22800%22 y=%22400%22 opacity=%220.15%22%3E%3C/rect%3E%3Ccircle r=%2210.85%22 cx=%22800%22 cy=%22400%22 fill=%22hsla(215, 16%25, 47%25, 1.00)%22 stroke=%22none%22%3E%3C/circle%3E%3Crect width=%22400%22 height=%22400%22 x=%220%22 y=%22800%22 opacity=%220.15%22%3E%3C/rect%3E%3Ccircle r=%2210.85%22 cx=%220%22 cy=%22800%22 fill=%22hsla(215, 16%25, 47%25, 1.00)%22 stroke=%22none%22%3E%3C/circle%3E%3Crect width=%22400%22 height=%22400%22 x=%22400%22 y=%22800%22 opacity=%220.15%22%3E%3C/rect%3E%3Ccircle r=%2210.85%22 cx=%22400%22 cy=%22800%22 fill=%22hsla(215, 16%25, 47%25, 1.00)%22 stroke=%22none%22%3E%3C/circle%3E%3Crect width=%22400%22 height=%22400%22 x=%22800%22 y=%22800%22 opacity=%220.15%22%3E%3C/rect%3E%3Ccircle r=%2210.85%22 cx=%22800%22 cy=%22800%22 fill=%22hsla(215, 16%25, 47%25, 1.00)%22 stroke=%22none%22%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 30px 30px;
}
.cards-features>* .choose-card {
    --border-color: #ebebeb;
  }
.cards-features>*:not(:last-child) .choose-card{
    border-bottom: 1px solid var(--border-color);
}

  @media (min-width: 768px) {
    .cards-features>*:not(:last-child) .choose-card{
        border-bottom: 0;
    }
    .cards-features > *:is(:nth-child(1), :nth-child(3), :nth-child(5)) .choose-card {
        border-right: 1px solid var(--border-color);
    }
    .cards-features > *:not(:nth-child(5)):not(:last-child) .choose-card {
        border-bottom: 1px solid var(--border-color);
      }
}

  @media (min-width: 992px) {
    .cards-features > *:is(:nth-child(1), :nth-child(3), :nth-child(5)) .choose-card {
        border-right: 0;
    }
    .cards-features>*:nth-child(2n) .choose-card{
        border-bottom: 0;
    }
    .cards-features>*:nth-child(-n+3) .choose-card{
        border-bottom: 1px solid var(--border-color);
    }
    
    .cards-features>*:nth-child(2) .choose-card,
    .cards-features>*:nth-child(5) .choose-card{
        border-left: 1px solid var(--border-color);
        border-right: 1px solid var(--border-color);
    }
    
.cards-features > *:nth-child(n+4):nth-child(-n+6)  .choose-card{
    border-bottom: 0;
  }
  .cards-features>*:not(:last-child) .choose-card{
    border-bottom: 1px solid var(--border-color);
}
}
  

.cards-features>* {
    padding: 0;
    margin: 0;
}
.shimmer-text {
    display: inline-block;
    perspective: 500px;
    color: #0D74CE;
    font-size: clamp(2rem, 5vw, 5rem);
  }

  .shimmer-text span {
    display: inline-block;
    transform-style: preserve-3d;
    animation: wave 1s infinite ease-in-out;
    color: #0D74CE;
  }

  @keyframes wave {
    0% {
      transform: translateZ(0px) translateX(0px) translateY(0px) scale(1) rotateY(0deg);
      color: #0D74CE;
    }
    50% {
      transform: translateZ(1px) translateX(2px) translateY(-2px) scale(1.1) rotateY(20deg);
      color: #5EB1EF;
    }
    100% {
      transform: translateZ(0px) translateX(0px) translateY(0px) scale(1) rotateY(0deg);
      color: #0D74CE;
    }
  }

  .shimmer-text span:nth-child(1) { animation-delay: 0s; }
  .shimmer-text span:nth-child(2) { animation-delay: 0.05s; }
  .shimmer-text span:nth-child(3) { animation-delay: 0.1s; }
  .shimmer-text span:nth-child(4) { animation-delay: 0.15s; }
  .shimmer-text span:nth-child(5) { animation-delay: 0.2s; }
  .shimmer-text span:nth-child(6) { animation-delay: 0.25s; }
  .shimmer-text span:nth-child(7) { animation-delay: 0.3s; }
  .shimmer-text span:nth-child(8) { animation-delay: 0.35s; }
  .shimmer-text span:nth-child(9) { animation-delay: 0.4s; }
  .shimmer-text span:nth-child(10) { animation-delay: 0.45s; }
  .shimmer-text span:nth-child(11) { animation-delay: 0.5s; }
  .shimmer-text span:nth-child(12) { animation-delay: 0.55s; }
  .shimmer-text span:nth-child(13) { animation-delay: 0.6s; }
  .shimmer-text span:nth-child(14) { animation-delay: 0.65s; }
  .shimmer-text span:nth-child(15) { animation-delay: 0.7s; }
  .shimmer-text span:nth-child(16) { animation-delay: 0.75s; }
  .shimmer-text span:nth-child(17) { animation-delay: 0.8s; }
  .shimmer-text span:nth-child(18) { animation-delay: 0.85s; }
  .shimmer-text span:nth-child(19) { animation-delay: 0.9s; }
  .shimmer-text span:nth-child(20) { animation-delay: 0.95s; }
  .shimmer-text span:nth-child(21) { animation-delay: 1s; }
  .shimmer-text span:nth-child(22) { animation-delay: 1.05s; }
  .shimmer-text span:nth-child(23) { animation-delay: 1.1s; }
  .shimmer-text span:nth-child(24) { animation-delay: 1.15s; }

  .testimonial-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    }
    
    .testimonial-item {
        position: relative;
    padding: 1rem;
    border: 1px solid #c2c2c2;
    border-radius: 15px;
    min-width: 300px;
    flex: 1;
    box-shadow: 0px 5px 7px 0px #0000000a;
    }

    .testimonial-item >* {
        position: relative;
    }

    .testimonial-item:nth-child(2) {
        color: #fff;
        background-color: #000;
    }

    .testimonial-item:before {
        content: "";
        position: absolute;
        right: 0;
        background-color: #3939e7;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        filter: blur(91px);
        opacity: 0.5;
    }

    .testimonial-item:nth-child(2):before {
        filter: blur(60px);
        opacity: 1;
    }
    .testimonial-item:nth-child(2) .name {
        color: #fff;
    }

/* inner-hero css end */
/* brand-section css start */
.brand-section {
    color: #fff;
    padding: 2.1875rem 0;
    background-color: #4582ff05;
}
.brand-section h4 {
    color: #fff;
}

@media (min-width: 992px) {
    .brand-section .col-lg-4 {
        border-right: 1px solid #fff;
    }
}

@media(max-width: 991px) {
    .brand-slider {
        margin-top: 15px;
    }
}

.brand-slider .slick-track {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}

.brand-item img {
    display: inline-block;
    filter: invert(1);
}

/* brand-section css end */
/* about section css start */
.about-thumb {
    float: left;
    width: 140%;
    position: relative;
    margin-bottom: 1.875rem;
}

.about-thumb img {
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

@media (max-width: 1750px) {
    .about-thumb {
        width: 130%;
    }
}

@media (max-width: 1650px) {
    .about-thumb {
        width: 120%;
    }
}

@media (max-width: 1550px) {
    .about-thumb {
        width: 110%;
    }
}

@media (max-width: 1450px) {
    .about-thumb {
        width: 100%;
    }
}

.about-thumb img {
    width: 100%;
}

.about-thumb .about-img-content {
    padding: 1.25rem 3.125rem;
    background: linear-gradient(0, #fff 33%, #fff 66%);
    color: #000;
    display: inline-block;
    text-align: center;
    position: absolute;
    bottom: -1.875rem;
    left: -5rem;
    z-index: 1;
    border-radius: 0px 100px 0px 100px;
}

@media (max-width: 1450px) {
    .about-thumb .about-img-content {
        padding: 1.25rem 1.875rem;
    }
}

@media (max-width: 1199px) {
    .about-thumb .about-img-content {
        left: -0.9375rem;
    }
}

@media (max-width: 575px) {
    .about-thumb .about-img-content {
        left: 0;
        padding: 0.625rem 0.9375rem;
    }
}

/* .about-thumb .about-img-content::after {
    position: absolute;
    content: '';
    background: transparent;
    background-image: radial-gradient(#fff 20%, transparent 0), radial-gradient(#fff 20%, transparent 0);
    background-size: 10px 10px;
    background-position: 0 0, 25px 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.15;
    z-index: -1;
} */

.about-thumb .about-img-content .years {
    font-size: 4.5rem;
    display: block;
    color: #fff;
}

@media (max-width: 1450px) {
    .about-thumb .about-img-content .years {
        font-size: 3.875rem;
    }
}

@media (max-width: 575px) {
    .about-thumb .about-img-content .years {
        font-size: 3rem;
    }
}

.about-thumb .about-img-content .caption {
    font-size: 1.375rem;
}

@media (max-width: 1450px) {
    .about-thumb .about-img-content .caption {
        font-size: 1.125rem;
    }
}


.bg-black,.bg-black h1, .bg-black h2, .bg-black h3, .bg-black h4, .bg-black h5, .bg-black h6 {
    color: #fff;
}

.award-list {
    margin: -0.4375rem -0.625rem;
}

.award-list li {
    margin: 0.4375rem 0.625rem;
}

.award-list li img {
    max-width: 6.25rem;
}

@media (max-width: 480px) {
    .award-list li img {
        max-width: 4.375rem;
    }
}

/* about section css end  */
/* service section css start */
.section-wave-img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.service-card {
    padding: 50px 30px;
    background: linear-gradient(to top, #131313 0%, #131313 100%);
    border-radius: 12px;
    padding: 4px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid #292929;
}

.service-card>div:not(.dotted-wrapper) {
    position: relative;
    z-index: 10;
}


.service-card .dotted-wrapper::before,
.service-card::after,
.service-card::before{
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    /* background-color: #c7c3ef; */
    filter: blur(30px);
    z-index: -1;
    transition: all .5s;
}

.service-card::before {
    z-index: 0;
}

.service-card .dotted-wrapper:before {
    background-color: #594be2;
    filter: blur(67px);
}

.service-card .dotted-wrapper:before,
.service-card::after {
    top: auto;
    left: auto;
    right:-50px;
    bottom: -50px;
}

.service-card .dotted-wrapper:before {
    content: none;
    top: auto;
    left: auto;
    right:-50px;
    bottom: -50px;
}

.service-card:hover .dotted-wrapper:before{
    right:70%;
    bottom: 70%;
}

.service-card:hover:before{
    top: -50px;
    left: 50%;
}

.service-card:hover:after{
    right:50%;
    bottom: -50px;
}


.service-card .dotted-wrapper-2::after {
    content: '';
    position: absolute;
    top: calc(var(--y) * 1px);
    left: calc(var(--x) * 1px);
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgb(0 47 142), #ff8f8f00 60%);
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
  }

  .hover-light-active .service-card .dotted-wrapper-2::after {
    opacity: 1;
  }

  .dotted-wrapper-2 {
    position: absolute !important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    margin: auto;
    z-index: -1 !important;
    background-color: #252525;
    border-radius: 10px;
}


    .service-card {
        padding: 2.1875rem 1.25rem;
    }


.service-card:hover {
    border-color: #4582ff;
    box-shadow: 0 5px 15px 1px rgba(69, 130, 255, 0.25);
}

.service-card .dotted-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    margin: auto;
    background-color: #191818;
    z-index: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 27px 0 #ffffff1a inset;
}

.service-card__content>div{
    align-items: center;
}

body .service-card__icon {
    font-size: 30px;
    line-height: 1;
    color: #d9d9d9 !important;
    background: linear-gradient(345deg, #000000 0%, #272727 100%);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#1f1f1f 0 0) padding-box, linear-gradient(121deg, #585858, #202020) border-box;
    color: #313149;
    padding: 1px;
    border: 1px solid transparent;
    border-radius: 15px;
}

.service-card__content .title {
    color: #fff;
}

.service-card__content p {
    color: #f2f2f2;
}

@-webkit-keyframes grow {
    0% {
        clip-path: polygon(46% 66%, 76% 64%, 100% 41%, 100% 100%, 0 100%, 0 79%, 26% 79%);
    }

    25% {
        clip-path: polygon(48% 70%, 76% 63%, 100% 41%, 100% 100%, 0 100%, 0 78%, 25% 81%);
    }

    50% {
        clip-path: polygon(51% 67%, 80% 71%, 100% 45%, 100% 100%, 0 100%, 0 78%, 30% 79%);
    }

    75% {
        clip-path: polygon(48% 70%, 76% 63%, 100% 41%, 100% 100%, 0 100%, 0 78%, 25% 81%);
    }

    100% {
        clip-path: polygon(46% 66%, 76% 64%, 100% 41%, 100% 100%, 0 100%, 0 79%, 26% 79%);
    }
}

@-moz-keyframes grow {
    0% {
        clip-path: polygon(46% 66%, 76% 64%, 100% 41%, 100% 100%, 0 100%, 0 79%, 26% 79%);
    }

    25% {
        clip-path: polygon(48% 70%, 76% 63%, 100% 41%, 100% 100%, 0 100%, 0 78%, 25% 81%);
    }

    50% {
        clip-path: polygon(51% 67%, 80% 71%, 100% 45%, 100% 100%, 0 100%, 0 78%, 30% 79%);
    }

    75% {
        clip-path: polygon(48% 70%, 76% 63%, 100% 41%, 100% 100%, 0 100%, 0 78%, 25% 81%);
    }

    100% {
        clip-path: polygon(46% 66%, 76% 64%, 100% 41%, 100% 100%, 0 100%, 0 79%, 26% 79%);
    }
}

@-ms-keyframes grow {
    0% {
        clip-path: polygon(46% 66%, 76% 64%, 100% 41%, 100% 100%, 0 100%, 0 79%, 26% 79%);
    }

    25% {
        clip-path: polygon(48% 70%, 76% 63%, 100% 41%, 100% 100%, 0 100%, 0 78%, 25% 81%);
    }

    50% {
        clip-path: polygon(51% 67%, 80% 71%, 100% 45%, 100% 100%, 0 100%, 0 78%, 30% 79%);
    }

    75% {
        clip-path: polygon(48% 70%, 76% 63%, 100% 41%, 100% 100%, 0 100%, 0 78%, 25% 81%);
    }

    100% {
        clip-path: polygon(46% 66%, 76% 64%, 100% 41%, 100% 100%, 0 100%, 0 79%, 26% 79%);
    }
}

@keyframes grow {
    0% {
        clip-path: polygon(46% 66%, 76% 64%, 100% 41%, 100% 100%, 0 100%, 0 79%, 26% 79%);
    }

    25% {
        clip-path: polygon(48% 70%, 76% 63%, 100% 41%, 100% 100%, 0 100%, 0 78%, 25% 81%);
    }

    50% {
        clip-path: polygon(51% 67%, 80% 71%, 100% 45%, 100% 100%, 0 100%, 0 78%, 30% 79%);
    }

    75% {
        clip-path: polygon(48% 70%, 76% 63%, 100% 41%, 100% 100%, 0 100%, 0 78%, 25% 81%);
    }

    100% {
        clip-path: polygon(46% 66%, 76% 64%, 100% 41%, 100% 100%, 0 100%, 0 79%, 26% 79%);
    }
}

/* service section css end */
/* why choose us section css start */
.choose-card {
    padding: 1.875rem;
    background-color: #fff;
    height: 100%;
}

.choose-card:hover {
background-image: linear-gradient(to top, #f5f5f5, #fff);
}

.choose-card .title {
    position: relative;
    transition: all 0.3s;
}

.choose-card .title:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: -1.875rem;
    width: 5px;
    height: 30px;
    background-color: #0D61BC;
    border-radius: 0px 10px 10px 0px;
    transition: all 0.3s;
}

.choose-card:hover .title:before {
    height: 4dvh;
}

.choose-card:hover .title {
    padding-left: 0.5rem;
}

.choose-card__icon img {
    height: 35px;
}

.choose-card__content {
    margin-top: 1.1875rem;
}



/* why choose us section css end */
/* feature section css start */
.feaure-card__icon img {
    height: 35px;
}

/* feature section css end */
/* business section css start */
.coutomer-item {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
    border: 1px solid #e5e5e5;
    margin-top: -1px;
    margin-left: -1px;
    text-align: center;
}

@media (max-width: 480px) {
    .coutomer-item {
        padding-top: 1.875rem;
        padding-bottom: 1.875rem;
    }
}

.coutomer-item:nth-child(-n + 3) {
    border-top: none;
}

.coutomer-item:nth-last-child(-n + 3) {
    border-bottom: none;
}

.coutomer-item:nth-of-type(3n + 1) {
    border-left: none;
}

.coutomer-item:nth-of-type(3n + 3) {
    border-right: none;
}

/* business section css end */
/* overview section css start */
.overview-section {
    padding-top: 9.375rem;
    padding-bottom: 7.5rem;
}

@media (max-width: 1199px) {
    .overview-section {
        padding-top: 6.25rem;
        padding-bottom: 6.25rem;
    }
}

.overview-single .overview-number {
    font-size: 2.625rem;
}

@media (max-width: 575px) {
    .overview-single .overview-number {
        font-size: 2rem;
    }
}

.overview-single .caption {
    font-size: 1rem;
}

@media (max-width: 575px) {
    .overview-single .caption {
        font-size: 0.875rem;
    }
}

/* overview section css end */
/* testimonial section css start */
.testimonial-slide-area .thumb {
    width: 70%;
}

@media (max-width: 575px) {
    .testimonial-slide-area .thumb {
        width: 100%;
    }
}

.testimonial-slide-area .content {
    width: 60%;
    background-color: #002046;
    padding: 3.125rem;
    color: #fff;
    margin-left: auto;
    margin-top: -150px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 35px rgba(0, 32, 70, 0.15);
    border-radius: 5rem 0 5rem 0;
}

@media (max-width: 991px) {
    .testimonial-slide-area .content {
        margin-top: -50px;
        width: 80%;
    }
}

@media (max-width: 575px) {
    .testimonial-slide-area .content {
        width: 100%;
        margin-top: -30px;
    }
}

@media (max-width: 480px) {
    .testimonial-slide-area .content {
        padding: 2.5rem 1.875rem;
    }
}

.testimonial-slide-area .content::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    background-image: radial-gradient(#fff 20%, transparent 0), radial-gradient(#fff 20%, transparent 0);
    background-size: 10px 10px;
    background-position: 0 0, 25px 25px;
    opacity: 0.08;
    z-index: -1;
}

.testimonial-slide-area .content-slider .slick-arrow {
    width: 60px;
    height: 55px;
    background-color: #4582ff;
    color: #fff;
    font-size: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 100px;
}

@media (max-width: 991px) {
    .testimonial-slide-area .content-slider .slick-arrow {
        top: 0;
    }
}

@media (max-width: 575px) {
    .testimonial-slide-area .content-slider .slick-arrow {
        top: -75px;
    }
}

.testimonial-slide-area .content-slider .slick-arrow.prev {
    left: -170px;
}

@media (max-width: 575px) {
    .testimonial-slide-area .content-slider .slick-arrow.prev {
        right: 59px;
        left: auto;
    }
}

.testimonial-slide-area .content-slider .slick-arrow.next {
    left: -110px;
}

@media (max-width: 575px) {
    .testimonial-slide-area .content-slider .slick-arrow.next {
        right: 0;
        left: auto;
    }
}

/* testimonial section css end */
/* blog-card css start */
.blog-card {
    height: 100%;
}
.blog-card:hover .blog-title {
     color: #1a57ba;
}

h4.blog-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog-card__thumb {
    max-height: 295px;
    overflow: hidden;
}

.blog-card__thumb img {
    width: 100%;
}

.blog-card .post-time {
    background-color: #ffffff!important;
    display: flex;
    text-align: center;
    padding: 0.3125rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.blog-card .post-time .post-date {
    display: block;
    color: #000000;
    font-family: "Maven Pro", sans-serif;
    font-weight: 500;
    line-height: 1;
}

.blog-card .post-time .post-month {
    color: #000000;
    padding-left: 0.375rem;
    line-height: 1;
}

body .blog-card__meta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.625rem;
    margin-top: -37px;
}

.blog-card__meta .post-time {
    width: 65px;
}

.blog-card__meta .meta {
    width: calc(100% - 95px);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog-card__meta .meta li {
    margin: 0.3125rem 0.5rem;
}

.blog-card__meta .meta a {
    color: #464646;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
}

.blog-card__meta .meta a i {
    font-size: 1.125rem;
    margin-right: 0.3125rem;
}

.blog-card__content {
    margin-top: 1.5rem;
}

.blog-card__content p{
    color: #000000;
    opacity: .5;
}

/* blog-card css end */

/* blog details section css start */
.blog-details-title {
    font-size: 2.625rem;
}

@media (max-width: 1399px) {
    .blog-details-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    .blog-details-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .blog-details-title {
        font-size: 1.75rem;
    }
}

.post-share {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin: -0.1875rem -0.3125rem;
}

.post-share li {
    padding: 0.1875rem 0.3125rem;
}

.post-share li a {
    width: 2.1875rem;
    height: 2.1875rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
}

.blog-sidebar {
    padding: 1.25rem;
    border:1px solid #e3e3e3;
}

.blog-sidebar .title {
    position: relative;
    padding-bottom: 0.3125rem;
    margin-bottom: 1.875rem;
}

.blog-sidebar .title::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 2.1875rem;
    height: 0.125rem;
}

.s-post {
    padding: 0.9375rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.s-post:first-child {
    padding-top: 0;
}

.s-post:last-child {
    padding-bottom: 0;
    border-bottom: none !important;
}

.s-post__thumb {
    width: 5rem;
    height: 4.375rem;
}

.s-post__thumb img {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

.s-post__content {
    width: calc(100% - 80px);
    padding-left: 1.25rem;
}

.blog-post__date,
.s-post__content p {
    font-size: 0.875rem;
    color: #777;
}

.s-post__title {
    font-size: 1rem;
}

.s-post__title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* blog details section css end */


/* account section css start */
.account-section {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.account-section .left {
    width: 480px;
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.account-section .site-logo img {
    max-width: 250px;
}

.account-section .right {
    width: calc(100% - 480px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.account-section .right::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002046;
    opacity: 0.45;
    z-index: -1;
}

.account-section .right .title {
    font-size: 38px;
    color: #fff;
}

@media (max-width: 1199px) {
    .account-section .left {
        width: 400px;
    }

    .account-section .right {
        width: calc(100% - 400px);
    }
}

@media (max-width: 767px) {
    .account-section .left {
        width: 100%;
        padding: 70px 40px;
    }

    .account-section .right {
        display: none;
    }
}

@media (max-width: 575px) {
    .account-section .left {
        padding: 40px 30px;
    }
}

@media (max-width: 380px) {
    .account-section .left {
        padding: 40px 20px;
    }
}

.account-section .site-logo {
    width: 100px;
    height: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.account-section.style--two .left {
    width: 40%;
}

.account-section.style--two .right {
    width: 60%;
}

@media (max-width: 1599px) {
    .account-section.style--two .left {
        width: 50%;
    }

    .account-section.style--two .right {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .account-section.style--two .left {
        width: 100%;
    }

    .account-section.style--two .right {
        display: none;
    }
}

body:has(.auth-container) {
    overflow: hidden;
}

.auth-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100dvw;
    z-index: 999;
    overflow-y: auto;
}

.account-wrapper {
    background-color: #fff;
    box-shadow: 0 5px 25px 1px rgba(0, 0, 0, 0.15);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.account-wrapper .left {
    width: 45%;
}

@media (max-width: 991px) {
    .account-wrapper .left {
        display: none;
    }
}

.account-wrapper .right {
    width: 55%;
    padding: 4.375rem 3.125rem;
}

.account-section .account-wrapper .right {
    padding: 50px 40px;
}

@media (max-width: 991px) {
    .account-wrapper .right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .account-wrapper .right {
        padding: 3.125rem 1.875rem;
    }

    .account-section .account-wrapper .right {
        padding: 30px 15px;
    }
}

@media (max-width: 380px) {
    .account-wrapper .right {
        padding: 1.875rem 0.9375rem;
    }
}

.account-wrapper .right .inner {
    width: 80%;
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .account-wrapper .right .inner {
        width: 90%;
    }
}

@media (max-width: 767px) {
    .account-wrapper .right .inner {
        width: 100%;
    }
}

.user-account-check {
    position: relative;
    cursor: pointer;
}

.user-account-check .form-check-input {
    position: absolute;
    top: 10px;
    right: 20px;
}

.user-account-check .form-check-input:checked~label {
    border-color: #4582ff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.user-account-check .form-check-input:checked~label i {
    color: #4582ff;
}

.user-account-check label {
    display: block;
    padding: 1.25rem;
    background-color: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.user-account-check label i {
    font-size: 4.5rem;
    color: #939393;
}

.user-account-check label span {
    display: block;
}

/* account section css end */
/* contact section css start */
.single-info__icon {
    width: 5.3125rem;
    height: 5.3125rem;
    font-size: calc(5.3125rem / 2);
}

@media (max-width: 991px) {
    .single-info__icon {
        width: 4.6875rem;
        height: 4.6875rem;
    }
}

@media (max-width: 380px) {
    .single-info__icon {
        width: 3.75rem;
        height: 3.75rem;
        font-size: calc(3.75rem / 2);
    }
}

.single-info__content {
    width: calc(100% - 5.3125rem);
    padding-left: 1.5625rem;
}

.single-info__content .title {
    font-size: 1.75rem;
}

@media (max-width: 991px) {
    .single-info__content .title {
        font-size: 1.5rem;
    }
}

@media (max-width: 380px) {
    .single-info__content .title {
        font-size: 1.375rem;
    }
}

.contact-info-list .single-info {
    padding: 1.25rem 0;
}

.contact-info-list .single-info:first-child {
    padding-top: 0;
}

.contact-info-list .single-info:last-child {
    padding-bottom: 0;
}

/* contact section css end */
/* support section css start */
.custom--file-upload {
    position: relative;
    line-height: 2rem;
}

.custom--file-upload::before {
    position: absolute;
    content: 'Choose File';
    color: #fff;
    top: 0;
    left: 0;
    width: 125px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4582ff;
    padding: 0.625rem 1.25rem;
}

.single-reply {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.875rem;
    background-color: rgba(69, 130, 255, 0.03);
    border: 1px solid rgba(69, 130, 255, 0.6);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.single-reply .left {
    width: 20%;
}

@media (max-width: 767px) {
    .single-reply .left {
        width: 100%;
    }
}

.single-reply .right {
    width: 80%;
    border-left: 1px solid rgba(69, 130, 255, 0.25);
    padding-left: 1.25rem;
}

@media (max-width: 767px) {
    .single-reply .right {
        width: 100%;
        padding-left: 0;
        border-left: none;
        margin-top: 1.25rem;
    }
}

.single-reply+.single-reply {
    margin-top: 20px;
}

/* support section css end */
/* authentication section css start */
.qr-code-wrapper {
    padding: 1.25rem;
    background-color: #002046;
}

.qr-code {
    padding: 0.625rem 1.25rem;
    background-color: #002046;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.qr-code-copy-form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.qr-code-copy-form input[type="text"] {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    width: calc(100% - 75px);
    height: 40px;
}

@media (max-width: 440px) {
    .qr-code-copy-form input[type="text"] {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .qr-code-copy-form input[type="text"] {
        font-size: 0.875rem;
    }
}

.qr-code-copy-form input[type="submit"] {
    width: 75px;
    background-color: #4582ff;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #fff;
}

.qr-code-form {
    position: relative;
}

.qr-code-form .form-control {
    height: 4.0625rem;
    padding-right: 5.9375rem;
}

.qr-code-form__btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 75px;
    height: calc(100% - 20px);
    color: #fff;
}

/* authentication section css end */
/* footer section css start */
.bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
    contain: strict;
    isolation: isolate;
    display: none;
  }
  
  @media (min-width: 1024px) {
    .bg-deco {
      display: block;
    }
  }
  
  .bg-deco-1,
  .bg-deco-2,
  .bg-deco-3 {
    position: absolute;
    top: 0;
    left: 0;
    height: 80rem;
    transform: rotate(-45deg);
    border-radius: 9999px;
  }
  
  .bg-deco-1 {
    width: 35rem;
    transform: translateY(-350px) rotate(-45deg);
    background: radial-gradient(68.54% 68.72% at 55.02% 31.46%, hsl(0deg 0% 85% / 15%) 0%, hsla(0, 0%, 55%, 0.02) 50%, hsla(0, 0%, 45%, 0) 80%);
  }
  
  .bg-deco-2 {
    width: 14rem;
    transform: translate(5%, -50%) rotate(-45deg);
    background: radial-gradient(
      50% 50% at 50% 50%,
      hsla(0, 0%, 85%, 0.06) 0%,
      hsla(0, 0%, 45%, 0.02) 80%,
      transparent 100%
    );
  }
  
  .bg-deco-3 {
    width: 14rem;
    transform: translateY(-350px) rotate(-45deg);
    background: radial-gradient(
      50% 50% at 50% 50%,
      hsla(0, 0%, 85%, 0.04) 0%,
      hsla(0, 0%, 45%, 0.02) 80%,
      transparent 100%
    );
  }

  .footer .jumbo {
    --rainbow: repeating-linear-gradient(
        100deg,
        #60a5fa 24%,
        #e879f9 23%,
        #60a5fa 21%,
        #5eead4 24%,
        #60a5fa 14%
    );
    transform: rotate(180deg);
    z-index: 0;
  }


  .footer__top {
    position: relative;
  }
  
.footer {
    position: relative;
    background-color: #000;
    background-image: none!important;
}


.footer__cta {
    padding-top: 4.375rem;
}

.footer__bottom {
    position: relative;
    padding: 0.9375rem 0;
    background-color: #001937;
}

.cta-wrapper {
    padding: 3.125rem 4.375rem;
    background-color: #1b3f8a52;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .cta-wrapper {
        padding: 2.5rem 2.5rem;
    }
}

@media (max-width: 575px) {
    .cta-wrapper {
        padding: 1.875rem 0.9375rem;
    }
}

.cta-wrapper::before {
    position: absolute;
    content: '';
    top: 50%;
    left: -120px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.cta-wrapper::after {
    position: absolute;
    content: '';
    top: -40px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: transparent;
    background-image: radial-gradient(#fff 20%, transparent 0), radial-gradient(#fff 20%, transparent 0);
    background-size: 10px 10px;
    background-position: 0 0, 25px 25px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: -1;
}

.footer-contact-area {
    position: relative;
    z-index: 1;
}

.footer-contact-area::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    z-index: -1;
}

.footer-contact-wrapper {
    background-color: #121212ba;
    border-radius: 35px;
    border: 1px solid;
}

.footer-contact-item {
    padding: 1.25rem 1.5625rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.footer-contact-item:last-child::after,
.footer-contact-item:last-child::before {
    display: none;
}

.footer-contact-item::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    height: 50px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer-contact-item::before {
    position: absolute;
    content: '';
    top: 50%;
    right: 1px;
    height: 50px;
    width: 1px;
    background-color: #00142d;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer-contact-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .footer-contact-card {
        justify-content: center;
    }
}

.footer-contact-card:hover .icon {
    background-color: #4582ff;
}

.footer-contact-card:hover .icon::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.footer-contact-card .icon {
    width: 55px;
    height: 55px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(69, 130, 255, 0.55);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #fff;
    font-size: 1.625rem;
    position: relative;
}

.footer-contact-card .icon::after {
    position: absolute;
    content: '';
    top: -6px;
    left: -6px;
    width: calc(100% + (6px * 2));
    height: calc(100% + (6px * 2));
    background-color: rgba(69, 130, 255, 0.25);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer-contact-card .content {
    width: calc(100% - 55px);
    padding-left: 20px;
}

@media (max-width: 991px) {
    .footer-contact-card .content {
        width: 100%;
        padding-left: 0;
        text-align: center;
        margin-top: 1.25rem;
    }
}

.footer-contact-card .content a {
    color: #fff;
}

.footer-contact-card .content a:hover {
    color: #4582ff;
}

.footer-contact-card .content .caption {
    color: #f2f2f2;
}

.widget-area {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}

.footer-logo img {
    max-height: 45px;
}

.footer-widget__title {
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
}

@media (max-width: 1199px) {
    .footer-widget__title {
        padding-left: 15px;
    }
}

@media (max-width: 991px) {
    .footer-widget__title {
        margin-bottom: 1.25rem;
    }
}


@media (max-width: 1199px) {
    .footer-widget__title::before {
        width: 10px;
    }
}

.footer-link-list li:first-child a {
    padding-top: 0;
}

.footer-link-list li:last-child a {
    padding-bottom: 0;
}

.footer-link-list li a {
    padding: 0.625rem 0;
    color: #fff;
    display: block;
}

.footer-link-list li a:hover {
    color: #4582ff;
}

/* footer section css end */


.cookies-card {
    width: 520px;
    padding: 30px;
    color: #002046;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
}


.cookies-card.bg--default {
    background-color: #EADFD8;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #DED4CD;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 25px;
    border: 1px solid #848484;
    margin: 3px 5px;
    display: inline-block;
}

.cookies-btn:hover {
    background-color: #DED4CD;
    color: #363636;
}

.cookies-btn {
    border-radius: 45px;
}

.cookies-card.style--lg {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.cookies-card.style--lg .cookies-card__content {
    width: calc(100% - (55px + 220px));
    padding: 0 25px;
}

.cookies-card.style--lg .cookies-card__btn {
    width: 220px;
}


.cookies-card.cookies--dark {
    color: #EADFD8;
    background-color: #002c60;
}

.cookies-card.cookies--dark .cookies-btn {
    color: #EADFD8;
}

.cookies-card.cookies--dark .cookies-btn:hover {
    background-color: #343A50;
    color: #EADFD8;
}

.cookies-card.cookies--dark .cookies-card__icon {
    background-color: #1E2337;
}

@media (max-width: 1399px) {

    .cookies-card.style--lg,
    .cookies-card {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .cookies-card.style--lg {
        display: block;
    }

    .cookies-card.style--lg .cookies-card__content {
        width: 100%;
        padding: 0;
        margin-top: 25px;
    }

    .cookies-card.style--lg .cookies-card__btn {
        width: 100%;
        margin-top: 20px;
    }
}

/*# sourceMappingURL=main.css.map */

.slick-slide img {
    border-radius: 0 5rem 0 5rem;
}

.main-menu li.active>a {
    color: #4582ff;
}

.responsive-text {
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}



.verification-page.account-section .left {
    width: 50%;
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.verification-page.account-section .right {
    width: calc(100% - 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .verification-page.account-section .left {
        width: 100%;
    }

    .verification-page.account-section .right {
        display: none;
    }
}

@media (max-width: 575px) {
    .verification-page.account-section .left {
        padding: 0;
    }
}

/* Subscriber css Start  */

.subscribe-section .section-wave-img {
    width: 100%;
}

.subscribe-section .section-wave-img img {
    width: 100%;
}

.subscribe-section {
    position: relative;
    padding: 80px 0;
}

@media (max-width: 575px) {
    .subscribe-section {
        padding: 60px 0;
    }
}

.subscribe-section::before {
    position: absolute;
    content: "";
    width: 54%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #002046;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0% 100%);
}

@media (max-width: 991px) {
    .subscribe-section::before {
        width: 100%;
        background-color: #002046c7;
        clip-path: unset;
    }
}

.subscription-form {
    border: 2px solid #1956ba;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    margin-left: 35px;
}

@media (max-width: 991px) {
    .subscription-form {
        margin-left: 0px;
        margin-top: 30px;
    }
}

.subscription-form .form--control {
    background-color: #ffffff;
    color: #000;
    border-radius: 0;
    font-weight: 500;
    border-radius: 40px;
    padding: 35px 25px;
    border: 0;
    padding-right: 177px;
    border: none !important;
}

.subscription-form .form--control::placeholder {
    color: black !important;
    font-weight: 400;
    font-size: 14px;
}

.subscription-form .btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    height: auto;
    align-items: center;
    border-radius: 40px !important;
    padding: 15px 30px;
    font-size: 16px;
}

.btn-icon {
    font-size: 15px;
    margin-left: 5px;
}

@media (max-width: 424px) {
    .btn-icon {
        margin-left: 0px;
    }

    .btn-text {
        display: none;
    }
}

@media (max-width: 575px) {
    .subscribe-content {
        position: relative;
        z-index: 2;
        padding-right: 0px;
    }
}

.subscribe-content {
    position: relative;
    z-index: 2;
    padding-right: 55px;
}

@media (max-width: 575px) {
    .subscribe-content {
        position: relative;
        z-index: 2;
        padding-right: 0px;
    }
}

.subscribe-content .section-title {
    font-size: 44px;
}

@media (max-width: 767px) {
    .subscribe-content .section-title {
        font-size: 35px;
    }
}

@media (max-width: 575px) {
    .subscribe-content .section-title {
        font-size: 30px;
    }
}

/* Subcriber End */

/* Banned Start */
.card.banned {
    overflow: hidden;
    box-shadow: 0px 2px 8px 1px #60606024;
    border-width: 1px;
    border-radius: 8px;
}

.card.banned .card-title {
    color: #ea5455;
    margin-bottom: 0;
    font-size: 25px;
    text-shadow: 2px 3px 2px #ea545540;
}

.box-shadow {
    background-color: #fff;
    border: 1px solid #dddddd5c;
    box-shadow: 1px 1px 9px #00000012;
}

.box-shadow .card-header {
    background-color: #fff;
}
