@import url(https://fonts.googleapis.com/css?family=Montserrat);
@import url(https://fonts.googleapis.com/css?family=Inter);


html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #242424;
    overflow-x: hidden;
}


body::-webkit-scrollbar {
    display: none;
}

/* ======================side scroll======================== */

.scroll {
    --nav-gap: 15px;
    padding: var(--nav-gap);
    position: fixed;
    right: 10px;
    width: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 160px;
}

.scroll-item {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    height: 20px;
    width: 15px;
}

.scroll-link {
    background: #616161;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    height: var(--nav-gap);
    transition: transform 0.1s;
    width: var(--nav-gap);
}

.scroll-link:last-child {
    margin-bottom: -30px;
}

.scroll-link:hover {
    background-color: #A6A6A6;
}

.scroll-link-selected:hover {
    background-color: #6390F3;
}

.scroll-label.selected {
    opacity: 1;
}


.scroll-label {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #A6A6A6;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.1s;
    background-color: #353535;
    width: 123px;
    height: 50px !important;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    text-align: center;
    left: -100px;
    bottom: 0px;
}

.scroll-link-selected {
    background: #6390F3;
}

@media(max-width: 660px) {
    .scroll {
        display: none;
    }
}

/* ==========================navbar========================== */

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px 10px 5px;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    width: 100%;
}

.navbar .main-nav {
    position: relative;
    display: flex;
    align-items: center;
    left: 10px;
}

.navbar .main-nav a {
    display: flex;
    color: #FFFFFF;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
}

.navbar .main-nav .logo {
    width: 42px;
    height: 42px;
    margin-right: 10px;
}

.navbar .nav-main-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.navbar .nav-navigates {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}


.navbar .nav-navigates .navigate-btn {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
    opacity: 0.5;
    margin: 15px;
}

.navbar .nav-navigates .navigate-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.navbar .nav-navigates .navigate-btn:last-child {
    margin: 10px;
}


.navbar .nav-navigates .navigate-btn.selected {
    animation: fadeIn 0.7s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.navbar .nav-buttons {
    display: flex;
    flex-direction: row;
    margin: 10px;
    margin-right: 30px;
}

.navbar .nav-buttons .button-commands {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #53565E;
    width: 160px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    height: 43px;
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
}

.navbar .nav-buttons .button-commands:hover {
    background-color: #444444;
    transition: background-color 0.3s;
}

.navbar .nav-buttons .button-commands .iconify {
    margin-right: 5px;
    width: 17px;
    height: 17px;
}

.navbar .nav-buttons .button-dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6390F3;
    width: 160px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    height: 43px;
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    margin-left: 15px;
}

.navbar .nav-buttons .button-dashboard:hover {
    background-color: #444444;
    transition: background-color 0.4s ease;
}

.navbar .nav-buttons .button-dashboard img {
    width: 17px;
    height: 17px;
    margin-right: 5px;
}

.navbar .navbar-toggle {
    display: none;
}

.navbar .navbar-toggle {
    display: none;
    color: #FFFFFF;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 8px;
    cursor: pointer;
    margin: 10px;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    background-color: #252525;
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 10px;
}

.sidebar .sidebar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sidebar .sidebar-container .sidebar-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sidebar .sidebar-container .sidebar-header img {
    width: 56px;
    height: 56px;
}

.sidebar .sidebar-container .sidebar-main {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-left: 52px;
}

.sidebar .sidebar-container .sidebar-main .sidebar-navigate-btn {
    background-color: #1B1B1B;
    width: 253px;
    height: 60px;
    display: flex;
    padding-left: 30px;
    align-items: center;
    margin: 12px;
    border-radius: 10px 0 0 10px;
    -moz-border-radius: 10px 0 0 10px;
    -webkit-border-radius: 10px 0 0 10px;

    color: white;
    text-decoration: none;
}

.sidebar .sidebar-container .sidebar-main .sidebar-navigate-btn img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.sidebar .sidebar-container .sidebar-main .sidebar-navigate-btn.selected {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    background-color: #6391f358;
    transition: background-color 0.3s ease;
}

.sidebar .sidebar-container .sidebar-main .sidebar-navigate-btn:hover {
    background-color: #6391f394;
}

.sidebar .sidebar-container .sidebar-buttons {
    display: flex;
    flex-direction: column;
    margin-left: 52px;
    margin-top: 52px;
}

/*style the buttons*/
.sidebar .sidebar-container .sidebar-buttons .button-commands {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #53565E;
    width: 253px;
    border-radius: 10px 0 0 10px;
    -moz-border-radius: 10px 0 0 10px;
    -webkit-border-radius: 10px 0 0 10px;
    height: 60px;
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    margin: 10px;
}

.sidebar .sidebar-container .sidebar-buttons .button-commands .iconify {
    width: 20px;
    height: 20px;
    margin-right: 20px;
}

/* style the other button */
.sidebar .sidebar-container .sidebar-buttons .button-dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6390F3;
    width: 253px;
    border-radius: 10px 0 0 10px;
    -moz-border-radius: 10px 0 0 10px;
    -webkit-border-radius: 10px 0 0 10px;
    height: 60px;
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    margin: 10px;
}

.sidebar .sidebar-container .sidebar-buttons .button-dashboard img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}


@media (width > 1205px) {
    .sidebar {
        width: 0;
    }
}

@media(max-width: 1205px) {
    .navbar .navbar-toggle {
        display: block;
        position: fixed;
        top: 0;
        right: 50;
    }

    .navbar .nav-navigates {
        display: none;
    }

    .navbar .nav-buttons {
        display: none;
    }

    .navbar .active {
        display: block;
    }

    .navbar .main-nav a {
        font-size: 20px;
    }

}

@media (max-width: 473px) {
    .navbar .nav-main-content {
        margin: 0px;
    }
}

@media (max-width: 473px) {
    .navbar .navbar-toggle {
        position: fixed;
        top: 0;
        right: 5;
    }
}

/* ========================kezdőlap======================= */

#kezdőlap {
    /*background: url("public/back.svg");*/
    display: flex;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    color: #FFFFFF;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    height: 674px;
}


#kezdőlap .blob1 {
    float: left;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
}

#kezdőlap .blob2 {
    float: right;
    z-index: -2;
    position: absolute;
    top: 0;
    right: 0;
}


#kezdőlap .main-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


#kezdőlap .main-container .main-image {
    width: 751px;
    height: 406px;
    z-index: 1;
}

#kezdőlap .main-container .main-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    opacity: 0.7;
    font-size: 53px;
    font-weight: 900;
    line-height: 73px;
    text-align: center;
    right: 20px;
    
}


#kezdőlap .main-container .main-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    z-index: 1;
}

#kezdőlap .main-container .main-buttons .button-invite {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #6390F3;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    color: white;
    z-index: 1;
    text-decoration: none;
    font-family: 'Inter';
    margin-right: 20px;
}

#kezdőlap .main-container .main-buttons .button-invite:hover {
    background-color: #444444;
    transition: background-color 0.3s;
}

#kezdőlap .main-container .main-buttons .button-invite img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

#kezdőlap .main-container .main-buttons .button-server {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: none;
    z-index: 1;
    width: 230px;
    height: 46px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    padding: 2px;
    outline: 1px solid #787878;
    text-decoration: none;
    color: #FFFFFF;
}

#kezdőlap .main-container .main-buttons .button-server:hover {
    animation: outline 0.4s;
    animation-fill-mode: forwards;
}

#kezdőlap .main-container .main-buttons .button-server img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

@media (max-width: 1473px) {
    #kezdőlap .main-container .main-text {
        font-size: 35px;
        line-height: 36px;
    }

    #kezdőlap .main-container .main-buttons .button-invite {
        width: 160px;
    }

    #kezdőlap .main-container .main-buttons .button-server {
        width: 180px;
        font-size: 15px;
    }

    #kezdőlap .main-container .main-image {
        width: 500px;
        height: 400px;
    }
}

@media(max-width: 1064px) {
    #kezdőlap .main-container {
        flex-direction: column;
    }

    #kezdőlap .main-container .main-image {
        width: 100%;
    }

    #kezdőlap .blob2 {
        display: none;
    }
}

@media (max-width: 500px) {
    #kezdőlap .main-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #kezdőlap .main-container .main-image {
        width: 330px;
        height: 186px;
    }

    #kezdőlap .main-container .main-buttons {
        flex-direction: row;
        background-color: #000000;
        margin: 30px;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-right: 0px;
        padding-left: 0px;
        width: 330px;
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
    }

    #kezdőlap .main-container .main-buttons .button-invite {
        width: 139px;
        height: 40.14px;
        margin-right: 10px;
        font-size: 13px;
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
    }

    #kezdőlap .main-container .main-buttons .button-invite img {
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    #kezdőlap .main-container .main-buttons .button-server {
        width: 165.23px;
        height: 35px;
        font-size: 13px;
        border-radius: 12px;
        -webkit-border-radius: 12px;
    }

    #kezdőlap .main-container .main-buttons .button-server img {
        width: 20px;
        height: 20px;
    }

    #kezdőlap .blob1 {
        width: 100%;
    }
}

@media (max-width: 400px) {
    #kezdőlap .main-container .main-image {
        width: 360px;
        height: 180px;
    }
}

@media (max-width: 426px) {
    #kezdőlap .main-container .main-text {
        font-size: 30px;
        line-height: 36px;
    }
}

@media (max-width: 360px) {
    #kezdőlap .main-container .main-image {
        width: 260px;
        height: 130px;
    }
}

/* ========================előnyök======================= */

#előnyök {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 30px;
    color: #FFFFFF;
    height: auto;
    padding: 20px;
}

/* ========================előnyök-1======================= */

#előnyök .elonyok1 {
    width: 100%;
}

#előnyök .elonyok1 .elonyok1-main {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 150px;
    margin-top: 40px;
}

#előnyök .elonyok1 .elonyok1-main .elonyok1-left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* margin-right: 400px; */
    position: relative;
}

#előnyök .elonyok1 .elonyok1-main .elonyok1-left .blob {
    position: absolute;
    z-index: -1;
    width: 450px;
    height: 450px;
    margin-top: 40px;
}

#előnyök .elonyok1 .elonyok1-main .elonyok1-left .elony1img {
    width: 430px;
    height: 430px;
    margin-top: 20px;
    transition: all 0.5s ease;
}

#előnyök .elonyok1 .elonyok1-main .elonyok1-left .elony1img:hover {
    transform: perspective(800px) rotate3d(100, 50, 50, 7deg) scale(1.1);
    -webkit-transform: perspective(800px) rotate3d(100, 50, 50, 7deg) scale(1.1);
    -moz-transform: perspective(800px) rotate3d(100, 50, 50, 7deg) scale(1.1);
    -khtml-transform: perspective(800px) rotate3d(100, 50, 50, 7deg) scale(1.1);
}

#előnyök .elonyok1 .elonyok1-main .elonyok1-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
    gap: 20px;
}

#előnyök .elonyok1 .elonyok1-main .elonyok1-right h1 {
    font-size: 40px;
    margin: 0px;
}

#előnyök .elonyok1 .elonyok1-main .elonyok1-right a {
    font-weight: 300;
    font-size: 20px;
    color: #FFFFFF;
    opacity: 0.7;
    font-family: 'Inter';
}


#előnyök .elonyok1 .elonyok1-main .elonyok1-right .elonyok1-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    color: white;
    padding: 10px;
    outline: 1px solid #787878;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    max-width: 300px;
    width: 100%;
    height: 40px;
    cursor: pointer;
    font-weight: 700;
    opacity: 1;
}

#előnyök .elonyok1 .elonyok1-main .elonyok1-right .elonyok1-btn:hover {
    color: #FFFFFF;
    animation: outline 0.3s;
    animation-fill-mode: forwards;
}

@keyframes outline {
    0% {
        outline: 1px solid #787878;
    }

    100% {
        outline: 1px solid #FFFFFF;
    }
}

/* ========================előnyök-2======================= */

#előnyök .elonyok2 {
    width: 100%;
}

#előnyök .elonyok2 .elonyok2-main {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 150px;
}

#előnyök .elonyok2 .elonyok2-main .elonyok2-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

#előnyök .elonyok2 .elonyok2-main .elonyok2-left h1 {
    font-size: 40px;
    margin: 0px;
}


#előnyök .elonyok2 .elonyok2-main .elonyok2-left a {
    color: #FFFFFF;
    font-size: 20px;
    opacity: 0.7;
}

#előnyök .elonyok2 .elonyok2-main .elonyok2-right {
    position: relative;
}

#előnyök .elonyok2 .elonyok2-main .elonyok2-right .blob {
    width: 500px;
    height: 500px;
    margin-top: 40px;
    position: absolute;
    z-index: -1;
}

#előnyök .elonyok2 .elonyok2-main .elonyok2-right .elony2img {
    width: 470px;
    height: 470px;
    margin-top: 40px;
    transition: all 0.5s ease;
}

#előnyök .elonyok2 .elonyok2-main .elonyok2-right .elony2img:hover {
    transform: perspective(800px) rotate3d(100, 50, -50, 7deg) scale(1.1);
    -webkit-transform: perspective(800px) rotate3d(100, 50, -50, 7deg) scale(1.1);
    -moz-transform: perspective(800px) rotate3d(100, 50, -50, 7deg) scale(1.1);
    -khtml-transform: perspective(800px) rotate3d(100, 50, -50, 7deg) scale(1.1);
}

#előnyök .elonyok2 .elonyok2-main .elonyok2-left .elonyok2-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    color: white;
    padding: 10px;
    outline: 1px solid #787878;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    width: 300px;
    height: 40px;
    cursor: pointer;
    font-weight: 700;
    opacity: 1;
}

#előnyök .elonyok2 .elonyok2-main .elonyok2-left .elonyok2-btn:hover {
    animation: outline 0.3s;
    animation-fill-mode: forwards;
    color: #FFFFFF;
}

#előnyök .elonyok2 .elonyok2-main .elonyok2-left .elonyok2-btn img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

@media (max-width: 1090px) {
    #előnyök .elonyok2 .elonyok2-main .elonyok2-right .blob {
        width: 450px !important;
        height: 450px !important;
        margin: 40px;
    }

    #előnyök .elonyok2 .elonyok2-main .elonyok2-right .elony2img {
        width: 430px !important;
        height: 430px !important;
        margin: 40px;
    }
}

/* ========================előnyök-3======================= */

#előnyök .elonyok3 {
    width: 100%;
}

#előnyök .elonyok3 .elonyok3-main {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 200px;
}

#előnyök .elonyok3 .elonyok3-main .elonyok3-left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 200px;
}

#előnyök .elonyok3 .elonyok3-main .elonyok3-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

#előnyök .elonyok3 .elonyok3-main .elonyok3-left .blob {
    width: 500px;
    height: 500px;
    margin-top: 40px;
    position: absolute;
    z-index: -1;
}

#előnyök .elonyok3 .elonyok3-main .elonyok3-left .elony3img {
    width: 470px;
    height: 470px;
    margin-top: 40px;
    transition: all 0.5s ease;
}

#előnyök .elonyok3 .elonyok3-main .elonyok3-left .elony3img:hover {
    transform: perspective(800px) rotate3d(100, 50, 50, 7deg) scale(1.1);
    transform: perspective(800px) rotate3d(100, 50, 50, 7deg) scale(1.1);
    -webkit-transform: perspective(800px) rotate3d(100, 50, 50, 7deg) scale(1.1);
    -moz-transform: perspective(800px) rotate3d(100, 50, 50, 7deg) scale(1.1);
    -khtml-transform: perspective(800px) rotate3d(100, 50, 50, 7deg) scale(1.1);
}

#előnyök .elonyok3 .elonyok3-main .elonyok3-right h1 {
    font-size: 37px;
}

#előnyök .elonyok3 .elonyok3-main .elonyok3-right a {
    font-weight: 300;
    font-size: 20px;
    color: #FFFFFF;
    opacity: 0.7;
    font-family: 'Inter';
}


#előnyök .elonyok3 .elonyok3-main .elonyok3-right .elonyok3-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    color: white;
    padding: 10px;
    outline: 1px solid #787878;
    opacity: 1;
    font-weight: 700;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    height: 40px;
    width: 300px;
    cursor: pointer;
    font-family: 'Inter' !important;
}

#előnyök .elonyok3 .elonyok3-main .elonyok3-right .elonyok3-btn:hover {
    animation: outline 0.3s;
    animation-fill-mode: forwards;
    color: #FFFFFF;
}

#előnyök .elonyok3 .elonyok3-main .elonyok3-right .elonyok3-btn img {
    width: 40px;
    height: 20px;
    margin-right: 20px;
}

@media (max-width: 1090px) {
    #előnyök .elonyok3 .elonyok3-main .elonyok3-left .blob {
        width: 430px !important;
        height: 430px !important;
    }

    #előnyök .elonyok3 .elonyok3-main .elonyok3-left .elony3img {
        width: 410px !important;
        height: 410px !important;
    }
}

/* ========================responsieve======================= */

@media (max-width: 1510px) {
    #előnyök .elonyok1 .elonyok1-main .elonyok1-left {
        margin-right: 100px;
    }

    #előnyök .elonyok2 .elonyok2-main .elonyok2-left {
        margin-right: 60px;
    }

    #előnyök .elonyok3 .elonyok3-main .elonyok3-left {
        margin-right: 100px;
    }
}

@media(max-width: 1140px) {
    #előnyök .elonyok1 .elonyok1-main .elonyok1-left {
        margin-right: 0px;
    }

    #előnyök .elonyok2 .elonyok2-main .elonyok2-left {
        margin-right: 0px;
    }

    #előnyök .elonyok3 .elonyok3-main .elonyok3-left {
        margin-right: 0px;
    }
}

@media(max-width: 1250px) {

    #előnyök .elonyok3 .elonyok3-main .elonyok3-left .blobimg {
        width: 400px;
        height: 400px;
    }

    #előnyök .elonyok2 .elonyok2-main .elonyok2-left {
        margin-right: -10px;
    }

    #előnyök .elonyok2 .elonyok2-main .elonyok2-right img {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 1040px) {
    #előnyök .elonyok3 .elonyok3-main {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #előnyök .elonyok3 .elonyok3-main .elonyok3-right {
        flex-direction: column;
        justify-content: center;
        padding-top: 20px;
    }

    /*előnyök-1*/
    #előnyök .elonyok1 .elonyok1-main {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #előnyök .elonyok1 .elonyok1-main .elonyok1-right {
        flex-direction: column;
        justify-content: center;
    }

    /*előnyök-2*/
    #előnyök .elonyok2 .elonyok2-main {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    #előnyök .elonyok2 .elonyok2-main .elonyok2-left {
        display: flex;
        justify-content: center;
    }
    
    #előnyök .elonyok2 .elonyok2-main .elonyok2-left a {
        margin-left: 0px;
    }
}

@media(max-width: 540px) {

    /*előnyök-1*/
    #előnyök .elonyok1 .elonyok1-main .elonyok1-left .blob {
        width: 300px;
        height: 300px;
    }

    #előnyök .elonyok1 .elonyok1-main .elonyok1-left .elony1img {
        width: 300px;
        height: 300px;
    }


    /*előnyök-2*/

    #előnyök .elonyok2 .elonyok2-main .elonyok2-right{
        margin-left: -20px;
    }


    #előnyök .elonyok2 .elonyok2-main .elonyok2-right .blob {
        width: 300px !important;
        height: 300px !important;
    }

    #előnyök .elonyok2 .elonyok2-main .elonyok2-right .elony2img {
        width: 280px !important;
        height: 280px !important;
    }

    /*előnyök-3*/
    #előnyök .elonyok3 .elonyok3-main .elonyok3-left .blob {
        width: 300px !important;
        height: 300px !important;
    }

    #előnyök .elonyok3 .elonyok3-main .elonyok3-left .elony3img {
        width: 280px !important;
        height: 280px !important;
    }
}


/* ========================rólunk======================= */

#rólunk {
    background: #242424;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #FFFFFF;
    height: auto;
    margin: 60px;
}

#rólunk .developers-show-more {
    font-size: 20px;
    margin-bottom: 10px;
    cursor: pointer;
}

#rólunk .developers-show-more img {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    top: 3px;
}

#rólunk .rolunk-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

#rólunk .rolunk-main h1 {
    font-weight: 1000;
    font-size: 55px;
    line-height: 73px;
    text-align: center;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.392);
    padding-bottom: 10px;
}

#rólunk .rolunk-main .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1B1B1B;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    height: auto;
}

#rólunk .rolunk-main .developers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    padding: 20px;
    grid-row-gap: 30px;
    grid-column-gap: 30px;
    margin-bottom: 10px;
}

#rólunk .rolunk-main .developers .developer {
    height: 250px;
}

#rólunk .rolunk-main .developers .developer img {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
}

#rólunk .rolunk-main .developers .developer .hover {
    height: 250px;
    transform: translateY(-250px);
}


#rólunk .rolunk-main .developers .developer.closing .hover {
    display: block;
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 12px;
    animation: blurfadeout 0.7s ease;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    transform: translateY(-250px);
    animation-fill-mode: forwards;
}

#rólunk .rolunk-main .developers .developer.closing .hover .name {
    animation: heightdown 0.7s;
    display: flex;
    bottom: -10px;
}

#rólunk .rolunk-main .developers .developer.closing .hover .name a {
    animation: textfade 0.7s;
}

#rólunk .rolunk-main .developers .developer.active .hover {
    display: block;
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    animation: blurfade 0.7s ease;
    transform: translateY(-250px);
    animation-fill-mode: forwards;
}


@keyframes raiseheightfrombottom {
    0% {
        height: 10px;
    }

    100% {
        height: 60px;
    }
}

@keyframes heightdown {
    0% {
        height: 60px;

    }

    100% {
        height: 0px;
        display: none;
    }
}

@keyframes textfade {
    0% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes blurfade {
    from {
        backdrop-filter: blur(0px);
    }

    to {
        backdrop-filter: blur(4px);
        background-color: rgba(0, 0, 0, 0.5);
    }
}

@keyframes blurfadeout {
    from {
        backdrop-filter: blur(4px);
        background-color: rgba(0, 0, 0, 0.5);
    }

    to {
        backdrop-filter: blur(0px);
        background-color: transparent;
    }
}

#rólunk .rolunk-main .developers .developer .name {
    z-index: 5;
    position: absolute;
    background-color: #2D2D2D;
    display: none;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 250px;
    transform: translateY(-10px);
    border-radius: 0 0 12px 12px;
    -webkit-border-radius: 0 0 12px 12px;
    -moz-border-radius: 0 0 12px 12px;
}

#rólunk .rolunk-main .developers .developer.active .hover .name {
    z-index: 5;
    position: absolute;
    background-color: #2D2D2D;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 250px;
    bottom: -10px;
    border-radius: 0 0 12px 12px;
    -webkit-border-radius: 0 0 12px 12px;
    -moz-border-radius: 0 0 12px 12px;
    animation: raiseheightfrombottom 0.5s;
}

#rólunk .rolunk-main .developers .developer .name a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
}

#rólunk .rolunk-main .developers .developer.active .hover .name a {
    color: #FFFFFF;
    font-size: 20px;
    text-decoration: none;
    font-weight: 700;
}

#rólunk .rolunk-main .developers .developer .social {
    z-index: 3;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 130px;
    left: 60px;
}

#rólunk .rolunk-main .developers .developer.active .hover .social {
    z-index: 3;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 130px;
    left: 60px;
}

#rólunk .rolunk-main .developers .developer.active .hover .social .iconify {
    cursor: pointer;
    margin: 5px;
    color: white;
    opacity: 0.8;
}

#rólunk .rolunk-main .developers .developer.active .hover .social .iconify:hover{
    opacity: 1;
}

@media(max-width: 1170px) {
    #rólunk .rolunk-main .developers {
        grid-template-columns: repeat(3, 250px);
    }
}

@media (max-width: 905px) {
    #rólunk .rolunk-main .developers {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }

    #rólunk .rolunk-main .developers .developer {
        height: 200px;
    }

    #rólunk .rolunk-main .developers .developer.active .hover {
        width: 200px;
        height: 200px;
        transform: translateY(-200px);
    }

    #rólunk .rolunk-main .developers .developer img {
        width: 200px;
        height: 200px;
    }

    #rólunk .rolunk-main .developers .developer.active .hover .name {
        width: 200px;
    }

    #rólunk .rolunk-main .developers .developer.active .hover .social {
        left: 40px;
        bottom: 100px;
    }


    #rólunk .rolunk-main .developers .developer.closing .hover {
        width: 200px;
        height: 200px;
        transform: translateY(-180px);
        animation-fill-mode: forwards;
    }

    #rólunk .rolunk-main .developers .developer.closing .hover .name {
        animation: heightdown 0.7s;
        display: flex;
        bottom: -10px;
    }

    #rólunk .rolunk-main .developers .developer.closing .hover .name a {
        animation: textfade 0.7s;
    }

    #rólunk .rolunk-main .developers .developer.closing .hover .name {
        width: 200px;
        height: 200px;
    }
}


@media (max-width: 470px) {
    @keyframes heightdown {
        0% {
            height: 40px;
    
        }
    
        100% {
            height: 0px;
            display: none;
        }
    }

    #rólunk .rolunk-main .developers {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    #rólunk .rolunk-main .developers .developer.closing .hover {
        width: 150px;
        height: 150px;
        transform: translateY(-150px);
        animation-fill-mode: forwards;
    }


    #rólunk .rolunk-main .developers .developer {
        height: 150px;
    }

    #rólunk .rolunk-main .developers .developer.active .hover {
        width: 150px;
        height: 150px;
        transform: translateY(-150px);
    }

    #rólunk .rolunk-main .developers .developer img {
        width: 150px;
        height: 150px;
    }

    #rólunk .rolunk-main .developers .developer.active .hover .name {
        width: 150px;
    }

    #rólunk .rolunk-main .developers .developer.closing .hover .name {
        width: 150px;
        height: 150px;
    }


    #rólunk .rolunk-main .developers .developer.active .hover .social {
        left: 10px;
        bottom: 70px;
    }


    @keyframes raiseheightfrombottom {
        0% {
            height: 0px;
        }

        100% {
            height: 40px;
        }
    }

    #rólunk .rolunk-main .developers .developer.active .hover .name {
        position: absolute;
        background-color: #2D2D2D;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        width: 150px;
        bottom: -12px;
        backdrop-filter: blur(41px);
        border-radius: 0 0 12px 12px;
        -webkit-border-radius: 0 0 12px 12px;
        -moz-border-radius: 0 0 12px 12px;
        animation: raiseheightfrombottom 0.5s;
    }
}


/* ========================gyik======================= */

#gyik {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #FFFFFF;
    height: auto;
    margin: 60px;
    margin-top: 300px;
    bottom: 50px;
}

#gyik .gyik-main {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#gyik .gyik-main h1 {
    font-weight: 1000;
    font-size: 50px;
    line-height: 73px;
    text-align: center;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.392);
    padding-bottom: 10px;
}

#gyik .gyik-main .questions-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#gyik .gyik-main .questions-container .question img {
    transform: rotate(90deg);
    width: 16px;
    height: 20px;
    margin-right: 20px;
    margin-left: 20px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


#gyik .gyik-main .questions-container .question.active img {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#gyik .gyik-main .questions-container .question {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 380px;
    margin: -10px;
}

#gyik .gyik-main .questions-container .question .question-opener {
    cursor: pointer;
    display: flex;
    align-items: center;
    background: #444444;
    height: 40px;
    margin: 20px;
    padding: 10px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    width: 1000px;
}

#gyik .gyik-main .questions-container .question .question-opener:hover {
    background: #2f2f2f;
}

#gyik .gyik-main .questions-container .question .question-opened:has(.active) .question-opener {
    border-radius: 7px 7px 0px 0px !important;
    -webkit-border-radius: 7px 7px 0px 0px !important;
}

/* #gyik .gyik-main .questions-container .question .question-opened.active .question-opener {
    
} */

#gyik .gyik-main .questions-container .question .question-text {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    padding-left: 10px;
}


#gyik .gyik-main .questions-container .question .question-opened {
    overflow: hidden;
    height: 0px;
    transition: all 0.5s ease-in-out;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 20px;
    width: 980px;
    margin-top: -20px;
    font-size: 0px;
    margin-bottom: -10px;
}

#gyik .gyik-main .questions-container .question .question-opened.active  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #393939;
    margin-top: -21px;
    max-width: 980px;
    width: 980px;
    padding: 20px;
    border-radius: 0 0 7px 7px;
    -webkit-border-radius: 0 0 7px 7px;
    -moz-border-radius: 0 0 7px 7px;
    /*animation: slidefromtop 0.7s;*/
    margin-bottom: 20px;
    height: auto;
}

#gyik .gyik-main .questions-container .question .question-opened.active  {
    color: #FFFFFF;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.82;
    font-family: 'Inter';
}

@media (max-width: 1100px) {
    #gyik .gyik-main .questions-container .question .question-opener {
        width: 800px;
    }

    #gyik .gyik-main .questions-container .question .question-opened.active {
        width: 780px;
    }

    #gyik .gyik-main .questions-container .question .question-opened {
        width: 780px;
    }
}

@media(max-width: 1170px) {
    #gyik {
        margin-top: 0;
    }
}

@media(max-width: 900px) {

    #gyik .gyik-main .questions-container .question .question-opener {
        width: 600px;
    }

    #gyik .gyik-main .questions-container .question .question-opened.active {
        width: 580px;
    }

    #gyik .gyik-main .questions-container .question .question-opened {
        width: 580px;
    }

    #rólunk .rolunk-main .developers .developer.closing .hover {
        transform: translateY(-200px);
    }

    #gyik .gyik-main h1 {
        content: '';
        visibility: hidden;
    }

    #gyik .gyik-main h1:after {
        margin-top: 10px;
        content: 'GYIK';
        display: block;
        visibility: visible;
        border-bottom: 1px solid rgba(255, 255, 255, 0.117);
        padding-bottom: 10px;
    }
}



@media(max-width: 710px) {

    #rólunk .rolunk-main .developers .developer.closing .hover {
        transform: translateY(-150px);
    }

    #gyik .gyik-main .questions-container .question .question-opened.active {
        height: auto;
    }

    #gyik .gyik-main .questions-container .question .question-opener {
        width: 350px;
    }

    #gyik .gyik-main .questions-container .question .question-opener .question-text {
        font-size: 16px;
    }

    #gyik .gyik-main .questions-container .question .question-opened.active {
        width: 330px;
        margin-bottom: 10px;
    }

    #gyik .gyik-main .questions-container .question .question-opened {
        width: 330px;
    }

    #gyik .gyik-main .questions-container .question.closing .question-opened {
        width: 330px;
    }

    #gyik .gyik-main .questions-container .question {
        margin: -10px;
    }
}

/* ========================kapcsolat======================= */

#kapcsolat {
    background: #161616;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #FFFFFF;
    height: auto;
    text-decoration: none;
}

#kapcsolat .footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 20px;
    flex-wrap: wrap;
    text-decoration: none;
}

#kapcsolat .footer-main .footer-left h1 {
    font-size: 30px;
    font-weight: 700;
    position: relative;
    bottom: 20px;
}

#kapcsolat .footer-main .footer-left .footer-dc {
    font-size: 18px;
    font-family: 'Inter';
}

#kapcsolat .footer-main .footer-left .footer-city {
    position: relative;
    font-size: 18px;
    font-family: 'Inter';
    text-decoration: none;
    color: white;
    bottom: 20px;
}

#kapcsolat .footer-main .footer-left .footer-city:hover {
    opacity: 0.7;
}

#kapcsolat .footer-main .footer-left .email {
    font-size: 18px;
    font-family: 'Inter';
    position: relative;
    bottom: -20px;
}

#kapcsolat .footer-main .footer-left .email:hover {
    opacity: 0.7;
    cursor: pointer;
}

#kapcsolat .footer-main .footer-left .footer-dc {
    font-size: 18px;
    font-family: 'Inter';
    text-decoration: none;
    color: white;
}

#kapcsolat .footer-main .footer-left .footer-dc:hover {
    opacity: 0.7;
}

#kapcsolat .footer-main .footer-mid .mid-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#kapcsolat .footer-main .footer-mid .links {
    display: flex;
    flex-direction: column;
}

#kapcsolat .footer-main .footer-mid .links h1 {
    font-size: 27px;
    font-weight: 700;
}

#kapcsolat .footer-main .footer-mid .links img {
    margin-right: 10px;
}

#kapcsolat .footer-main .footer-mid .links a {
    font-size: 18px;
    font-family: 'Inter';
    margin: 3px;
    text-decoration: none;
    color: white;
}

#kapcsolat .footer-main .footer-mid .links a:hover {
    cursor: pointer;
    opacity: 0.7;
}

#kapcsolat .footer-main .footer-mid .external-links {
    display: flex;
    flex-direction: column;
    transform: translateY(-7px);
    margin-left: 100px;
}

#kapcsolat .footer-main .footer-mid .external-links h1 {
    font-size: 27px;
    position: relative;
    font-weight: 700;
    bottom: 15px !important;
}

#kapcsolat .footer-main .footer-mid .external-links img {
    margin-right: 10px;
}

#kapcsolat .footer-main .footer-mid .external-links a {
    font-size: 18px;
    font-family: 'Inter';
    text-decoration: none;
    color: white;
}

#kapcsolat .footer-main .footer-mid .external-links a:hover {
    cursor: pointer;
    opacity: 0.7;
}

#kapcsolat .footer-main .footer-right img {
    width: 500px;
    height: 337px;
}

#kapcsolat .footer-main .footer-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width: 1465px) {
    #kapcsolat .footer-main .footer-right .map {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 930px) {
    #kapcsolat .footer-main {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    #kapcsolat {
        height: auto;
    }

    #kapcsolat .footer-main .footer-mid {
        margin-top: 30px;
    }

    #kapcsolat .footer-main .footer-mid .links h1 {
        font-size: 16px;
    }

    #kapcsolat .footer-main .footer-mid .links a {
        font-size: 14px;
        max-width: 100px;
        text-overflow: ellipsis;
    }

    #kapcsolat .footer-main .footer-mid .external-links h1 {
        font-size: 18px;
    }

    #kapcsolat .footer-main .footer-mid .external-links a {
        font-size: 14px;
    }

    #kapcsolat .footer-main .footer-right {
        margin-top: 40px;
    }

    #kapcsolat .footer-main .footer-mid .services {
        position: relative;
    }

    #kapcsolat .footer-main .footer-mid .links .services-footer{
        line-break: loose;
        max-width: 100px;
        text-overflow: ellipsis;
    }
}

.underline {
    text-decoration: underline;
}

.blur {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.blur.active {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 7;
    background-color: rgba(0, 0, 0, 0.35);
}