* {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    transition: .3s all ease;
}

select {
    cursor: pointer;
}

ul {
    list-style: none;
}

body {
    font-family: "Open Sans";
    background: #001025;
}

.wrapper {
    width: 100%;
    overflow: hidden;
}

.loader {
    background-color: #fff;
    transition: .3s all ease;
    height: 100dvh;
    width: 100dvw;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
}
.loader.loaded {
    opacity: 0;
    visibility: hidden;
}
.loader .loader_animation {
    position: absolute;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00172D;
    border-radius: 50%;
    top: calc(50% - 142px);
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
    animation: pulse 3s infinite;
    transition: .3s all ease;
    opacity: 1;
}
.loader_animation img{
    width: 30%;
}

@keyframes pulse {
  0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.container {
    max-width: 1730px;
    padding: 0 15px;
}

.btn {
    /* display: inline-flex;
align-items: center;
justify-content: center; */
    padding: 16px 64px;
    border-radius: 12px;
    background: linear-gradient(180deg, #06A7F1 0%, #006BA7 100%);
    color: #fff;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: .3s all ease;
    outline: none;
    border: none;
}

.btn:focus {
    outline: none;
}

.btn:hover {
    background: linear-gradient(100deg, #B8E7FF 0%, #006BA7 100%);
    box-shadow: 0px 4px 50px 0px rgba(68, 197, 255, 0.50);
    transition: .3s all ease;
    color: #fff;
}

.header_hero {
    padding: 40px 0 342px 0;
    /* background: linear-gradient(180deg, rgba(68, 197, 255, 0.10) 0%, rgba(0, 16, 37, 0.00) 100%); */
    background: url('../images/hero_bg.png') lightgray 0px -472.557px / 100% 150.651% no-repeat;
    background-blend-mode: luminosity;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #001025;
    /* z-index: 1; */
}

.header_hero::after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    background-image: linear-gradient(180deg, rgba(68, 197, 255, 0.10) 0%, rgba(0, 16, 37, 0.00) 100%);
    /* background: url('../images/hero_bg.png') lightgray 0px -472.557px / 100% 150.651% no-repeat;
    background-blend-mode: luminosity; */
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: 1
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 167px;
    position: relative;
    z-index: 10;
}

.hero {
    text-align: center;
    color: #fff;
}

.hero .hero_title {
    text-align: center;
    font-family: "Open Sans";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 78px;
    margin-bottom: 32px;
}

.hero .title_bottom {
    padding: 0;
    margin-bottom: 32px;
    text-align: center;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero .btn {
    position: relative;
    z-index: 10;
}

.about {
    padding: 80px 0 137px 0;
    color: #fff;
}

.mini_title {
    color: #44C5FF;
    text-align: center;
    /* Name Block Text */
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.section_title {
    color: #FFF;
    text-align: center;
    /* Headline Screen */
    font-family: "Open Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px;
}

.title_bottom {
    color: #989898;
    text-align: center;
    /* Subheadline Screen */
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 432px;
    margin-bottom: 32px;
}

.about .about_items {
    display: flex;
    gap: 10px 32px;
    justify-content: space-between;
}

.about .about_item {
    border-radius: 24px;
    background-color: #00172D;
    background-image: url('../images/item_bg.png');
    background-repeat: no-repeat;
    background-position: center 5px;
    background-size: 70%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: calc(25% - 24px);
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    transition: .8s all ease;
    height: 291px;
    padding-top: 215px;
    position: relative;
}
.about  .item_icon{
    position: absolute;
    top: 60px;
    transition: .8s all ease;
}
.about .about_item:hover .item_icon{
    top: 40px;
    transition: .8s all ease;
}
.about .item_title {
    color: #44C5FF;
    text-align: center;
    /* Primary Title in Block */
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    position: absolute;
    top: 203px;
    transition: .8s all ease;
}
.about .about_item:hover .item_title {
    top: 183px;
    transition: .8s all ease;
}
.about .item_info {
    /* display: none; */
    text-align: center;
    /* Body Text */
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    padding: 0 64px;
    opacity: 0;
}

.about .about_item::after {
    content: '';
    position: absolute;
    display: block;
    width: 258px;
    height: 258px;
    border-radius: 258px;
    background: #44C5FF;
    filter: blur(1000px);
    right: -129px;
    top: -129px;
    transition: .8s all ease;
}

.about .about_item:hover::after {
    border-radius: 258px;
    opacity: 0.5;
    background: #44C5FF;
    filter: blur(100px);
    right: -129px;
    top: 129px;
    transition: .8s all ease;
}

.about .about_item::before {
    content: '';
    position: absolute;
    display: block;
    width: 201px;
    height: 201px;
    border-radius: 201px;
    background: #44C5FF;
    filter: blur(1000px);
    left: -100px;
    bottom: -101px;
    transition: .8s all ease;
}

.about .about_item:hover::before {
    fill: #44C5FF;
    opacity: 0.7;
    filter: blur(80px);
    left: -100px;
    bottom: 101px;
    transition: .8s all ease;
}

.about .about_item:hover .item_info {
    opacity: 1;
    transition: .8s all ease;
}

.about .about_item:hover {
    background-image: none;
    /* padding-top: 32px; */
    transition: .8s all ease;
}

.about .about_item img {
    width: 128px;
    height: 128px;
    transition: .8s all ease;
}

.about .about_item:hover img {
    /* transform: scale(1.2); */
    transition: .8s all ease;
}

.vision {
    background: #00172D;
    padding: 64px 0;
    margin-bottom: 162px;
}

.vision .vision_section {
    padding: 0 144px;
}

.vision .mini_title {
    font-size: 18px;
}

.works {
    margin-bottom: 160px;
}

.works_section {
    display: flex;
    padding: 0 145px;
    gap: 0 32px;
    align-items: center;
}

.works .title_bottom {
    padding: 0;
    margin-bottom: 0;
}

.works .works_left,
.works .works_items {
    width: calc(50% - 16px);
    flex: 0 0 auto;
}

.works .works_item {
    padding: 16px;
    background: #00172D;
    border-radius: 60px;
    margin-bottom: 24px;
    display: flex;
    gap: 0 16px;
    align-items: center;
    transition: .3s all ease;
    position: relative;
    overflow: hidden;
}



.works .works_item::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 487px;
    background: linear-gradient(90deg, rgba(68, 197, 255, 0.30) 0%, rgba(2, 33, 58, 0.00) 100%), #00172D;
    box-shadow: -16px 0px 40px 0px rgba(41, 112, 143, 0.20);
    transition: 1s all ease;
    left: -100%;
    z-index: 1;
}
.works .works_item:hover:after {
    left: 0;
    transition: cubic-bezier(0.77, 0, 0.175, 1) all ease;
}

.works .works_item:last-child {
    margin-bottom: 0;
}

.works .item_icon {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #02213A;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    transition: .3s all ease;
}

.works .works_item:hover .item_icon {
    background-color: transparent;
    transition: .3s all ease;
    transform: scale(1.2);
    position: relative;
    z-index: 10;
}

.works .item_title {
    color: #44C5FF;
    /* Primary Title in Block */
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: .3s all ease;
    position: relative;
    z-index: 10;
}
.works .item_title .second,
.works .item_info .second{
    display: none;
    transition: .3s all ease;
}
.works .works_item:hover .item_title .second,
.works .works_item:hover .item_info .second{
    display: block;
    transition: .3s all ease;
}
.works .works_item:hover .item_title .first,
.works .works_item:hover .item_info .first{
    display: none;
    transition: .3s all ease;
}
.works .item_info {
    color: #fff;
    /* Body Text */
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    z-index: 10;
}

.founder {
    margin-bottom: 160px;
}

.founder .founder_section {
    padding: 48px 430px 48px 48px;
    border-radius: 24px;
    background: #00172D;
    display: flex;
    gap: 0 32px;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.founder .founder_section::after {
    content: '';
    display: block;
    position: absolute;
    left: -197px;
    top: -227px;
    width: 489px;
    height: 489px;
    border-radius: 489px;
    background: #44C5FF;
    filter: blur(200px);
    opacity: 0;
    transition: .3s all ease;
}

.founder .founder_section:hover:after {
    opacity: 0.5;
    transition: .3s all ease;
    left: calc(100% - 195px);
    top: calc(100% - 195px);
}

.founder .mini_title,
.founder .section_title {
    text-align: left;
}

.founder .title_bottom {
    padding: 0;
    text-align: left;
    margin-bottom: 0;
}

.founder .founder_left {
    width: 305px;
    height: 305px;
    border-radius: 26px;
    background: lightgray -62.309px -11.83px / 140.858% 139.945% no-repeat;
    /* background-size: 415px 317px; */
    flex: 0 0 auto;
    overflow: hidden;
}

.founder .founder_left img {
    /* width: 100%;
    height: 115%; */
}

.results {
    margin-bottom: 160px;
}

.results_section {
    padding: 0 144px;
}

.results .section_title {
    margin-bottom: 32px;
}

.results .results_item {
    display: flex;
    align-items: center;
    gap: 0 26.5px;
    margin-bottom: 24px;
}

.results .results_item:last-child {
    margin-bottom: 0;
}

.results .item_content {
    padding: 32px;
    border-radius: 24px;
    background: #00172D;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 288.5px);
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
}

.results .item_content::after {
    content: '';
    display: block;
    position: absolute;
    width: 487px;
    height: 487px;
    left: -134px;
    bottom: -244px;
    border-radius: 487px;
    background: #44C5FF;
    filter: blur(250px);
    opacity: 0;
    transition: .3s all ease;
}

.results .item_content:hover::after {
    transition: .3s all ease;
    opacity: 0.5;
    left: calc(100% - 144px);
    bottom: calc(100% - 244px);
}

.results .item_content .item_icon {
    position: relative;
    transition: .3s all ease;
}

.results .item_content .item_icon::after {
    content: '';
    display: block;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    position: absolute;
    background-image: url('../images/result_icon_effect.png');
    background-repeat: no-repeat;
    background-size: cover;
    top: -20px;
    left: -25px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results .item_content:hover .item_icon::after {
    opacity: 0;
    transition: .3s all ease;
}

.results .item_content:hover .item_icon {
    transform: scale(1.2);
    transition: .3s all ease;
}

.results .item_left {
    display: flex;
    align-items: center;
    gap: 0 24px;
}

.results .step_icon {
    width: 262px;
    flex: 0 0 auto;
}

.results .step_number {
    margin-bottom: 16px;
    color: #989898;
    /* Primary Title in Block */
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.results .item_title {
    margin-bottom: 8px;
    color: #44C5FF;
    /* Primary Title in Block */
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.results .item_info {
    color: #FFF;
    /* Body Text */
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.results .item_number {
    color: #02213A;
    leading-trim: both;
    text-edge: cap;
    font-family: "Open Sans";
    font-size: 256px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    position: absolute;
    right: 20px;
    top: -80px;
}

.membership {
    margin-bottom: 160px;
}

.membership_items {
    display: flex;
    gap: 0 32px;
}

.membership .membership_item {
    width: calc(25% - 24px);
    flex: 0 0 auto;
    padding: 32px;
    border-radius: 24px;
    background: #00172D;
    display: flex;
    flex-direction: column;
    gap: 24px 0px;
    position: relative;
    overflow: hidden;
    border-radius: var(--Corners-Small-Block-Corner, 24px);
    border: 1px solid transparent;
    transition: all .8s ease;
}
.membership .membership_item:hover {
    border: 1px solid var(--Variables-Primary-Color-Text, #44C5FF); 
    transition: all .8s ease;
}
.membership .membership_item::after {
    content: '';
    display: block;
    position: absolute;
    transition: all .8s ease;
    width: 292px;
    height: 292px;
    left: 54px;
    bottom: -323px;
    border-radius: 292px;
    opacity: 0.5;
    background: #44C5FF;
    filter: blur(125px);
    border: 1px solid var(--Variables-Primary-Color-Text, #44C5FF); 
}

.membership .membership_item:hover::after {
    transition: all .8s ease;
    opacity: 0.5;
    /* top: -203px; */
    bottom: calc(100% - 103px);
}

.membership .item_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.membership .item_title {
    color: #44C5FF;
    text-align: center;
    font-family: "Open Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.membership .item_level {
    color: #989898;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.membership .item_lists li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 0 4px;
    color: #fff;
    /* Body Text */
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.membership .item_lists li:last-child {
    margin-bottom: 0;
}

.membership .bottom_text {
    text-align: center;
    color: #989898;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

footer {
    margin-bottom: 176px;
}

.footer {
    padding: 32px;
    border-radius: 24px;
    background-color: #00172D;
    margin: 0 auto;
    margin: 0 432px;
    text-align: center;
}

footer .title_bottom {
    padding: 0;
}

footer .section_title {
    margin-bottom: 16px;
}

footer .title_bottom {
    margin-bottom: 16px;
}