@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --white-smoke: #f1ece7;
    --clr-black: #000000;
    --clr-black1: #1e1e1f;
    --clr-white: #ffffff;
    --clr-blue: #1731ad;
    /*#182c8b*/
    --clr-blue1: #224f83;
    --clr-blue2: #2b6d7c;
    --clr-blue3: #20adcd;
    --transition-speed: 2s;
    --menu-item-border: 1px;
    --filter-1: invert(1) brightness(1000);

}

body {
    padding-top: 95.1px;
    background-color: var(--clr-black);
    color: var(--clr-white);
    font-family: 'Barlow', sans-serif;
    font-size: 17px;

}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
}

h1 {
    font-size: 92px;
    margin-bottom: 30px;
}

h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

h3 {
    font-size: 22px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
    position: relative;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.text-black {
    color: var(--clr-black);
}

.text-white {
    color: var(--clr-white);
}

.text-blue {
    color: var(--clr-blue);
}

.text-blue1 {
    color: var(--clr-blue1);
}

.text-blue2 {
    color: var(--clr-blue2);
}

.text-blue3 {
    color: var(--clr-blue3)
}

.bg-black {
    background-color: var(--clr-black);
}

.bg-black1 {
    background-color: var(--clr-black1);
}

.bg-white {
    background-color: var(--clr-white);
}

.bg-blue {
    background-color: var(--clr-blue);
}

.bg-blue1 {
    background-color: var(--clr-blue1);
}

.bg-blue2 {
    background-color: var(--clr-blue2);
}

.bg-blue3 {
    background-color: var(--clr-blue3);
}

p:last-child {
    margin-bottom: 0px;
}

/* Header styles */
header#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 12px;
    z-index: 1000;
    background-color: var(--clr-black);
    transition: transform .2s ease;
    border-block: 1px solid var(--clr-white);
}

header#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo img {
    width: 220px;
}

.hamburger {
    width: 100px;
    height: 40px;
    border: 1px solid var(--white);
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background-color: var(--clr-blue1);
    border: 1px solid var(--clr-blue1);
}


/* Fullscreen menu styles */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-black);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
    z-index: 999;
    font-family: 'Outfit', sans-serif;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-close-line {
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: var(--white-smoke);
}

.menu-close-line:first-child {
    transform: rotate(45deg);
}

.menu-close-line:last-child {
    transform: rotate(-45deg);
}

.menu-left,
.menu-right {
    flex: 0 0 28%;
    position: relative;
    overflow: hidden;
}

.menu-center {
    flex: 0 0 44%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

a.menu-logo {
    margin-bottom: 0px;
    display: block;
}

a.menu-logo img {
    width: 240px;
}

.menu-items {
    list-style: none;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.menu-item {
    margin: 15px 0;
    position: relative;
}

.menu-item>a {
    color: var(--white-smoke);
    text-decoration: none;
    font-size: 24px;
    position: relative;
    padding: 10px 0;
    display: block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
}

.menu-item:hover>a {
    color: var(--clr-blue3);
}

.menu-item.current-active>a,
.menu-item.active>a {
    color: var(--white-smoke);
    color: var(--clr-blue3);
}

.menu-item>a::before,
.menu-item>a::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--white-smoke);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.menu-item>a::before {
    top: 0;
    background: linear-gradient(90deg, #f1ece700, var(--white-smoke) 50%, #f1ece700);
}

.menu-item>a::after {
    bottom: 0;
    background: linear-gradient(90deg, #f1ece700, var(--white-smoke) 50%, #f1ece700);
}

.menu-item:hover>a::before,
.menu-item:hover>a::after,
.menu-item.current-active>a::before,
.menu-item.current-active>a::after,
.menu-item.active>a::before,
.menu-item.active>a::after {
    width: 100%;
}

.submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    padding: 0;
}

.menu-item.have-submenu>a .submenu-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    left: calc(50% + 140px);
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/icons/plus.png);
    background-size: contain;
    background-position: center center;
    filter: var(--filter-1);
    background-repeat: no-repeat;
}

.menu-item.submenu-open .submenu {
    max-height: 300px;
}

.menu-item.have-submenu.submenu-open>a .submenu-icon {
    background-image: url(../images/icons/minus.png);
}

.submenu-item {
    margin: 8px 0;
}

.submenu-item a {
    color: var(--white-smoke);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.submenu-item a:hover {
    color: rgba(241, 236, 231, 0.7);
}

.submenu-item.submenu-item-active a {
    color: var(--clr-blue3);
}

/* Image slider styles */
.image-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform var(--transition-speed) ease;
}

.image-slider.left {
    top: 0;
    left: 0;
}

.image-slider.right {
    top: 0;
    right: 0;
}

.slider-image {
    width: 100%;
    height: 33.33%;
    object-fit: cover;
    transition: all var(--transition-speed) ease;
}

.slider-image.prev {
    height: 50px;
    opacity: 0.5;
    display:none !important;
}

.slider-image.active {
    height:100%;
}

.slider-image.next {
    height: 50px;
    opacity: 0.5;
    display:none !important;
}

.hero {
    padding-top: 50px;
    padding-bottom: 100px;
    overflow: hidden;
    position: relative;
}

.hero:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(../images/hero-bg.png);
    background-size: cover;
    opacity: .5;
}

.hero-image {
    position: relative;
}

.hero-image img {
    position: relative;
    z-index: 1;
}

.hero-image-shape-1 {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    border-radius: 416px;
    filter: blur(157.5757598877px);
    width: 416px;
    height: 416px;
    z-index: 0;
}

.hero-image::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -40px;
    right: -40px;
    background: url(../images/hero_shape_1.png) center center / cover no-repeat;
    background-position: center center;
    transition: 0.3s linear;
    animation: banner_animi_2 linear 3s infinite alternate;
    -webkit-animation: banner_animi_2 linear 3s infinite alternate;
    z-index: 2;
}

@keyframes banner_animi_2 {
    from {
        transform: scale(0.5) rotate(-80deg);
        -webkit-transform: scale(0.5) rotate(-80deg);
        -moz-transform: scale(0.5) rotate(-80deg);
        -ms-transform: scale(0.5) rotate(-80deg);
        -o-transform: scale(0.5) rotate(-80deg);
    }

    to {
        transform: scale(1) rotate(0deg);
        -webkit-transform: scale(1) rotate(0deg);
        -moz-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        -o-transform: scale(1) rotate(0deg);
    }
}

.hero-image img {
    clip-path: polygon(0 100%, 90% 100%, 100% 0, 0% 0);
}

a.counter-wrap {
    width: 150px;
    height: 130px;
    background-color: var(--clr-blue);
    -webkit-clip-path: polygon(100% 0, 100% 100%, 26% 100%, 0 80%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, 26% 100%, 0 80%, 0 0);
    display: flex;
    align-items: end;
    position: absolute;
    top: 0;
    right: 0px;
    color: var(--clr-white);
    text-decoration: none;
    transition: .3s;
}

.hero a.counter-wrap {
    animation: float 3s linear infinite;
}

a.counter-wrap:hover {
    background-color: var(--clr-blue1);
}

a.counter-wrap .counter-content {
    padding: 30px 20px;
}

a.counter-wrap .counter-content span {
    line-height: 1;
    font-size: 24px;
}

a.counter-wrap .arrow {
    fill: none;
    stroke: var(--clr-white);
    position: absolute;
    top: 15px;
    right: 15px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.01);
    }
}

.item {
    position: relative;
    border-radius: 20px 20px 20px 0;
    overflow: hidden;
    margin-bottom: 15px;
    isolation: isolate;
}

.item img {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
}

.item:hover img {
    transform: scale(1.05);
}

/* title */
.item .title {
    position: absolute;
    bottom: 20px;
    padding: 0;
    z-index: 1;
    left: 105px;
}

.item .title h4 {
    color: #fff;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 18px;
}

.item .title h6 {
    margin-bottom: 15px;
}

/* icon */
.item .icon {
    position: absolute;
    bottom: -6px;
    left: -6px;
    width: 90px;
    height: 90px;
    background: #fff;
    border-top-right-radius: 50%;
    padding: 15px;
}

.item:hover .icon .arrow {
    transform: scale(1.05) rotate(360deg);
}

.item .icon::before {
    position: absolute;
    content: "";
    bottom: 6px;
    right: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #fff;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.item .icon::after {
    position: absolute;
    content: "";
    top: -20px;
    left: 6px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #fff;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.bg-blue1 .item .icon {
    background: var(--clr-blue1);
}

.bg-blue1 .item .icon::before {
    box-shadow: 6px 6px 0 6px var(--clr-blue1);
}

.bg-blue1 .item .icon::after {
    box-shadow: 6px 6px 0 6px var(--clr-blue1);
}

.bg-blue2 .item .icon {
    background: var(--clr-blue2);
}

.bg-blue2 .item .icon::before {
    box-shadow: 6px 6px 0 6px var(--clr-blue2);
}

.bg-blue2 .item .icon::after {
    box-shadow: 6px 6px 0 6px var(--clr-blue2);
}

.item .icon .arrow {
    position: absolute;
    background: #101010;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    width: 60px;
    height: 60px;
    padding: 10px;
}

.item .icon .arrow img {
    filter: var(--filter-1);
}

.item .icon .arrow span {
    color: #fff;
    font-size: 24px;
}

.item:hover .icon .arrow {
    background: #1e1e1f;
}

.item:hover .icon .arrow span {
    color: #000;
}

.bottom-fade {
    width: 100%;
    top: 0.5px;
    height: 100%;
    float: left;
    position: absolute;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
    z-index: 0;
    border-radius: 20px 20px 0 20px;
}

.services .item-s {
    position: relative;
    padding: 30px 20px 50px 30px;
    border-radius: 20px 20px 0 20px;
    background: var(--clr-blue2);
    z-index: 2;
    height: 100%;
    min-height: 293px;
}

/* text */
.services .item-s .text h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.services .item-s .text p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 0;
}

/* icon */
.services .item-s .icon {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 90px;
    height: 90px;
    background: var(--clr-black1);
    border-top-left-radius: 50%;
    padding: 15px;

}

.services .item-s {
    overflow: hidden;
}

.services .item-s * {
    z-index: 1;
    position: relative;
}

.services .item-s::before {
    content: '';
    width: 0%;
    height: 100%;
    background: var(--clr-blue1);
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 0;
    transition: .3s;
    border-radius: 20px 20px 0 20px;
    transform: rotate(45deg);
}

.services .item-s:hover::before {
    width: 100%;
    transform: rotate(0deg);
}

.services .item-s:hover .icon .arrow {
    transform: scale(1.05);
}

.services .item-s .icon::before {
    position: absolute;
    content: "";
    bottom: 6px;
    left: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px var(--clr-black1);
}

.services .item-s .icon::after {
    position: absolute;
    content: "";
    top: -20px;
    right: 6px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px var(--clr-black1);
}

.services .item-s .icon .arrow {
    position: absolute;
    background: var(--clr-blue2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    width: 60px;
    height: 60px;
    line-height: 60px;
    transform: rotate(0deg);
}

.services .item-s .icon .arrow span {
    font-size: 15px;
}

.services .item-s:hover .icon .arrow {
    background: var(--clr-white);
    color: #000;
    transform: rotate(360deg) scale(1.2);
}

.services .item-s .icon .icon-w {
    overflow: hidden;
    background-color: transparent;
    padding: 10px;
}

.services .item-s .icon .icon-w img {
    width: 100%;
}

.services .item-s .icon .icon-w img.icon-show {
    filter: var(--filter-1);
}

.services .item-s .icon .icon-w img.icon-hidden {}

.services .item-s:hover .icon .icon-w img.icon-show,
.services .item-s .icon .icon-w img.icon-hidden {
    display: none;
}

.services .item-s:hover .icon .icon-w img.icon-hidden {
    display: block;
    text-align: center;
    vertical-align: middle;
}

.services-label {
    position: absolute;
    right: 100px;
    bottom: 10px;
    font-size: 18px;
    font-weight: 400;
}

.core-features {
    display: flex;
    gap: 30px;
}

.core-features>* {
    flex: 1 1 33.33%;
}

.core-feature-card {
    background: rgb(16, 16, 16);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 111;
    padding: 20px 20px 20px;
    position: relative;
    width: 100%;
    max-width: 230px;
    transition: .3s;
    transform: scale(1);
}

.core-features .core-feature-card:hover {
    background: var(--clr-blue2);
}

.core-features .core-feature-card .b-top-left {
    position: absolute;
    top: 0px;
    left: 0px;
    transition: 0.3s;
}

/*.core-features .core-feature-card:hover .b-top-left {
    top:-10px;
    left:-10px;
}*/
.core-features .core-feature-card .horizontal {
    width: 250px;
    height: 1px;
    animation: 0.5s ease-out 0s 1 normal forwards running horizontal-grow;
}

.core-features .core-feature-card .b-top-left .horizontal {
    opacity: 0.3;
    margin-left: -10%;
    background: linear-gradient(90deg, var(--clr-white) 0%, transparent 100%);
}

.core-features .core-feature-card .verticle {
    width: 1px;
    height: 250px;
    animation: 0.5s ease-out 0s 1 normal forwards running vertical-grow;
}

.core-features .core-feature-card .b-top-left .verticle {
    opacity: 0.3;
    margin-top: -10%;
    background: linear-gradient(var(--clr-white) 0%, transparent 100%);
}

.core-features .core-feature-card .b-top-left::after {
    position: absolute;
    content: "";
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background-color: var(--clr-white);
    opacity: 1;
}

.core-features .core-feature-card .b-top-right {
    position: absolute;
    top: 0px;
    right: 0px;
    transition: 0.3s;
    right: -27px;
}

/*.core-features .core-feature-card:hover .b-top-right {
    top:-10px;
    right:-37px;
}*/
.core-features .core-feature-card .horizontal {
    width: 250px;
    height: 1px;
    animation: 0.5s ease-out 0s 1 normal forwards running horizontal-grow;
}

.core-features .core-feature-card .b-top-right .horizontal {
    margin-right: -10%;
    opacity: 0.3;
    background: linear-gradient(270deg, var(--clr-white) 0%, transparent 100%);
}

.core-features .core-feature-card .b-top-right .verticle {
    margin-top: -10%;
    opacity: 0.3;
    background: linear-gradient(190deg, var(--clr-white) 0%, transparent 100%);
}

.core-features .core-feature-card .b-top-right::after {
    position: absolute;
    content: "";
    top: -5px;
    right: 20px;
    width: 10px;
    height: 10px;
    background-color: var(--clr-white);
    opacity: 1;
}

.core-features .core-feature-card .b-bottom-right {
    position: absolute;
    bottom: 0px;
    right: 0px;
    transition: 0.3s;
    right: -27px;
}

/*.core-features .core-feature-card:hover .b-bottom-right {
      bottom:-10px;
    right:-37px;
}*/
.core-features .core-feature-card .b-bottom-right .horizontal {
    opacity: 0.3;
    margin-right: -10%;
    background: linear-gradient(270deg, var(--clr-white) 0%, transparent 100%);
}

.core-features .core-feature-card .b-bottom-right .verticle {
    opacity: 0.3;
    margin-bottom: -10%;
    background: linear-gradient(0deg, var(--clr-white) 0%, transparent 100%);
}

.core-features .core-feature-card .b-bottom-right::after {
    position: absolute;
    content: "";
    bottom: -5px;
    right: 20px;
    width: 10px;
    height: 10px;
    background-color: var(--clr-white);
    opacity: 1;
}

.core-features .core-feature-card .b-bottom-left {
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition: 0.3s;
}

/*.core-features .core-feature-card:hover .b-bottom-left {
    bottom:-10px;
    left:-10px;
}*/
.core-features .core-feature-card .b-bottom-left .verticle {
    opacity: 0.3;
    margin-bottom: -10%;
    background: linear-gradient(0deg, var(--clr-white) 0%, transparent 100%);
}

.core-features .core-feature-card .b-bottom-left .horizontal {
    opacity: 0.3;
    margin-left: -10%;
    background: linear-gradient(90deg, var(--clr-white) 0%, transparent 100%);
}

.core-features .core-feature-card .b-bottom-left::after {
    position: absolute;
    content: "";
    bottom: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background-color: var(--clr-white);
    opacity: 1;
}

.core-feature-card .icon {
    margin-bottom: 10px;
    width: 40px;
    transition: .3s;
}

.core-feature-card .icon img {
    width: 100%;
    filter: var(--filter-1);
}

.core-feature-number {
    display: none;
}

.core-feature-desp {
    position: relative;
    z-index: 11;
    transition: .3s;
}

.core-features .core-feature-card:hover .icon {
    transform: scale(1.35) rotate(360deg);

}

.core-features .core-feature-card:hover .core-feature-desp {
    transform: scale(1.);
}

.cta {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(255, 255, 255, 0.2);
    box-shadow: 0px 5px 20px 0px rgba(255, 255, 255, 0.2);
    background-color: var(--clr-blue1);
    position: relative;
    overflow: hidden;
}


@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}


.neo-footer {
    background: var(--clr-black1);
    color: var(--white-smoke);
    position: relative;
    isolation: isolate;
    padding-top: 80px;
    overflow: hidden;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-angle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--clr-black1);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
    z-index: -1;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
}

.footer-grid {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 80px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 40px 25px 40px;
}

.footer-section {
    position: relative;
    padding: 0px;
    /*background: rgba(255, 255, 255, 0.03);*/
    /*border-radius: 15px;
    backdrop-filter: blur(5px);*/
    /*transition: all 0.3s ease;*/
    /*border: 1px solid rgba(255, 255, 255, 0.05);*/
}

.footer-section:hover {
    border-color: var(--clr-blue);
}

.section-title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--clr-blue3);
    transform: skewX(-30deg);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
    color: rgba(241, 236, 231, 0.8);
}

.footer-links li a::before {
    content: '◊';
    position: absolute;
    left: 0;
}

.footer-links a {
    color: rgba(241, 236, 231, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    display: inline-block;
    padding-left: 20px;
    position: relative;
}

.footer-links a:hover {
    color: var(--clr-blue3);
    text-shadow: 0 0 10px rgba(23, 49, 173, 0.3);
}

.footer-links a.footer-link-active {
    color: var(--clr-blue3);
    text-shadow: 0 0 10px rgba(23, 49, 173, 0.3);
    pointer-events: none !important;
    cursor: default !important;
}

.copyright {
    text-align: center;
    padding: 40px 0;
    position: relative;
    margin-top: 80px;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--clr-blue3), transparent);
}

.footer-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(23, 49, 173, 0.1), transparent 60%);
    z-index: -1;
}

.footer_shape_1 {
    position: absolute;
    top: 0px;
    left: 0px;
}

.footer_shape_2 {
    position: absolute;
    top: 120px;
    right: 0px;
    transform: rotateY(180deg);
}

.footer_shape_1 img,
.footer_shape_2 img {
    opacity: .75;
}


a.btn-circle {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    min-width: 160px;
    color: var(--clr-white);
    padding-left: 25px;
    padding-bottom: 42px;
    padding-top: 35px;
    text-decoration: none;
    margin-top: 42px;
    animation: pulse 2s infinite;
}

a.btn-circle img {
    height: 12px;
    margin-right: 15px;
    transition: all .35s ease-in-out;
    filter: var(--filter-1);
}

a.btn-circle span {
    position: relative
}

a.btn-circle:after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 110px;
    width: 110px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: url(../images/round-shape.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    transition: all .35s ease-in-out;
}


a.btn-circle .button-content {
    position: relative;
    z-index: 1;
}

.bg-dark a.btn-circle {
    color: var(--clr-white)
}

a.btn-circle:hover:after {
    background: var(--clr-black);
    transform: translateY(-50%) scale(.8);
    left: -10px;
}


a.btn-circle strong {
    transition: all .35s ease-in-out;
    font-weight: 500;
}

a.btn-circle:hover strong {
    margin-left: 25px;
    transform: translate(25px);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

}

.cta-content {
    position: relative;
    z-index: 1;
}

.line_animation {
    top: 0px;
    left: 50%;
    z-index: 0;
    width: 100%;
    bottom: 0px;
    display: block;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.line_animation .line_area {
    width: calc(12.5% - 3px);
    height: 100%;
    position: relative;
    display: inline-block;
    border-right: 1px solid rgba(255, 255, 255, .05);
}

.line_animation .line_area:last-child {
    opacity: 0;
}

.line_animation .line_area:before {
    width: 1px;
    right: -1px;
    content: "";
    height: 60px;
    border-radius: 100%;
    position: absolute;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, .5)), to(transparent));
    background-image: linear-gradient(0deg, rgba(255, 255, 255, .5), transparent);
}

.line_animation .line_area:nth-child(even):before {
    -webkit-animation: line_animation 20s ease-out infinite;
    animation: line_animation 20s ease-out infinite;
}

.line_animation .line_area:nth-child(odd):before {
    -webkit-animation: line_animation_2 20s ease-out infinite;
    animation: line_animation_2 20s ease-out infinite;
}

@-webkit-keyframes line_animation {
    0% {
        top: 0px;
        opacity: 1;
    }

    50% {
        top: 50%;
    }

    100% {
        top: 100%;
        opacity: 1;
    }
}

@keyframes line_animation {
    0% {
        top: 0px;
        opacity: 1;
    }

    50% {
        top: 50%;
    }

    100% {
        top: 100%;
        opacity: 1;
    }
}

@-webkit-keyframes line_animation_2 {
    0% {
        opacity: 1;
        bottom: 0px;
    }

    50% {
        bottom: 50%;
    }

    100% {
        bottom: 100%;
        opacity: 1;
    }
}

@keyframes line_animation_2 {
    0% {
        opacity: 1;
        bottom: 0px;
    }

    50% {
        bottom: 50%;
    }

    100% {
        bottom: 100%;
        opacity: 1;
    }
}

.cta-shape {
    position: absolute;
    animation: pulse1 2s infinite;
}

.cta-shape-1 {
    left: 20px;
    bottom: 20px;
    width: 60px;
}

.cta-shape-2 {
    right: 60px;
    bottom: 100px;
    width: 40px;
}

.cta-shape-3 {
    right: 20px;
    bottom: 20px;
    width: 20px;
}

@keyframes pulse1 {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

}

.image-cover {
    position: relative;
}

.image-cover img {
    position: relative;
    z-index: 1;
}

.image-cut img {
    -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
}

.image-borderd::after {
    content: '';
    width: calc(100% + 10px);
    height: calc(100% + 20px);
    position: absolute;
    left: 0px;
    top: -10px;
    background: transparent;
    z-index: 0;
    -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
    border: 1px solid #fff;
    border-left: 0px;
}

.card-box {
    padding: 16px;
    -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
    padding-top: 90px;
    position: relative;
}

.card-box ul {
    position: relative;
    z-index: 1;
}

.card-box img {
    position: absolute;
    top: -1px;
    right: -7px;
    opacity: .75;
    z-index: 0;
}

ul {
    padding: 0px;
    margin-bottom: 0px;
}

ul li {
    list-style-type: none;
    position: relative;
}

ul.list-1 li::before {
    content: '';
    width: 40px;
    height: 28px;
    background: red;
    position: absolute;
    left: 0px;
    top: 1px;
    background: url(../images/icons/check.png);
    background-size: contain;
    background-position: left center;
    filter: var(--filter-1);
    background-repeat: no-repeat;
}

ul.list-1 li {
    padding-left: 40px;
    margin-bottom: 12px;
}

/*ul.list-1 li:last-child {
    margin-bottom: 0px;
}*/

.support-with-purpose-3::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url(../images/lines.png);
    background-size: cover;
    opacity: .35;
}

.image-cover.img-shape {
    padding: 80px 0px;
}

.image-cover .img-shape-1 {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: var(--filter-1);
    z-index: 0;
    left: 50%;
    height: 100%;
}

.infrastructure-support-3 .left-bg-card {
    position: relative;
    height: 100%;
}

.infrastructure-support-3 .left-bg-card::after {
    content: '';
    width: 5000px;
    height: calc(100% + 200px);
    position: absolute;
    right: 0px;
    top: -100px;
    background: var(--clr-blue1);
}

.infrastructure-support-3 .left-bg-card img {
    width: calc(100% + 60px) !important;
    border-radius: 15px;
}

.infrastructure-support-4 {
    background-image: url(../images/section-bg-1.webp);
    background-size: cover;
}

.infrastructure-support-5 .card-box {
    padding: 50px 35px;
    background-image: linear-gradient(180deg, #2A2D32 0%, #000000 100%);
    background-size: cover;
    background-repeat: no-repeat;
    clip-path: initial;
}

.infrastructure-support-5 .card-box:before {
    content: '';
    background: url(../images/bg-1.png);
    position: absolute;
    left: 0px;
    top: 0px;
    background-size: contain;
    width: 100%;
    height: 100%;
    opacity: .05;
}

.infrastructure-support-5 .card-box p {
    padding-left: 40px;
    position: relative;
}

.infrastructure-support-5 .card-box p:before {
    content: '';
    width: 20px;
    height: 20px;
    background: red;
    position: absolute;
    left: 0px;
    top: 5px;
    background: url(../images/icons/check-1.png);
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: var(--filter-1);
}

.image-cut-1 img {
    -webkit-clip-path: polygon(0 0, 80% 0, 100% 22%, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 80% 0, 100% 22%, 100% 100%, 0 100%);
}

.image-borderd-1::after {
    content: '';
    width: calc(100% + 10px);
    height: calc(100% + 20px);
    position: absolute;
    left: -10px;
    top: -10px;
    background: transparent;
    z-index: 0;
    -webkit-clip-path: polygon(0 0, 80% 0, 100% 22%, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 80% 0, 100% 22%, 100% 100%, 0 100%);
    border: 1px solid #fff;
    border-right: 0px;
}

ul.list-1.list-2 li {
    padding-left: 24px;
}

ul.list-1.list-2 li:before {
    content: '❋';
    background-image: none;
    width: 20px;
    height: 20px;
    top: -1px;
    color: #ffffff;
    filter: initial;
}

.goal-circle-container {
    display: flex;
    gap: 40px;
    align-items: flex-end;
    justify-content: center;
}

.goal-circle-container .goal-circle {
    position: relative;
    width: 236px;
    border-radius: 100%;
    overflow: hidden;
    flex: 0 0 236px;
}

.goal-circle-container .goal-circle .goal-circle-overlay {
    width: 100%;
    height: 100%;
}

.goal-circle-container .goal-circle img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: rotateY(0deg);
    transition: transform 0.5s ease, right 0.5s ease;
    transform-origin: center center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.it-consulting-2 .card-box-2 {
    position: relative;
    padding-left: 13px;
}

.it-consulting-2 .card-box-2::before {
    content: '';
    width: 90%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 26px;
    background: linear-gradient(90deg, var(--clr-blue3), var(--clr-blue1));
    transform: rotate(3deg);
    outline: 2px dashed;
    white;
    outline-offset: 5px;
}

.it-consulting-3 {
    background-image: url(../images/bg-2.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #1E2024;
}

.it-consulting-3 .item .icon {
    background-color: #1E2024;
}

.it-consulting-3 .item .icon::before,
.it-consulting-3 .item .icon::after {
    box-shadow: 6px 6px 0 6px #1E2024;
    box-shadow: 6px 6px 0 6px #1E2024;
}

.it-consulting-3 .item .icon .arrow {
    background: var(--clr-blue3);
}

.it-consulting-3 .item:hover .icon .arrow {
    background: var(--clr-blue2);
}

.it-consulting-5 .card-box-3 {
    background: var(--clr-blue2);
    padding: 50px 30px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ffffff;
}

.it-consulting-5 .card-box-3:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--clr-blue1);
    width: 31%;
    /*-webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);*/
    z-index: 0
}

.card-item {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 15px;
}

.card-item .icon-cover {
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 10px;
    background: #2A2D32;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    flex: 0 0 60px;
}

.card-item .icon-cover img {
    width: 100%;
    filter: var(--filter-1);
}

.it-consulting-6 .card-box-2 {
    background: #18191B;
    padding: 30px 40px;
    border-radius: 10px;
    height: 100%;
    position: relative;
}

.it-consulting-6 .card-box-2::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    height: 300px;
    width: 300px;
    background: var(--clr-blue3);
    border-radius: 50%;
    filter: blur(150px);
    opacity: .4;
}

.it-consulting-7 .right-bg-card {
    position: relative;
    height: 100%;
}

.it-consulting-7 .right-bg-card::after {
    content: '';
    width: 5000px;
    height: calc(100% + 200px);
    position: absolute;
    left: 0px;
    top: -100px;
    background: var(--clr-blue);
}

.it-consulting-7 .right-bg-card img {
    width: calc(100% + 60px) !important;
    border-radius: 15px;
    left: -60px;
}

.circle-img-bord {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: visible;
    position: relative;
    margin: 0 auto;
    margin-top: 100px;
}

p.circle-img-bord-p {
    margin-top: 150px;
}

.circle-img-bord img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: .3s;
}

.circle-img-bord:hover img {
    transform: rotate(360deg);
}

.circle-img-bord:before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: .3s;
}

.circle-img-bord:after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: .3s;
}

.circle-img-bord:hover:before,
.circle-img-bord:hover:after {

    border: 1px solid rgba(255, 255, 255, 1);
}

.network-security-and-monitoring-1 .shape-1 {
    position: absolute;
    right: 50px;
    bottom: 30px;
    animation: pulse1 2s infinite;
    opacity: .4;
}

.network-security-and-monitoring-2 {
    background: linear-gradient(180deg, rgba(238, 251, 19, 0) 18.17%, rgba(23, 49, 172, 0.3) 100%);
}

.network-security-and-monitoring-2 .card-box-2 {
    position: relative;
    padding-right: 13px;
}

.network-security-and-monitoring-2 .card-box-2::before {
    content: '';
    width: 90%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 26px;
    background: linear-gradient(90deg, var(--clr-blue3), var(--clr-blue));
    transform: rotate(-3deg);
    outline: 2px dashed var(--clr-blue3);
    outline-offset: 5px;
}


.network-security-and-monitoring-3 .card-item {
    display: flex;
    flex-direction: column;
    padding: 40px 27px;
    background: linear-gradient(0deg, #2a2d32 20%, #1d1d1d 100%);
    border-radius: 30px;
    height: 100%;
    transition: .3s;
    align-items: center;
}

.network-security-and-monitoring-3 .card-icon {
    margin-bottom: 20px;
    width: 75px;
    height: 75px;
    background: var(--clr-blue2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 75px;
    /*border: 1px solid #ffffff;*/
    padding: 12px;
    border-radius: 10px;
}

.network-security-and-monitoring-3 .card-icon img {
    width: 100%;
    filter: var(--filter-1);
}

.network-security-and-monitoring-3 .card-content h3 {
    margin-bottom: 15px;
}

.network-security-and-monitoring-3 .card-content p {
    color: rgb(204, 204, 204);
    transition: .3s;
}

.network-security-and-monitoring-3 .card-item:hover {
    transform: translateY(-10px);
}

.network-security-and-monitoring-3 .card-item:hover .card-content p {
    color: #ffffff;
}

.check-item {
    border: 1px solid;
    padding: 10px 20px;
    border-radius: 100px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.check-item:hover {
    background: var(--clr-blue1);
    transform: translateY(-5px);
}

.network-security-and-monitoring-5 {
    background-image: url(../images/bg-2.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #1E2024;
}

.two-boxs {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 30px;
    width: 100%;
    flex: 0 0 100%;
    height: 100%;
}

.box-1 {
    width: 40%;
    height: 100%;
    flex: 0 0 40%;
    position: relative;
}

.box-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
}

.box-2 {
    width: 60%;
    height: 100%;
    flex: 0 0 60%;
    border: 1px solid #ffffff;
    background: var(--clr-blue2);
    padding: 50px 20px 20px 40px;
    -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 17%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 17%);
}

.network-security-and-monitoring-6 {}

.list-3 li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 26px;
}

.list-3 li:last-child {
    margin-bottom: 0px;
}

.list-3 li span.span-icon {
    position: absolute;
    left: 0px;
    top: 0px;
}

.network-security-and-monitoring-6 img {
    border-radius: 1000px;
}

.no-break {
    white-space: nowrap;
}

.legal-pages h2 {
    margin-bottom: 12px;
    font-size: 40px;
}

.legal-pages p {
    margin-bottom: 20px;
}

.legal-pages p+ul {
    margin-top: -4px;
}

.legal-pages ul {
    margin-bottom: 30px;
}

.legal-pages ul+p {
    margin-top: -15px;
}

.legal-pages ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.legal-pages a {
    color: var(--clr-blue3);
    text-decoration: none;
}

.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.form-control {
    border: 1px solid #ffffff !important;
    box-shadow: none;
    outline: none;
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    color: #ffffff;
}

textarea.form-control {
    border-radius: 15px;
}

.recaptch-cover {
    border: 1px solid #ffffff !important;
    padding: 0px;
    position: relative;
    background-color: transparent;
    border-radius: 15px;
}

.recaptch-cover .recaptch-cover-header {
    padding: 12px 30px;
    text-align: left;
    display: block;
    border-bottom: 1px solid #ffffff !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0px;
}

.recaptch-cover .recaptch-cover-header button {
    background: var(--clr-blue3);
    border-color: var(--clr-blue3);
    border-radius: 3px;
    color: #ffffff;
    border-radius: 50px;
    padding: 6px 18px 8px;
}

.recaptch-cover .recaptch-cover-header button i {
    margin-right: 5px;
}

.recaptch-cover .recaptch-cover-header button:active {
    background: transparent;
    border-color: #ffffff;
}

.recaptch-cover .recaptch-cover-header button:hover {
    background: transparent;
    border-color: #ffffff;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background-color: transparent;
    border-color: var(--clr-blue3);
    color: #ffffff;
}
.loading-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #ffffff;
    display: none;
}

.loading-overlay.active {
    display: flex;
}

#refreshCaptcha {
    cursor: pointer;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, .55);
    opacity: 1;
    /* Firefox */
}

.form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(255, 255, 255, .55);
}

.error {
    color: red;
    display: none;
}

.recaptch-cover-body {
    min-height: 300px;
    padding: 30px 20px 0px 20px;
}

#captchaContainer {
    max-width: 463px;
    margin: 0 auto;
}

.captcha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
    height: 250px;
    margin-bottom: 1.5rem;
}

.captcha-grid-item {
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.emoji-options {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.emoji-option {
    font-size: 2rem;
    cursor: pointer;
    padding: 0px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0px;
    background-color: var(--clr-blue3);
    border: 2px solid transparent;
    flex: 1;
    min-width: 60px;
    text-align: center;
}

.emoji-option:hover {
    background-color: var(--clr-black1);
}

.emoji-option.selected {
    border-color: #ffffff;
    background-color: var(--clr-blue);
}

.captcha-feedback {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    min-height: 24px;
}

.captcha-success {
    color: #198754;
}

.captcha-error {
    color: #dc3545;
}

#submitBtn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}


#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-default {
    display: inline-block;
    color: #ffffff;
    font-weight: 500;
    padding: 12px 30px 13px;
    border-radius: 999px;
    transition: all 0.3s ease;
    transform: translateZ(0);
    background-color: var(--clr-blue3);
    border: 2px solid var(--clr-blue3);
}

.btn-default:hover {
    background: var(--clr-black1);
    border: 2px solid var(--clr-black1);
}

.btn-default.btn-default-2 {
    background: transparent;
}

.btn-default.btn-default-1:hover {
    background: var(--clr-blue1);
    border: 2px solid var(--clr-blue1);
}

#submitBtn.btn-default {
    width: 100%;
}

.contact-page .b-top-left {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.contact-page .b-top-right {
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.3s ease;
}

.contact-page .b-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s ease;
}

.contact-page .b-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.contact-page .horizontal {
    width: 500px;
    height: 1px;
}

.contact-page .b-top-right .horizontal {
    margin-right: -10%;
    opacity: 0.3;
    background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
}

.contact-page .verticle {
    width: 1px;
    height: 500px;
}

.contact-page .b-top-right .verticle {
    margin-top: -10%;
    opacity: 0.3;
    background: linear-gradient(190deg, #ffffff 0%, transparent 100%);
    margin-left: auto;
}

.contact-page .b-top-right::after {
    position: absolute;
    content: "";
    top: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    opacity: 1;
}

.contact-page .b-top-left .horizontal {
    opacity: 0.3;
    margin-left: -10%;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.contact-page .b-top-left .verticle {
    opacity: 0.3;
    margin-top: -10%;
    background: linear-gradient(180deg, #ffffff 0%, transparent 100%);
}

.contact-page .b-top-left::after {
    position: absolute;
    content: "";
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    opacity: 1;
}

.contact-page .b-bottom-right .horizontal {
    opacity: 0.3;
    margin-right: -10%;
    background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
}

.contact-page .b-bottom-right .verticle {
    opacity: 0.3;
    margin-bottom: -10%;
    background: linear-gradient(0deg, #ffffff 0%, transparent 100%);
    margin-left: auto;
}

.contact-page .b-bottom-right::after {
    position: absolute;
    content: "";
    bottom: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    opacity: 1;
}

.contact-page .b-bottom-left .verticle {
    opacity: 0.3;
    margin-bottom: -10%;
    background: linear-gradient(0deg, #ffffff 0%, transparent 100%);
}

.contact-page .b-bottom-left .horizontal {
    opacity: 0.3;
    margin-left: -10%;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.contact-page .b-bottom-left::after {
    position: absolute;
    content: "";
    bottom: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    opacity: 1;
}

.contact-page-container {
    margin: 0 auto;
    max-width: 100%;
    padding: 20px 10px;
}

.custom-card {
    border: 1px solid #ffffff;
    padding: 20px;
    border-radius: 3px;
    transition: .3s;
}

.custom-card:hover {
    background: var(--clr-blue2);
    border-radius: 30px;
    border: 1px dashed #ffffff;
}


.configuration-management-2 .about-image {
    position: relative;
    padding-left: 70px;
    padding-bottom: 150px;
}

.configuration-management-2 .about-image .about-image-2 {
    position: absolute;
    right: 0;
    bottom: 0px;
    outline: 2px dashed var(--clr-white);
    outline-offset: 10px;
    z-index: 1;
    width: 250px;
    transition: .3s;
}

.configuration-management-2 .about-image:hover .about-image-2 {
    outline: 2px dashed var(--clr-blue3);
    outline-offset: 5px;
}

.configuration-management-2 .about-image .border-shape {
    position: absolute;
    left: 0px;
    bottom: 50px;
    width: 75%;
}

.configuration-management-2 .about-image .border-shape img {
    width: 100%;
}

.custom-card-1 {
    background: var(--clr-black1);
    position: relative;
    margin-top: 15px;
    padding: 0 30px 45px;
    -webkit-box-shadow: 0 0 59px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 59px rgba(0, 0, 0, 0.06);
    border-top: 3px solid var(--clr-blue3);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    height: 100%;
}

.custom-card-1 h3 {
    margin-bottom: 15px;
}

.custom-card-1 .icon-box {
    position: relative;
    bottom: 15px;
    width: 121px;
    height: 83px;
    margin: 0 auto;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.custom-card-1 .icon-box:before {
    position: absolute;
    left: -7px;
    right: -7px;
    top: 0;
    height: 14px;
    content: "";
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
    background-color: var(--clr-blue3);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.custom-card-1 .icon-box:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-blue3);
    clip-path: polygon(0 0%, 100% 0, 90% 100%, 10% 100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.custom-card-1 .icon-box img {
    width: 60%;
    z-index: 1;
    filter: var(--filter-1);
}

.custom-card-1:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    pointer-events: none;
    background-color: var(--clr-blue1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.custom-card-1 * {
    position: relative;
    z-index: 1;
}

.custom-card-1:hover:before {
    height: 100%;
}

.custom-card-1 .icon-right-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 1;
    width: 121px;
    height: 121px;
    background-image: url(../images/dots-light.png);
    z-index: 3;
}

.configuration-management-4 {
    background-image: url(../images/bg-3.svg);
    background-size: cover;
}

.skill-list {
    padding: 0;
    margin: 0 auto;
    list-style: none;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    margin-left: 0px;
    transition: margin-left 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    width: fit-content;
    gap: 20px;
}

.skill-list .single-skill {
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid rgba(238, 238, 238, 0.8);
    border-radius: 100px;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), z-index 0.8s ease;
    border: 1px solid var(--clr-blue3);
    transform: translateX(0px);
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 5;
    padding: 30px 30px;
    width: 16.6667%;
}

.skill-list .single-skill::before {
    content: '';
    width: 0%;
    height: 0%;
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--clr-blue3);
    border-radius: 100px;
    transition: .3s;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.skill-list .single-skill:hover::before {
    width: 100%;
    height: 100%;
}

.skill-list .single-skill .icon {
    width: 50px;
    position: relative;
    z-index: 1;
}

.skill-list .single-skill .icon img {
    width: 100%;
    filter: var(--filter-1);
}

.skill-list .single-skill .content {
    text-align: center;
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

.skill-list .single-skill .content p span.no-break {
    white-space: wrap !important;
}

.configuration-management-5 {}

.bg-pattern {
    position: absolute;
    left: auto;
    top: 0;
    right: 0;
    width: 369px;
    height: 364px;
    opacity: 0.1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url("../images/bg-4.png");
}

.fix-image-right {
    position: relative;
    height: 100%;
}

.fix-image-right .fix-image-content {
    position: relative;
    z-index: 1;
    padding-left: 30px;
    top: 10px;
}

.fix-image-right img {
    position: absolute;
    left: 0px;
    top: -100px;
    height: calc(100% + 200px);
    object-fit: cover;
    z-index: 0;
}

.fix-image-right::after {
    content: '';
    width: 5000px;
    top: -100px;
    height: calc(100% + 200px);
    float: left;
    position: absolute;
    background: linear-gradient(
  to top,
  transparent 0%,
  rgba(34, 79, 131, 0.5) 15%,
  rgba(34, 79, 131, 0.6) 30%,
  rgba(34, 79, 131, 0.7) 50%,
  rgba(34, 79, 131, 0.6) 70%,
  rgba(34, 79, 131, 0.5) 85%,
  transparent 100%
);
    z-index: 0;
}

.cf-image-1 {
    display: block;
}

.cf-image-2 {
    display: none;
}

.cookie-popup-container .cookie-popup {
    padding-left: 13px !important;
}

.cookie-popup-container .cookie-popup:before {
    content: '';
    width: 90%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 26px;
    background: linear-gradient(90deg, var(--clr-blue3), var(--clr-blue1));
    transform: rotate(3deg);
    outline: 2px dashed #fff;
    outline-offset: 5px;
    transition: all 0.1s;
}

.cookie-popup-container .cookie-popup.slowlyDown:before {
    top: auto;
    bottom: -18px;
    height: 340px;
}

/* Circle */
.hover-effect {
    position: relative;
    overflow: hidden;
}

.hover-effect::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.hover-effect:hover::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000001;
}

.loader-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke-width: 10;
    r: 50;
    cx: 60;
    cy: 60;
}

.svg-bg {
    stroke: #333;
}

.progress {
    stroke: var(--clr-blue3);
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
}

.percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
}

