@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_18pt-Regular.ttf'),
        url('../fonts/Inter/Inter_18pt-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_18pt-Medium.ttf'),
        url('../fonts/Inter/Inter_18pt-Medium.ttf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_18pt-Bold.ttf') format('woff2'),
        url('../fonts/Inter/Inter_18pt-Bold.ttf') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

input {
    outline: none;
}

h1,
h2,
h3,
h4 {
    font-family: "Gilroy", sans-serif;
}

p {
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    position: relative;
}

button:active {
    top: -1.5px;
}

body {
    background-color: #272728;
}

::-webkit-scrollbar {
    width: 18px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #595959;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    border: 3px solid #272728;
}

.header {
    background-image: url(../img/header.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
    box-shadow: inset 0px -20px 100px 100px #272728;
    margin-top: 10px;

}

.container {
    max-width: 1380px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0px 20px;
}

.logo a {
    display: flex;
    align-items: center;
    height: 40px;
    color: #fff;
    cursor: pointer;
}

.logo a img {
    width: 200px;
}

.nav {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.menu ul {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.menu ul li a {
    color: #fff;
    position: relative;
}

.menu ul li a:hover:after {
    width: 100%;
}

.menu ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    transition: 0.65s ease;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: -2px;
}

.burger {
    width: 30px;
    height: 22px;
    position: relative;
    display: none;
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
}

.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    top: 9px;
}

.burger span:nth-child(3) {
    bottom: 0;
}

.burger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    bottom: 9px;
    transform: rotate(-45deg);
}

.header-btn {
    padding: 5px 35px;
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    transition: 0.65s ease;
}

.header-btn:hover {
    background-color: #fff;
    color: #272728;
}

.header-content {
    margin: 150px 0px 30px 0px;
    width: 400px;
}

.header-title {
    font-size: 30px;
    color: #fff;
}

.header-subtitle {
    color: #fff;
    width: 340px;
    line-height: 25px;
    margin: 15px 0px;
}

.header-content-btn button {
    padding: 10px 60px;
    background-color: blue;
    color: #fff;
    border: 2px solid blue;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.services {
    padding: 40px 0px;
}

.services-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.services-item {
    width: 300px;
    text-align: center;
    color: #fff;
    margin: 10px;
    background-color: #212121;
    padding: 10px 0px;
    border-radius: 10px;
    flex-grow: 1;
}

.services-item-img img {
    width: 50px;
}

.services-item-title {
    text-transform: uppercase;
}

.services-item-value {
    margin: 10px 0px;
}

.services-item-name {
    color: #595959;
}

.about-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
}

.about__image {
    max-width: 700px;
}

.about__image img {
    max-width: 100%;
    object-position: left;
}

.about__content {
    flex: 1;
}

.about__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.about__line {
    width: 30px;
    height: 3px;
    background: #5b4bff;
}

.about__label h4 {
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    opacity: 0.8;
}

.about__title h1 {
    color: #fff;
    font-size: 52px;
    line-height: 1.1;
    margin: 0 0 25px 0;
}

.about__text p {
    font-size: 16px;
    line-height: 1.8;
    color: #cfcfd4;
    margin-bottom: 35px;
    max-width: 550px;
}

.about__button button {
    color: rgb(255, 255, 255);
    background-color: rgb(57, 49, 133);
    font-size: 20px;
    cursor: pointer;
    text-transform: uppercase;
    padding: 10px 60px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(57, 49, 133);
}

.global-content {
    text-align: center;
    color: #fff;
}

.global-title {
    font-size: 40px;
}

.global-subtitle {
    margin: 20px auto;
}

.find {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.global-img {
    display: flex;
    justify-content: center;
    margin: 30px 0px;

    & img {
        max-width: 100%;
    }
}

.our__solution {
    display: flex;
    justify-content: space-between;
    margin: 130px 0px;
    align-items: center;
}

.our__promise {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 130px 0px;
}

.pricing {
    margin: 150px 0px;
}

.pricing-title {
    text-align: center;
    color: #fff;
    font-size: 35px;
}

.pricing-btns {
    margin: 50px 0px;
    display: flex;
    justify-content: center;
}

.pricing-btns button {
    padding: 5px 55px;
    margin: 5px;
    cursor: pointer;
}

.pricing-btns button:nth-child(1) {
    background-color: #fff;
    border: 2px solid #fff;
    color: #000;
    transition: 0.65s ease;
}

.pricing-btns button:nth-child(1):hover {
    box-shadow: 0 0 10px #fff;
}

.pricing-btns button:nth-child(2) {
    background-color: #595959;
    border: 2px solid #595959;
    color: #fff;
    transition: 0.65s ease;
}

.pricing-btns button:nth-child(2):hover {
    box-shadow: 0 0 10px #595959;
}

.pricing-box {
    display: flex;
    justify-content: center;
}

.pricing-item {
    text-align: center;
    width: 250px;
    background-color: #1d1d1d;
}

/*  */

.pricing-top {
    padding: 20px 0px;
    position: relative;
    color: #fff;
}

.pricing-top-item1 {
    opacity: 0;
    display: none;
}

.pricing-bottom-item1 {
    transform: translateY(240.8px);
}

.most-popular-opacity {
    opacity: 0;
}

.most-popular {
    position: absolute;
    left: 15%;
    width: 180px;
    top: -15px;
    padding: 5px 35px;
    color: #393185;
    background-color: #fff;
}

.pricing-item-top-title {
    margin: 15px 0px;
}

.pricing-item-top-subtitle {
    margin: 15px 0px;
}

.pricing-item-top-pay {
    margin: 15px 0px;
}

.pricing-item-top-btn button {
    margin: 15px 0px;
    padding: 5px 35px;
    background-color: #393185;
    color: #fff;
    border: 2px solid #393185;
    cursor: pointer;
}

.most-item-suptitle {
    border-bottom: 1px solid #fff;
    border-top: 2px solid #fff;
    padding: 10px 0px;
    color: #fff;
}

.pricing-item-title {
    border-bottom: 1px solid #fff;
    border-top: 2px solid #fff;
    padding: 10px 0px;
    color: #fff;
}


.pricing-item-subtitle {
    border-bottom: 1px solid #fff;
    border-top: 2px solid #fff;
    padding: 10px 0px;
    color: #fff;
}

.pricing-item-day {
    border-bottom: 1px solid #fff;
    border-top: 2px solid #fff;
    padding: 10px 0px;
    color: #fff;
}

.pricing-item-pay {
    border-bottom: 2px solid #fff;
    border-top: 2px solid #fff;
    padding: 10px 0px;
    color: #fff;
}

.pricing-item-linear {
    background: linear-gradient(175deg, #393185, black);
    ;
}

.comments-title {
    color: #fff;
    text-align: center;
}

.comments-subtitle {
    color: #fff;
    text-align: center;
    width: 420px;
    margin: 30px auto;
}

.comments-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-item {
    width: 400px;
    border: 1px solid blue;
    padding: 20px;
    color: #fff;
    margin: 10px;
    height: 175px;
}

.comment-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-item-text {
    margin: 10px 0px;
}

.comments-acc {
    display: flex;
    align-items: center;
}

.comment-item-name {
    margin: 0px 5px;
}

.comment-item-img {
    margin: 0px 5px;
    width: 40px;
    height: 40px;
    border: 2px solid blue;
    border-radius: 50px;
}

.join {
    background-image: url(/img/5195347888992982674.webp);
    padding: 50px 0;
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-position: center;
}

.join::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.644);
}

.join-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.join-content {
    text-align: center;
}

.join-content h1 {
    font-size: 35px;
    color: #fff;
}

.join-btn {
    margin: 20px;
}

.join-btn button {
    padding: 15px 75px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
}

.footer {
    margin: 50px 20px;
}

.footer-title {
    text-align: center;
    color: #fff;
    margin: 0 auto;
}

.footer-title img {
    width: 250px;
}

.foooter-box {
    display: flex;
    justify-content: space-between;
    margin: 30px 0px;
    gap: 35px;
}

.footer-item {
    display: grid;
    gap: 10px;
}

.footer-item img {
    max-width: 300px;
}

.footer-item-title {
    color: #fff;
    text-transform: uppercase;
}

.footer-item-content ul li {
    margin: 10px 0px;
}

.footer-item-content ul li a {
    color: #fff;
}

.footer-year {
    text-align: center;
    color: #fff;
    margin: 30px 10px;
}

.footer-create {
    display: flex;
    margin: 0px 30px;
}

.create-icon {
    margin: 0px 20px;
    color: #fff;
    height: 20px;
    position: relative;
    z-index: 10;
}

.create-icon h4::after {
    content: '©';
    position: absolute;
    font-size: 100px;
    right: -30px;
    bottom: -20px;
    z-index: 1;
    color: rgba(97, 97, 97, 0.232);
}

.create-name {
    color: #fff;
}

.create-name h1 {
    margin: 10px 0px;
}

.create-name h4:last-child {
    color: #393185;
}

.footer-btn {
    height: fit-content;
    padding: 5px 35px;
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    transition: 0.65s ease;
}

.dev-notice {
    width: 90%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    z-index: 20000000000;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.dev-notice.hidden {
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

.dev-notice__content {
    max-width: 700px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(91, 75, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.dev-notice__content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.dev-notice__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #cfcfd4;
}