@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --blue: #22a7f0;
    --orange: #FFB74D;
    --turquoise: #009688;
    --brown: #8D6E63;
    --purple: #9575CD;
    --bluegray: #607D8B;
    --pink: #F48FB1;
    --white: #fff;
    --darkgray: #444;
    --primary: var(--blue);
}
  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--darkgray);
    font-family: 'Inter', serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0.5px;
    font-family: 'Montserrat', serif;
    transition: font-size 250ms ease;
}

h1 {
    font-weight: 800;
    font-size: 2.986rem;
}

h2 {
    font-weight: 600;
    font-size: 2.488rem;
}

h3 {
    font-weight: 600;
    font-size: 2.074rem;
}

h4 {
    font-weight: 600;
    font-size: 1.728rem;
}

h5 {
    font-weight: 600;
    font-size: 1.44rem;
}

h6 {
    font-weight: 600;
    font-size: 1.2rem;
}

p {
    color: #777;
    font-size: 1rem;
}

ul {
    list-style: square;
}

li::marker {
    color: var(--primary);
}

li {
    margin-top: 8px;
}

.loading-spinner {
    width: 30px;
}

.disable-selection {
    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none;
}

.gtranslate_wrapper {
    position: fixed;
    top: 5px;
    right: 10px;
    z-index: 99;
}

button {
    cursor: pointer;
    padding: 10px 20px;
}

button.primary {
    border: 1px solid red;
}
button.secondary {
    color: var(--white);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05em;
    border: 2px solid var(--white);
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px;
    transition: all 250ms;
    &:hover {
        background-color: rgba(0, 0, 0, .1);
    }
}

a.primary {
    color: var(--primary);
    &:hover {
        color: var(--white);
    }
}

a.secondary {
    color: var(--white);
    &:hover {
        opacity: 0.8;
    }
}

.separator {
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    border-radius: 5px;
    margin-top: 35px;
    margin-bottom: 35px;
    width: 10%;
}

header {
    background-color: #fff;
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
    column-gap: 15px;
    box-shadow: rgba(0, 0, 0, .2) 0 5px 10px;
    position: relative;
    z-index: 99;
}

header > .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

header > .logo-img > img {
    max-height: 45px;
}

header > .logo-title {
    color: var(--darkgray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

main > .main-picture {
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    color: var(--white)
}

.main-picture::after {
    content: "";
    background-color: rgba(0, 0, 0, .4);
    width: 100%;
    height: 100%;
}


.szechenyi-plan-image {
    position: absolute;
    left:0;
    cursor:pointer;
}

main > .info-boxes {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    width: 50%;
    margin: 0 auto;
    background-color: var(--white);
    color: var(--darkgray);
    column-gap: 20px;
    row-gap: 60px;
}

main > .info-boxes > .info-box {
    color: var(--darkgray);
    width: 200px;
    padding: 25px 0;
    height: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    row-gap: 15px;
    transition: all 300ms ease;
    &:hover {
        background-color: rgba(210, 210, 210, .1);
    }
    &:hover > .value {
        color: var(--darkgray);
    }
}

main > .info-boxes > .info-box > .icon {
    color: var(--primary);
    stroke: var(--primary);
    stroke-width: 1.0px;
    width: 35px;
    height: 35px;
    fill: none;
}

main > .info-boxes > .info-box > .title {
    font-weight: 600;
    transition: color 150ms ease;
}

main > .info-boxes > .info-box > .value {
    color: var(--primary);
    transition: color 150ms ease;
}

main > .info-boxes > .info-box > .alt {
    color: var(--darkgray);
    transition: color 150ms ease;
}


main > .main-slider > .slide {
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    -webkit-transition: background-image 0.5s ease-in-out;
    transition: background-image 0.5s ease-in-out;
}

main > .main-slider > .slide > .slide-container {
    background-image: linear-gradient(90deg,rgba(6,147,227,0.4) 0%,rgba(155,81,224,0.4) 87%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

main > .services-box {
    width: 100%;
    padding: 120px 0;
    background-color: #f5f5f5;
}

main > .services-box > .services-box-inner {
    margin: 0 auto;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main > .services-box > .services-box-inner > .title-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 50%;
}

main > .services-box > .services-box-inner > .boxes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 30px;
    margin-top: 70px;
}

main > .services-box > .services-box-inner > .boxes > .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 25px;
    background-color: var(--white);
    text-align: center;
    width: 12%;
    padding: 40px;
    border-radius: 10px;
    flex-basis: 25%;
    transition: all 300ms ease;
    &:hover {
        box-shadow: rgba(200, 200, 200, .3) 0 0 20px;
        z-index: 99;
    }
}

main > .services-box > .services-box-inner > .boxes > .box > .icon {
    color: var(--primary);
    stroke: var(--primary);
    stroke-width: 1.0px;
    width: 50px;
    height: 50px;
    fill: none;
}

.szechenyi-container {
    width: 100%;
    padding: 120px 0;
    background-color: #fff;
}

.szechenyi-inner {
    margin: 0 auto;
    width: 40%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 50px;
}

.stripe-box {
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
}

.stripe-box > .stripe-box-inner {
    margin: 0 auto;
    width: 35%;
    padding: 30px 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
}

@media only screen and (max-width: 1920px) {
    .stripe-box > .stripe-box-inner {
        width: 80%;
    }
    .szechenyi-inner {
        width: 80%;
    }
    main > .services-box > .services-box-inner > .boxes > .box {
        flex-basis: 30%;
    }
    main > .services-box > .services-box-inner  {
        width: 80%;
    }
    main > .services-box > .services-box-inner > .title-box {
        max-width: 80%;
    }
    h1, h2, h3, h4, h5, h6 {
        font-weight: 400 !important;
    }
    main > .info-boxes {
        width: 80%;
    }
}

@media only screen and (max-width: 1400px) {
    
}

@media only screen and (max-width: 600px) {
    main > .services-box > .services-box-inner > .boxes > .box {
        flex-basis: 100%;
    }
}