@charset "UTF-8";
/* CSS Document */



body, html {
	height: 100%;
}
body {
	margin: 0;
	font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    background-color: white;
    color: var(--black);
    -webkit-font-smoothing: antialiased;
}
.dark-mode {
    background-color: #191919;
    color: #fff;
    
    --kek: #0075FF;
    --black: #fbfbfb;
    --white: #1d1d1d;
    --gray1: #F7F7F7;
    --gray2: #a7a7a7;
    --gray3: #292929;
    --gray4: #222222;
    
    --blur-menu: rgba(56, 56, 56, 0.5);
    --nem-blur-menu: rgba(41, 41, 41, 0.98);
    --nem-blur-menu2: rgba(44, 44, 44, 0.99);
    --nem-blur-menu3: rgba(47, 47, 47, 0.99);
}


:root {
    --web-color: #FF007A;
    --logo-color: #0075FF;
    --reklam-color: #07ECA7;
    --typo-color: #FFB800;
    --animacio-color: #B55BFD;
    --egyeb-color: #4FE31B;
    
    
    --kek: #0075FF;
    --black: #292929;
    --white: #fff;
    --gray1: #606060;
    --gray2: #a7a7a7;
    --gray3: #F7F7F7;
    --gray4: #fbfbfb;
    
    --blur-menu: rgba(255, 255, 255, 0.5);
    --nem-blur-menu: rgba(212, 212, 212, 0.97);
    --nem-blur-menu2: rgba(212, 212, 212, 0.97);
    --nem-blur-menu3: rgba(250, 250, 250, 0.99);
}

body {
    background: #fff
}




/*--- betűk a desktop nézethez ---*/
h1 {
    font-style: normal;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -1.3px;
    color: var(--black);
    font-kerning: auto;
    padding: 0 1vw ;
}


h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    letter-spacing: -0.6px;
    line-height: 52px;
    padding: 0 1vw ;
}


h3 {
    font-style: normal;
    font-weight: 500;
    font-kerning: normal;
    letter-spacing: -0.4px;
    font-size: 19px;
    line-height: 37px;
    padding: 0 1vw ;
}


h4 {
    font-style: normal;
    font-weight: 600;
    font-kerning: normal;
    font-size: 15px;
    line-height: 22px;
    padding: 0 1vw ;
}


h5 {
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.1px;
    line-height: 30px;
    color: var(--black); 
    padding: 0 1vw ;
}


h6 /*--link--*/ {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    
    color: var(--kek);
    padding: 0 1vw ;
}
h6:hover /*--link--*/ {
    text-decoration: underline
}

h7 {
    color: var(--gray2);
    font-size: 12px;
    line-height: 17px;
    letter-spacing: -0.1px;
    font-kerning: none;
    padding: 0 1vw ;
}


hr {
    border-top: 0.5pt solid var(--gray2);
    border-bottom: 0pt;
    margin: 0 15vw 0 15vw;
}

p {
    text-align: left;
}









/*-----------   MAIN   ------------*/


.fejlesztes-alatt svg {
    width: 23px;
    position: absolute;
    background: var(--blur-menu);
    backdrop-filter: blur(20px);
    border-radius: 100%;
    padding: 15px;
    left: 50%;
    transform: translate(-50%);
    top: -25px;
    cursor: pointer;
}



main {
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: var(--gray3);
}

.profil {
    width: 350px;
    height: 350px;
    position: relative;   
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100%;
    transition-duration: 0.6s;
}
.profil::after {
    content: '';
    position: absolute;
    border-radius: 100%;
    top: -22px; left: -22px; bottom: -22px; right: -22px;
    border: solid 11px transparent;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    linear-gradient(110deg, var(--kek) 0%, var(--web-color) 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 1px 1000px 1px var(--white) inset;
    z-index: -2; 
    
    background-size: 160% 100%;
    animation: gradient 3s linear infinite;
    animation-direction: alternate;
}
@keyframes gradient {
    0% {background-position: 50%}
    25% {background-position: 100%}
    50% {background-position: 50%}
    75% {background-position: 0%}
}
@keyframes gradienthover {
    0% {background-position: 50%}
    5% {background-position: 100%}
    50% {background-position: 100%}
    100% {background-position: 50%}
}
.profil:hover:after {
    animation: gradienthover 4s linear infinite;
    animation-direction: normal;
    background-size: 500% 100%;
}


.new-project {
    position: relative;
    text-align: left;
    margin: -10px -40px 0 0px;
    color: var(--kek);
    
    animation-name: rotate-anim;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}
.new-project::before{
    content: "";
    position: absolute;
    top: 0;
    left: -27px;
    width: 20px;
    height: 20px;
    background-color: var(--kek);
    background-color: ;
    border-radius: 100%;
}

@keyframes rotate-anim {
    0s {
        transform: rotate(0deg);
    }
    40% {
        transform: rotate(0deg);
    }
    45% {
        transform: rotate(2deg);
    }
    50% {
        transform: rotate(-2deg);
    }
    55% {
        transform: rotate(2deg);
    }
    60% {
        transform: rotate(-2deg);
    }
    65% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}






.csekkold {
    position: relative;
}


.main-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    top: 50%;
    transform: translateY(-50%);
    max-width: 800px;   
    margin: auto;    
}
.main-box {
    margin: 20px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}


.main-grid h1 {
    display: inline-flex;
    position: relative;
    height: 0px;
    margin: 10px 0;    
    line-height: 10vw;

    
    animation-name: slide-up;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    transition: 0.5s;
}
.main-grid h5 {
    margin: 15px;
    
    animation-name: slide-up;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    transition: 0.5s;
}
.main-grid h6 {
    font-size: 18px;
    margin-top: 21px;
    
    animation-name: slide-up;
    animation-duration: 2.5s;
    animation-timing-function: ease-in-out;
    transition: 0.5s;
}
@keyframes slide-up {
    0% {transform: translateY(20px); opacity: 0;}
    100% {transform: translateY(0px); }
}



.scrolldown {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    animation-name: scrolldown;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes scrolldown {
    from { bottom: 10vh; opacity: 0; }
    to { bottom: 8vh; }
}










/*----------- SECTION 2 -------------*/



.section2 {
    text-align: center;
}
section2 h1 {
    position: relative;
    margin: 39px 0 28px 0;
    text-align: center;
    max-width: 980px;
    left: 50%;
    transform: translate(-50%);
}


.section2-boxes {
    position: relative;
}
.section2-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    top: ;
    padding: 10px;
}
.section2-box {
    display: flex;
    justify-content: center;
    position: relative;
    text-align: center;
}
.section2-box-content {
    width: 100%;
    background: var(--gray4);
    border-radius: 15px;
    margin: 10px;  
    padding: 2% 0 0 0;
}
.section2 h2 {
    margin-bottom: 7px  ;
}
.section2 h6 {
    color: #0075FF;
    margin: 0;
}




.section2-box-img {
    position: relative;
    width: 100%;
    height: 32vmax;
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.section2-box-content:hover  {
    background: var(--gray3);

}
















/*----------------- FOOTER --------------------*/

.footer-socialmedia {
    background: var(--gray3) ;
    border-radius: 45px 45px 0 0;
}

.footer {
    background: var(--gray3);
    border-radius: 45px 45px 0 0;  
    text-align: center; 
}

.footer h2 {
    position: relative;
    padding: 35px 15px 0;
    text-align: center;
    max-width: 980px;
    left: 50%;
    transform: translate(-50%);
} 



.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    max-width: 650px;   
    margin: auto; 
    padding: 30px 0;
}
.footer-box {
    margin: 4px 0 16px 0;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}
.behance-footer-image {
    width: 80px;
    fill: var(--black);
}
.instagram-footer-image {
    width: 80px;
    fill: var(--black);
}
.footer-box-content > a > h6 {
    margin-top: 17px;
}





.footer-email > a > h6 {
    margin: -25px 0 0 0;
}
.footer-menu > a > h6 {
    margin: 18px;
}
.footer-menu {
    margin: 22px 0 32px 0;
}
.footer-copyright {
    margin: 10px auto 0;
    padding: 0 0 22px 0;
    max-width: 330px;
}




    
/*------Java------*/


    
.slideUp {
    animation-name: slideUp;
    animation-duration: 1s;
    visibility: visible;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  } 
  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}














/*------ reakcio section --------*/



.reakcio {
    margin: 12px auto -14px;
    text-align: center;
}
 
#share-btn {
    position: relative;
    cursor: pointer;
    margin: 20px;
    align-items: center;
}

#insta-btn {
    position: relative;
    cursor: pointer;
    margin: 20px;
}

#share-buttons img {
    width: 65px;
    padding: 5px;
    border: 0;
    box-shadow: 0;
    display: inline;
}

#share-buttons {
    position: fixed;
    z-index: 1;
    width: 70%;
    max-width: 900px;
    max-width: 900px;
    transform: translateX(-50%);
    left: 50%;
    text-align: center;
    top: 35%;
    padding-bottom: 58px;
    border-radius: 45px;
    background-color: var(--blur-menu); 
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

#share-buttons-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 1;
    top: 0;
    
    animation-name: menu-overlay;
    animation-duration: 3s;
    animation-timing-function: ease;
}

.korkep {
    width: 200px;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    margin: 50px auto 50px auto;
    
    animation-name: slide-up;
    animation-duration: 0.5s
}







/*------ gifek ------*/

.gif-background {
    background: #fbfbfb;
    width: 100%;
    height: 417px;
    position: relative;
    margin-top: -425px;
    z-index: -1
}


/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/




    

/* 768 SCREEN IPAD - 768 SCREEN -768 SCREEN */

/*---------- 768 PX SCREEN ----------*/

@media(max-width:768px){    

    

/*--- betűk a phone nézethez ---*/
h1 {
    font-style: normal;
    font-size: 38px;
    line-height: 48px;
    font-weight: 600;
    letter-spacing: -1.3px;
    color: var(--black);
    font-kerning: auto;
}


h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 39px;
}


h3 {
    font-style: normal;
    font-kerning: normal;
    font-weight: 500;
    letter-spacing: -0.1px;
    font-size: 16px;
    line-height: 30px;
}


h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
}


h5 { 
    font-style: normal;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.1px;
    line-height: 28px;
    color: var(--black); 
}


h6 /*--link--*/ {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;

    line-height: 20px;
    color: var(--kek);
   
}

    
/*-----SECTION 2------*/
    
    
.section2-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    padding: 0;
}

.section2-box-img {
    position: relative;
    width: 100%;
    height: 60vw;
}

 
    
.gif-background {
    display: none
}    

    


    
/*----------------- FOOTER --------------------*/

.footer {
    border-radius: 20px 20px 0 0;  
}
.footer-socialmedia {
    border-radius: 20px 20px 0 0;  
}
.behance-footer-image {
    width: 60px;
}
.instagram-footer-image {
    width: 52px;
}

    
 }   
    
/*---------- 500 PX SCREEN ----------*/


@media(max-width: 500px){    

.main-grid h6 {
    display: none;   
}

}



    
@media(max-width:1024px)   {

.main-grid {
     grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
}
    
  
    .main-box {
        margin-top: 4.5vh;
    }
/*------MAIN--------*/
        
    
    
    
.profil {
    width: 25vh;
    height: 25vh;
    }
.profil::after {
    content: '';
    position: absolute;
    border-radius: 100%;
    top: -15px; 
    left: -15px; 
    bottom: -15px; 
    right: -15px;
    border: 8px solid transparent
}
    
}

    
    
    
@media screen and (max-height:420px) and (max-width:850px) {
    

.main-grid {
     grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    max-width: 78vw
}
    
.profil {
    width: 48vh;
    height: 48vh;
    }
    
.profil::after {
    content: '';
    position: absolute;
    border-radius: 100%;
    top: -15px; 
    left: -15px; 
    bottom: -15px; 
    right: -15px;
    border: 8px solid var(--kek)
}
    
    
}

    
    
    
    
    
    
    
    
    
    
    
    

    