@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Playfair+Display:wght@100;200;300;400;500;600;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Serif:wght@100;200;300;400;500;600;700&display=swap);

:root {
    scroll-behavior: smooth;
    --button-color: #8E32C6;
    --font-color: #FFF;
    --font-family-roboto: 'Roboto', sans-serif;
    --font-size: 24px;
    overflow-x: hidden;
}

* {
    user-select: none;
    margin: 0 auto;
}

body {
    background: linear-gradient(270deg, #0d1630, #1a0030, #330048);
    background-size: 300% 300%;
    animation: gradientAnimation 3s ease infinite;
    overflow-x: hidden;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container {
    border-radius: 0px;
    box-shadow: var(--button-color) 0px 0px 50px 0px;
}

header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 1440px;
    height: 93px;
    flex-shrink: 0;
    background: #012D63;
}

.logo-header {
    width: 100px;
    margin-left: 168px;
    height: 60px;
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    margin-right: 75px;
}

.header-nav ul {
    display: flex;
    gap: 29px;
}

.header-nav ul li {
    list-style: none;
}

.header-nav ul li a {
    text-decoration: none;
    color: #C7C7C7;
    font-family: var(--font-family-roboto);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.header-nav ul li a:hover {
    color: var(--font-color);
    font-family: var(--font-family-roboto);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.header-nav ul li:nth-of-type(1) {
    width: 112px;
}

.header-nav ul li:nth-of-type(2) {
    width: 86px;
}

.header-nav ul li:nth-of-type(3) {
    width: 125px;
}

.header-nav ul li:nth-of-type(4) {
    width: 88px;
}

.header-nav ul li:nth-of-type(5) {
    width: 88px;
}

.header-nav ul li:nth-of-type(6) {
    width: 58px;
}

.header-language a {

    color: #DCDCDC;
    font-family: var(--font-family-roboto);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
}

.header-language span {
    margin-right: 171px;
    color: var(--font-color);
    font-family: var(--font-family-roboto);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero-section {
    display: flex;
    width: 1440px;
    height: 858px;
    flex-shrink: 0;
    background: url(./src/img/hero/background-hero.png) center / cover no-repeat;
}

.hero-capacity {
    margin: 0;
}

.hero-logo-name {
    width: 178px;
    height: 86px;
    flex-shrink: 0;
    color: var(--font-color);
    font-family: "PT Serif";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: -35px;
    margin-left: 195px;
}

.hero-logo-img {
    width: 160px;
    height: 120px;
    flex-shrink: 0;
    margin-top: 94px;
    margin-left: 170px;
}

.hero-tittle {
    color: var(--font-color);
    font-family: "Playfair Display";
    font-size: 144px;
    margin-top: -45px;
    margin-left: 154px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero-h1 {
    color: var(--font-color);
    margin-top: -34px;
    margin-left: 164px;
    font-family: "Playfair Display";
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero-p {
    color: var(--font-color);
    margin-top: 11px;
    margin-left: 164px;
    font-family: var(--font-family-roboto);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero-button {
    width: 254px;
    height: 67px;
    flex-shrink: 0;
    margin-top: 38px;
    margin-left: 164px;
    text-decoration: none;
    border-radius: 10px;
    background: var(--button-color);
    color: var(--font-color);
    font-family: var(--font-family-roboto);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: rgba(142, 50, 198, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-button:hover {
    background: rgba(142, 50, 198, 0.45);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.our-advantages {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1440px;
    height: 606px;
    flex-shrink: 0;
    background: url(./src/img/advantages/background-advantages.png) center / cover no-repeat;
}

.advantages {
    display: flex;
    align-items: center;
    width: 1110px;
    height: 396px;
    flex-shrink: 0;
    border: 5px solid var(--button-color);
}

.advantages-line {
    width: 1px;
    height: 346px;
    background: var(--font-color);
}

.advantage h3 {
    color: var(--font-color);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.advantage img {
    width: 240px;
    height: 240px;
    flex-shrink: 0;
}

.reviews-section {
    width: 1440px;
    height: 420px;
    flex-shrink: 0;
    background: url(./src/img/reviews/background-reviews.png) center / cover no-repeat;
    padding: 50px 0;
    text-align: center;
}

.reviews-title {
    width: 175px;
    height: 65px;
    margin-bottom: 24px;
    flex-shrink: 0;
    color: var(--font-color);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.reviews-inner {
    display: flex;
    justify-content: center;
    gap: 93px;
    width: 255px;
    height: 292px;
    flex-shrink: 0;

}

.review-card {
    display: flex;
    text-align: start;
    flex-direction: column;
    background-size: cover;
    padding: 20px;
    width: 255px;
    height: 292px;
    flex-shrink: 0;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: scale(1.09);
}

.review-text {
    width: 228px;
    margin-top: 39px;
    color: var(--font-color);
    font-family: var(--font-family-roboto);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.review-time {
    color: #D8D8D8;
    font-family: var(--font-family-roboto);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 15px;
}

.review-info {
    display: flex;
    margin-top: 97px;
    margin-left: 10px;
}

.review-photo {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    border-radius: 31px;
}

.review-info p {
    color: var(--font-color);
    margin-left: 10px;
    font-family: var(--font-family-roboto);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.review-info span {
    display: block;
    color: #D8D8D8;
    font-family: var(--font-family-roboto);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.order-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1440px;
    height: 509px;
    flex-shrink: 0;
    background: url(./src/img//order/background-order.png) center / cover no-repeat;
}

.order {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 19px;
    text-align: center;
}

.order h1 {
    color: var(--font-color);
    width: 100%;
    font-family: "Playfair Display";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.order input {
    width: 580px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50px;
    background: var(--font-color);
    padding: 0 24px;
    outline: none;
}

.order input:focus {
    box-shadow: var(--button-color) 0 0 25px 10px;
}

.input-email-confirm {
    display: flex;
    align-items: center;
    width: 100%;
}

.input-email-confirm input {
    width: 690px;
    height: 60px;
    flex-shrink: 0;
    border: none;
    outline: none;
    padding: 0px 25px;
    font-size: 28px;
    flex-grow: 1;
    border-radius: 50px;
}

.input-email-confirm button {
    border: none;
    cursor: pointer;
    background: transparent;
    color: #8D8D8D;
    font-family: var(--font-family-roboto);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: -125px;
}

.input-email-confirm button:hover {
    color: var(--button-color);
}

.input-email-confirm button:nth-of-type(2) {
    display: none;
}

.order input:placeholder-shown {
    color: #959595;
    font-family: var(--font-family-roboto);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.order-button {
    width: 248px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 16px;
    margin-bottom: 60px;
    background: var(--button-color);
    color: var(--font-color);
    font-family: var(--font-family-roboto);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 2px solid var(--button-color);
    box-shadow: 0 0 50px 0 var(--button-color);
}

.order-button:hover {
    background: #7E32C9;
}

footer {
    display: flex;
    flex-direction: column;
    padding: 45px 0 25px 0;
    flex-shrink: 0;
    background: #021635;
}

.contact-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    width: 1110px;
}

.contact-item p {
    color: var(--font-color);
    font-family: var(--font-family-roboto);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.contact-item a {
    color: var(--font-color);
    font-family: var(--font-family-roboto);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    margin-right: 0;
}

.footer-line {
    width: 1110px;
    height: 1px;
    background: #9B9B9B;
}

.footer-bottom {
    display: flex;
    width: 1110px;
    color: var(--font-color);
    font-family: var(--font-family-roboto);
    font-size: 18px;
    margin-top: 24px;
}

.footer-bottom-left {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0;
}

.copyright-notice {
    color: var(--font-color);
    font-family: var(--font-family-roboto);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-location {
    color: var(--font-color);
    font-family: var(--font-family-roboto);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.footer-logo {
    width: 95px;
    margin-right: 0;
}

.footer-logo img {
    width: 108px;
    height: 81px;
    flex-shrink: 0;
}

.footer-logo-name {
    margin-top: -20px;
    margin-left: 20px;
    width: 178px;
    height: 26px;
    flex-shrink: 0;
    color: var(--font-color);
    font-family: "PT Serif";
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.scroll-button {
    position: fixed;
    bottom: 50px;
    right: 50px;
    padding: 10px 15px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.scroll-button:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

#prev-button,
#next-button {
    display: none;
}

.custom-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #012D63;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-svg {
    --uib-size: 40px;
    --uib-color: white;
    --uib-speed: 1.4s;
    --uib-bg-opacity: .1;
    height: var(--uib-size);
    width: var(--uib-size);
    transform-origin: center;
    overflow: visible;
}

.moving-line {
    fill: none;
    stroke: var(--uib-color);
    stroke-dasharray: 15, 85;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: travel var(--uib-speed) linear infinite;
    will-change: stroke-dasharray, stroke-dashoffset;
    transition: stroke 0.5s ease;
}

.static-track {
    stroke: var(--uib-color);
    opacity: var(--uib-bg-opacity);
    transition: stroke 0.5s ease;
}

@keyframes travel {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -100;
    }
}

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

::-webkit-scrollbar-track {
    background: #012D63;
}

::-webkit-scrollbar-thumb {
    background-color: var(--button-color); 
    border-radius: 100px; 
}

::-webkit-scrollbar-thumb:hover {
        background: #7E32C9;
}

.menu-button, .close {
    display: none;
}