/* 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(--Platonic);
    height: 100vh;
}

:root {
    --Platonic: #F5F5F5;
    --Tło: #171940;
    --Napisy_główne: #171940;
    --Napisy: #D9B97E;
    --Tekst: #1D1918;
}

.clear {
    clear: both;
}

.noselect {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

/* Nav settings */

.mainnavigation {
    position: fixed;
    display: flex;
    width: 100%;
    height: 90px;
    align-items: center;
    border-bottom: 2px solid #171940;
    z-index: 999999;

    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_główne);
}

.mainplatonictitle a {
    text-decoration: none;
    color: var(--Napisy_główne);
}

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

.linkmainnav {
    display: block;
    padding-left: 36px;
    padding-right: 36px;
    padding-top: 33px;
    padding-bottom: 33px;
    text-decoration: none;
    color: var(--Napisy_główne);
}

.linkmainnav:hover {
    background-color: #E3E3E3;
    transition: all 0.3s;
}

.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_główne);
}

.boxmainnav--active {
    display: block;
    padding-left: 36px;
    padding-right: 36px;
    padding-top: 33px;
    padding-bottom: 33px;
    cursor: default;
    background-color: var(--Tło);
    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_główne);  
}

.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_główne);      
}
.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_główne); 
}

.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;

    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;
    cursor: pointer;

    text-align: center;
    font-size: 1.2rem;

    background-color: var(--Tło);
}

.navigation-item:hover {
    transition: all 0.3s;
    background-color: #0E0F26; /*Sprawdź to */
}

.navigation-item--active {
    border: 1px solid #171940;
    background-color: var(--Platonic);
    color: var(--Napisy_główne);
}

.navigation-item--active:hover {
    border: 1px solid #171940;
    cursor: default;
    background-color: var(--Platonic);
    color: var(--Napisy_główne);
}

.nav-menu-link {
    text-decoration: none;
    color: var(--Platonic);
}

/* Main section */

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: var(--Platonic);
}

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

/* First section */

.first-section-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: #EBEEF5;
    background: radial-gradient(circle, rgba(6,103,231,0.4) 0%, rgba(113,166,237,0.20211834733893552) 32%, rgba(190,212,242,0.15449929971988796) 48%, #EBEEF5 100%);
}

.first-section-text-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(90vh - 90px);
    min-height: calc(90vh - 90px);
    background-color: transparent;
}

.first-section-title-box {
    display: flex;
    justify-content: center;
    margin-top: 191px;
}

.first-section-title-text {
    width: 100%;

    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    
    color: var(--Tekst);
}

.blue-text {
    color: #0667E7;
}

.first-section-describe-box {
    display: flex;
    justify-content: center;
    margin-top: 191px;
}

.first-section-describe-text {
    display: flex;
    max-width: 998px;

    align-items: center;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    color: var(--Tekst);
}

.first-section-arrow-box {
    display: flex;
    width: 100%;
    height: 10vh;
    min-height: 10vh;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.arrow-down {
    font-size: 32px;
}

.arrow-down:hover {
    scale: 1.2;
    color: #0667E7;
}

/* Second section */

.second-section-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(100vh - 90px);
    padding-bottom: 110px;
    background-color: #EBEEF5;
}

.second-section-main-small {
    display: none;
}

.second-section-title-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(20vh - 90px);
    min-height: calc(20vh - 90px);
    margin-top: 45px;
    margin-bottom: 90px;
}

.second-section-title {
    text-align: center;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    color: var(--Tekst);
}

.toggle-swap-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-bottom: 100px;
}

.toggle {
    display: flex;
    flex-direction: row;
    max-width: 780px;
    width: 780px;
    height: 70px;
    border-radius: 60px;
    border: 1px solid #0667E7;
    background-color: var(--Platonic);
}

.toggle-box {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    border-radius: 60px;
    transition: background-color 0.3s ease-in-out;
    z-index: 1;
}

.active-toggle {
    cursor: default;
    background-color: #0667E7;
}

.no-active-toggle {
    cursor: pointer;
    background-color: var(--Platonic);
}

.toggle-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease-in-out;
}

.active-toggle-text {
    color: var(--Platonic);
}

.no-active-toggle-text {
    color: #0667E7;
}

.no-active-inform-box{
    display: none !important;
}

.second-section-main-box {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 80vh;
}

.second-section-text-container {
    display: flex;
    flex-direction: column;
    width: 49%;
    height: auto;
    margin-bottom: 30px;
    /* background-color: lightcoral; */
}

.second-section-text-box {
    padding: 15px 100px;
    margin-bottom: 150px; /*przykłądowa wartość*/
}

.second-section-box-title {
    margin-bottom: 30px;
}

.second-section-title-text {
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    color: #0667E7;
}

.second-section-box-describe {
    padding-left: 36px;
}

.second-section-describe-text {
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    color: var(--Tekst);
}

.second-section-text-box-right {
    padding: 15px 100px;
    margin-top: 150px; /*przykłądowa wartość*/
}

.hr-box {
    position: relative;
    display: flex;
    width: 2%;
    align-items: center;
    flex-direction: column; /* Ustawia kierunek jako kolumnę, aby dzieci były pionowe */
}

.main-hr-line {
    width: 2px;  /* Grubość linii */
    height: 100%;
    background-color: black;
    border: none;
    position: absolute; /* Pozycjonuje linię w tle względem .hr-box */
    left: 50%; /* Centruje linię w .hr-box */
    top: 0;
    bottom: 0;
    transform: translateX(-50%); /* Poprawka do centrowania */
}

.line-box {
    display: flex; 
    flex-direction: column;
    height: 100%; /* Wysokość taka sama jak .hr-box */
}
 
.line-elipse {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #0667E7;
    position: absolute;
    left: 50%; 
    transform: translateX(-50%) translateY(-50%); /* Centrowanie w poziomie i pionie */
}

/* Third section */

.third-section-container {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    min-height: calc(100vh - 90px);
    padding-bottom: 110px;
    background-color: #EBEEF5;
    background: radial-gradient(circle at right bottom, rgba(6,103,231,0.4) 0%, rgba(113,166,237,0.20211834733893552) 32%, rgba(190,212,242,0.15449929971988796) 48%, #EBEEF5 100%);
}

.third-section-video-box {
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
}

.third-section-text-box {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    padding-left: 20px;
}

.third-section-title-text {
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    color: var(--Tekst);
}

.third-section-describe {
    width: 630px;
    margin-top: 50px;
}

.third-section-describe-text {
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    color: var(--Tekst);
}

/* 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);
}

.active-footer-class-desc {
    color: #0667E7;
}

.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;
}

/* 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;
}

/* Email change school */

.return-change-email {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 70px;
}

.return-change-email-link {
    text-decoration: none;
    padding: 15px 20px;
    background-color: #0667E7;
    border-radius: 7px;

    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--Platonic);
}

.return-change-email-link:hover {
    scale: 1.01;
    background: #0749a0;
    cursor: pointer;
}