/* Global settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

body {
    overflow-x: hidden;
    background-color: var(--Tło);
    height: 100vh;
}

:root {
    --Platonic: #F5F5F5;
    --Tło: #B4DCED;
    --Róż: #E89C84;
    --Napisy: #171940;
    --KolorBOX: #002244;
    --Pomarańczowy: #E64510;
    --CiemnyPomarańczowy: #BD3508;
    --Niebieski: #0667E7;
}

.clear {
    clear: both;
}

/* Nav settings */

.mainnavigation {
    position: fixed;
    display: flex;
    width: 100%;
    height: 90px;
    align-items: center;
    z-index: 999999;
    background-color: var(--Tło);
    transition: background-color 0.3s; /* Dodanie animacji przejścia */
}

.mainnavigation.scroll-nav {
    background-color: var(--Platonic);
}

.mainimagesplatonic {
    margin-left: 22px;
}

.mainplatonictitle {
    padding-left: 7px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    display: flex;
    align-items: center;
    color: var(--Napisy);
}

.navul {
    width: 100%;
    display: flex;
    list-style-type: none;
    justify-content: flex-end;
}

.linkmainnav {
    display: block;
    margin-left: 36px;
    margin-right: 36px;
    margin-top: 33px;
    margin-bottom: 33px;
    text-decoration: none;
    color: var(--Napisy)
}

.linkmainnav:hover {
    scale: 0.95;
}

.boxmainnav {
    display: block;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--Napisy)
}

.login-btn-span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    border: 1px solid;
    border-color: var(--CiemnyPomarańczowy);
    border-radius: 5px;
    background-color: var(--Pomarańczowy);
    color: var(--Platonic);
}

.hamburger {
    margin-right: 36px;
    cursor: pointer;
    border: none;
    display: none;
    background-color: transparent;
}

.hamburger-box {
    display: block;
    width: 40px;
    height: 24px;
    position: relative;
}

.hamburger-inner {
    position: absolute;
    width: 100%;
    height: 2.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: .3s ease-in-out;
    background-color: var(--Napisy);
}
    
.hamburger-inner::before {
    position: absolute;
    width: 100%;
    height: 2.5px;
    top: -12px;
    left: 0;
    content: '';
    transition: transform .3s ease-in-out;
    background-color: var(--Napisy);
}
    
.hamburger-inner::after {
    position: absolute;
    width: 100%;
    height: 2.5px;
    top: 12px;
    left: 0;
    content: '';
    transition: transform .3s ease-in-out;
    background-color: var(--Napisy);
}
    
.hamburger--active .hamburger-inner {
    background-color: transparent;
}
    
.hamburger--active .hamburger-inner::before {
    transform: translateY(12px) rotate(45deg);
}
    
.hamburger--active .hamburger-inner::after {
    transform: translateY(-12px) rotate(-45deg);
}
    
.nav-menu {
    display: none;
    position: absolute;
    width: 300px;
    height: 100vh;
    top: 90px;
    right: 0px;
    overflow-y: auto;
    background-color: var(--Platonic);
}
    
.nav-menu--active {
    display: none;
}
    
.navigation-list {
    list-style: none;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}
    
.navigation-item {
    margin-bottom: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    background-color: var(--Napisy);
}
    
.nav-menu-link {
    text-decoration: none;
    color: var(--Platonic);
}
    
.navigation-item:hover {
    transition: all 0.3s;
    background-color: #0E0F26;
}

/* Main section */

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1920px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}

.fixed-fix {
    width: 100%;
    height: 90px;
}

/* First section */

.first-section {
    display: flex;
    flex-direction: row;
    height: auto;
    background-color: var(--Tło);
}

.first-section-information {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 60%;
    max-width: 1143px;
    margin-left: 74px;
}

.first-section-heading {
    max-width: 752px;
    margin-top: 221px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 50px;
    color: var(--Napisy);
}

.first-section-heading span {
    color: var(--Pomarańczowy);
}

.first-section-subtitle {
    margin-top: 8px;
}

.first-subtitle-text {
    display: flex;
    align-items: center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
}

.first-section-link {
    text-decoration: none;
}

.first-section-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 60px;
    margin-top: 50px;
    border: 1px solid;
    border-color: var(--Pomarańczowy);
    border-radius: 5px;
    background-color: var(--Pomarańczowy);
}

.first-section-btn:hover {
    scale: 0.95;
    background-color: #ca4113;
}

.first-section-link-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    color: var(--Platonic);
}

.right-arrow-first {
    margin-left: 9px;
    font-size: 20px;
    color: var(--Platonic);
}

.first-section-image {
    width: 40%;
    max-width: 778px;
    margin-bottom: 70px;
}

.first-section-image img {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 128px 0 0 9%;
    z-index: 2;
}

.first-circle {
    position: absolute;
    top: 126px;
    right: -200px;
    max-width: 976px;
    min-width: 976px;
    width: 976px;
    max-height: 976px;
    min-height: 976px;
    height: 976px;
    border-radius: 50%;
    background-color: var(--Róż); 
    z-index: 1;
}

/* Second section */

.second-section {
    width: 100%;
    height: auto;
    background-color: var(--Tło);
    cursor: default;
}

.second-section-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    z-index: 2;
}

.second-section-informations-box {
    width: 19%;
    margin: 52px 4.8% 52px 0;
    border-radius: 25px;
    box-shadow: inset 7px 10px 4px rgba(4, 1, 38, 0.5);
    background-color: var(--KolorBOX);
}

.second-section-informations-box:nth-child(1) {
    margin-left: 4.8%;
}

.second-section-informations-box img {
    display: block;
    margin: 36px auto;
}

.second-section-informations-box h2 {
    margin: 32px auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: var(--Platonic);
}

.second-section-informations-box p {
    margin: 32px 32px 40px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    color: var(--Platonic);
}

.second-circle {
    position: absolute;
    top: 720px;
    left: -250px;
    max-width: 650px;
    min-width: 650px;
    width: 650px;
    max-height: 650px;
    min-height: 650px;
    height: 650px;
    border-radius: 50%;
    background-color: var(--Róż); 
    z-index: 1;
}

/* Third section */

.wave-header-div {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.third-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    cursor: default;
    background-color: var(--Platonic);
}

.third-content-box {
    display: flex;
    flex-direction: row;
}

.third-section-information {
    padding-top: 30px;
    padding-left: 74px;
    padding-right: 20px;
}

.third-heading {
    margin-top: 0px !important;
}

.third-subtitle-text {
    margin-top: 4px;
    margin-left: 30px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    list-style-type: none;
    font-size: 22px;
    color: var(--Pomarańczowy);
}

.third-describe {
    max-width: 824px;
    margin-right: 30px;
    margin-bottom: 13%;
    margin-top: 160px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    list-style-type: none;
    font-size: 22px;
    color: var(--Napisy);
}

.third-describe a {
    text-decoration: none;
    color: var(--Pomarańczowy);
}

.third-section-image {
    position: relative;
    display: flex;
    justify-content: center;
    width: calc(100% - 948px);
}

.third-image {
    position: relative;
    width: 70%;
    max-width: 600px;
    height: auto;
    margin-top: -100px;
    margin-bottom: 70px;
    transform: scaleX(-1) scaleY(-1);
    z-index: 1;
}

.bloob-div-box {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 270px;
    max-width: 270px;
    height: 300px;
    max-height: 300px;
    overflow: hidden;
    margin-top: -120px;
    margin-left: 10px;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.form-title-text {
    font-family: 'Poetsen One';
    font-style: normal;
    font-weight: 600;
    list-style-type: none;
    font-size: 32px;
    color: var(--Platonic);
}

.form-title-sub-text {
    padding-left: 30px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    list-style-type: none;
    font-size: 18px;
    color: var(--Platonic);
}

.bloob-btn {
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #171940;
    background-color: #0667E7;
    padding: 15px 40px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    list-style-type: none;
    font-size: 20px;
    color: var(--Platonic);
}

.bloob-btn:hover {
    scale: 0.95;
    border: 1px solid #121335;
    background-color: #0857be;
}

.wave-header-div-bottom {
    width: 100%;
    margin-top: -200px;
}

/* Fifth section */

.fifth-section {
    background-color: var(--Róż);
}

.fifth-subtitle-text {
    color: var(--Napisy);
}

.fifth-describe {
    margin-top: 120px;
    margin-bottom: 60px;
}

.fifth-section-describe-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: var(--Napisy);
}

.fifth-image {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: -150px !important;
    margin-bottom: 0;
}

.fifth-bloob {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 500px !important;
    max-width: 500px !important;
    min-width: 500px !important;
    max-height: 500px !important;
    min-height: 500px !important;
    height: 500px !important;
    z-index: 1 !important;
}

.love-img {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    min-width: 200px !important;
    max-width: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
    height: 200px !important;
    z-index: 2 !important;
}

.fifth-wave-header-div-bottom {
    border: none;
    transform: scaleX(-1) scaleY(-1);
    margin-top: -10px;
    background-color: var(--Platonic);
}

/* NEWSLETTER */

.newsletter-describe {
    margin-bottom: 30px;
}

.newsletter-btn {
    margin-bottom: 100px;
}

.newsletter-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-image {
    width: 70%;
    max-width: 500px;
    height: auto;
    margin-top: -90px;
}

/* Sixth section */

.sixth-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1920px;
    min-height: 669px;
    background-color: var(--Tło);
    cursor: default;
}

.sixth-section-image {
    width: 39%;
    display: flex;
    flex-direction: column;
}

.main-help p, .second-help p {
    font-family: 'Inter';
    font-style: normal;
    color: var(--Napisy);
}

.main-help p {
    width: 345px;
    height: 58px;
    margin: 9% 0 0 20%;
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
}

.second-help p {
    width: 149px;
    height: 30px;
    margin: 8px 0 0 43%;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
}

.sixth-section-image img {
    width: 500px;
    height: 500px;
    margin-left: 16%;
}

.sixth-section-information {
    width: 61%;
    cursor: default;
}

.sixth-section-accordion {
    width: 80.2%;
    margin-top: 24px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 0;
    border-radius: 25px;
    background-color: var(--Platonic);
}

.sixth-section-accordion:nth-child(1) {
    margin-top: 106px;
}

.sixth-section-accordion header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transition: all 0.2s linear;
}

.sixth-section-accordion .title {
    padding: 16px 0 16px 42px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    display: flex;
    align-items: center;
    color: var(--Napisy);
}

.sixth-section-accordion i {
    display: flex;
    margin: 0 45px 0 15px;
    align-items: center;
    font-size: 25px;
}

.sixth-section-description {
    display: none;
    width: 70%;
    margin: 5px 0 21px 42px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    align-items: center;
    transition: all 0.2s linear;
    color: var(--Napisy);
}

.sixth-section-help {
    display: flex;
    width: 80.2%;
    margin: 20px 0 0 3%;
    padding-right: 30px;
    justify-content: flex-end;
    align-items: center;
    font-size: 1.1rem;
}

.sixth-section-help a {
    text-decoration: none;
    color: var(--Tło);
    margin-bottom: 50px;
}

.sixth-section-help a:hover {
    color: #060829;
}

/* footer */

.footer {
    display: flex;
    flex-direction: column;
    width: 100%;

    background-color: var(--Platonic);
}

.footer-box {
    display: flex;
    flex-direction: row;
}

.left-footer-contact {
    display: flex;
    flex-direction: column;
    width: 15%;
}

.footer-title {
    display: flex;
    flex-direction: row;
    padding-top: 24px;
    padding-bottom: 24px;
    align-items: center;

    background-color: var(--Platonic);
}

.footer-title img {
    width: 64px;
    height: 64px;
    margin-left: 22px;
}

.left-footer-contact h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 45px;
    display: flex;
    align-items: center;

    color: var(--Napisy_główne);
}

.footer-contact {
    width: 100%;
    margin-top: 13px;
    padding-left: 37px;
    padding-bottom: 70px;

    background-color: var(--Platonic);
}

.footer-contact-p {
    padding-bottom: 3px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;

    color: var(--Napisy_główne);
}

.right-footer-describe {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 85%;

    background-color: var(--Platonic);
}

.right-footer-class-title {
    margin-left: 15px;
    padding-top: 32px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    display: flex;
    align-items: center;
    text-align: center;
    
    color: var(--Napisy_główne);
}

.right-footer-class-desc {
    width: 250px;
    margin-top: 16px;
    margin-bottom: 15px;
    margin-right: 15px;
    margin-left: 15px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;

    background-color: var(--Platonic);
}

.right-footer-class-desc a {
    text-decoration: none;
    color: var(--Napisy_główne);
}

.site-rights {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 35px;
    margin-top: 25px;
    margin-left: 30px;
}

.social-links {
    position: absolute;
    right: 25px;
}

.social-links i {
    margin-left: 25px;
    font-size: 20px;
}

.index-login-icon-link {
    color: #060829;
    text-decoration: none;
}

.index-login-icon-link:hover {
    color: #0a39af;
}

/* Cookie banner */

.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 11;
    display: none;
    flex-direction: column;
    padding: 20px 60px;
    max-width: 500px;
    max-height: 630px;
    border-radius: 12px;
    background-color: var(--Platonic);
}

.cookie-banner-title-box {
    display: flex;
    align-items: center;
    width: 100%;
    height: 55px;
}

.cookie-banner-title {
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    color: #222;
}

.cookie-banner-desc-box {
    width: 90%;
    margin-top: 20px;
}

.cookie-banner-text {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    color: #222222;
}

.cookie-banner-link {
    color: #2660F5;
}

.cookie-banner-button-box {
    margin-top: 30px;
}

.cookie-banner-btn {
    padding: 15px 27px; 
    border-radius: 6px;
}

.cookie-accept {
    background: #2660F5;
    border: 1px solid #1845db;
    
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--Platonic);
}

.cookie-accept:hover {
    background: #0a39af;
    border: 1px solid #07092e;
}

.cookie-decline {
    background: #E7E9FF;
    border: 1px solid #94A7D7;
    
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #222222;
}

.cookie-decline:hover {
    background: #bcbfdd;
    border: 1px solid #4d6091;
}

.btn-marg-left {
    margin-left: 15px;
}