/* 
font-family: 'Nunito Sans', sans-serif;
font-family: 'Slabo 13px', serif; 
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif;
    color: silver;
    scroll-behavior: smooth;
}

body {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(21, auto);
    background-color: rgba(14, 12, 13, 1);
}

/**********progressBar**********/

::-webkit-scrollbar {
    background-color: rgba(14, 12, 13, 1);
    width: 0.8vw;
} 

::-webkit-scrollbar:hover {
    background-color: rgba(37, 32, 35, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(227, 227, 227, 0.15);
    border-radius: 6px; 
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(227, 227, 227, 0.5);
}

/*
#scrollPath {
    position: fixed;
    top: 0;
    right: 0;
    width: 0.2vw;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

#progressBar {
    position: fixed;
    top: 0;
    right: 0;
    width: 0.2vw;
    height: 100%;
    background: linear-gradient(to top, #008aff, #00ffe7);
} */

/**********HEADER**********/

.headerContainer{
    grid-column: 2 / 12;
    grid-row: 1 / 3;
    height: 10vh;
}

header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 5vw 7vw 2vw;
    z-index: 1000;
}

header.sticky {
    padding: 1vw 5vw;
    background-color: rgba(14, 12, 13, 0.85);
}

header img {
    position: relative;
    width: 13vw;
    transition: 0.6s;
}

/* Navbar container */
.navbar {
    overflow: hidden;
    background-color: transparent;
    font-family: 'Roboto', 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
  }
  
  /* Links inside the navbar */
  .navbar a {
    float: left;
    font-size: 1.2vw;
    text-align: center;
    padding: 0.9vw 1vw;
    text-decoration: none;
    letter-spacing: 1px;
  }
  
  /* The dropdown container */
  .dropdown {
    float: left;
    overflow: hidden;
    /* top: 0; */
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 1.2vw;
    letter-spacing: 1px;
    border: none;
    outline: none;
    padding: 0.9vw 3vw;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Add a red background color to navbar links on hover */
  .navbar a:hover, .dropdown:hover .dropbtn {
    color: #3eb8ff;
    background: rgba(14, 12, 13, 0.95);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 10px 10px 0 0;
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(14, 12, 13, 0.95);
    border-radius: 0px 10px 10px 10px;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    padding: 0.9vw 3vw;
    text-decoration: none;
    display: block;
    text-align: left;
    letter-spacing: 1px;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
    color: #3eb8ff;
    border-radius: 6px;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

header.sticky img {
    width: 10vw;
}

header.sticky .dropbtn {
    font-size: 1vw;
    transition: 0.6s;
}

header.sticky a {
    font-size: 1vw;
    transition: 0.6s;
}

header.sticky .lanContainer {
    font-size: 1vw;
    transition: 0.6s;
}

/* tooltip */
.box {
    position: relative;
}

#tooltip {
    position: fixed;
    display: block;
    opacity: 0;
    visibility: hidden;
    background: silver;
    color: black;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 3px;
    box-shadow: 4px 6px 3px 0px rgba(0, 0, 0, 0.4);
    font-family: 'Roboto', 'Open Sans', 'Helvetica Neue', sans-serif;
}

.box:hover #tooltip {
    opacity: 1;
    visibility: visible;
}

.lanContainer {
    grid-column: 2 / 12;
    grid-row: 1 / 2;
    justify-self: flex-end;
    align-self: center;
    font-size: 1.2vw;
    display: inline-flex;
    padding: 3vh 0;
    z-index: 3;
}

.lanContainer a {
    text-decoration: none;
    padding: 0;
    display: grid;
    /* padding: 1px 0 0; */
    margin: 1px 0 0;
    /* color: #fafafa; */
}

.lanContainer a:hover {
    color: #3eb8ff;
}

.lanContainer p {
    /* color: #fafafa;  */
    padding: 0 1vw;
}



/**********SECTION1**********/
.s1Container {
    height: 50vh;
}

.s1imgContainer {
    grid-column: 2 / 6;
    grid-row: 3 / 5;
    background: url(images/networkLeaf.png);
    /* justify-self: stretch;
    align-self: stretch; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; 
    min-height: 90vh;
}

/* .s1imgContainer img {
    width: 100%;
} */

.rolunkContainer {
    grid-column: 7 / 13;
    grid-row: 3 / 5;
    justify-self: start;
    align-self: center;
}

.rolunkContainer h2 {
    font-size: 1.5vw;
    position: relative;
    left: -1vw;
    font-family: 'Slabo 13px', serif;
}

.ul1, .ul2 {
    font-size: 1vw;
    list-style: none;
}

.li1 {
    font-family: 'Slabo 13px', serif; 
}

.li1::before {
    margin: 1vh 0 0 0;
    content: "\2022";  
    color: #3eb8ff; 
    font-weight: bold; 
    display: inline-block; 
    width: 1em; 
    margin-left: -1em; 
}

.li2::before {
    margin: 0 5px;
    content: "\2022";  
    color: rgba(62, 184, 255, 0.7); 
    /* font-weight: bold;  */
    display: inline-block; 
    width: 1em; 
    /* margin-left: -1em; */
} 

.downContainer1 {
    grid-column: 1 / 13;
    grid-row: 4 / 5;
    justify-self: center;
    align-self: self-end;
}

.downContainer1 a {
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.6vw;
}

.downContainer1:hover .fa-chevron-down {
    color: #3eb8ff;
}

.fa-chevron-down, .fa-chevron-up {
    font-size: 2vw;
    font-weight: 100;
}


/**********IMAGE DIV 1**********/

.imgDiv1Container {
    grid-column: 1 / 13;
    grid-row: 5 / 7;
    background: url(images/HempBud.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.sealLoca {
    grid-column: 10 / 12;
    grid-row: 5 / 6;
}

.sealLoca img {
    height: 23vh;
    margin-top: 20vh;
    margin-left: 20px;
}

.downContainer2 {
    grid-column: 1 / 13;
    grid-row: 6 / 7;
    justify-self: center;
    align-self: self-end;
}

.downContainer2 a {
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.6vw;
}

.downContainer2:hover .fa-chevron-down {
    color: #3eb8ff;
}


/**********SECTION2.1**********/

.s2imgContainer {
    grid-column: 6 / 13;
    grid-row: 7 / 9;
    background: url(images/HempFarmVektor.svg);
    /* justify-self: stretch;
    align-self: stretch; */
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.celjainkContainer {
    grid-column: 2 / 8;
    grid-row: 7 / 8;
    display: grid;
    align-items: center;
}

.celjainkContainer h2 {
    font-size: 1.5vw;
    font-family: 'Slabo 13px', serif;
    position: relative;
    left: -1vw;
    margin: 20vh 0 0;
}

.redE {
    color: red;
}

.downContainer3 {
    grid-column: 1 / 13;
    grid-row: 8 / 9;
    justify-self: center;
    align-self: self-end;
}

.downContainer3 a {
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.6vw;
}

.downContainer3:hover .fa-chevron-down {
    color: #3eb8ff;
}


/**********SECTION2.2**********/

.networkContainer {
    grid-column: 2 / 6;
    grid-row: 9 / 11;
    /* background: url(images/hempPlant.png);
    background-attachment: fixed;  
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;   */
    min-height: 100vh;
    position: relative;
    display: grid;
    /* place-items: center;   */
}

.networkContainer img {
    height: 85vh;
    position: relative;
    align-self: flex-end;
    justify-self: center;
}

.szolgaltatasainkContainer {
    grid-column: 7 / 12;
    grid-row: 9 / 10;
    display: grid;
    align-items: center;
}

.szolgaltatasainkContainer h2 {
    font-size: 1.5vw;
    font-family: 'Slabo 13px', serif;
    position: relative;
    left: -1vw;
    margin: 20vh 0 0;
}

.downContainer4 {
    grid-column: 1 / 13;
    grid-row: 10 / 11;
    justify-self: center;
    align-self: self-end;
    z-index: 100;
}

.downContainer4 a {
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.6vw;
}

.downContainer4:hover .fa-chevron-down {
    color: #3eb8ff;
}


/**********SECTION2.3**********/

.s2imgContainer2 {
    grid-column: 6 / 13;
    grid-row: 11 / 13;
    background-image: url(images/HempFarmVektor.svg);
    /* justify-self: stretch;
    align-self: stretch; */
    background-position: left;
    background-repeat: no-repeat; 
    background-size: cover;
    min-height: 100vh;  
} 

.egeszsegipariContainer {
    grid-column: 2 / 8;
    grid-row: 11 / 12;
    display: grid;
    align-items: center;
}

.egeszsegipariContainer h2 {
    font-size: 1.5vw;
    font-family: 'Slabo 13px', serif;
    position: relative;
    left: -1vw;
    margin: 20vh 0 0;
}

.downContainer5 {
    grid-column: 1 / 13;
    grid-row: 12 / 13;
    justify-self: center;
    align-self: self-end;
}

.downContainer5 a {
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.6vw;
}

.downContainer5:hover .fa-chevron-down {
    color: #3eb8ff;
}


/**********SECTION3**********/

.imgS3Container {
    grid-column: 6 / 13;
    grid-row: 13 / 15;
    background: url(images/Picturehemp.png);
    /* background-attachment: fixed;  */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.bgkendergazdaknak {
    grid-column: 1 / 7;
    grid-row: 13 / 15;
    background: url(images/bg-KIPweb2.svg);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.kendergazdaknakContainer {
    grid-column: 2 / 6;
    grid-row: 13 / 14;
    display: grid;
    align-items: center;
    z-index: 100;
    padding: 20vh 0 0;
}

.kendergazdaknakContainer h2 {
    font-size: 1.5vw;
    font-family: 'Slabo 13px', serif;
    position: relative;
    left: -1vw;
}

.downContainer6 {
    grid-column: 1 / 13;
    grid-row: 14 / 15;
    justify-self: center;
    align-self: self-end;
    z-index: 100;
}

.downContainer6 a {
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.6vw;
}

.downContainer6:hover .fa-chevron-down {
    color: #3eb8ff;
}


/**********SECTION4**********/

.s4Containter {
    grid-column: 1 / 13;
    grid-row: 15 / 18;
    background: rgba(14, 12, 13, 1);
    min-height: 100vh;
}

.penzugyiContainer {
    grid-column: 2 / 6;
    grid-row: 15 / 16;
    text-align: center;
}

.penzugyiContainer h2 {
    font-size: 1.5vw;
    font-family: 'Slabo 13px', serif;
}

.fa-chart-bar, .fa-route, .fa-stamp, .fa-microchip {
    font-size: 2.5vw;
    background-image: linear-gradient(to right bottom, #2b5877, #316787, #377697, #3d85a6, #4395b6, #3d93b6, #3691b7, #2f8fb7, #1b7aa8, #096598, #035087, #083c75);
    -webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


.fa-chart-bar, .fa-route {
    margin: 20vh 0 2vh;
}

.fa-stamp, .fa-microchip {
    margin: 5vh 0 2vh;
}

.termekkovetesContainer {
    grid-column: 8 / 12;
    grid-row: 15 / 16;
    text-align: center;
}

.termekkovetesContainer h2 {
    font-size: 1.5vw;
    font-family: 'Slabo 13px', serif;
}

.lcContainer {
    grid-column: 2 / 6;
    grid-row: 16 / 17;
    text-align: center;
}

.lcContainer  h2 {
    font-size: 1.5vw;
    font-family: 'Slabo 13px', serif;
}

.hardveresContainer {
    grid-column: 8 / 12;
    grid-row: 16 / 17;
    text-align: center;
}

.hardveresContainer h2 {
    font-size: 1.5vw;
    font-family: 'Slabo 13px', serif;
}

.downContainer7 {
    grid-column: 1 / 13;
    grid-row: 17 / 18;
    justify-self: center;
    align-self: self-end;
    z-index: 100;
}

.downContainer7 a {
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.6vw;
}

.downContainer7:hover .fa-chevron-down {
    color: #3eb8ff;
}


/**********SECTION5**********/

.contactContainer {
    grid-column: 1 / 13;
    grid-row: 18 / 21;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(images/HempStraw.png);
    background-attachment: fixed;  
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;  
}

.container {
    background-color: rgba(14, 12, 13, 0.9);
    width: 66%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    position: relative;
}

.kapcsolatContainer {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
    position: relative;
    justify-self: center;
    align-self: center;
}

.kapcsolatContainer h2 {
    width: 100%;
    color: silver;
    font-size: 2vw;
    text-align: center;
    margin: 30px 0 ;
    font-family: 'Slabo 13px', serif;
}


.f-btn-l1 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    position: relative;
    justify-self: center;
    align-self: center;
    margin: 10px 0;
    font-size: 1.2vw;
}
 
.f-btn-l2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    position: relative;
    justify-self: center;
    align-self: center;
    font-size: 1.2vw;
}

.f-btn-l3 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    position: relative;
    justify-self: center;
    align-self: center;
    font-size: 1.2vw;
}

.f-btn-l{
    line-height: 3.5vw;
    font-size: 1.1vw;
    position: relative;
    justify-self: center;
    align-self: center;
    text-align: center;
  /* font-family: 'Nunito Sans', sans-serif; */
}
  
.icon-btn {
    color: rgba(0, 57, 86, 1);
    /* display: flex; */
    text-decoration: none;
    padding-right: 10px;
    font-size: 1.3vw;
    text-align: center;
}


.fa-compass:hover, .fa-phone:hover, .fa-envelope:hover {
    color: #3eb8ff;
}  
  

.container .row100 {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
}

.container .row100 .col {
    position: relative;
    width: 100%;
    padding: 0 10px;
    margin: 30px 0 10px;
    transition: 0.5s;
}

.container .row100 .inputBox {
    position: relative;
    width: 100%;
    height: 40px;
    color: #3eb8ff;
}

.container .row100 .inputBox input,
.container .row100 .inputBox.textarea textarea {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 0 10px;
    z-index: 1;
    color: #000;
}

.container .row100 .inputBox .text {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 40px;
    font-size: 18px;
    padding: 0 10px;
    display: block;
    transition: 0.5s;
    pointer-events: none;
}

.container .row100 .inputBox input:focus + .text,
.container .row100 .inputBox input:valid + .text {
    top: -35px;
    left: -10px;
}

.container .row100 .inputBox .line {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(62, 184, 255, 0.5) /*rgba(109, 147, 59, 1)*/;
    transition: 0.5s;
    border-radius: 2px;
    pointer-events: none;
}

.container .row100 .inputBox input:focus ~ .line,
.container .row100 .inputBox input:valid ~ .line {
    height: 100%;
}

.container .row100 .inputBox.textarea {
    position: relative;
    width: 100%;
    height: 100px;
    padding: 10px 0;
}

.container .row100 .inputBox.textarea textarea {
    height: 100%;
    resize: none;
}

.container .row100 .inputBox textarea:focus + .text,
.container .row100 .inputBox textarea:valid + .text {
    top: -35px;
    left: -10px;
}

.container .row100 .inputBox textarea:focus ~ .line,
.container .row100 .inputBox textarea:valid ~ .line {
    height: 100%;
}

input[type="submit"] {
    border:  1px solid rgba(62, 184, 255, 0.5);
    padding: 7px 35px;
    cursor: pointer;
    outline: none;
    background: transparent;
    color: silver;
    font-size: 18px;
    border-radius: 2px;
}

input:hover {
background: rgba(62, 184, 255, 0.5);
}

.downContainer8 {
    grid-column: 1 / 13;
    grid-row: 19 / 20;
    justify-self: center;
    align-self: self-end;
    z-index: 100;
}

.downContainer8 a {
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.6vw;
}

.downContainer8:hover .fa-chevron-up {
    color: #3eb8ff;
}


/*****FOOTER*****/

.containerFooter {
    grid-column: 1 / 13;
    grid-row: 20 / 21;
    justify-self: center;
    align-self: center;
    font-size: 1vw;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 200;
    padding: 3px 0px;
    text-align: center;
}

.containerFooter p {
    color: #fafafa;
}

.mysign {
    font-size: 0.6vw;
    color: /*#041F3E*/ #fafafa;
    font-family: 'Nunito Sans', sans-serif;
}


