.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  

.blue-text {
    color: #0F172A;
}

.light-text {
    color: #475569;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
}


.cky-notice * {
    font-family: "Roboto", sans-serif;
}

.cky-modal * {
    font-family: "Roboto", sans-serif;
}

.cky-banner-element {
    cursor: pointer;
}
/* animation */

.fade-in {
    opacity: 0;
  }

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    gap: 2vw;
}
.square, .save {
    width: 4vw;
    height: 4vw;
    max-width: 24px;
    max-height: 24px;
    background-color: #2F3286;
    opacity: 0;
    position: relative;
    will-change: opacity, transform;
}

#square1, #square12 {
    width: 1.8vw;
    height: 1.8vw;
    max-width: 30px;
    max-height: 30px;
    background-color: #9295DD;
    will-change: opacity, transform;
}

#square2, #square11 {
    width: 2vw;
    height: 2vw;
    max-width: 45px;
    max-height: 45px;
    background-color: #494DAC;
    will-change: opacity, transform;
}

#square3, #square10 {
    width: 3vw;
    height: 3vw;
    max-width: 60px;
    max-height: 60px;
    background-color: #44479B;
    will-change: opacity, transform;
}


#square4, #square9 {
    width: 5vw;
    height: 5vw;
    max-width: 90px;
    max-height: 90px;
    will-change: opacity, transform;
}

#square5, #square8 {
    width: 5.8vw;
    height: 5.8vw;
    max-width: 100px;
    max-height: 100px;
    will-change: opacity, transform;
}
#square6, #square7 {
    width: 7vw;
    height: 7vw;
    max-width: 120px;
    max-height: 120px;
    will-change: opacity, transform;
}
.save {
    width: 8vw;
    height: 8vw;
    max-width: 130px;
    max-height: 130px;
    color: white;
    font-size: 2vw;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('./images/logo_white.svg');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 80%;
    will-change: opacity, transform;
}
.text {
    font-size: 3vw;
    font-weight: bold;
    opacity: 0;
    text-align: center;
    max-width: 90%;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

/* animation end */

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    z-index: -1;
}
.hero-content {
    position: relative;
    height: calc(100vh - 100px);
    width: calc(100% - 100px);
    background-color: #FDE68A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-content {
	position: relative;
	height: calc(100vh - 100px);
	width: calc(100% - 100px);
	background-color: #FDE68A;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden; /* Aby prekrytie nevychádzalo von z hero-content */
}

.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #2F3286; /* Farba prekrytia */
	transform: translateY(100%);
	transition: transform 0.5s ease; /* Plynulý prechod */
}


.icons-wrapper {
	display: flex;
	position: relative;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: 100%;
	height: 100%;
	padding: 50px;
	padding-left: 0px;
	padding-right: 0px;
	background: white;
	z-index: 2;
}

.icons-box {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 30%;
    gap: 20px;
    margin-bottom: 50px;
    padding: 20px;
    transition: transform 0.5s;
}
@keyframes bounce {
    0%,  100% {
      transform: scale(1);
    }
    40% {
      transform: scale(1.1);
    }

  }
  
  .icons-box:hover {
    animation: bounce 1s;
  }

  .section-box:hover {
    animation: bounce 1s;
  }
.icon-title {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
}

.icon-text {
    margin: 0;
    font-size: 16px;
}

.icon {
    width: 50px;
    height: 50px;
}


img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.images-banner {
	width: 100%;
	aspect-ratio: 16/6;
	display: grid;
	grid-template-columns: repeat(17, 1fr);
	grid-template-rows: repeat(8, 12.5%);
	position: relative;
	grid-gap: 5px;
	z-index: 2;
	background: white;
}

.box1{
    grid-column-start: 1;
    grid-column-end: 13;
    grid-row-start: 1;
    grid-row-end: 7;
    background-image: url("images/Picture1.jpg");
    background-size: cover;
}

.box2 {
    background-color: #2F3286;
    grid-column-start: 13;
    grid-column-end: 18;
    grid-row-start: 1;
    grid-row-end: 7;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box3 {
    background-image: url("images/Picture2.jpg");
    background-size: cover;
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 7;
    grid-row-end: 9;
}


.box4 {
    background-image: url("images/Picture3.jpg");
    background-size: cover;
    grid-column-start: 6;
    grid-column-end: 8;
    grid-row-start: 7;
    grid-row-end: 9;
}

.box5 {
    background-image: url("images/Picture4.jpg");
    background-size: cover;
    grid-column-start: 8;
    grid-column-end: 13;
    grid-row-start: 7;
    grid-row-end: 9;
}

.box6 {
    background-image: url("images/Picture6.jpg");
    background-size: cover;
    grid-column-start: 13;
    grid-column-end: 18;
    grid-row-start: 7;
    grid-row-end: 9;
}

.blue-box > h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 50px;
    color: white;
    padding: 0;
    margin: 0;
}

.blue-box > p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: white;
    padding: 0;
    margin: 0;
}


.section-3 {
    display: flex;
    flex-direction: row;
    width: 70%;
    margin-top: 100px;
    margin-bottom: 100px;
}


.section-3-left {
    width: 50%;
}
.section-3-right {
    width: 50%;
}

.section-3-right > h3 {
        font-family: "Roboto", sans-serif;
        font-weight: 900;
        font-style: normal;
        font-size: 50px;
        color: #0F172A;
        padding: 0;
        margin: 0;
        margin-bottom: 25px;
}

.section-3-right > p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #0F172A;
    margin-bottom: 25px;
}

.section-3-right > h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 30px;
    color: #0F172A;
    padding: 0;
    margin: 0;
}

.section-3-right > .contact-section {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    margin: 0;
    color: #2F3286;
}

.section-3-left {
    background-image: url("images/Group_52a.svg");
    background-size: 50%;
    background-position: 50%;
    background-repeat: no-repeat;
}

.footer {
    background-image: url("images/footer.jpg");
    width: 100%;
    background-repeat: repeat-x;
    background-size: contain;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.footer-content {
    display: flex;
    position: relative;
    width: calc(100% - 100px);
    height: 200px;
    align-items: center;
    justify-content: space-between;
}

.credits {
	width: 100%;
	height: 60px;
	display: flex;
	flex-direction: row;
	color: #475569;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 14px;
	justify-content: space-around;
	align-content: center;
	align-items: center;
	background: white;
	z-index: 2;
}
.privacy {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-end;
    padding-right: 50px;
    align-items: center;
}

.copyright {
    width: 50%;
    padding-left: 50px;
}

.logo {
    position: relative;
    width: 100px;
    height: 100px;
    background-color: white;
    background-image: url("images/logo.svg");
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: 50%;
    margin-right: 100px;
}

.contacts {
    position: relative;
    display: flex;
    width: 70%;
    flex-direction: row;
    justify-content: space-between;
}

.contact-box {
    display: flex;
    gap: 30px;
}
.contact-box > .headline {
    color: #FDE68A;
    text-transform: uppercase;
    font-size: 20px;
}


.contact-box > .text-contact  {
	color: white;
	font-size: 16px;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: left;
}


.section-3-wrapper {
    width: 100%;
    height: auto;
    position: relative;
    background-color: white;
    display: flex;
    z-index: 2;
    justify-content: center;
}
.section-4 {
	display: flex;
	width: 100%;
	flex-direction: row;
	align-content: center;
	justify-content: center;
	margin-bottom: 0px;
	z-index: 2000;
	background: white;
	padding-bottom: 100px;
}
.section-4-content {
    background-color: #FDE68A;
    width: calc(100% - 100px);
    display: flex;
}

.section-4-right > h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 50px;
    color: #2F3286;
    padding: 0;
    margin: 0;
    margin-bottom: 50px;
    width: 90%;
}

.section-4-left {
    width: 50%;
    background-image: url("images/Group_1.svg");
    left: -60px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-y: 50%;
    background-position-x: -10px;
    position: relative;
}

.section-4-right {
    width: 50%;
    padding: 50px;
    padding-left: 0px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-box-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: space-between;
}

#box1 {
    background-image: url("images/32box.svg");
}
#box2 {
    background-image: url("images/33box.svg");
}
#box3 {
    background-image: url("images/34box.svg");
}
#box4 {
    background-image: url("images/35box.svg");
}


.box-icon {
    background-color: #2F3286;

    width: 80px;
    height: 80px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 50%;
    flex-shrink: 0;
    margin-right: 20px;
}
.section-box {
    display: flex;
    flex-direction: row;
    width: 48%;
    margin-bottom: 50px;
}
h5.box-title.roboto-medium {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    color: #0F172A;
    margin-bottom: 10px;
}

p.box-text.roboto-regular {
    margin: 0;
    font-size: 16px;
}

.box-content {
    padding-right: 30px;
}

.spacer {
    width: 100px;
    height: 100px;
}


.section-5 {
    background-color: white;
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-5-content {
    display: flex;
    flex-direction: row;
    width: calc(100% - 100px);
    justify-content: space-between;
    margin-bottom: 50px;
    align-items: center;
    gap: 20px;
}
.section-5-content img {
    width: 20%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}




@media only screen and (max-width: 1600px) {

    .blue-box > h3, .section-4-right > h3, .section-3-right > h3 {
        font-size: 40px;
    }

    

  }

  @media only screen and (max-width: 1400px) {

    .icons-wrapper {
        justify-content: space-around;
    }

    .icons-box {
        width: 27%;
    }

    .hero-content {
        height: auto;
        aspect-ratio: 16/9;
        width: calc(100% - 100px);
    }

    .hero {
        height: auto;
        padding-top: 50px;
    }


  }


  @media only screen and (max-width: 1300px) {

    .section-4-content {
        flex-direction: column;
    }

    .section-4-left {
        width: 100%;
        aspect-ratio: 16/11;
        left: 0px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 50%;
        background-position-x: -1%;
        position: relative;
    }

    .section-4-right {
        width: 100%;
        padding: 50px;
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .section-3 {
        width: 80%;
    }


    .box1 {
        grid-column-start: 1;
        grid-column-end: 11;
        grid-row-start: 1;
        grid-row-end: 7;
    }


    .box2 {
        grid-column-start: 11;
        grid-column-end: 18;
        grid-row-start: 1;
        grid-row-end: 7;
    }




    .box5 {
        grid-column-start: 6;
        grid-column-end: 11;
        grid-row-start: 7;
        grid-row-end: 9;
    }

    .box4 {
        grid-column-start: 11;
        grid-column-end: 13;
        grid-row-start: 7;
        grid-row-end: 9;
    }

    .contact-box {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }



  }



  @media only screen and (max-width: 1000px) {


    .icons-wrapper {
        justify-content: space-around;
        display: flex;
        align-items: flex-start;
    }

    .icons-box {
        width: 44%;
    }

    .icons-wrapper {
        justify-content: space-between;
        display: flex;
        align-items: flex-start;
        padding-left: 50px;
        padding-right: 50px;
    }

    .section-box {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-bottom: 50px;
    }

    
    .images-banner {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .box1 {
        aspect-ratio: 16/6;
        width: 100%;
    }

    .box3 {
        aspect-ratio: 10 / 5;
        width: 30%;
        flex-grow: 1;
    }

    .box4 {
        display: none;
    }
    .box5 {
        aspect-ratio: 10 / 5;
        width: 30%;
        flex-grow: 1;
    }
    .box6 {
        aspect-ratio: 10 / 5;
        width: 30%;
        flex-grow: 1;
    }

    .no-mobile {
        display: none;
    }




  }



  @media only screen and (max-width: 750px) {

    .section-5-content {
        display: flex;
        flex-direction: row;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        justify-content: center;
        margin-bottom: 50px;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .section-5-content img {
        width: 40%;
        max-width: 300px;
        height: auto;
        object-fit: contain;
    }




    .contact-box {
        display: flex;
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    .contacts {
        position: relative;
        display: flex;
        width: 90%;
        flex-direction: column;
        align-items: center;
    }
    .contact-box > .text-contact {
        color: white;
        font-size: 16px;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
    }



    .text {
        font-size: 6vw;
    }


    .section-3-right {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .section-4-right > h3 {
        width: 100%;
    }

    .icons-box {
        width: 100%;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }


    .section-3-left {
        aspect-ratio: 1;
        width: 100%;
    }

    .section-3 {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-left: 50px;
        padding-right: 50px;
        align-items: center;
    }


    .footer-content {
        display: flex;
        position: relative;
        width: 100%;
        height: 200px;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .spacer {
        display: none;
    }

    .logo {
        position: relative;
        width: 100px;
        height: 100px;
        background-size: 70%;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .footer-content {
        display: flex;
        position: relative;
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .icon-text {
        margin: 0;
        font-size: 16px;
        text-align: center;
    }

    .contacts {
        position: relative;
        display: flex;
        width: 90%;
        flex-direction: row;
        justify-content: space-between;
    }

    .box-content {
        padding-right: 0px;
    }


  }





  @media only screen and (max-width: 500px) {

    .blue-box > h3, .section-4-right > h3, .section-3-right > h3 {
        font-size: 30px;
    }

    h5.box-title.roboto-medium, .icon-title {
        font-size: 20px;
    }

    .hero {
        height: auto;
        padding: 10px;
    }


    .hero-content {
        width: 100%;
    }

    .icons-wrapper {
        justify-content: space-between;
        display: flex;
        align-items: flex-start;
        padding-left: 10px;
        padding-right: 10px;
    }

    .icons-box {
        padding: 0px;
    }

    .section-3 {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 50px;
        margin-bottom: 50px;
    }



    .section-4 {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 00px;
    }

    .section-4-content {
        flex-direction: column;
        width: 100%;
    }


    .section-4-right {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .box-icon {
        width: 40px;
        height: 40px;
    }

    .box-content {
        padding-right: 0px;
    }

    .contacts {
        position: relative;
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

    .contact-box {
        display: flex;
        gap: 5px;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .credits {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        color: #475569;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-size: 14px;
        justify-content: space-around;
        align-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .copyright {
        width: 100%;
        padding-left: 0px;
        text-align: center;
    }

    .privacy {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        padding-right: 0px;
        align-items: center;
    }







  }


