/* css */

/* css list
#import
#html
#body
#content blocks
#media
#typo
#links
#buttons
*/

/* color */
:root {
  --main-bcg:  white; /* #262626; */
  --alt-bcg:  #262626;  /* white; */
  --main-clr:  #262626;  /* white; */
  --alt-clr:  white;  /* #262626; */
  --gainsboro: gainsboro; /* #151515;*/
  --ghostwhite: ghostwhite; /*#202020;*/
  }
 /* zapis color: var(--main-bcg); */

/* #import */
/*@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&display=swap"; */

/* #html */

/* body */
body {
  color: var(--alt-clr);
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  text-align: center;
  margin: 0;
  scroll-behavior: smooth;
  animation: aparecium 21s linear infinite;
  -webkit-animation: aparecium 21s linear infinite;
}

@keyframes aparecium {
0% {background: #74C390;}
16% {background: #5DBDB6;}
33% {background: #59D4E1;}
50% {background: #51BCE8;}
66% {background: #FA5374;}
83% {background: #E46653;}
100% {background: #74C390;}
}


/* #content blocks */
.flex-block {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  padding: 10px;
  box-sizing: border-box;
}

.content-block {
  display: flex;
  flex-flow: column;
  width: 100%;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 100px;
}

.content-block-t {
  display: flex;
  flex-flow: row;
  width: 100%;
  align-items:  flex-start;
  justify-content: center;
/*  padding: 50px 10px 10px 10px; */
  padding-top: 10px;
  box-sizing: border-box;
  margin-bottom: 100px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.content-block-t-item {
  display: flex;
  flex-flow: column;
  width: 500px;
  height: auto;
  align-self: center;
  margin: 10px;
  box-sizing: border-box;
}

.content-block-t-media {
  display: flex;
  flex-flow: column;
  width: 900px;           /* toto ujasniť pre veľké displeje a prechod medzi wrap na menších ntb */
  height: auto;
  align-self: center;
  /*margin: 10px;*/
  box-sizing: border-box;
}


.content-box {
  display: flex;
  flex-flow: row;
  /*align-items: flex-start;    - rozna vyska */
  width: 100%;
  max-width: 1200px;
  /*align-items: stretch;*/
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.content-box-item {
  display: flex;
  background-color: none;
  flex-flow: column;
  width: 250px;
  height: auto;
  margin: 10px;
  border-radius: 25px;
  box-sizing: border-box;
}

.content-box-media {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: auto;
  border-radius: 25px 25px 0px 0px;
  box-sizing: border-box;
}

.client-box {
  display: flex;
  flex-flow: row;
  width: 100%;
  max-width: 1200px;
  /*align-items: stretch;*/
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.client-box-item {
  display: flex;
  flex-flow: column;
  width: 135px;
  height: 72px;
  padding: 10px;
  margin: 0px;
  box-sizing: border-box;
}


.header {
  background-color: var(--main-bcg);
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.10);
  -moz-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.10);
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.10);
}

.flex-menu {
  display: flex;
  flex-flow: row;
/*  align-items: flex-end; */
}

.full {
  width: 100%;
  justify-content: flex-end;
}

/*
.flex-menu ul {
  display: inline-flex;
}
*/

.flex-menu li {
  list-style-type: none;
  display: inline-flex;
  margin: 0px 5px;
}


.flex-menu a {
  padding: 5px 15px;
  background-color: var(--alt-bcg);
  border-radius: 25px;
  color: var(--alt-clr);
  text-decoration: none;
  transition: 0.5s;
}


.flex-menu a:hover {
  background-color: orange;
}

/* menu hide/show */
#ResMenu {
  display: none;
  transition: 5s;
}

.menu-icon {
  display: flex;
  height: 65px;
  width: 65px;
  background-color: none;
  cursor: pointer;
  border-radius: 50px;
  transition: 0.5s;
}

.menu-icon:hover {
  background-color: var(--ghostwhite);
}

.menu-icon:focus {
  background-color: var(--ghostwhite);
}

.menu-icon:active {
   transform: rotate(1380deg);
   -webkit-transform: rotate(1380deg);
   -ms-transform: rotate(1380deg);
}

/*
.menu-icon:before {
   transform: rotate(-180deg);
   -webkit-transform: rotate(-180deg);
   -ms-transform: rotate(-180deg);
}

.menu-icon:after {
   transform: rotate(180deg);
   -webkit-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
   opacity: 0;
}
*/





/* media */
.logo  {
  display: flex;
  height: 150px;
  width: 150px;
  align-self: center;
}

.hero-img {
  display: flex;
  width: 100%;
  max-width: 600px;
  height: auto;
  align-content: center;
  box-sizing: border-box;
}

/* typo */

q {
  font-style:oblique;
  padding: 0px 10px;
  /*font-weight: bolder;*/

}

small {
/*  padding: 10px;
  width: auto;
  max-width: 600px;
  line-height: 1.6;
  box-sizing: border-box; */
  padding: 10px 10px 20px;
 }

h1 {
  font-size: 3em;
  margin-bottom: 0;
  font-weight: bolder;
}

h2 {
  font-size: 2em;
  margin-bottom: 0;
  font-weight: bolder;
}

h3 {
  font-size: 1.5em;
  font-weight: bolder;
  margin-bottom: -20px;
}

h4 {
  font-size: 1.5em;
  font-weight: normal;
}

h5 {
  font-size: 1.2em;
  font-weight: bold;
  padding-bottom: 0;
  margin-bottom: -35px;
}

h6 {
  font-size: 1em;
  font-weight: bold;
  padding-bottom: 0;
  margin-bottom: -27px;
}

h7 {
  font-size: 1em;
  font-weight: bold;
}

h8 {
  font-size: 1.5em;
  font-weight: bolder;
  padding: 10px 0px;
}

p {
  padding: 10px;
  width: auto;
  max-width: 600px;
  line-height: 1.6;
  box-sizing: border-box;
}

article {
  padding: 10px;
  width: auto;
  max-width: 600px;
  box-sizing: border-box;
}

article p {
  text-align: left;
  padding: 20px;
  /*border-left: 5px solid var(--main-clr); */
  background-color: var(--ghostwhite);
}

.disclaimer {
  font-size: 0.8em;
}


/* #links */
a {
  color: inherit;
  font-size: inherit;
  font-weight: bolder;
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
/*  background-color: orange; */
text-decoration: underline;
}

.bigb a{
  color: var(--main-clr);
  border-radius: 25px;
  display: inline-flex;
  justify-content: center;
  font-size: 1.3em;
  padding-top: 5px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  background-color: var(--main-bcg);
  margin: 5px;
  box-sizing: border-box;
}

.bigb a:hover{
  background-color: orange;
  text-decoration: none;
}

.smallb a{
  border: 2px var(--alt-clr) solid;
  display: inline-flex;
  justify-content: center;
  border-radius: 25px;
  font-size: 1em;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 7px;
  transition: 0.5s;
  background-color: none;
  color: var(--alt-clr);
  margin: 5px;
  box-sizing: border-box;
}

.smallb a:hover{
  background-color: orange;
  text-decoration: none;
}

#call-icon {
  display: flex;
  align-self: center;
  height: 25px;
  width: 25px;
  margin-right: 10px;
  box-sizing: border-box;
}

#CloseMenu {
  display: flex;
  align-self: center;
  margin-left: 10px;
  height: 25px;
  width: 25px;
  cursor: pointer;
  border-radius: 50px;
  transition: 0.5s;
  background-color: var(--gainsboro);
  box-sizing: border-box;
}

#CloseMenu:hover {
background-color: #FF816D;
}

#CloseMenu:active {
   transform: rotate(1380deg);
   -webkit-transform: rotate(1380deg);
   -ms-transform: rotate(1380deg);
}

#CloseMenu:before {
   transform: rotate(-180deg);
   -webkit-transform: rotate(-180deg);
   -ms-transform: rotate(-180deg);
}

#CloseMenu:after {
   transform: rotate(180deg);
   -webkit-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
}

/* FORMS */
form {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  align-items: center;
}

form p {
margin: 0;
padding: 10px 10px 10px 10px;
}

label {
font-size: 1em;
font-weight: bolder;
padding: 5px;
margin-bottom: 0px;
}

input {
  font-size: 1em;
  padding: 10px;
  margin: 5px;
  border: none;
  background-color: aliceblue;
  border-bottom: 3px solid transparent;
  transition: all 0.5s;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input:hover {
  background-color: cornsilk;
  border-bottom: 3px solid var(--main-clr);
}

input:active {
  background-color: cornsilk;
  border-bottom: 3px solid var(--main-clr);
}
/*
input[type=submit]{
  border: 3px solid #262626;
  font-weight: bolder;
  cursor: pointer;
  border-radius: 25px;
  display: inline-flex;
  justify-content: center;
  font-size: 1.3em;
  padding: 10px 15px;
  background-color: white;
  margin: 5px;
  box-sizing: border-box;
}

input[type=submit]:hover{
  background-color: orange;
}
*/

input[type=submit]{
  border: none;
  font-weight: bolder;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  border-radius: 25px;
  font-size: 1em;
  padding: 5px 10px;
  transition: 0.5s;
  background-color: var(--alt-bcg);
  color: var(--alt-clr);
  margin: 5px;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=submit]:hover{
  background-color: orange;
}


textarea {
  font-size: 1em;
  padding: 10px;
  margin: 5px;
  border: none;
  background-color: aliceblue;
  border-bottom: 3px solid transparent;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea:hover {
  background-color: cornsilk;
  border-bottom: 3px solid var(--main-clr);
}

textarea:active {
  background-color: cornsilk;
  border-bottom: 3px solid var(--main-clr);
}

.wide {
  display: none;
}

.square {
  display: block;
}


/* mobile */
@media only screen and (max-width: 1100px) {
  .wide {display: block;}
  .square {display:none;}
}
@media  (orientation: landscape) {}
@media only screen and (max-width: 1400px) {
  .content-block-t-media {
    width: 700px;
  }
}
/* large screens */
@media screen and (min-width: 1400px) {
  .content-block-t {
    flex-flow: column;
  }
  .wide {display: block;}
  .square {display:none;}
}
@media screen and (min-width: 1600px) {}
@media screen and (min-width: 1900px) {}
