
/*
Theme Name: Talkbird-Custom-Dev-2024
Theme URI: https://talkbird-webdesign.com/
Author: Kissné Rácz Viktória
Author URI: https://weboldalcime.hu/
Description: Custom Dev Theme by Kissné Rácz Viktória
Tags: one-column, custom-colors, custom-menu
Version: 1.1
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tk-dev-2024
*/


/*MENÜ*/
.logo {
    padding: 0;
    float: left;
    width: 160px;
    margin: 2.4rem 0 0 1.5rem;
    position: absolute;
    z-index: 1;
}
.logo a svg path{
    fill: var(--text);
}
.logo a svg rect{
    fill: var(--text);
}
.gift-icon svg path {
    fill: var(--text);
} 
*,
        *:before,
        *:after {
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }
        #main-menu {
            color: var(--text);
            padding: 2rem 0.3rem;
            max-width: 1400px
        }

        #main-menu ul {
            display: flex;
            justify-content: right;
            margin: 0;
            padding: 0;
        }

        #main-menu ul li {
            display: inline-block;
            position: relative;
            margin: 0;
            padding: 0.3em;
        }
    
        #main-menu ul li a {
            color: inherit;
            line-height: 2.2rem;
            margin: 0 0.8vw;
            display: inline-block;
            text-transform: uppercase;
            position: relative;
            text-decoration: none;
            font-weight: 500;
        }

        #main-menu ul li ul li a {
            text-transform: none;
            font-weight: normal;
            font-size:smaller;
            text-transform: uppercase;
        }

        #main-menu ul li a:hover {
            color: var(--grey) !important;
        }
        

        #main-menu ul li ul li a {
            white-space: nowrap;
        }

        .opener {
            position: absolute;
            width: 10px;
            height: 10px;
            border-left: 2px solid var(--base40) !important;
            border-bottom: 2px solid var(--base40) !important;
            top: 0.9em;
            right: 0.4em;
            transform: rotate(-45deg);
            cursor: pointer;
            z-index: 2;
            transition: .4s ease;
          }

        .open.opener {
            -webkit-transform: rotate(135deg);
            -moz-transform: rotate(135deg);
            -o-transform: rotate(135deg);
            transform: rotate(135deg);
        }


        @media only screen and (min-width: 1001px) {
            #main-menu ul li ul {
                z-index: 10;
                display: block;
                overflow: hidden;
                position: absolute;
                left: -0.5vw;
                background: var(--base);
                top: 1.8em;
                padding: 0.5vw 0.5vw;
                opacity: 0;
                visibility: hidden;
                box-shadow: 0 1px 10px var(--primary);
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

            #main-menu ul li ul.open { /*opener icon kattintásra lenyíló*/
                opacity: 1;
                visibility: visible;
                display: block;
                top: 3.5rem;
            }

            .menu-item-has-children a.open { /*opener icon kattintásra lenyíló*/
                opacity: 1;
                visibility: visible;
                display: block;
                top: 2.2rem;
            }

            #main-menu div>ul>li>a:before {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                background: var(--base);
                display: block;
                bottom: 0;
                left: 0;
                -webkit-transition: all 0.2s ease-in-out;
                -moz-transition: all 0.2s ease-in-out;
                -o-transition: all 0.2s ease-in-out;
                transition: all 0.2s ease-in-out;
            }

            #main-menu ul li ul li {
                width: 100%;
            }
            
            
        }     

        @media only screen and (max-width: 1000px) {
            .navigation {
               margin-top: 1rem;
            }
            .gift-icon {
                margin-left: 0.3rem !important;
                margin-top: -1.2rem !important;
            }
            #top-head {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            #main-menu {
                padding: 2rem 2rem 2rem 2rem;
            }
            .logo {
                padding: 0;
                float: left;
                margin: 0;
                padding: 0 -1.5rem;
                margin: 0.7rem 0 0 1.5rem;
            }

            #hamburger {
                height: 2.4rem;
                width: 2.7rem;
                padding: 0.5rem;
                border-radius: 50%;
                display: flex;
                flex-flow: column;
                justify-content: space-between;
                margin: 0.7rem 1rem 0 0;
                cursor: pointer;
                position: relative;
                float: right;
                z-index: 1;
            }

            #hamburger span {
                position: relative;
                display: block;
                height: 2px;
                background: var(--text);
                opacity: 1;
                border-radius: 3px;
                -webkit-transition: .3s ease-in-out;
                -moz-transition: .3s ease-in-out;
                -o-transition: .3s ease-in-out;
                transition: .3s ease-in-out;
            }

            #hamburger span:nth-child(1) {
                top: 0;
            }

            #hamburger span:nth-child(3) {
                bottom: 0;
            }

            #hamburger.open span:nth-child(1) {
                top: 50%;
                margin-top: -1px;
                -webkit-transform: rotate(135deg);
                -moz-transform: rotate(135deg);
                -o-transform: rotate(135deg);
                transform: rotate(135deg);
            }

            #hamburger.open span:nth-child(3) {
                bottom: 50%;
                margin-bottom: -1px;
                -webkit-transform: rotate(-135deg);
                -moz-transform: rotate(-135deg);
                -o-transform: rotate(-135deg);
                transform: rotate(-135deg);
            }

            #hamburger.open span:nth-child(2) {
                opacity: 0;
            }

            #main-menu ul {
                overflow: hidden;
                display: block;
                -webkit-transition: all .8s ease-in-out;
                -moz-transition: all .8s ease-in-out;
                -o-transition: all .8s ease-in-out;
                transition: all .8s ease-in-out;
            }

            #main-menu ul.open,
            #main-menu ul.sub-menu.open {
                opacity: 1;
                max-height: 1000px;
                width: 100%;
            }

            #main-menu ul.sub-menu,
            #main-menu ul {
                max-height: 0;
                opacity: 0;
                width: 100%;
            }

            #main-menu ul li {
                text-align: left;
                display: block;
            }

            #main-menu ul li:first-of-type {
            margin-top: 3rem;
          }
        #main-menu ul li ul li:first-of-type {
            margin-top: 0.2rem;
          }

            #main-menu ul li a {
                margin: 0;
                display: block;
                border: 1px solid var(--base40);
        border-radius: 2rem;
        padding: 0.5rem 0.5rem 0.5rem 1.5rem
            }

            #main-menu ul li ul li a {
                padding: 0 15px;
                border: none;
            }

            .opener {
                position: absolute;
                width: 10px;
                height: 10px;
                border-left: 2px solid var(--text);
                border-bottom: 2px solid var(--text);
                top: .75em;
                right: .5em;
                transform: rotate(-45deg);
                cursor: pointer;
                z-index: 20;
                transition: .4s ease;
              }

            .open.opener {
                -webkit-transform: rotate(135deg);
                -moz-transform: rotate(135deg);
                -o-transform: rotate(135deg);
                transform: rotate(135deg);
            }
            /*Bejegyzés oldal 960px alatti igazítása*/
.row {
    flex-wrap: wrap;
}
.col-1-4 {
    min-width: 100%;
 }    
        }




        /*FOOTER*/
        footer {
            height: auto;
        }
        .foot-container {
            padding: 2rem 2rem;
            text-align: center;
        }
        .logo-ft{
            padding: 0;
            width: 160px;
            margin: 0.7rem auto;
        }
        .foot-container a{
            color: var(--white);
        }
        .ft-insta svg, .ft-behance svg, .ft-pinterest svg{
            height: 2rem;
            width: auto;
        }
        .socialicon-colors path{
            fill: var(--text);
        }
        .socialicon-colors path:hover {
            fill: var(--primary);
        }
        .social-icons {
            display: inline-flex;
        }
        .social-icons div {
            margin-right: 0.4rem;
        }
        .social-icons div:last-of-type {
            margin-right: 0;
        }

        @media only screen and (max-width: 960px) {
        
              .social-icons {
                justify-content: center;
            }
            .social-icons div {
                margin: 0.4rem;
            }
        }

        /*Copyright*/
        .copy-right {
            background: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
    background-repeat: repeat;
            color: var(--whitetext);
            text-align: center;
            padding: 1em 0;
            font-size: 1rem;
            padding: 1rem;
        }
        
        /*Recaptcha*/
        .grecaptcha-badge {
            z-index: 999;
        }

        @media only screen and (max-width: 1000px) {
            .column-3-footer {
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                text-align: center;
              }
              .switch-container {
                margin-top: -1.1rem!important;
                margin-right: 0.5rem;
              }
              .center-box {
                width: 99vw !important;
            }
        }
        @media only screen and (max-width:360px) { /*Mobil*/
            .logo {
                padding: 0;
                float: left;
                width: 150px;
                margin-top: 0.8rem;
            }
            
              }
/*MENÜ VÉGE*/

/*Ajándék menüpont*/
.gift-icon {
    width: 40px;
    height: 40px;
    margin-right: 0.4rem;
    float: inline-end;
    margin-top: 0.2rem;
    margin-left: 1rem;
}



/*ELLENŐRIZVE inentől*/

/*GLOBÁLIS BEÁLLÍTÁSOK*/
body {
    box-sizing: border-box;
    margin: 0;
    font-size: 18px;
    font-family: "Nunito", sans-serif;
    background-color: var(--background);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.25" /></svg>');
    background-repeat: repeat;
    color: var(--text);
    font-weight: 400;
    letter-spacing: .05rem;
    line-height: 1.5;
}

.center-box {  
	width: 96vw;
    margin: 0 auto;
 	max-width: 1200px;
    color: var(--text);
}

body { 
    /*alap háttér*/
    --background: #FFFBF4;
    /*linkek*/
    --primary: #B95221;
    /*betűtípusok*/
    --text: #232323;
    --whitetext: #fff;
    --decorfontdark: #1b180fa6;
    --decorfontlight: #c4c4c4af;
    /*sekciók*/
    --darksection: #232323;
    /*form beállításai*/
    --forminputfocus: #FFFBF4;
    --inputbackground: #FFFBF4;
    --inputtext: #504f4f;
    /*box árnyékok*/
    --boxshadow: #dfd3bf;


/*ELLENŐRIZVE eddig*/

    
    --boxcolor: #31302F;
    --whitebox: #fff;
    --whitebox-border: #1b180f38;
}







/*light theme base és neutral csere*/

a {
	text-decoration: none;
    color: var(--primary);
}

h1 {
	font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 3.1rem;
    margin: 0;
}

h2 {
	font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin: 0 0 4rem 0;
}

h3 { /*kapcsolódó blogcikk*/
    font-family: "Roboto", sans-serif;
    font-weight: 500;
	font-size: 1.5rem;
    line-height: 2rem;
}

.decorfont {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    color: var(--decorfontdark);
}
.decorfont-light {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    color: var(--decorfontlight);
}

/*bejegyzések címsorainak formázása*/
h2.wp-block-heading {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 1.9rem;
    margin: 3rem 0 2rem 0;
}
h3.wp-block-heading {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin: 3rem 0 1rem 0;
}




.buttons {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border: none;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    width: max-content;
    border-radius: 5rem;
    font-family: "Nunito", sans-serif;
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Animáció */
}

 .buttons:hover {
    background: var(--background);
    border: 1px solid var(--text);
    color: var(--text);
  transition: 0.5s ease;
    transform: scale(1.01);
 }



 .buttons-two {
    padding: 0.8rem 2.5em;
    font-size: 1rem;
    border: none;
    color: var(--text);
    border: 1.8px solid var(--text);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    width: max-content;
    border-radius: 5rem;
    margin: 2em auto;
    display: block;
    font-family: "Nunito", sans-serif;
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Animáció */
 }

 .buttons-two:hover {
    background: transparent;
    color: var(--primary);
    border: 1.8px solid var(--primary);
  transition: 0.5s ease;
  transform: scale(1.01);
 }
/*GLOBÁLIS VÉGE*/




















 div.grecaptcha-badge {
    z-index: -999;
    opacity: 0;
 }

/*Landing oldal formázása*/
.simple-page {
    padding: 8em 0 0 2em;
}








/*FŐOLDAL*/


/*HERO SZEKCIÓ*/
#hero {    /* ELLENŐRIZVE*/
    margin: 5rem 0; 
}

 .hero-container {
    margin: 0.5rem auto;
    text-align: center;
    padding: 0 1rem;
 }

 .hero-text {  /* ELLENŐRIZVE*/
    color: var(--text);
 }

 .hero-text a {
    display: block;
    margin: 2rem auto;
 }

 .hero-img {
    max-width: 100%;
    display: block;  
 }

.hero-munkak-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    }
    .hero-munkak-container div {
        margin: 0.3rem;
        border-radius: 1.1rem;
        overflow: hidden;
    }
    .hero-munkak-container div:first-of-type {
        border-radius: 3rem 1.1rem 1.1rem 1.1rem;
        overflow: hidden;
    }
    .hero-munkak-container div:last-of-type {
        border-radius: 1.1rem 1.1rem 3rem 1.1rem;
        overflow: hidden;
    }
      
    /**/


/*FŐOLDAL - Segítek szekció */
 .segitek-box {
border-radius: 1rem;
text-align: center;
margin: 0 auto;
padding: 0.5rem;
background-color: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
        background-repeat: repeat;
color: #fff;
 }
 .segitek-box p {
    padding: 0 1rem;
     }
 .segitek-box-padding {
padding: 1rem;
 }
 #segitek {
padding: 4rem 0;

 }

/*FŐOLDAL - SZOLGÁLTATÁSAIM SZEKCIÓ*/
#services-section {
    margin-bottom: 3em;
    text-align: center;
}
#segitek {
    padding: 6rem 0;
}
.services-container-section {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;  
}
.services-container-section div {
    margin: 0 auto 2rem auto;
    border-radius: 1.1rem;
    max-width: 380px;
    background: var(--whitebox);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Tartalom a tetején, gomb az alján */
    box-shadow: var(--boxshadow) 0px 7px 29px 0px !important;
}
.services-container-section div:first-of-type {
    box-shadow: none;
}
.services-container-section svg path{
fill: var(--text);
}
.services-container-section svg{
    min-width: 60px;
    margin: 1rem auto 2rem auto;
    }
.services-container-section h3 {
margin: 0;
}
.services-container-section p, .services-container-section h3 {
    text-align: left;

    }
.services-container-section .decorfont {
    margin: 0 0 0.2rem 0;
}
    

.landing-service {
    padding: 2em 2em 1em 2em;
    border-radius: 1em;
    color: var(--text);
    display: grid;
    grid-template-columns: 1fr;
    transition: transform 0.5s ease 0s;    
}

.services-container-section .icon-fill {
    width: 6em;
    margin: 0 auto;
}
/*FŐOLDAL - HÍRLEVÉL*/
#newsletter {
    padding: 0 1rem;
}
.newsletter {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 1.5rem;
    background-color: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
        background-repeat: repeat;
}
.newsletter h2 {
    margin: 0.5rem auto 1rem auto;
    color: var(--whitetext);
}
.newsletter .decorfont{
    margin: 0 auto;
    color: var(--decorfontlight);
}
.newsletter p {
    color: var(--whitetext);
}
.newsletter-container {
    max-width: 900px;
    margin: 0 auto;
}



/*FŐOLDAL - REFERENCIÁIM*/
#references-section {
    border-radius: 5rem 0 5rem 0;
       width: 100%;
       background: var(--darksection);
       background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
       background-repeat: repeat;
       padding: 6rem 0 2rem 0
   }
  
   
   #references-section h2 {
    text-align: center;
    color: var(--whitetext);
   }
   #references-section .decorfont {
       text-align: center;
       color: var(--decorfontlight);
   }

   #references-section .button {
    display: block;
    margin: 1rem auto;
}
.references-section {
    padding: 0 1rem;;
}




.portfolio-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--whitetext);
    padding: 0 1rem;
}

.portfolio-container div{
    border-radius: 1rem;
    overflow: hidden;
}
.portfolio-container div img{
    width: 100%;
    min-height: fit-content;
    display: block;
}



/* Négyzet alakú kép (1) */
.portfolio-img1 {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
}

/* Első sor képei (2, 3) */
.portfolio-img2, .portfolio-img3 {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    justify-content: center;
    aspect-ratio: 16/9;
}

/* Második sor képek (4, 5) */
.portfolio-img4 {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    justify-content: center;
    aspect-ratio: 16/9;
}

.portfolio-img5 {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    justify-content: center;
    aspect-ratio: 16/9;
}













#references-page {
    text-align: center;
    background: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
    background-repeat: repeat;
    width: 100%;
    border-radius: 5rem 0 5rem 0;
    padding: 7rem 1rem;
}
.reference-1 {
    max-width: 1200px;
}

#references-page h2 {
color: var(--whitetext);
margin: 0;
padding: 0 1rem;
}
#references-page p {
    color: var(--decorfontlight);
}


/*FŐOLDAL - BLOG*/
#blog-section {
 border-radius: 5rem 0 5rem 0;
    width: 100%;
    background: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
    background-repeat: repeat;
    padding: 6rem 0 2rem 0
}


#blog-section h2 {
 text-align: center;
 color: var(--whitetext);
}
#blog-section .decorfont {
    text-align: center;
    color: var(--decorfontlight);
}

#blog-section .buttons{
    margin: 0 auto;
    display: block;
}

/*FŐOLDAL - LETÖLTHETŐ*/
.letoltheto-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 1000px;
    margin: 0 auto;
}
.letoltheto-img {
    margin: 0 auto;
}
.letoltheto-text {
    align-content: center;
    padding: 1rem;
}
.letoltheto-text h2, .adesignered-text h2 {
    margin: 0 0 1.5rem 0 !important;
}
.letoltheto-ajanlo{
    margin-bottom: 2rem;
}


/*FŐOLDAL - A DESIGNERED*/
.adesignered-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}
.adesignered-text {
    align-content: flex-start;
    margin: 0 auto;
    padding: 1rem;
}
.adesignered-img {
    padding: 1rem;
}


.adesignered-img img{
    max-width: 100%;
    display: block;
    border-radius: 1.1rem;
    align-content: space-around;
    margin: 0 auto;
    object-fit: cover;
    height: 100%;
}
#adesignered .buttons-two {
    display: inline-block;
    margin-left: 1rem;
}

#references-section .buttons {
    display: block;
    margin: 3rem auto 7rem auto;
}
#blog-section .buttons {
    display: block;
    margin: 0 auto 6rem auto;
}

/*FŐOLDAL SZEKCIÓK FORMÁZÁSA ideiglenesen kivéve: section#references-section */
section#services-section, section#blog-section,
section#letoltheto, section#adesignered {
    margin: 6rem 0;
}


/*RÓLAM OLDAL*/

#rolam-oldal-fejlec {
    border-radius: 5rem 0 5rem 0;
    width: 100%;
    color: var(--whitetext);
    background: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
    background-repeat: repeat;
    padding: 7rem 0;
 }

#rolam-oldal-fejlec h1 {
    font-size: 2.2rem;
    color: var(--whitetext);
    text-align: center;
}

#rolam-oldal-fejlec p:first-of-type {
    text-align: center;
    color: var(--decorfontlight);
}
#rolam-oldal {
    height: 50vh;
}

#rolam-oldal p {
    text-align: center;
    padding: 2rem;
}

 /**/
  /*RÓLAM PHP VÉGE*/



/*szolgáltatásaim oldal*/
#szolgaltatasaim-oldal-fejlec {
    border-radius: 5rem 0 5rem 0;
    width: 100%;
    color: var(--whitetext);
    background: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
    background-repeat: repeat;
    padding: 6rem 1rem;
 }

#szolgaltatasaim-oldal-fejlec h1 {
    font-size: 2.2rem;
    color: var(--whitetext);
    text-align: center;
}

#szolgaltatasaim-oldal-fejlec p:first-of-type {
    text-align: center;
    color: var(--decorfontlight);
}

#szolgaltatasaim-oldal p {
    text-align: center;
    padding: 2rem;
}

/*szolgáltatásaim oldal vége*/
 







/* ////////////////////////////////////////////////////////////////////// */
/*REFERENCIÁIM OLDAL*/



/*REFERENCIÁIM OLDAL VÉGE*/


 /*Blog  oldal formázása*/

 #blog {
    border-radius: 5rem 0 5rem 0;
    width: 100%;
    color: var(--whitetext);
    background: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
    background-repeat: repeat;
    padding: 7rem 0;
 }

#blog h1 {
    font-size: 2.2rem;
    color: var(--whitetext);
    text-align: center;
}

#blog p:first-of-type {
    text-align: center;
    color: var(--decorfontlight);
}

 .column-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem 0.1rem;
    margin: 0 auto;
}

 .cikkek {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
  margin-bottom: 2rem;
 }

 .cikkek div img{
    max-width: 100%;
    height: 300px;/**/
    object-fit: cover;
    border-radius: 1.1rem;
 }

.post-tags-blog {
    margin: 3rem auto;
    text-align: center;
    padding: 1rem;
}
 .post-tags-blog a { /*új osztállyal újra*/
    padding: 0.6rem 1rem;
    border: 1px solid var(--whitetext);
    border-radius: 3rem;
    color: var(--whitetext);
    margin: 0.5rem;
    display: inline-block;
 }

 
 .cikk-bg {
    box-shadow: var(--grey) 0px 7px 29px 0px;
    margin: 1rem;
    transition: transform 0.5s ease 0s; /*property, duration, timing-function, delay*/
 }

 .cikk-bg:hover {
    /*transform: translateY(-10px);*/
    transform:scale(1.02);
 }

 .blog-content h3 {
    text-align: left;
    color: var(--textwhite);
    font-family: "Roboto", sans-serif;
    font-weight: 500;
	font-size: 1.5rem;
    line-height: 2rem;
    margin: 0.5rem 0;
    color: var(--background);
}

.blog-content a {
    color: var(--decorfontlight);
}
#kapcs-blog-section h2, #kapcs-blog-section .decorfont{
    text-align: center;
}
#kapcs-blog-section {
    margin-top: 4rem;
}

 /*Blog  tags*/

 .archive_description {
    text-align: center;
 }

 /*Blog oldal Pagination*/
.pagination {
text-align: center;
 }
 .navigation.pagination {
text-align: center;
padding: 0.5rem 1rem;
margin: 3rem auto
 }
 .page-numbers.current, .page-numbers {
    color: var(--textwhite);
    padding: 0.7rem 1rem;
    border-radius: 100%;
border: 1px solid var(--background);
 }
 .page-numbers.current:hover, .page-numbers:hover {
background-color: var(--decorfontlight);
 }
 .page-numbers.current {
    background-color: var(--background);
 }
 a.page-numbers, span.page-numbers {
    color: var(--whitetext);
    margin: 0 0.4rem;
 }

 
 


 /*Blog bejegyzés oldalak formázása*/
 .blog-bejegyzes-oldal {
    max-width: 1000px;
    padding: 0 1rem;
    display: flex;
    margin: 0 auto;
 }
 
 .post-header {
    background-color: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
        background-repeat: repeat;
        position: absolute;
  /*top: 0;*/
  left: -1;
  width: 100%;
  height: 70vh;
  z-index: -1;
  border-radius: 5rem 0 5rem 0;
     }

.blog-bejegyzes-oldal .post-tags-blog {
    margin: 0 auto 5rem auto;
    text-align: center;
    padding: 0rem;
}

 #post-page h1{
    font-size: 2.2rem;
    color: var(--whitetext);
    text-align: center;
    margin: 7rem 0 1.5rem 0;
 }



 .row {
    display: flex;
 }
 .col-1-4 {
    max-width: 360px;
    padding: 0 1rem 0 1rem;
 }
 .col-3-4 {
    padding: 0 1rem 0 1rem;
 }

 .post-meta {
    display: flex;
 }

 .post-meta li { /*bejegyzés címkék*/
    margin-right: 0.5rem;
    list-style: none;
    color: var(--decorfontlight);
    border-radius: 3rem;
 }
.blog-bejegyzes-oldal ul.post-meta { /*bejegyzés címkék*/
    justify-content: center;
 }


 ul {
    list-style-type: none; /* Alapértelmezett listaelemek eltávolítása */
    padding: 0;
}

.post-content-style ul li {
    position: relative;
    padding-left: 2.5em; /* Hagyj helyet a pötty mellett */
    display: flex; /* Segíti a függőleges igazítást */
    align-items: flex-start; /* A szöveg tetejéhez igazítja a pöttyöt */
}

.post-content-style ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25em; /* Finom igazítás a szöveg első sorához */
    width: 0.8rem; /* A pötty mérete */
    height: 0.8rem; /* A pötty mérete */
    background-color: var(--text); /* A pötty színe */
    border-radius: 50%; /* Kör alakú pötty */
    margin-top: 0.3rem;
}
.post-content-style ul li {
    padding-bottom: 1.5rem;
    padding-top: 0;
    line-height: 2rem;
    padding-left: 2rem;
 }

 .post-content-style ol li {
    padding-bottom: 1.5rem;
    padding-top: 0;
    line-height: 2rem;
 }
 .post-content-style img {
    border-radius: 2rem;
    margin: 1rem 0;
 }
 ol {
    list-style-type: none; /* Alapértelmezett számok eltávolítása */
    counter-reset: list-counter; /* Számláló alaphelyzetbe állítása */
    padding-left: 0;
}

ol li {
    counter-increment: list-counter; /* Számláló növelése minden listaelementnél */
    position: relative;
    padding-left: 3rem; /* Térköz a karikázott szám és a szöveg között */
}

ol li::before {
    content: counter(list-counter); /* Számláló megjelenítése */
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    line-height: 2rem; /* Középre igazítja a szöveget a karikában */
    text-align: center;
    border-radius: 50%; /* Karika alak */
    background-color: var(--text); /* Háttérszín */
    color: var(--whitetext); /* Szöveg színe */
}

 .post-tags a:hover {
    color: #777776;
 }

 .post-tags h4 {
    font-size: 0.5rem;
 }

 .avatar {
    border-radius: 1.1rem;
 }

 #author .avatar {
    margin-top: 2.2rem;
    height: auto;
 }
 #author {
    padding: 0.4rem;
    
 }

 #author h3{
    margin: 0;
 }

 #kapcs-blog-section {
    background-color: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
        background-repeat: repeat;
        border-radius: 5rem 0 5rem 0;
        padding: 4rem 0;
 }

 #kapcs-blog-section h2{
    color: var(--whitetext);
 }
 #kapcs-blog-section p {
    color: var(--decorfontlight);
 }
 .kpcs-cikkek-h3 {
    font-size: 1.6rem;
 }


 .szerzo {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.5rem 0 0.5rem 0.8rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--black);
    margin: 0.5rem 0;
 }

 #author p{
    margin: 0 0 1rem 0;

 }
 #author a{
    color: var(--black);
 }

 /*Letölthető anyagok*/
 .letoltheto-anyagok-img{
    max-width: 100%;
margin: 0.5rem 0;
 }


 .kapcscikkek div{
    color: var(--black);
    background: var(--white);
    display: flex;
 }

 .kapcs-content {
    padding: 1rem;
 }

 .kapcs-content .post-tags a{
color: var(--black);
 }

 .kpcs-cikk-cikk {
    transition: transform 0.5s ease 0s;
    margin: 2rem 0;
 }
 .kpcs-cikk-cikk:hover{
    transform:scale(1.02);
    }



 .kapcscikkek div img{
    width: 100%;
    height: auto;
 }

 .kapcscikkek div a { /*új osztállya újra*/
    padding: 0;
 }

 .kapcscikkek div .post-tags { /*új osztállya újra*/
    margin: 0;
 }

 /*Portfólió oldal formázása*/
 #references-page h1 {
        font-weight: 700;
        font-size: 2.2rem;
        color: var(--whitetext);
 }

 .portfolio-content h2 {
    font-size: 2rem;
    margin: 3rem 0 0.5rem 0;
 }

 .ref-cimkek div {
    margin: 0.5rem;
    display: flex;
 }

 .ref-cimkek div:first-of-type {
    margin-left: 0;
 }
 .ref-cimkek {
display: inline-flex;
margin-bottom: 3rem;
 }
 .ref-cimkek p{
    margin: 0;
    color: var(--decorfontdark);
     }

 .portfolio-page-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    margin: 0 auto;
    color: var(--whitetext);
    padding: 0;
}
.portfolio-page-container div{
    border-radius: 1rem;
    overflow: hidden;
}
.portfolio-page-container div img{
    width: 100%;
    height: fit-content;
    display: block;
}
/* Négyzet alakú kép (1) */
.portfolio-page-text {
    grid-column: span 1;
    grid-row: span 3;
    color: var(--text);
}

.portfolio-page-text h3 {
    margin-top: 0;
}

.portfolio-page-text a p {
    display: inline-flex;
    font-weight: 700;
}
.portfolio-page-text svg path {
    fill: var(--primary);
}

/* Első sor képei (2, 3) */
.portfolio-page-img2, .portfolio-page-img3 {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    justify-content: center;
    aspect-ratio: 16/12;
}

/* Második sor képek (4, 5) */
.portfolio-page-img4 {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    justify-content: center;
    aspect-ratio: 16/10;
}

#reference-1, #reference-2 {
    padding: 1rem 1rem 9rem 1rem;
    border-bottom: 0.5px solid #77777636;
}
.portfolio-content {
    margin: 0 auto;
}


/*Hírlevél szekció*/

#mlb2-20674934.ml-form-embedContainer .ml-form-embedWrapper {
    background-color: transparent!important;
    
}

#mlb2-20674934.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody, #mlb2-20674934.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
    padding: 0 !important;
}

html body #mlb2-20674934.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
    background-color: #B95221 !important;
    margin: 0 !important;
    border: 1px solid var(--primary) !important;
    border-radius: 5rem !important;
    color: #ffffff !important;
    padding: 0.8rem 2rem !important;
    width: max-content !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: .05rem !important;
    transition: box-shadow 0.3s ease, transform 0.3s ease !important; /* Animáció */
}
html body #mlb2-20674934.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {
    background: transparent !important;
    border: 1px solid var(--whitetext) !important;
  transition: 0.5s ease !important;
    transform: scale(1.01) !important;
}
body #mlb2-20674934 .ml-mobileButton-horizontal button {
    text-transform: uppercase !important;
    letter-spacing: .05rem !important;
padding: 0.8rem 2rem !important;
font-weight: 600 !important;
}

#mlb2-20674934.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
padding: 0.8rem 2rem 0.8rem 0.5rem !important;
}


    

 /*Adatkezelési check*/
 #mlb2-20674934.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
    font-size: 16px !important;
    line-height: 1.5 !important;
    letter-spacing: .05rem !important;
 }
 /*check gomb*/
 #mlb2-20674934.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type="checkbox"] {
    min-height: 28px !important;
    background-color: transparent !important;
    border: 1px solid white !important;

}
 .newsletter-container svg {
    margin-right: .5rem;
 }
.newsletter p {
    margin: 0;
}
.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
}

 /*Hírlevél szekció vége*/




/*KAPCSOLAT HTML*/ /*ellenőrizve*/
#form {
    border-radius: 5rem 0 5rem 0;
    width: 100%;
    color: var(--whitetext);
    text-align: center;
    background: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
    background-repeat: repeat;
    padding: 7rem auto;
}

.kapcsolat-content {
    padding: 7rem 1rem;
}
#form h1 {
    font-weight: 700;
    font-size: 2.2rem;
    margin: 0 0 2rem 0;
}
.kapcsolat-text {
    max-width: 650px;
    margin: 0 auto 2rem auto;
}
.form {/*ellenőrizve*/
    text-align: left;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    padding: 1rem;
}

  /*inputok beállítása*/ /*ellenőrizve*/
  input[type="text"], input[type="email"], input[type="url"], input[type="date"], select, textarea {
    background-color: var(--inputbackground);
    border: 1px solid var(--background);
    color: var(--inputtext);
    border-radius: 0.5rem;
    padding: 0.7rem;
    width: 100%;
    color: var(--text);
    box-sizing: border-box;
    margin: 0.2rem 0 0.5rem 0;
  }
  select { /*ellenőrizve*/
    -webkit-appearance: none; /* Webkit alapú böngészők (Chrome, Safari) */
    -moz-appearance: none; /* Firefox */
    appearance: none; /* Alapértelmezett */
}



  /*kijelölt*/
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="date"]:focus, select:focus, textarea:focus {
    background-color: var(--forminputfocus);
  }
  .select-selected:after { /*ellenőrizve*/
    border: 0 solid transparent;
  }



  input[type="checkbox"] { /*ellenőrizve*/
    width: 1.2rem; /* Méret */
    height: 1.2rem; /* Méret */
    border-radius: 1.1rem; /* Lekerekített sarkok */
    accent-color:var(--primary); /* Kék pipa szín */
}
  .required {
    color: red; /*ellenőrizve*/
  }





  .wpcf7-form-control.wpcf7-textarea {
    height: 8rem;
  }
  .wpcf7-list-item-label {
    padding-right: 2rem;
    font-weight: 300;
  }
  .wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em;
    padding: 0.5rem 0;
  }



/* gomb középen */
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    font-family: 'Nunito' !important;
    letter-spacing: .05rem;
}
/*Kapcsolat HTML*/


/*Letölthető anyagok oldal*/

#letoltheto-anyagok-fejlec {
    border-radius: 5rem 0 5rem 0;
    width: 100%;
    color: var(--whitetext);
    background: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
    background-repeat: repeat;
    padding: 7rem 1rem;
 }

#letoltheto-anyagok-fejlec h1 {
    font-size: 2.2rem;
    color: var(--whitetext);
    text-align: center;
}

#letoltheto-anyagok-fejlec p:first-of-type {
    text-align: center;
    color: var(--decorfontlight);
}
#letoltheto-anyagok {
    height: 50vh;
}

#letoltheto-anyagok p {
    text-align: center;
    padding: 2rem;
}









 @media only screen and (max-width:960px) { /*Laptop és kis monitor?*/
    #hero {
        height: auto;
    }
    #hero p:first-of-type {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

     .column-left h1 {
        margin-top: -1rem;
        margin-bottom: 0.5rem;
        font-size: 2.2rem;
        line-height: -1rem;
     }
    
     .column-left p {
        margin-bottom: 2rem;
        font-size: 1rem;
        line-height: 1.5rem;
     }
     .column-left {
        padding: 4rem 3rem;
     }
    
     .buttons, .services-button, .buttons-two {
        padding: 0.9rem 2.5rem;
        font-size: 0.9rem;
     }
     .hero-container {
        display: grid;
        grid-template-columns: 1fr;
        height: fit-content;
    }
   .adesignered-container {
    grid-template-columns: 1fr;
}

 .portfolio-page-container {
    display: flex;
    flex-wrap: wrap;
 }

 .portfolio-page-container-m {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    margin: 2rem auto auto auto;
    color: var(--whitetext);
    padding: 0 1rem;
}
.portfolio-page-container-m div{
    border-radius: 1rem;
    overflow: hidden;
}
.portfolio-page-container-m div img{
    width: 100%;
    min-height: fit-content;
    display: block;
}
.newsletter {
    padding: 3rem 2rem;
}
#references-section {
    padding: 5rem 0 0.5rem 0
}
#blog-section {
    padding: 5rem 0 0.5rem 0
}


     /*AJÁNLATKÉRÉS HTML*/
/*AJÁNLATKÉRÉS HTML vége*/

/*Blogoldal cikkei*/
.column-3 {
    grid-template-columns: 1fr 1fr;
}
.column-4 {
    grid-template-columns: 1fr 1fr;
}
.portfolio-img5 {
    display: none;
}


 }





/*MEDIA SCREEN -----------------------------------------------*/
 @media screen and (max-width: 768px) { /*?*/
    #hero {
        background-size: auto 100%;
        background-repeat: no-repeat;
    }
    .hero-container {
        grid-template-columns: 1fr;
        flex-wrap: wrap-reverse;
    }
    
    .column-right {
        order:2;
        padding: 1rem;
     }
     .column-right img{
        width: 100%;
     }
     .column-left {
        order:1;
        margin: 0;
        color: var(--black);
        padding: 2rem;
     }
     .column-left-other{
        font-size: 1rem;
     }
     .letoltheto-container {
        grid-template-columns: 1fr;
       }

     /*Rólam oldal*/
.rolamhtm-container h1 {
    font-size: 2.2rem;
    margin: 1rem 0 0 0;
}
.rolamhtm-container p, .accordion {
    font-size: 1rem;
}
.rolamhtm-container {
    margin-top: 0;
    grid-template-columns: 1fr;
    flex-wrap: wrap;
}
.rolamhtm-column-right {
    padding: 1rem;
 }

.rolam-img {
    box-shadow: none;
    padding: 0.5rem;
 }
 h1 {
    font-size: 2.4rem;
    line-height: 3rem;
 }

 .rolam-img {
    width: 100%;
    border-radius: 20% 5% 20% 5%;
    box-shadow: 0.5rem 0.5rem var(--red);
    padding: 0;
 }

 .rolamhtm-column-right {
margin-top: 0.5rem;
 }

 #rolamhtm .typo {
    font-size: 3rem;
 }
/*RÓLAM oldal vége*/

/*szolgáltatásaim oldal*/
#szolgaltatasaim-oldal-fejlec {
    border-radius: 5rem 0 5rem 0;
    width: 100%;
    color: var(--whitetext);
    background: var(--darksection);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23noise)" fill="white" opacity="0.15" /></svg>');
    background-repeat: repeat;
    padding: 7rem 1rem;
 }

#szolgaltatasaim-oldal-fejlec h1 {
    font-size: 2.2rem;
    color: var(--whitetext);
    text-align: center;
}

#szolgaltatasaim-oldal-fejlec p:first-of-type {
    text-align: center;
    color: var(--decorfontlight);
}
#szolgaltatasaim-oldal {
    height: 50vh;
}

#szolgaltatasaim-oldal p {
    text-align: center;
    padding: 2rem;
}

/*szolgáltatásaim oldal vége*/

/*Szolgáltatás oldal*/
.services-container-page {
    display: grid;
    grid-template-columns: 1fr;
}
/*Szolgáltatás oldal end*/

/*Blogoldal*/
#blog h1 {
    font-size: 2.4rem;
}
.column-3-footer {
    grid-template-columns: auto;
}

     /*AJÁNLATKÉRÉS HTML*/
     #form {
        width: 100%;
    }

    #form h1{
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }
    #form p {
        font-size: 1rem;
    }
    /*AJÁNLATKÉRÉS HTML vége*/

 }

 @media only screen and (max-width:530px) { /*Mobil?*/

    #adesignered .buttons-two {
        margin-left: 0 !important;
    }
    .adesignered-p {
        margin-bottom: 3rem;
    }
 .column-3 {
    grid-template-columns: 1fr;
}
.column-4 {
    grid-template-columns: 1fr;
}
.rolamtypo {
    flex-wrap: wrap;
    white-space: wrap;
}
#post-page h1 {
    font-size: 2rem;
}

.portfolio-container {
    display: grid;
    grid-template-columns: 1fr;
}
.portfolio-img4 {
    display: none;
}
.portfolio-page-container-m {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}


}
 

 @media only screen and (max-width:360px) { /*Mobil*/
   
       /*AJÁNLATKÉRÉS HTML*/
     #form {
        width: 100%;
        font-size: 1rem;   /*JÓ BETUMÉRET !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
    }

    /*AJÁNLATKÉRÉS HTML vége*/

    /*Rólam oldal*/
    .rolamhtm-container h1 {
        font-size: 1.8rem;
    }

    /*Blogoldal cikkei*/
.column-3 {
    grid-template-columns: auto;
}
.column-3-footer {
    grid-template-columns: auto;
}
.column-right { /*?*/
    padding: 0;
    margin-top: 2em;
 }
 .hero-img {/*?*/
    padding: 0;
 }
 .column-left {
    padding: 0;
 }

 .rolamtypo {
    flex-wrap: wrap;
    background-color: white !important;
    color: var(--black);
    padding: 0;
    font-weight: 700;
}
.hero-container {
    padding: 1rem;
}

 }

  


  

/*Webfontlandingpage*/
.first-section {
    height: 95vh;
    place-items: center;
}
.first-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

#webfontlanding h2 {
    text-align: left;
}

.first-section, .two-section, .third-section, .four-section, .five-section{
    padding: 2rem;
    margin: 0 auto;
}
.webfontlanding-form{
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
}
.webfontlanding-img {
    background-image: url('img/webfont-keszlet-ebook.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
/*Webfont ebookos*/
#mlb2-16486203.ml-form-embedContainer .ml-form-align-center {
    text-align: left!important;
}
/*Webfont ebookos*/
#mlb2-16486203.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody, #mlb2-16486203.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
    padding: 0!important;
}


.landing-logo {
text-align: center;
margin: 0 auto;
max-width: 10rem;
fill: var(--red);
padding-top: 3rem;
}
.webfontlanding-form p {
    text-align: left;
}



/*CTA Ötlettár ebook*/
#ctalanding h2 {
    text-align: left;
}
.ctalanding-form{
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
}

/*CTA ebookos*/
#mlb2-17007646.ml-form-embedContainer .ml-form-align-center {
    text-align: left!important;
}
/*CTA ebookos*/
#mlb2-17007646.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody, #mlb2-17007646.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
    padding: 0!important;
}
.ctalanding-form p {
    text-align: left;
}
.first-section {
    height: 95vh;
    place-items: center;
}
.first-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.ctalanding-img {
    display: block;
}

.footersection {
    background-color: var(--red);

}
.webfont-ebook-img {
    max-width: 100%;
}



/*landing Copyright*/
.landing-copy-right {
    background: var(--red);
    color: var(--grey);
    text-align: center;
    padding: 1em 0;
    border-top: 1px solid var(--grey);
    font-size: .8em;

}

@media only screen and (max-width:1100px) { 
    .first-section {
        display: grid;
        grid-template-columns: 1fr;
    }
    .cta-first-section {
        display: grid;
        grid-template-columns: 1fr;
    }
 /*Webfont ebookos*/
#mlb2-16486203.ml-form-embedContainer .ml-form-align-center {
    text-align: center!important;
}

}
@media only screen and (max-width:360px) { /*Mobil*/
  
      .landing-copy-right {
        font-size: 0.8rem;
    }
    }


  





    * {box-sizing: border-box;}
    .mySlides {display: none;}
    img {vertical-align: middle;}
    
    /* Slideshow container */
    .slideshow-container {
      max-width: 500px;
      position: relative;
      margin: auto;
    }
    .mySlides img {
        border-radius: 1.1rem;
    }
    
    /* The dots/bullets/indicators */
    .dot {
      height: 15px;
      width: 15px;
      margin: 0 2px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
      cursor: pointer;
    }
    
    .active {
      background-color: #717171;
    }
    
    /* Fading animation */
    .fade {
      animation-name: fade;
      animation-duration: 1.5s;
    }
    
    @keyframes fade {
      from {opacity: .4} 
      to {opacity: 1}
    }
    





