/* setup */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* 
font-family: "Montserrat", sans-serif;
*/

:root {
  --main: rgb(168, 213, 186);
  --footer-color: black;
  
  --deep: #4a4a4a;
  --shallow: rgb(247, 247, 247);
  --misty: rgba(73, 73, 73, 0.5);
  --misty-solid: rgb(155, 155, 155);

  --shallow-op: rgb(247, 247, 247,.10);
  --deep-op: rgb(0,0,0,.25);
}

*{
  font-family: "Montserrat", sans-serif;
}

::selection {
  color: var(--deep);
  background: var(--main);
}

a{
  text-decoration: none;
}

body, h1, h2, h3, h4, h5, p, form{
  margin: 0;
}

.numType{
  font-family: sans-serif;
}

.current{
  display: flex !important;
}

.reserve{
  display: none !important;
}

/* animations */

@keyframes changeBg{
  0%,
	100% {
		background: url('img/mainbg/main1.jpg');
    background-size: cover;
    background-position: center;
	}
/* 
  25%{
    background: url('img/mainbg/main2.jpg');
    background-size: cover;
    background-position: center;
  }

	50%{
		background: url('img/mainbg/main3.jpg');
    background-size: cover;
    background-position: center;
	} */

  50%{
		background: url('img/mainbg/main4.jpg');
    background-size: cover;
    background-position: center;
  }
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-150px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeOutLeft {
	from {
		opacity: 1;
		transform: translateX(0);
	}
  to {
		opacity: 0;
		transform: translateX(-150px);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(150px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(150px);
	}

	to {
		transform: translateX(0);
	}
}

@keyframes fadeOutRight {
  from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(150px);
	}
}

@keyframes fadeInTop {
	from {
		transform: translateY(-100px);
		opacity: 0;
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInSimple {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes moveUnder {
	from {
		opacity: 1;
	}

	to {
    transform: translateY(400px);
		opacity: 0;
	}
}

@keyframes moveOver {
	from {
    transform: translateY(400px);
		opacity: 0;
	}

	to {
    transform: translateY(0);
		opacity: 1;
	}
}

@keyframes loadingRotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes slide {
  to {
    transform: translateX(calc(-180% - 2000px));
  }
}

.inViewAnimation{
  animation: fadeInLeft 1.5s;
}

/* nav */

nav{
  height: 100px;
  width: 100%;
  margin-top: 50px;
  position: absolute;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.navWrap{
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 57%;
  z-index: 99999;
  animation: fadeInTop 1.5s;
  background: transparent;
  gap: 15px;
  border-radius: 35px;
  padding: 0px 30px;
  box-shadow: 0px 8px 7px 0px var(--misty);
  backdrop-filter: blur(5px);
  background: var(--shallow-op);
}

.navLogoWrap{
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar{
  display: flex;
}

.navbar a{
  color: var(--shallow);
  transition: all .3s;
  font-size: 19px;
  font-weight: 400;
  margin: 0px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}

.navbar h3, .navbar h4{
  transition: all .2s;
}

.navbar a:hover{
  color: var(--main);
}

.secondaryNav .navbar a{
  color: var(--deep);
}

.secondaryNav .navbar a:hover{
  color: var(--main);
}

.navbar .dropMenuTrigger{
  font-weight: 500;
}

.navItems{
  display: flex;
  gap: 20px;
}

.navIcons{
  display: flex;
  gap: 10px;
  margin-left: 50px;
}

#languageMenu, #languageMenu2{
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 160px;
  top: 72px;
  background: var(--shallow);
  padding: 10px;
  justify-content: space-between;
  animation: fadeInTop .5s;
  border-radius: 5px;
  border: 2px solid var(--main);
}

#languageMenu2{
  position: fixed;
}

#languageMenu span, #languageMenu2 span{
  font-weight: 600;
  cursor: pointer;
  color: var(--main);
}

#languageMenu a, #languageMenu2 a{
  color: var(--shallow-op);
}

#languageMenu a:hover, #languageMenu2 a:hover{
  color: var(--main);
}

.secondaryNav{
  position: fixed;
  z-index: 9000;
}

.secondaryNav .navWrap{
  background: var(--shallow);
  border: 2px solid var(--deep);
}

#serviceMenu{
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 328px;
  top: 70px;
  background: var(--footer-color);
  padding: 10px;
  justify-content: space-between;
  animation: fadeInTop .5s;
  transition: all .3s;
}

#serviceMenu span{
  font-weight: 500;
  cursor: pointer;
  transition: all .3s;
}

#serviceMenu a{
  color: var(--main);
  transition: all .3s;
  font-size: 20px;
  margin: 10px 10px;
}

#serviceMenu a:hover{
  color: var(--main);
  padding-left: 5px;
  font-size: 20px;
  border-left: 1px solid var(--main);
}

.logo{
  height: 30px;
  transition: all .3s;
  z-index: 9999;
  position: relative;
}

.logo:hover{
  transform: scale(1.1);
  filter: brightness(1.3);
}

/* dropmenu */
.dropMenuTrigger:hover + .categoryDropMenu, .categoryDropMenu:hover{
  height: 280px;
  border: 2px solid var(--deep);
}

.dropMenuTrigger:hover + .categoryDropMenu .categoryWrap{
  opacity: 1;
}

.categoryDropMenu:hover .categoryWrap{
  opacity: 1;
}

.categoryDropMenu{
  right: 0;
  height: 0px;
  overflow: hidden;
  width: 35%;
  background: var(--shallow);
  margin-top: 50px;
  margin-right: 60%;
  position: absolute;
  z-index: 9999;
  transition: all .3s;
  display: flex;
  justify-content: center;
  border-radius: 15px;
}

.categoryWrap{
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  opacity: 0;
  transition: all 2s;
  flex: 1;
}

.categoryWrap a{
  color: var(--main);
  text-shadow: none;
  font-size: 15px;
  margin: 0px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.categoryWrap a:hover h3{
  color: var(--main);
}

.categoryColumn{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 10px
}

.categoryColumn img{
  max-height: 50px;
  width: 100px;
  object-fit: contain;
}

.categoryWrap h3{
  font-weight: 700;
  margin: 10px 0px;
  font-size: 17px;
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  color: var(--deep);
}

.categoryWrap h4, .categoryWrap h5{
  font-weight: 300;
  font-size: 15px;
}

.categoryWrap h5{
  text-indent: 20px;
}

.categoryWrap .shortAboutWrap{
  padding: 0;
}

.loadDropdownTrigger h3{
  font-weight: 700;
  margin: 15px 10px;
  font-size: 18px;
}

.shopFieldWrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 97%;
}

.shopFieldWrap h2{
  color: var(--main);
  padding: 20px 30px;
}

#actualCategory{
  height: 97%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.catalogWrap{
  display: flex;
  width: 40%;
  justify-content: space-between;
}

.catalogLink{
  display: flex;
  flex-direction: column;
}

.catalogLink img{
  width: 250px;
}

/* home / fooldal / otthon PAGE*/

.welcomeWrap{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
}

.welcomeSection{
  width: 100%;
  height: 70%;
  display: flex;
  z-index: 1000;
  position: relative;
  justify-content: space-between;
  flex-direction: column;
  align-items: start;
}

.imageShowcaseWrap{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 9;
}

.imageShowcase{
  background: url(img/mainbg/main1.jpg);
  background-size: 100% 120%;
  background-position: center;
  /* animation: changeBg 30s infinite; */
  /* animation-delay: 5s; */
  width: 98%;
  height: 98%;
  z-index: 99;
  display: flex;
  align-items: center;
  filter: brightness(0.85) grayscale(.1);
  border-radius: 20px;
}

.imageShowcase img{
  width: 100%;
  object-fit: contain;
  transition: all 1s;
  filter: drop-shadow(10px 10px 20px var(--deep));
  animation: fadeInSimple 2s;
}

.welcomeText{
  z-index: 99;
  color: var(--main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.welcomeText h1{
  font-size: 50px;
  font-weight: 700;
  animation: fadeInRight 1.5s;
  color: var(--shallow);
  font-family: "Montserrat", sans-serif;
  text-align: left;
}

.welcomeText h3{
  font-size: 40px;
  font-weight: 500;
  animation: fadeInRight 1.5s;
  color: var(--shallow);
}

.welcomeText h4{
  font-size: 32px;
  font-weight: 200;
  padding: 10px 0px 20px 0px;
  animation: moveOver 1.5s;
  color: var(--shallow);
}

.welcomeText h5{
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0px;
  animation: fadeInRight 1.5s;
  color: var(--shallow);
}

.welcomeText img{
  width: 300px;
  animation: moveOver 1.5s;
  padding: 30px 0px;
}

.welcomeText .ctaSectionFlex div, .welcomeText .ctaSectionFlex a{
  padding: 0px 20px;
}

.welcomeText .ctaSectionFlex{
  margin-top: 50px;
}

.welcomeTextGroup{
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.welcomeHeadlines{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 100px;
}

.welcomeHeadlineBox{
  width: 200px;
  height: 130px;
  background: var(--shallow-op);
  box-shadow: 0px 8px 7px -5px var(--misty);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 50px;
  border-radius: 15px;
  gap: 10px;
}

.welcomeHeadlineBox h3{
  font-size: 30px;
  color: var(--shallow);
  font-family: "Montserrat", sans-serif;
}

.welcomeHeadlineBox p{
  font-size: 16px;
  color: var(--shallow);
  text-align: center;
  font-weight: 200;
}

.ctaSection{
  display: grid;
  grid-template-columns: repeat(2, .2fr);
  gap: 20px;
  animation: moveOver 1.5s;
  margin-top: 20px;
  align-items: center;
}

.ctaSectionFlex{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  animation: moveOver 1.5s;
}

.ctaSectionFlexProduct{
  display: flex;
  align-items: center;
}

.ctaSectionFlexCenter{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.ctaSectionSolo{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.shortAboutWrap{
  display: flex;
  flex-direction: column;
  /* background: var(--shallow); */
  color: white;
  padding: 120px 0px;
  align-items: center;
}

.opaquebg{
  background: var(--main);
}

.shortAbout{
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.shortAbout .shopField{
  margin-top: 80px;
}

.homeDescription{
  width: 100%;
  animation: fadeInLeft 1s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.homeDescription h2{
  font-size: 50px;
  color: var(--deep);
  font-family: "Montserrat", sans-serif;
  padding: 0px 0px 10px 0px;
  margin: 50px 0px 20px 0px;
}

.homeDescription p{
  color: var(--deep);
  font-size: 25px;
  font-weight: 400;
  text-align: center;
}

.homeDescription p:nth-child(1){
  animation: fadeInLeft .5s;
}
.homeDescription p:nth-child(2){
  animation: fadeInLeft 1s;
}
.homeDescription p:nth-child(3){
  animation: fadeInLeft 1.5s;
}
.homeDescription p:nth-child(4){
  animation: fadeInLeft 2s;
}
.homeDescription p:nth-child(5){
  animation: fadeInLeft 2.5s;
}

.homeDescriptionLogo{
  width: 100%;
  display: flex;
  justify-content: center;
  transition: all 1s;
  animation: fadeInRight 1s;
  cursor: pointer;
}

.homeDescriptionLogo:hover{
  transform: scale(1.02);
}

.homeDescriptionLogo img{
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
}

.homeDescription h3{
  color: var(--main);
  font-size: 35px;
  width: fit-content;
}

.homeDescription h4{
  margin: 5px 0px 50px 0px;
  color: var(--main);
  font-weight: 400;
  font-size: 20px;
}

.dealign{
  align-items: start !important;
}

.aboutCta{
  margin: 30px 0px;
  display: flex;
  align-items: center;
}

.aboutCta .material-symbols-outlined{
  color: var(--main);
  font-size: 40px;
}

.aboutCta img{
  width: 60px;
  margin-right: 20px;
  transition: all .3s;
}

.aboutCta img:hover{
  width: 70px;
}

.aboutCta div span{
  font-weight: 700;
  font-size: 30px;
  color: var(--main);
}

.homeDescription .mainButton span{
  font-weight: 600;
  font-size: 15px;
}

.visitorShowcase{
  background: url("./img/toilets.jpg");
}

.partnerShowcaseWrap{
  padding: 0px;
}

.partnersShowcase{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
}

.partnerWrapper{
  background-size: cover;
  background-position: 60% 40%;
  width: 100%;
}

.tabShowcase{
  background-color: var(--main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.placesOfInterestWrap{
  display: flex;
  width: 100%;
  justify-content: end;
}

.placePhoto{
  z-index: 9;
  position: absolute;
  height: 100vh;
  max-width: 100%;
  transition: all .4s;
  object-fit: cover;
}

.tabShowcase .placeTitle{
  z-index: 999;
  font-size: 40px;
  color: var(--main);
  font-weight: 800;
  filter: drop-shadow(3px 3px 3px black);
  position: absolute;
  padding: 50px 0px;
}

.tabShowcase .placeInfo{
  position: relative;
  z-index: 99;
  color: var(--main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 80%;
}

.tabShowcase .placeInfo{
  font-size: 32px;
}

.tabShowcase .placeInfo span{
  font-size: 28px;
}

.tabShowcase .placeInfo h1, .tabShowcase .placeInfo span{
  transition: all .4s;
}

.tabShowcase .placesOfInterest{
  height: 100vh;
  width: 45%;
  background: linear-gradient(270deg, rgba(38,33,30,1) 90%, rgba(255,255,255,0) 100%);
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 100px;
  transition: all 1s;
}

.placeControls {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 999;
  height: 100%;
  align-items: center;  
}

.placeControls span{
  font-size: 50px;
  color: var(--main);
  filter: drop-shadow(3px 3px 3px black);
  font-weight: 800;
  padding: 0px 50px;
  cursor: pointer;
  transition: all .3s;
}

.placeControls span:hover{
  color: var(--darken);
}


/* service tab */

.serviceWrapper{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.serviceWrapper h2{
  font-size: 50px;
  border-bottom: 3px solid var(--main);
  color: var(--main);
}

.serviceWrapper h4{
  font-size: 50px;
  color: var(--deep);
  font-family: "Montserrat", sans-serif;;
}

.serviceWrapper p{
  width: 95%;
  font-size: 20px;
  text-align: center;
  color: var(--deep);
  font-weight: 400;
}

.services-containerWrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-containerWrapper .material-symbols-outlined{
  color: var(--main);
  font-size: 60px;
  cursor: pointer;
  transition: all .3s;
  user-select: none;
}

.services-containerWrapper .material-symbols-outlined:hover{
  color: black;
}

.cartButton .material-symbols-outlined{
  font-size: 24px;
  color: white;
}

.services-container {
	width: 1400px;
	margin: 50px 0px;
	display: flex;
  overflow: hidden;
  /* grid-template-columns: repeat(4, 1fr); */
	text-align: center;
	align-items: stretch;
  gap: 20px;
  cursor: grab;
}

.services-container-partners{
	width: 100%;
	margin: 50px 0px;
	display: flex;
  overflow: hidden;
	text-align: center;
	align-items: center;
  gap: 100px;
  flex-shrink: 0;
}

.partners-list{
  display: flex;
  gap: 2rem;
  width: 100%;
  overflow: hidden;
}

.partners-list .service{
  padding-bottom: 20px;
  width: auto;
  height: auto;
  background: transparent;
}

.partners-list .service:hover{
  transform: scale(1.015);
  box-shadow: none;
}

.partners-list .service a{
  transition: all .3s;
}

.services-container-partners a{
  animation: slide 80s linear infinite;
  min-width: 240px;
}

.services-container-partners a img{
  object-fit: contain;
}

.services-duality{
  display: flex;
  width: 100%;
  margin: 30px 0px;
}

.serviceOne, .serviceTwo{
  width: 50%;
  height: 350px;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.serviceOne img, .serviceTwo img{
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.serviceOne{
  background: var(--main);
}

.serviceOne:hover{
  transform: scale(.98);
  box-shadow: inset 0px 0px 30px var(--main);
}

.serviceTwo:hover{
  transform: scale(.98);
  box-shadow: inset 0px 0px 30px var(--main);
}

.serviceOne h1, .serviceOne p{
  color: var(--main);
}

.serviceTwo h1, .serviceTwo p{
  color: var(--main);
}

.service {
	background: linear-gradient(90deg, var(--main) 0%, var(--main) 100%);
	display: flex;
	align-items: center;
  justify-content: center;
	transition: all 0.3s;
	cursor: pointer;
  overflow: hidden;
  user-select: none;
  border-radius: 20px;
  height: 350px;
  width: 100%;
}

.service:nth-child(2){
  transform: scale(1.2);
}

.service:nth-child(4){
  transform: scale(0.90);
}

.service .serviceInfoWrapper{
  position: absolute;
}

.service:hover {
	transform: scale(1.1);
  filter: brightness(110%);
}

.service img{
  object-fit: contain;
  width: 100%;
  height: 200px;
}

.service h3{
  color: var(--deep);
  padding: 22px 0px 5px 0px;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  font-family: "Montserrat", sans-serif;
}

.service-list{
  flex-direction: column;
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 0px;
  transition: all .3s;
  overflow: hidden;
  position: absolute;
}

.service:hover .service-list{
  height: 200px;
  overflow: visible;
  background: var(--main);
  z-index: 999999;
}

.service span{
  color: var(--main);
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  max-height: 100px;
  overflow: hidden;
}

.service p{
  font-weight: 300;
  font-size: 18px;
  color: var(--shallow);
  transition: all 1s;
  padding: 3px 25px;
}

.service:hover > .service-list p {
  border-bottom: 1px solid var(--main);
  border-radius: 30px;
}

.serviceSwiper{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.serviceSwiper .material-symbols-outlined{
  font-size: 50px;
  cursor: pointer;
  transition: all .3s;
}

.serviceSwiper .material-symbols-outlined:hover{
  font-size: 52px;
  filter: drop-shadow(1px 1px 5px var(--main));
  user-select: none;
}

.homeDescriptionWrap{
  width: 80%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  padding: 100px 0px;
}

/* details tab */

.detailsWrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.detailsWrap h2{
  font-size: 40px;
  color: white; 
  font-weight: 800;
  filter: drop-shadow(3px 3px 3px black);
}

.detailsWrap span{
  font-size: 20px;
  color: var(--shallow);
  font-weight: 300;
}

.detailsWrap .secondaryButton{
  margin-left: 200px;
  padding: 0px 20px;
}

.details{
  display: flex;
  justify-content: space-around;
  width: 65%;
  background: var(--shallow);
  padding: 50px;
  border-radius: 20px 20px 0px 0px;
}

.details div{
  text-align: center;
}

.details img{
  height: 70px;
}

.details h3{
  font-size: 57px;
  color: var(--main);
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

.details span{
  font-size: 25px;
  color: var(--deep);
  font-weight: 500;
}


/* about / rolunk PAGE */
.secondaryWelcome{
  width: 100%;
  display: flex;
  /* background: var(--shallow); */
}

.secondaryWelcome img{
  width: 100%;
  object-fit: cover;
  position: fixed;
  filter: contrast(.75) grayscale(.4) brightness(.8);
  z-index: -100;
  object-position: 0px -250px;
}

.secWelcomeText{
  z-index: 99;
  padding: 180px 0px 0px 130px;
  color: var(--main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.secWelcomeText h1{
  font-size: 50px;
  font-weight: 700;
  animation: fadeInLeft 1.5s;
  color: var(--main);
}

.secWelcomeText h3{
  font-size: 40px;
  font-weight: 300;
  animation: fadeInRight 1.5s;
}

.valuesWrap{
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 50px 0px;
}

.valuesWrap h2{
  width: 90%;
  font-size: 50px;
  border-bottom: 3px solid var(--main);
  padding: 0px 0px 30px 0px;
  color: var(--main);
  filter: drop-shadow(3px 3px 3px black);
}

.valuesTab{
  width: 80%;
  margin: 40px 0px;
}

.valueRow{
  display: flex;
  justify-content: space-between;
}

.value {
  width: 33%;
  height: 475px;
  background: var(--main);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 1s;
}

.value:hover {
  transform: scale(1.02);
}

.value img{
  width: 100%;
}

.value h3{
  color: var(--main);
  margin: 20px 0px;
  font-size: 30px;
}

.value p{
  color: var(--main);
  width: 80%;
  text-align: justify;
  font-weight: 300;
  font-style: italic;
}

.aboutPageTop{
  padding-top: 100px;
}

/* services / szolgaltatasok PAGE */
.secondaryWelcome .serviceBg{
  object-position: 0px -80px;
}

.serviceLeft{
  color: var(--deep);
  align-items: start;
}

.serviceRight{
  color: var(--main);
  align-items: end;
  flex-direction: row-reverse;
  justify-content: end;
}

.serviceLeft, .serviceRight{
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}

.serviceLeft img, .serviceLeft img{
  width: 100%;
}

.serviceLeft .serviceDescWrap{
  display: flex;
  width: 80%;
  justify-content: space-between;
}

.serviceRight .serviceDescWrap{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 80%;
}

.serviceDescImg{
  width: 40%;
  height: 350px;
  display: flex;
  justify-content: end;
  align-items: center;
  cursor: pointer;
}

.serviceDescImg img{
  width: 100%;
  height: 100%;
  transition: all .3s;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  transition: all 1s;
}

.serviceDescImg img:hover{
  transform: scale(1.02);
}

.serviceDescImg a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  object-fit: cover;
}

.serviceDescImg span{
  color: var(--main); 
  position: absolute;
  font-weight: 700;
  font-size: 30px;
  transition: all 1s;
  opacity: 0;
}

.serviceDescImgGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.serviceDescImgGrid img{
  height: 200px;
}

.serviceDescWrap{
  padding: 100px 0px;
  display: flex;
  grid-template-columns: repeat(4, 300px);
  gap: 20px;
  border-radius: 20px;
}

.categTitle{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  pointer-events: none;
}

.categInfo{
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 38%;
  margin-left: 10px;
  height: 230px;
  border-left: 1px solid var(--shallow);
  pointer-events: none;
}

.categInfo .material-symbols-outlined{
  color: var(--shallow);
  transition: all 1s;
  font-size: 30px;
}

.descWrap .categInfo .material-symbols-outlined{
  color: var(--deep);
  border: 1px solid var(--deep);
}

.categInteractive{
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 80px;
}

.dualImage{
  justify-content: space-around;
}

.dualImage img{
  width: 40%;
}

.serviceLeft h2, .serviceRight h2{
  width: fit-content;
  font-size: 50px;
  padding: 0px 0px 10px 0px;
}

.calendarWrap p{
  padding-top: 50px;
}

.serviceLeft h2{
  color: white;
  border-bottom: 3px solid white;
}

.serviceRight h2{
  color: var(--main);
  border-bottom: 3px solid var(--main);
}

.serviceDescription{
  width: 40%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.serviceDescription p{
  margin-top: 20px;
  color: var(--deep);
  font-size: 20px;
  font-weight: 400;
}

.serviceDescription h4{
  margin-top: 30px;
  color: var(--deep);
  font-size: 20px;
  font-weight: 400;
}

.serviceLeft .serviceDescription p{
  text-align: end;
}

.serviceRight h3{
  font-size: 35px;
  color: var(--deep);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: start;
}

.serviceLeft h3{
  font-size: 35px;
  color: var(--deep);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: end;
}

.serviceLeft .serviceDescription{
  justify-content: end;
}

.serviceRight .serviceDescription{
  justify-content: start;
}

.serviceDescWrapSmall{
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  background: transparent;
  justify-content: center;
  align-items: center;
  transition: all .3s;
}

.serviceDescWrapSmall img{
  height: 160px;
  object-fit: contain;
}

.serviceDescWrapSmall h3{
  font-size: 25px;
}

.descWrap h3{
  color: var(--deep);
}

.descWrap p{
  color: var(--deep);
}

.serviceDescWrapSmall:hover{
  filter: brightness(120%);
}

.serviceDescWrapSmall:hover .categInteractive h5{
  display: flex;
  animation: fadeInRight 1s;
}

.descWrap:hover .categInteractive h5{
  color: var(--deep);
}

.serviceDescWrapSmall:hover .categInteractive .material-symbols-outlined{
  transform: scale(1.2);
}

.descWrap:hover .categInteractive .material-symbols-outlined{
  color: var(--shallow);
  background: var(--deep);
}

/* category page */
.categoryPage{
  display: flex;
  width: 100%;
  background: var(--shallow);
  min-height: 100vh;
}

.categoryRoster{
  border-right: 3px solid var(--main);
  width: 15%;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-bottom: 50px;
  padding-left: 30px;
  padding-top: 10px;
}

.categoryRoster h3{
  font-weight: 700;
  margin: 10px 0px;
  transition: all .3s;
}

.categoryRoster h4{
  transition: all .3s;
  font-weight: 500;
  padding-left: 5px;
}

.categoryRoster h5{
  transition: all .3s;  
  font-weight: 300;
  padding-left: 20px;
  font-size: 17px;
}

.categoryRoster h3:hover, .categoryRoster h4:hover, .categoryRoster h5:hover{
  transform: scale(1.02);
}

.categoryRoster a{
  color: var(--main);
  transition: all .2s;
}

.categoryRoster a:hover{
  color: var(--main);
}

.subCatOpener{
  color: var(--main);
  cursor: pointer;  
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}

.subCatOpener:hover{
  color: var(--main)
}

.subCatOpener span{
  transition: all .5s;
}

.subcategoryBox{
  overflow: hidden;
  transition: all 1s;
  height: auto;
}

.shopField{
  width: 80%;
  display: flex;
  gap: 80px;
  justify-items: center;
}

.indexShopFieldWrap{
  width: 100%;
}

.indexShopFieldWrap .shopField{
  width: 100%;
  display: flex;
  justify-content: center;
}

.notFound{
  color: var(--main);
  padding: 50px;
}

.productBox{
  background: var(--main);
  padding: 20px 10px;
  border: 3px solid var(--main);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all .3s;
  filter: drop-shadow(1px 1px 5px var(--deep));
  border-radius: 20px;
}

.productBox img{
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 20px;
}

.productBox h3{
  color: var(--shallow);
  text-align: center;
  border-bottom: none;
}

.productBox h4{
  color: var(--main);
  font-size: 27px;
}

.productBox:hover{
  filter: drop-shadow(1px 1px 10px var(--main));
  transform: scale(1.02);
}

.productBox .mainButton{
  bottom: 0;
  width: 160px;
  height: 44px;
}

.productBox .productButtons{
  margin: 0px 20px 20px 20px;
  gap: 20px;
}

.productField{
  width: 80%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 80px;
  padding-top: 50px;
}

.miniProductField{
  width: 80%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  align-items: start;
  gap: 80px;
  padding-top: 50px;
}

.miniProduct{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.miniProductImgWrap{
  width: 230px;
  height: 200px;
	background: linear-gradient(90deg, var(--main) 0%, var(--main) 100%);
  border-radius: 15px;
}

.miniProduct img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
  transition: all .5s;
}

.miniProduct h3{
  color: var(--deep);
  transition: all .5s;
}

.miniProduct:hover h3{
  color: var(--main);
}

.miniProduct:hover img{
  transform: scale(1.02);
  filter: brightness(110%);
}

.productTitle{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  background: var(--shallow);
  pointer-events: none;
  border-radius: 20px;
}

.productInfo{
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 90%;
  pointer-events: none;
}

.productPageInfo{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 40%;
}

.productPageInfoBlock{
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
}

.productPageInfoBlock2{
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 15px;
}

.addToCart{
  padding: 0px 20px;
}

.productInfo .material-symbols-outlined{
  color: var(--shallow);
  transition: all 1s;
  font-size: 30px;
}

.productInfo h3{
  color: var(--deep);
  padding: 15px 0px;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
}

.productInfo p{
  color: var(--deep);
  text-align: justify;
  width: 100%;
  font-size: 17px;
  max-height: 73px;
  overflow: hidden;
}

.productPageInfo h3{
  color: var(--deep);
  padding: 15px 0px;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
}

.productPageInfo p{
  color: var(--deep);
  text-align: justify;
  width: 100%;
  font-size: 17px;
}

/* product page */
.secWelcomeText a{
  color: var(--deep);
  transition: all .2s;
  display: flex;
  gap: 10px;
  font-weight: 600;
}

.secWelcomeText h5{
  color: var(--deep);
  display: flex;
  gap: 10px;
  font-weight: 300;
}

.secWelcomeText a:hover{
  color: var(--main)
}

.productWrap{
  display: flex;
  background: var(--shallow);
  margin: 50px 0px;
  justify-content: center;
}

.productTab{
  width: 50%;
  display: flex;
  justify-content: space-between;
}

.productPageImgWrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.productImg, .productPageImg{
  width: auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 20px;
  width: 90%;
}

.productExtraImageRow{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 90%;
  cursor: pointer;
  padding: 8px;
}

.productExtraImageRow img{
  object-fit: contain;
  height: 100px;
  width: 100%;
  cursor: pointer;
  transition: all .3s;
  background: linear-gradient(90deg, var(--main) 0%, var(--main) 100%);
  border-radius: 20px;
  margin: 10px;
}

.productExtraImageRow img:hover{
  transform: scale(1.02);
}

.productImg img, .productPageImg img{
  object-fit: contain;
  height: 400px;
  width: 75%;
  cursor: pointer;
  transition: all .3s;
  background: linear-gradient(90deg, var(--main) 0%, var(--main) 100%);
  border-radius: 20px;
  margin: 10px;
  text-align: center;
}

.productImg img:hover, .productPageImg img:hover{
  transform: scale(1.05);
}

.productPageSmallImg{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 25%;
}

.productPageSmallImg img{
  width: 75%;
  height: auto;
  max-height: 110px; 
}

.optionsWrapper{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.productOption{
  padding: 10px 10px;
  border: 2px solid var(--main);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all .3s;
  color: var(--deep);
}

.productOption:hover{
  background: var(--main);
  color: var(--shallow);
}

.selectedOption{
  background: var(--main);
  color: var(--shallow);
}

.documentsWrap{
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}

.documentsWrap a{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  background: linear-gradient(90deg, var(--main) 0%, var(--main) 100%);
  width: 200px;
  height: 200px;
  border-radius: 20px;
  transition: all .3s;
}

.documentsWrap a h3{
  color: var(--deep);
}

.documentsWrap a:hover{
  filter: brightness(1.2);
  transform: scale(1.02);
}

.documentsWrap h2{
  width: 80%;
  color: var(--main);
  font-size: 30px;
  padding-bottom: 50px;
}

.documentsWrap .material-symbols-outlined{
  color: var(--deep);
  padding: 5px;
}

.documentsRow{
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.secondaryWelcome .productsBg{
  object-position: 0px -80px;
}


/* projects / projektek PAGE */
.secondaryWelcome .projectsBg{
  object-position: 0px -130px;
}

.smallGallery{
  display: grid;
  grid-template-columns: repeat(4, .4fr);
  width: 100%;
  gap: 20px
}

.smallGallery img{
  width: 350px;
  height: 200px;
  cursor: pointer;
}

.smallGallery img:hover{
  transform: scale(1.1);
}

.miniNavWrap{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.miniNav{
  display: flex;
  justify-content: space-around;
  width: 98%;
  border-radius: 40px;
  border-bottom: 1px solid var(--main);
  background: var(--shallow);
}

.miniNav h3{
  color: var(--main);
  font-size: 25px;
  margin: 15px 0px;
  transition: all .3s;
  cursor: pointer;
  user-select: none;
}

.miniNav .selectedMininav{
  color: var(--main);
}

.miniNav h3:hover{
  color: var(--main);
}

.unselectService{
  animation: moveUnder 1s;
}

.selectService{
  animation: moveOver 1s;
}

.projectsWrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tertiaryBackground .detailsWrap{
  padding: 0px;
}

.tertiaryBackground .details{
  margin: 0px;
}

.projectsGridWrap{
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 200px 0px 50px 0px;
}

.projectsGridWrap h2{
  font-size: 50px;
  color: var(--main);
  font-family: "Montserrat", sans-serif;
  user-select: none;
}

.projectsGridWrap p{
  width: 70%;
  font-size: 20px;
  text-align: center;
}

.secondaryBackground .projectsGridWrap h2{
  color: var(--main-dark);
}

/* contact / kapcsolat PAGE */
.secondaryWelcome .contactBg{
  object-position: 0px -80px;
}

.contactForm{
  display: flex;
  flex-direction: column;
  padding: 20px 0px;
}

.contactForm label{
  color: var(--main);
  font-size: 25px;
  margin-top: 10px;
}

.contactForm input{
  height: 40px;
  width: 500px;
  font-weight: 600;
  font-size: 17.5px;
  padding-left: 15px;
}

.contactForm .message{
  height: 150px;
  width: 500px;
  font-weight: 600;
  font-size: 15px;
  padding: 15px;
}

.contactCardWrapper{
  width: 70%;
  display: flex;
  justify-content: space-around;
}

.contactCard{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 400px;
  width: 300px;
  justify-content: center;
  gap: 10px;
  transition: all .3s;
  background: var(--main);
  border-radius: 15px;
}

.contactCard:hover{
  box-shadow: inset 0px 5px 15px var(--shallow);
  transform: scale(1.02);
}

.contactCard span{
  font-size: 30px;
  padding: 10px;
  color: var(--deep);
}

.contactCard .openInNew{
  font-size: 20px;
  background: var(--main);
  border-radius: 50%;
  padding: 5px;
  transition: all .3s;
}

.contactCard .openInNew:hover{
  background: var(--main);
}

.contactCard h1{
  color: var(--deep);
  font-weight: 600;
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
  padding: 0px 15px 5px 15px;
}

.contactCard h2{
  font-size: 22px;
  font-weight: 400;
  color: var(--deep);
  text-align: center;
  margin: 0px 10px;
}

.contactCard a{
  color: var(--deep);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 25px;
  font-weight: 600;
}

.contactCard img{
  width: 100px;
  height: 100px;
}

/* gallery css */
.modal {
  position: fixed;
  z-index: 9999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.modal .exit{
  width: 90%;
  display: flex;
  justify-content: end;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
}

#modalOffer {
  position: relative;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.formAgreement{
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}

.offerWrap{
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 30px;
  gap: 10px;
  border-radius: 10px;
}

.offerWrap input, .offerWrap textarea, .offerWrap select{
  width: 100%;
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
}

.offerWrap input[type="checkbox"]{
  width: auto;
}

.submitButton{
  cursor: pointer;
  background: transparent;
  border: 3px solid var(--shallow) !important;
  color: white;
  border: none;
  height: 50px;
  font-size: 25px;
  transition: all .3s;
  padding: 0px !important;
}

.submitButton:hover{
  background: var(--deep);
  transform: scale(1.05);
}

.offerWrap input[type="checkbox"] + .submitButton {
  pointer-events: none;
  filter: brightness(.6);
}

.offerWrap input[type="checkbox"]:checked + .submitButton {
  pointer-events: all;
  filter: brightness(1);
}

.offerWrap label{
  color: var(--shallow);
}

.offerWrap label a{
  color: var(--shallow);
  font-weight: 800;
  transition: all .3s;
}

.offerWrap label a:hover{
  color: var(--main);
}

.offerWrap textarea{
  width: 100%;
  min-height: 50px;
  resize: vertical;
}

.offerWrap h1{
  color: var(--shallow);
  font-size: 30px;
  transition: all .3s;
  font-family: "Montserrat", sans-serif;
}

.offerWrap span{
  color: var(--main);
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: all .2s;
  cursor: pointer;
  font-weight: 800;
}

.offerWrap span:hover{
  color: black;
}

.offerWrap .mainButton{
  width: 100%;
}

.offerWrap .mainButton span{
  justify-content: center;
}

#close {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 28px;
  font-weight: bold;
  padding: 5px 13px 5px 13px;
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s;
  right: 0;
}

#close:hover{
  color: black;
}

.largeGallery{
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 175px;
}

.largeGallery img{
  width: 100%;
  cursor: pointer;
  transition: all .3s;
  height: 100px;
  border: 1px solid var(--footer-color-light);
}

.largeGallery img:hover{
  transform: scale(1.05);
}

.extraProductsWrap{
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
  align-items: center;
}

.extraProductsWrap h2{
  color: var(--deep);
  font-size: 30px;
}

.extraProductsWrap h4{
  color: var(--main);
  font-size: 40px;
  padding: 60px 0px;
}

.extraProducts{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 80%;
  gap: 20px;
  padding-bottom: 100px;
}

.extraProduct{
  display: flex;
  transition: all .3s;
  gap: 15px;
  max-height: 115px;
  overflow: hidden;
  align-items: center;
}

.extraProduct:hover{
  transform: scale(1.02);
}

.extraProduct div{
  display: flex;
  flex-direction: column;
}

.extraProduct img{
  height: 80px;
}

.extraProduct h3{
  color: black;
}

.extraProduct p{
  color: var(--main);
  font-weight: 600;
}

.tableWrap{
  width: 87%;
  display: flex;
}

.tableWrap table{
  width: 55%;
  background: linear-gradient(90deg, var(--main) 0%, var(--main) 100%);
  border-radius: 20px;
  padding: 40px;
}

.tableWrap tr{
  height: 40px;
}

.tableWrap th{
  display: flex;
}

.tableWrap td{
  font-size: 18px;
  color: var(--deep);
}

/* Carousel */
.slideshow{
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.slideshow .slide{
  transition: all .3s;
  display: flex;
  justify-content: center;
}

.slideshow .slide img{
  max-width: 50vw;
  max-height: 85vh;
}

.carouselWrap{
  display: flex;
  justify-content: center;
  width: 90%;
}

#prev, #next {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--main);
  font-weight: bold;
  font-size: 60px;
  transition: all 0.6s;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

#prev:hover, #next:hover {
  color: #777;
}

.slideshow-dots{
  margin-top: 30px;
  display: flex;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  transition: all 0.1s;
}

.currentDot{
  background-color: #444;
}

.dot:hover {
  background-color: #444;
}

/* contact */
.contactWrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0px 100px 0px;
  animation: moveOver 1s;
  width: 90%;
}

.contact{
  display: flex;
  justify-content: space-around;
  width: 70%;
}

.contact a{
  width: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--main);
  text-align: center;
}

.contact a img, .contact a span{
  transition: all .3s;
  width: 100%;
}

.contact a span{
  color: var(--shallow);
  font-size: 50px;
}

.contact a:hover{
  font-weight: 800;
}

.contact a:hover > img, .contact a:hover > span{
  transform: scale(1.2);
  filter: drop-shadow(1px 1px 5px var(--main));
}

.contact a p{
  position: absolute;
  font-size: 25px;
  margin-top: 100px;
  color: var(--shallow);
}

.contact img{
  position: relative;
  filter: none;
  z-index: 1;
}

.pageViews{
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageViews img{
  width: 10%;
}

.pageViews span{
  font-size: 30px;
  font-weight: 500;
}

/* partners / partnerek */
.service a{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service a:hover > .service-list p {
  border: 1px solid var(--main);
}
.service a:hover > h3 {
  border-bottom: 3px solid var(--main);
}

.fol{
  animation: fadeOutLeft 1s;
}

.for{
  animation: fadeOutRight 1s;
}

.fil{
  animation: fadeInLeft 1s;
}

.fir{
  animation: fadeInRight 1s;
}

/* map */
#mapwrapper{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#mapwrapper h4{
  font-size: 50px;
  color: var(--main);
  font-family: "Montserrat", sans-serif;
  padding-top: 50px;
}

#mapwrapper p{
  font-size: 25px;
  color: var(--main);
}

#mapbase{
  width: 60%;
}

#mapbase path{
  fill: var(--main);
  transition: all .3s;
}

#mapbase path:hover{
  fill: var(--deep);
}

#mapbase text{
  pointer-events: none;
  user-select: none;
}

.contactBox{
  width: 50%;
  height: 50%;
  background: linear-gradient(90deg, var(--main) 0%, var(--main) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  border-radius: 15px;
  gap: 50px;
}

.contactBox h3{
  font-size: 50px;
  color: var(--shallow);
  font-family: "Montserrat", sans-serif;
}

.contactBox h4{
  font-size: 25px;
  color: var(--shallow);
  font-family: "Montserrat", sans-serif;
}

.contactAgentData{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0px;
}

.contactAgentData #contactTel{
  height: 200px;
  width: 45%;
  border: 3px solid var(--shallow);
  transition: all .5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  gap: 10px;
}

.contactAgentData #contactTel h5{
  color: var(--shallow);
  font-weight: 600;
  font-size: 30px;
  transition: all .5s;
}

.contactAgentData #contactTel span{
  color: var(--shallow);
  font-weight: 200;
  font-size: 24px;
  transition: all .5s;
  display: flex;
  align-items: center;
}

.contactAgentData #contactTel:hover{
  background: var(--main);
  border: 3px solid var(--main);
}

.contactAgentData #contactTel:hover h5, .contactAgentData #contactTel:hover span{
  color: var(--shallow);
}

.contactAgentData #contactEmail{
  height: 200px;
  width: 45%;
  background: transparent;
  border: 3px solid var(--shallow);
  transition: all .5s;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contactAgentData #contactEmail h5{
  color: var(--shallow);
  font-weight: 600;
  font-size: 30px;
  margin: 20px;
  transition: all .5s;
}

.contactAgentData #contactEmail span{
  color: var(--shallow);
  font-weight: 400;
  font-size: 24px;
  margin: 20px;
  transition: all .5s;
}

.contactAgentData #contactEmail:hover{
  background: var(--main);
  border: 3px solid var(--main);
}

.contactAgentData #contactEmail:hover h5, .contactAgentData #contactEmail:hover span{
  color: var(--shallow);
}

/* calendar */
.calendar{
  width: 60%;
  display: flex;
  flex-direction: column;
}

.week{
  display: flex;
}

.day, .calendar .dayname{
  width: 14%;
  height: 75px;
  background-color: var(--main);
  color: var(--main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  /* border: 1px solid var(--main); */
  cursor: pointer;
  transition: all .15s;
}

.day span, .day div, .day input{
  pointer-events: none;
}

.calendar .dayname{
  background-color: var(--main);
  cursor: default;
}

.calendar .monthControl{
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}

.calendar .monthControl:hover{
  box-shadow: inset 1px 1px 15px var(--main);
}

.calendar #increaseMonth span, .calendar #decreaseMonth span{
  font-size: 40px;
}

.day:hover{
  box-shadow: inset 1px 1px 10px var(--main);
}

.dateControlMenu{
  flex-direction: column;
  position: absolute;
  background: var(--main);
  padding: 20px;
  animation: fadeInTop 1s;
  z-index: 99;
}

.dateControlMenu span{
  font-size: 20px;
  color: var(--main);
  transition: all .3s;
  cursor: pointer;
}

.dateControlMenu span:hover{
  text-decoration: underline;
}

#dateControlMenu1{
  margin-top: 70px;
}

#dateControlMenu2{
  margin-left: 110px;
  margin-top: 70px;
}


.calendar .otherMonth{
  filter: contrast(.9);
}

.calendarInfo{
  width: 40%;
  background: var(--main);
  min-height: 300px;
  transition: all .3s;
}

.calendarInfo div{
  padding: 50px;
  transition: all .3s;
}

.calendarInfo div .statusExplain{
  display: flex;
  align-items: center;
  padding: 0;
  gap: 20px;
}

.calendarInfo div .statusExplain div{
  padding: 0;
}

.calendarInfo div h1{
  color: var(--main);
  font-size: 25px;
  transition: all .3s;
  padding-bottom: 20px;
}

.calendarInfo div h4{
  color: var(--main);
  font-size: 18px;
  transition: all .3s;
}

.calendarInfo div h2{
  color: var(--main);
}

.calendarInfo div .mainButton, .calendarInfo div .secondaryButton{
  height: 50px;
  width: 150px;
  padding: 0;
  margin: 20px 0px 0px 0px;
}

.calendarInfo div p{
  color: var(--main);
  padding: 10px;
  display: flex;
  align-items: center;
  font-weight: 200;
}

.calendarInfo div p span{
  margin-left: 20px;
  font-weight: 600;
}

.calendarInfo div p div{
  padding: 0;
  margin-left: 20px;
}

.status-green, .status-yellow, .status-red{
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: darkgreen;
}
.status-yellow{
  background: orange;
}

.status-red{
  background: red;
}

.day-unavailable{
  filter: contrast(0.8) brightness(.9);
  cursor: default;
  pointer-events: none;
}

.day-unavailable:hover{
  box-shadow: none;
}

.day-unavailable-selection{
  filter: contrast(0.7) brightness(0.6);
  pointer-events: none;
  cursor: default;
}

.day-unavailable-selection:hover{
  box-shadow: none;
}

.day-start-selection{
  filter: contrast(1.5);
  cursor: default;
  pointer-events: none;
}

.day-mid-selection{
  filter: contrast(1.04);
  cursor: default;
  pointer-events: none;
}

.day-end-selection{
  filter: contrast(1.5);
  cursor: default;
  pointer-events: none;
}

#form_start_date{
  pointer-events: none;
  display: none;
}

#form_end_date{
  pointer-events: none;
  display: none;
}

/* crud */
.crudWrap{
  width: 100%;
  display: flex;
  justify-content: center;
}

.crudTable{
  width: 100%;
  margin-bottom: 100px;
}

.crudHeader{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--main);
  padding: 10px 0px;
}

.crudHeader h1{
  color: var(--main);
}

.crudButtons{
  width: 25%;
  display: flex;
  justify-content: space-between;
}

.crudBody{
  display: flex;
}

.crudBodyTable{
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.crudBody h3{
  color: var(--main);
  padding: 50px;
  font-size: 25px;
}

#uploadForm, #editForm, .deleteConfirmation, #uploadFormSingle, #editFormSingle{
  background: rgb(0, 0, 0, .5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}

.deleteConfirmation div{
  display: flex;
  flex-direction: column;
  background: var(--main);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.deleteConfirmation div h1{
  color: var(--main);
}

.deleteConfirmation div div{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.deleteConfirmation .secondaryButton, .deleteConfirmation .tertiaryButton{
  padding: 0;
}

#uploadForm form, #editForm form, #uploadFormSingle form, #editFormSingle form{
  display: flex;
  flex-direction: column;
  background: var(--main);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 50px;
  width: 60%;
}

#uploadForm label, #editForm label, #uploadFormSingle label, #editFormSingle label{
  color: var(--main);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

#uploadForm form h2, #editForm form h2, #uploadFormSingle h2, #editFormSingle h2{
  color: var(--main);
}

#uploadForm form input, #editForm form input, #uploadFormSingle form input, #editFormSingle form input{
  margin: 10px 0px;
  color: var(--main);
  background: var(--main);
  font-weight: 600;
  border-radius: 20px;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  width: 100%;
  color: var(--main);
}

#uploadForm input[type="file"], #editForm input[type="file"], #uploadFormSingle input[type="file"], #editFormSingle input[type="file"]{
  color: var(--main);
}

.radioButtons{
  display: flex;
  width: 100%;
  padding: 5px 0px;
}

.radioButtons input{
  width: auto !important;
  transform: scale(1.5);
  margin: 0px 20px !important;
}

.kulcsosRow, .kulcsosRow2{
  width: 100%;
  display: flex;
}

.kulcsosRow span{
  color: var(--main);
  font-size: 15px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid var(--main);
  padding: 5px 10px;
}

.kulcsosRow span img{
  max-width: 80px;
  max-height: 60px;
}

.kulcsosRow span a{
  color: white;
  text-decoration: underline;
  transition: all .3s;
}

.kulcsosRow span a:hover{
  color: var(--darken);
}

/* banner */
.messageBanner{
  width: 100%;
  height: 300px;
  background: var(--deep);
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 50px 0px;
}

.secondaryBackground .messageBanner{
  background: var(--shallow);
}

.messageWrap{
  display: flex;
  flex-direction: column;
}

.messageWrap h2{
  font-size: 59px;
  font-weight: 700;
  color: var(--main);
  padding-bottom: 10px;
}

.messageWrap p{
  font-size: 16px;
  color: var(--main);
  font-weight: 300;
}

.secondaryBackground .messageWrap h2, .secondaryBackground .messageWrap p{
  color: var(--main);
}

.ctaFlexBetween{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.ctaFlexBetween .tertiaryButton{
  min-width: 0px;
  width: 130px;
  height: 35px;
}

.ctaFlexBetween .cartButton{
  width: 35px;
  height: 35px;
}

/* message form */
.messageFormWrap{
  background: linear-gradient(90deg, var(--main) 0%, var(--main) 100%);
  height: 110vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.messageForm{
  width: 40%;
  background: var(--shallow);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0px;
}

.messageForm form{
  width: 80%;
}

.messageForm h3{
  width: 100%;
  font-size: 26px;
  padding-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  color: var(--main);
}

.messageForm input{
  width: 100%;
  border: 1px solid var(--main);
  border-radius: 10px;
  height: 35px;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.messageForm textarea{
  width: 100%;
  border: 1px solid var(--main);
  border-radius: 10px;
  height: 100px;
  padding-top: 7px;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.messageForm .mainButton{
  border: 0px;
  width: 150px;
  padding: 0px;
  min-width: 0px;
}

.messageForm label{
  font-weight: 200;
  font-size: 15px;
  margin-bottom: 5px;
}

.messageFormAuxiliary{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.messageFormAuxiliary img{
  width: 355px;
  height: 355px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: all .3s;
}

.messageFormAuxiliary img:hover{
  transform: scale(1.02);
}

.messageForm span{
  color: var(--deep);
  font-weight: 300;
}

.messageForm a{
  background-color: var(--main);
  color: var(--deep);
}

.messageForm a:hover{
  background-color: transparent;
  transform: scale(1.05);
}

.messageForm h1{
  width: 100%;
  font-size: 45px;
}

.messageForm p{
  margin-top: 20px;
}

/* footer */
footer{
  display: flex;
  flex-direction: column;
  background: var(--shallow);
  width: 100%;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0px;
}

.footerCenterWrap {
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 25px
}

footer img{
  width: 145px;
  transition: all 1s;
  margin: 0px 30px;
}

footer img:hover{
  transform: scale(1.1);
}

.footerLogo{
  display: flex;
  justify-content: center;
  align-items: center;
}

.footerLogo span{
  color: var(--deep);
  font-weight: 300;
  font-size: 14px
}

.footerLogo a{
  color: var(--deep);
  font-weight: 600;
  transition: all .3s;
}

.footerLogo a img{
  width: 75px;
}

.footerLogo a:hover{
  color: var(--main);
}

.footerNav{
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

footer .navbar a{
  font-size: 18px;
  font-weight: 400;
  margin: 3px 0px;
}

footer .navbar a:hover{
  font-size: 19px;
}

.footerListWrap{
  display: flex;
  width: 85%;
  justify-content: space-around;
  margin: 100px 0px 50px 0px;
}

.footerList{
  display: flex;
  flex-direction: column;
}

.footerList a{
  color: var(--deep);
  transition: all .3s;
}

.footerList a:hover{
  color: var(--main);
}

.footerList ul{
  padding-left: 25px;
  margin: 5px 0px;
}

.footerList li::marker{
  color: var(--main);
}

.footerIcons{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 10px;
}

.footerIcons a{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--deep);
  transition: all .3s;  
}

.footerIcons a:hover{
  color: var(--main);
}

.footerIcons img{
  filter: invert(1);
}

/* privacy policy */
.privacyPolicyWrap{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 200px;
}

.privacyPolicy{
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* cart */
.uploaderMessage{
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--shallow);
  background: var(--main);
}

.uploaderMessage h1, .uploaderMessage span{
  color: var(--shallow);
  font-size: 40px;
  font-weight: 600;
}

.uploaderMessage span{
  animation: loadingRotation 1s infinite;
}

#itemQuantity{
  height: 60px;
  width: 50px;
  border-radius: 15px;
  border: 2px solid var(--deep);
  padding: 0px 10px;
}

.shoppingCartIcon .material-symbols-outlined{
  color: var(--shallow);
  cursor: pointer;
  transition: all .3s;
  font-size: 30px;
}

.shoppingCartIcon:hover .material-symbols-outlined{
  color: var(--main);
}

.secondaryNav .shoppingCartIcon .material-symbols-outlined{
  color: var(--deep);
}

.secondaryNav .shoppingCartIcon:hover .material-symbols-outlined{
  color: var(--main);
}

.cartMenu{
  display: none;
  flex-direction: column;
  height: auto;
  width: 35%;
  background: var(--shallow);
  right: 0;
  top: 0;
  animation: fadeInRight 1s;
  position: fixed;
  height: 100%;
  box-shadow: -10px 0px 40px var(--deep);
  z-index: 99999;
}

.cartMenu a{
  color: var(--deep);
  font-size: 10px;
  margin: 20px 0px 20px 20px;
  font-weight: 600;
  border-left: 5px solid var(--deep);
}

.cartMenu .closeButton{
  color: var(--deep);
  font-size: 50px;
  font-weight: 600;
  border: 0;
  box-shadow: none;
  margin-left: 20px;
  cursor: pointer;
  transition: all .3s;
}

.cartMenu .closeButton:hover{
  color: var(--main);
}

.itemWrapper{
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: scroll;
}

.itemWrapper h1{
  font-weight: 400;
  color: var(--deep);
}

.itemWrapper + .ctaSectionFlex{
  padding: 20px;
  justify-content: start;
}

#itemDescription{
  overflow: hidden;
  margin-bottom: 20px;
}

#itemDescriptionMore, #itemDescriptionLess{
  cursor: pointer;
  border: 2px solid var(--main);
  border-radius: 12px;
  padding: 3px 8px;
  align-items: center;
  display: flex;
  font-size: 12px;
  color: var(--main);
  margin: 10px;
}

#itemDescriptionButtons{
  width: 100%;
  display: flex;
  justify-content: start;
}

.cartProduct{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cartProduct img{
  width: 15%;
}

.cartProduct h1{
  font-size: 17px;
  color: black;
}

.cartProduct h2{
  font-size: 25px;
  color: var(--main);
  transition: all .1s;
  cursor: pointer;
}

.cartProduct h2:hover{
  color: var(--main);
}

.cartProduct .cartQuantityInc, .cartProduct .cartQuantityDec{
  color: var(--main);
}

.cartProduct a{
  margin: 0px;
  border: none;
  display: flex;
  align-items: center;
}

.cartProduct a h1{
  font-size: 18px;
  color: var(--main);
  transition: all .3s;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.cartProduct a:hover h1{
  color:  var(--main);
}

.deleteCartItem{
  cursor: pointer;
  color: var(--main);
  transition: all .2s;
}

.deleteCartItem:hover{
  color: var(--main);
}

.cartCounter{
  background: var(--main);
  height: 25px;
  width: 25px;
  border-radius: 50%;
  color: white;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(10px, -45px);
  cursor: pointer;
}

.invisibleForm{
  display: none;
}

#modalProductList{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  margin: 0px;
  width: 80%;
}

#modalProductList p, #modalProductList li{
  color: black;
}

#modalProductList li{
  width: 80%;
  padding-left: 10px;
}

/* login */
.loginWrap{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.loginBox{
  color: var(--main);
  padding: 50px;
  margin: 50px;
  border-radius: 30px;
  background: var(--shallow);
  border: 5px solid var(--main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.loginBox form{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.loginBox form label{
  color: var(--main);
  width: 100%;
}

.loginBox form input{
  border-radius: 30px;
  border: 3px solid var(--main);
  padding: 10px;
  width: 100%;
}

.failedMessage{
  padding: 300px;
  color: var(--main);
}

#registrationSwitch a, #loginSwitch a{
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all .3s;
  color: var(--main);
  font-weight: 600;
}

#registrationSwitch a:hover, #loginSwitch a:hover{
  transform: scale(1.05);
  color: var(--main);
}

#errorMessageLog, #errorMessageReg{
  color: var(--main);
  display: flex;
  align-items: center;
}

.profileWrap{
  min-height: 100vh;
  width: 100%;
  background: url("img/gradientbg.png");
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  gap: 30px;
}

.profileData{
  display: flex;
  flex-direction: column;
  width: 50%;
  border-radius: 10px;
  padding: 50px;
  background: linear-gradient(90deg, var(--main) 0%, var(--main) 100%);
  gap: 20px;
}

.profileData h1{
  color: var(--shallow);
  font-family: "Montserrat", sans-serif;
}

.profileData h2{
  color: var(--shallow);
}

.profileData a{
  color: var(--shallow);
  transition: all .3s;
}

.profileData a:hover{
  color: var(--main);
}

.productListRow a{
  color: var(--main);
  display: flex;
  gap: 5px;
  transition: all .3s;
}

.productListRow a:hover{
  color: var(--main);
}

.orderDetails{
  display: flex;
  justify-content: space-between;
  background: var(--shallow);
  padding: 10px 0px;
  border-radius: 15px;
}

.orderDetails p{
  font-size: 20px;
}

.productListRow h3{
  font-size: 28px;
}

.productListRow h4{
  padding: 10px 0px;
  font-size: 27px;
}

.productList{
  display: flex;
  flex-direction: column;
  border: 1px solid var(--deep);
  border-radius: 10px;
  padding: 20px;
  background: var(--shallow);
}

.productListWrap{
  display: flex;
  flex-direction: column;
}

.productListRow{
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--deep);
  padding: 5px;
}

.productList p{
  margin: 5px 0px;
}

.profileOrders{
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 20px 0px;
}

.checkoutWrap{
  display: flex;
  padding: 75px 35px;
  gap: 35px;
}

.checkoutData{
  width: 50%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--main) 0%, var(--main) 100%);
}

/*  */
.disabledButton{
  pointer-events: none;
  filter: brightness(0.5);
}

/* mobile */
.navbar-mobile{
  display: none;
}

#mobileMenuIcon, #mobileMenuIconWrapper, #mobileMenu, #mobileNav{
  display: none;
}

#openCategoryRoster{
  display: none;
}

/* ORDER */

.companyInfo{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.companyInfo input{
  width: 100%;
}

/* message log */
.logMessage{
  display: flex;
  height: 100px;
  width: 200px;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--main);
  background: var(--shallow);
  position: fixed;
  border-radius: 10px;
  right: 5%;
  top: 30%;
}

.logMessage span{
  font-size: 17px;
  color: 2px solid var(--main);
  font-weight: 400;
  padding: 0px 10px;
  text-align: center;
}







/* buttons */

.mainButton, .secondaryButton, .tertiaryButton, .quaternaryButton{
	z-index: 99;
	width: auto;
  min-width: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--main);
	height: 50px;
	transition: all .3s;
	cursor: pointer;
  border: 2px solid var(--main);
  border-radius: 10px;
  color: var(--shallow);
}

.secondaryButton{
	background: transparent;
  border: 2px solid var(--shallow);
}

.tertiaryButton{
	background: var(--deep);
  border: 2px solid var(--deep);
}

.quaternaryButton{
	background: transparent;
  border: 2px solid var(--main);
}

.mainButton span, .secondaryButton span, .tertiaryButton span, .quaternaryButton span{
	color: var(--deep) !important;
	font-weight: 600 !important;
	transition: all .3s;
	font-size: 17.5px;
	user-select: none;
  display: flex;
  align-items: center;
}

.secondaryButton span{
  color: var(--shallow) !important;
}

.tertiaryButton span{
  color: var(--shallow) !important;
  font-weight: 800;
}

.quaternaryButton span{
  color: var(--main) !important;
  font-weight: 800;
}

.mainButton:hover, .secondaryButton:hover, .tertiaryButton:hover, .quaternaryButton:hover{
  transform: scale(1.05);
}

.welcomeText .ctaSectionFlex .specialCta{
  background: linear-gradient(90deg, var(--main) 0%, var(--main) 100%);
  border: none;
  padding: 2px 20px;
}

.cartButton{
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main);
	height: 50px;
	width: 50px;
  transition: all .3s;
  border-radius: 5px;
}

.cartButton span{
  color: white;
  transition: all .3s;
}

.cartButton:hover{
  background: black;
}

.cartButton:hover span{
  color: var(--main);
}

#backToTop{
  align-items: center;
  position: fixed;
  background-color: var(--main);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  right: 50;
  cursor: pointer;
  bottom: 50;
  transition: all .3s;
  z-index: 999;
  border: 1px solid var(--shallow);
}

#backToTop span{
  color: var(--shallow);
  font-weight: 500;
  font-size: 20px;
  transition: all .3s;
}

#backToTop:hover{
  transform: scale(.9);
  box-shadow: 1px 1px var(--main);
}

#backToTop:hover > span{
  font-weight: 700;
}

.arrowButton{
  border-radius: 50%;
  border: 2px solid var(--shallow);
  padding: 10px;
  color: var(--shallow);
  cursor: pointer;
  transition: 1s all;
  animation: moveOver 1.5s;
}

.arrowButton:hover{
  transform: scale(1.2);
}

.servicePageLeft{
  color: white;
  background: black;
}

.servicePageRight{
  color: white;
}

.servicePageLeft, .servicePageRight{
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 85%;
  padding: 0px 100px 60px 0px;
  animation: moveOver 1s;
}

.servicePageLeft{
  align-items: center;
  padding: 0px 0px 60px 0px;
  width: 100%;
}

.servicePageLeft .serviceDescWrap{
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
}

.servicePageLeft h2, .servicePageRight h2{
  width: fit-content;
  font-size: 50px;
  padding: 50px 0px 0px 0px;
  font-family: "Comfortaa", sans-serif;
}

.servicePageLeft h2{
  color: white;
  border-bottom: 3px solid white;
}

.servicePageLeft h3{
  font-size: 35px;
  border-bottom: 3px solid white;
}

.servicePageLeft span{
  font-size: 12px;
  font-weight: 100;
}

.servicePageLeft p{
  font-size: 20px;
  font-weight: 200;
  margin: 20px 0px;
  text-align: center;
  line-height: 30px;
  width: 75%;
}

#bobWelcome{
  background: linear-gradient(270deg, rgba(0,0,0,1) 8%, rgba(12,9,121,0) 70%);
}

#bobContent{
  background: linear-gradient(270deg, rgba(0,0,0,1) 8%, rgba(12,9,121,0) 70%);
  align-items: center;
}

#bobContent .contact{
  padding: 80px 0px;
  width: 100%;
}

#bobContent h2{
  color: white;
  font-size: 65px;
  text-decoration: underline;
}

.playForward{
  border: 2px solid white;
  border-radius: 50%;
  margin: 20px 0px;
}

.playForward .material-symbols-outlined{
  font-size: 35px;
  cursor: pointer;
}

.playForward:hover .material-symbols-outlined{
  filter: drop-shadow(1px 1px 5px white);
}

.largeGalleryNoJs{
  padding: 50px 0px;
  display: grid;
  grid-template-columns: repeat(4, 300px);
  gap: 20px;
}

.largeGalleryNoJs img{
  width: 100%;
  cursor: pointer;
  transition: all .3s;
  max-height: 200px;
  object-fit: cover;
  max-width: 400px;
  object-position: center;
}

.largeGalleryNoJs img:hover{
  transform: scale(1.05);
}

.powerPointSlide{
  transition: all .1s;
  background: var(--main);
  border-radius: 20px;
  width: 80%;
  margin-bottom: 50px;
}

.powerPointSlideAnimLeft{
  animation: fadeInRight 2s;
}

.powerPointSlideAnimRight{
  animation: fadeInLeft 2s;
}