html {
	scroll-behavior: smooth;
}

body {
  /*background-color: rgb(23, 23, 23);
  
  padding: 0;
  margin: 0;*/
  
  /*Grid*/
  animation: background-pan 10s linear infinite;
  background: linear-gradient(
    to right,
    var(--g1),
    var(--g2),
    var(--g1)
  );
  background-size: 200%;
  height: 100%;
  /*Grid Fixar scroll*/
  /*overflow: hidden;*/
  margin: 0px;
}

/*Grid*/
body.toggled {
  animation: none;
}

header {
  position: relative;
  z-index: 2;
}

/*.glitch1:hover{
    background-color: rgba(226, 226, 226, 0.4);
    color: rgba(23, 23, 23, 1);
    padding: 10px;
    border-radius: 15px;
}

.glitch2:hover{
    background-color: rgba(226, 226, 226, 0.4);
    color: rgba(23, 23, 23, 1);
    padding: 10px;
    border-radius: 15px;
}

.glitch3:hover{
    background-color: rgba(226, 226, 226, 0.4);
    color: rgba(23, 23, 23, 1);
    padding: 10px;
    border-radius: 15px;
}

.glitch4:hover{
    background-color: rgba(226, 226, 226, 0.4);
    color: rgba(23, 23, 23, 1);
    padding: 10px;
    border-radius: 15px;
}

.glitch5:hover{
    background-color: rgba(226, 226, 226, 0.4);
    color: rgba(23, 23, 23, 1);
    padding: 10px;
    border-radius: 15px;
}
*/

ul {
  margin: 0vw;
  padding-top: 7vw;
  padding-bottom: 7vw;
  
  font-family: 'Montserrat';
  font-size: clamp(1rem, 1vw, 6rem);
  
  position: relative;
  display: flex;
  flex-direction: column;
  color: rgba(226, 226, 226, 1);
  overflow: hidden;
}

/*BACKGROUND TEXT*/

ul li:before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(226, 226, 226, 1);
  font-size: 6vw;
  font-weight: 700;
  pointer-events: none;
  opacity: 0.5;
  letter-spacing: 20px;
  /*padding-left: 100px;
  padding-right: 20vw;*/
  padding-right: 7vw;
  transition: 500ms;
  white-space: nowrap;
  z-index: 2;
  /*-webkit-text-stroke: 1px rgba(23, 23, 23, 0.2);*/
}

ul li:hover:before {
  opacity: 1;
  letter-spacing: 0px;
}

ul li {
  list-style: none;
  border-radius: 3px;
  position: relative;
}

ul li h2 {
  position: relative;
  display: inline-block;
  padding: 6px 15px;
  text-decoration: none;
  background: rgba(226, 226, 226, 1);
  color: rgba(23, 23, 23, 1);
  text-transform: uppercase;
  letter-spacing: 2px;
  overflow: hidden;
  transition: 500ms;
  z-index: 25;
  /*SYNLIGHETEN PÅ LÄNKARNA I LÅDORNA*/
  opacity: 0;
}

ul:hover li h2 {
  opacity: 0;
}

ul li h2:hover {
  transform: scale(1.4);
  z-index: 1000;
  background: rgba(226, 226, 226, 0.2);
  /*SYNLIGHET PÅ LÄNKARNA PÅ HOVER*/
  opacity: 0;
}

ul li h2:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(35deg);
  transition: 0s;
}

ul li h2:hover:before {
  left: calc(100% + 100px);
  transition: 500ms;
  transition-delay: 200ms;
}

div > ul > li > img {
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: transform 250ms, opacity 250ms;
  pointer-events: none;
  width: min(50vw, 800px);
  z-index: 1;
}

ul > li:hover > img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

h1 {
  margin: 15vw;
  font-family: 'Montserrat';
  font-size: clamp(1rem, 6vw, 6rem);
  position: absolute;
  color: rgb(226, 226, 226);
}

h1 > .linearEffect {
  animation: background-pan 3s linear infinite;
  background: linear-gradient(
    to right,
  var(--purple),
  var(--violet),
  var(--pink),
  var(--purple)
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

@keyframes background-pan {
    from {
        background-position: 0% center;
    }
    
    to {
        background-position: -200% center;
    }
}

:root {
  --purple: rgb(123, 31, 162);
  --violet: rgb(103, 58, 186);
  --pink: rgb(244, 143, 177);
  /*Grid*/
  --g1: rgb(98, 0, 234);
  --g2: rgb(236, 64, 122);
}

::-webkit-scrollbar {
  /*width: 1vw;*/
  width: 10px;
  background-color: rgba(23, 23, 23, 0.9);
}

#scrollPath {
  position: fixed;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}

#progressbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 10px;
  z-index: 2;
  /*height: 100%;*/
  background: linear-gradient(to top, #008aff, #00ffe7);
  animation: animate 5s linear infinite;
}

@keyframes animate {
  0%, 100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(360deg);
  }
}

#progressbar:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #008aff, #00ffe7);
  filter: blur(10px);
}

#progressbar:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #008aff, #00ffe7);
  filter: blur(10px);
}




::-webkit-scrollbar-track {
  background-color: rgba(23, 23, 23, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(226, 226, 226, 0.4);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(226, 226, 226, 0.6);
}











/*Grid*/

@keyframes background-pan {
  from {
    background-position: 0% center;
  }
  
  to {
    background-position: -200% center;
  }
}

#tiles {
  height: calc(100vh - 1px);
  width: calc(100vw - 1px);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  /*top: 100vh;*/
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  grid-template-rows: repeat(var(--rows), 1fr);
}

.tile {
  cursor: pointer;
  position: relative;
}

.tile:hover:before {
  background-color: rgb(226, 226, 226);
}

.tile:before {
  background-color: rgb(23, 23, 23);
  content: "";
  inset: 0.5px;
  position: absolute;
}



/*Grind end*/


#titel{
  font-family: 'Montserrat';
  font-size: xx-large; /*clamp(2rem, 2vw, 8rem)*/
  position: absolute;
  color: rgb(226, 226, 226);
  /*left: 14vw;*/
  text-align: center;
  margin: auto;
  padding: 40px;
}

#textBild{
    height: 110px;
    width: 297px;
    background-image: url("img/css/halvsilver2.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 7%;
    position: absolute;
    left: -160px;
    top: 0;
    z-index: 35;
}

#logo{
  display: none;
  
  height: 13vh;
  right: 5vw;
  opacity: 0.55;
  position: absolute;
  border-style: solid;
  border-color: rgb(23, 23, 23);
  z-index: 4;
}



#menu {
  height: 100vh;
  position: relative;
  /*position: inherit;*/
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 30px;
  
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: double;
  border-left-style: none;
  
  border-width: 1vh;
  border-color: rgb(266, 266, 266);
  
}

.menu-items{
  color: rgb(226, 226, 226);
  font-size: clamp(3rem, 4vw, 5rem);
  font-family: 'Montserrat';
  
  display: block;
  text-decoration: none;
  
  scroll-behavior: smooth;
  padding: clamp(0.25rem, 0.5vw, 1rem) 0rem;
  transition: opacity 400ms ease;
}


#menu-items{
  margin-left: clamp(4rem, 10vw, 48rem);
  position: relative;
  z-index: 3;
}



#menu-items:hover > .menu-items {
  opacity: 0.3;
}

#menu-items:hover > .menu-items:hover {
  opacity: 1;
}

#pattern {
  height: 100vh;
  width: 98vw;
  
  
  background-image: radial-gradient(rgba(2255, 255, 255, 0.1) 9%, transparent 9%);
  
  background-position: 0% 0%;
  background-size: 12vmin 12vmin;
  
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  
  transition: opacity 800ms ease, 
    background-size 800ms ease, background-position 800ms ease;
}

/*#pattern {
  height: 100vh;
  width: 100vw;
  
  background-image: radial-gradient(
  rgba(2255, 255, 255, 0.1) 9%, transparant 9%);
  background-position: 0% 0%;
  background-size: 12vmin 12vmin;
  
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  
  transition: opacity 800ms ease, 
    background-size 800ms ease;
}*/

#menu-items:hover ~ #pattern {
  background-size: 11vmin 11vmin;
  opacity: 0.5;
}



#menu[data-active-index="0"] > #pattern {
  background-position: 0% -20%;
}

#menu[data-active-index="1"] > #pattern {
  background-position: 0% -40%;
}

#menu[data-active-index="2"] > #pattern {
  background-position: 0% -60%;
}

#menu[data-active-index="3"] > #pattern {
  background-position: 0% -80%;
}

#menu[data-active-index="4"] > #pattern {
  background-position: 0% -100%;
}


#bg-image {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  
  border-style: solid;
  border-width: 0px 0px 15px 0px;
  border-color: rgba(255, 255, 255, 1);
  
  background-image: url("https://images.unsplash.com/photo-1664838436511-b53fc16f2578?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80");
  
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
  background-position: center 30%;
  /*background-position: center 40px;*/
  background-size: cover;
  opacity: 0.15;
  
  transition: opacity 800ms ease, 
    background-size 800ms ease,
    background-position 800ms ease;
}


#svartBG{
    height: 100vh;
    width: 100%;
    background-color: rgb(23, 23, 23);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}



/*Logo hover thiny*/

/*
body:has(.card[data-color="blue"]:hover) {
  background-color: rgb(var(--blue-rgb) / 25%);
}
*/


.card {
  background-size: cover;
  background-position: center;
  position: absolute;
  cursor: pointer;
  outline: none;
  transition: scale 300ms;
  right: 0;
  top: 0;
}

.card .card-front-image {
  position: relative;
  z-index: 2;
}

.card .card-image {
  height: 100vh;
  width: 100%;
  /*width: clamp(150px, 10vw, 250px);*/
  /*aspect-ratio: 2 / 3;*/
  border-radius: clamp(0.5rem, 0.75vw, 2rem);
}

.card-faders {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  opacity: 0;
  transition: opacity 1500ms;
  pointer-events: none;
}

.card:hover .card-faders {
  opacity: 1;
}

.card:active {
  scale: 0.98;
}

.card-fader {
  position: absolute;
  left: 0px;
  top: 0px;
}

.card-fader:nth-child(odd) {
  animation: fade-left 3s linear infinite;
}

/*
.card-fader:nth-child(even) {
  animation: fade-right 3s linear infinite;
}
*/

.card-fader:is(:nth-child(3), :nth-child(4)) {
  animation-delay: 750ms;
}

.card-fader:is(:nth-child(5), :nth-child(6)) {
  animation-delay: 1500ms;
}

.card-fader:is(:nth-child(7), :nth-child(8)) {
  animation-delay: 2250ms;
}

/*
@media(max-width: 1200px) {
  body {    
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  #cards {
    flex-direction: column; 
    align-items: center;
    gap: 4rem;
    padding: 4rem;
  }
  
  .card .card-image {
    width: 400px;    
  }
}

@media(max-width: 600px) {
  #cards {
    gap: 2rem;
    padding: 2rem;
  }
  
  .card {
    width: 80%;    
  }
  
  .card .card-image {
    width: 100%;    
  }
}
*/

@keyframes fade-left {
  from {
    scale: 1;
    translate: 0%;
    opacity: 1;
  }
  
  to {
    scale: 0.8;
    translate: -30%;
    opacity: 0;
  }
}

@keyframes fade-right {
  from {
    scale: 1;
    translate: 0%;
    opacity: 1;
  }
  
  to {
    scale: 0.8;
    translate: 30%;
    opacity: 0;
  }
}


/*End of logo hover thingy*/

/*
#bg-logo{
    height: 100vh;
    width: 100%;
    
    background-image: url("img/css/halvsilver2.png");
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: 1;
    
    background-position: right top;
    background-size: 15%;
    background-repeat: no-repeat;
}
*/

/*
#bg-logo:hover{
    background-size: 40%;
}
*/


#circle {
  display: inherit;
  height: 1000px;
  width: 1000px;
  /*width: 1000px;*/
  background-image: url("img/css/circle4.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  animation-name: spin;
  animation-duration: 9000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
  z-index: 1;
  transition: 1300ms ease;
  overflow: hidden;
  opacity: 0.6;
  object-fit: contain;
  /* transform: rotate(3deg); */
   /* transform: rotate(0.3rad);/ */
   /* transform: rotate(3grad); */ 
   /* transform: rotate(.03turn);  */
}




#menu-items:hover ~ #circle {
  height: 800px;
  width: 800px;
  background-size: cover;
  transition: 800ms ease;
  overflow: hidden;
  opacity: 0.2;
  animation-duration: 9000ms;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}



#menu-items:hover ~ #bg-image {
  background-size: cover;
  opacity: 0.10;
}

#menu[data-active-index="0"] > #bg-image {
  background-position: center 30%;
}

#menu[data-active-index="1"] > #bg-image {
  background-position: center 45%;
}

#menu[data-active-index="2"] > #bg-image {
  background-position: center 60%;
}

#menu[data-active-index="3"] > #bg-image {
  background-position: center 75%;
}

#menu[data-active-index="4"] > #bg-image {
  background-position: center 90%;
}


/*ABOUT US PORTION*/
#aboutText {
  font-family: 'Montserrat';
  font-size: 4vw; /*clamp(2rem, 2vw, 8rem)*/
  color: rgb(226, 226, 226);
  margin: auto;
  width: 50%;
  text-align: center;
  display: block;
  z-index: 2000;
}

.radGrad{
    
    
}

#aboutUs {
  /*background-color: rgba(226, 226, 226, 0.1);*/
  background-image: radial-gradient(rgba(2103, 58, 183, 0.1) 9%, transparent 9%);
  background-position: 0% 0%;
  background-size: 12vmin 12vmin;
  height: 60vmin;
  display: grid;
  overflow: hidden;
  z-index: 5;
  place-items: center;
  position: relative;
  margin-left: 16%;
  margin-right: 16%;
  
  /*left: 16%;
  right: -16%;*/
  margin-top: 20px;
  margin-bottom: 50px;
  padding: 0px;
  border-style: ridge;
  border-color: rgba(23, 23, 23, 1);
  border-width: 10px 0px 5px 30px;
  text-align: center;
  /*box-sizing: border-box;*/
}

#aboutUs > h1 {
    font-size: 3vw;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 1%;
    padding-right: 1%;
    margin: 1%;
}

/*NEXT PORTION AKA PORTFOLIO*/
#portText {
  font-family: 'Montserrat';
  font-size: 4vw; /*clamp(2rem, 2vw, 8rem)*/
  color: rgb(226, 226, 226);
  margin: auto;
  width: 50%;
  text-align: center;
  display: block;
  z-index: 2;
}

#portfolio {
  background-image: radial-gradient(rgba(2255, 255, 255, 0.1) 9%, transparent 9%);
  background-position: 0% 0%;
  background-size: 12vmin 12vmin;
  height: 100%;
  overflow: hidden;
  z-index: 5;
  position: relative;
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 20px;
  margin-bottom: 50px;
  border-style: outset;
  border-color: rgba(23, 23, 23, 1);
  border-width: 5px 20px 5px 0px;
  cursor: pointer;
  transition: opacity 800ms ease, 
    background-size 800ms ease;
}

#portfolio::before {
  background: radial-gradient(
  80vw circle at var(--mouse-x) var(--mouse-y),
  rgba(226, 226, 226, 0.05), transparent 40%);
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  position: absolute;
  content: "";
}

#portfolio:hover, #portfolio:active {
  background-size: 10vmin 10vmin;
  background-opacity: 0.25;
  transition: opacity 800ms ease, 
    background-size 800ms ease;
}

.image {
  width: 50vmin;
  position: absolute;
  transform: translate(-100%, -100%);
  border-style: solid;
  border-color: rgb(226, 226, 226);
}

.image[data-status="inactive"] {
  display: none;
}

.image[data-status="active"] {
  display: block;
}

#portfolioBg2 {
  width: 100%;
  height: 105vh;
  background-size: 70%;
  background-image: url("img/css/gulMedRevTrans.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  z-index: 1;
}



/*OFFER PORTION*/

#offerText {
  font-family: 'Montserrat';
  font-size: 4vw; /*clamp(2rem, 2vw, 8rem)*/
  color: rgb(226, 226, 226);
  margin: auto;
  width: 50%;
  text-align: center;
  display: block;
  z-index: 2;
}

#offers {
  background-color: rgba(226, 226, 226, 0.1);
  text-align: center;
  height: 100%;
  margin: 0px;
  overflow: hidden;
  z-index: 5;
  position: relative;
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 20px;
  margin-bottom: 20px;
  
  border-style: ridge;
  border-color: rgba(23, 23, 23, 1);
  border-width: 10px 0px 0px 30px;
}

#offerBg {
  width: 100%;
  height: 100%;
  background-size: 70%;
  /*background-image: url("https://cdn.discordapp.com/attachments/1026682064533192734/1070087211799806002/Gulin_Media_org.jpg");*/
  /*background-image: url("https://cdn.discordapp.com/attachments/1026682064533192734/1027312087418032291/Gulin_Media_transparant.png");*/
  background-image: url("img/css/gulMedTrans2.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.1);
  /*opacity: 0.4;*/
  z-index: -11;
  /*position: absolute;*/
}

#offers #offerBg #ulnav li img {
  border-style: solid;
  border-color: rgba(23, 23, 23, 1);
  border-width: 5px;
}
#offers #offerBg #ulnav li h2 {
  
}
/*CONTACT PORTION*/

#contactText {
  font-family: 'Montserrat';
  font-size: 4vw; /*clamp(2rem, 2vw, 8rem)*/
  color: rgb(226, 226, 226);
  margin: auto;
  width: 50%;
  text-align: center;
  display: block;
  z-index: 20;
}

/*#contact {
  background-color: rgba(226, 226, 226, 0.1);
  height: 100vh;
  margin: 0px;
  overflow: hidden;
  z-index: 5;
  position: relative;
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 20px;
  margin-bottom: 20px;
  border-style: ridge;
  border-color: rgba(23, 23, 23, 1);
}*/

.contact2 {
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 20px;
  position: relative;
  min-height: 100vh;
  padding: 50px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url("img/css/ChessRender.png");
  background-size: cover;
  background-position: center;
  border-style: solid;
  border-color: rgba(226, 226, 226, 1);
  border-width: 1px;
  /*opacity: 0.2;*/
}


.contact2 .content {
  max-width: 800px;
  text-align: center;
}

.contact2 .content h2{
  font-family: 'Montserrat';
  font-size: 36px;
  font-weight: 500;
  color: rgba(226, 226, 226, 1);
}

.contact2 .content p{
  font-family: 'Montserrat';
  font-weight: 300;
  color: rgba(226, 226, 226, 1);
  background-color: rgba(23, 23, 23, 0.2);
  padding-top: 8px;
  padding-bottom: 8px;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.container .contactInfo {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.container .contactInfo .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}

.container .contactInfo .box .icon {
  min-width: 60px;
  height: 60px;
  background-color: rgba(226, 226, 226, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
}

.container .contactInfo .box .contactText {
  font-family: 'Montserrat';
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: rgba(226, 226, 226, 1);
  flex-direction: column;
  font-weight: 300;
  background-color: rgba(23, 23, 23, 0.2);
  padding-left: 16px;
  padding-right: 16px;
}

.container .contactInfo .box .contactText h2 {
  font-family: 'Montserrat';
  font-weight: 300;
  color: rgba(226, 226, 226, 1);
}

.contactForm {
  width: 40%;
  padding: 40px;
  background: rgba(226, 226, 226, 0.8);
  border-style: solid;
  border-color: rgba(23, 23, 23, 1);
  border-width: 1px;
}

.contactForm h2 {
  font-family: 'Montserrat';
  font-size: 30px;
  color: rgba(23, 23, 23, 1);
  font-weight: 500;
}

.contactForm .inputBox {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contactForm .inputBox input, 
.contactForm .inputBox textarea {
  font-family: 'Montserrat';
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid rgba(23, 23, 23, 0.2);
  outline: none;
  resize: none;
}

.contactForm .inputBox span {
  font-family: 'Montserrat';
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 500ms;
  color: rgba(23, 23, 23, 0.5);
}

.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span{
  color: rgba(23, 23, 23, 1);
  font-size: 12px;
  transform: translateY(-20px);
}

.contactForm .inputBox input[type="submit"] {
  width: 100px;
  background: rgba(23, 23, 23, 0.2);
  color: rgba(246, 246, 246, 1);
}

#subButt input:hover {
  color: rgba(255, 255, 255, 1);
  border-style: solid;
  border-width: 1px;
  border-color: rgba(23, 23, 23, 1);
}

#gulmailActive {
  display: none;
}

/*#bababoi{
  font-size: 12px;
}*/

#partnerSwitch {
  display: block;
}

#partnerTextdiv {
  /*Hä på denna för att visa partners + den ovan biten*/
  display: block;
  margin-top: 30px;
  text-align: center;
  
}

#partnerText {
  font-family: 'Montserrat';
  font-size: 4vw; /*clamp(2rem, 2vw, 8rem)*/
  color: rgb(226, 226, 226);
  margin-left: 6%;
  margin-right: 6%;
  text-align: center;
  z-index: 2;
}

#partnerBox {
  background-color: rgba(226, 226, 226, 0.1);
  text-align: center;
  height: 100%;
  margin: 0px;
  padding-bottom: 50px;
  overflow: hidden;
  z-index: 5;
  position: relative;
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 20px;
  margin-bottom: 20px;
  
  border-style: ridge;
  border-color: rgba(23, 23, 23, 1);
  border-width: 10px 0px 0px 30px;
}

.partners {
  background-color: rgba(226, 226, 226, 1);
  background-size: cover;
  background-position: center;
  background-repeat: none;
  width: 120px;
  height: 120px;
  display: inline-flex;
  align-text: center;
  margin-top: 30px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 50%;
  border-style: dotted;
  border-width: 2px;
  border-color: rgba(226, 226, 226, 1);
}

#tundell {
  background-image: url("img/css/TundellSalmsonV2.png");
}

#partaj {
  background-image: url("img/css/partaj2.png");
}

#emma {
  background-image: url("img/css/emmahellgren.jpg");
}

.partnerName {
  font-family: 'Montserrat';
  font-size: 20px; /*clamp(2rem, 2vw, 8rem)*/
  color: rgb(226, 226, 226);
  text-align: center;
  margin-top: 130px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .contact2 {
    padding: 50px;
  }
  .container {
    flex-direction: column;
  }
  .container .contactInfo,
  .contactForm {
    width: 100%;
  }
  #gulmailHidden {
    display: none;
  }
  #gulmailActive {
  display: inline;
  }
  #logo {
    display: none;
  }
  ul li:before {
    letter-spacing: 10px;
    
  }
  /*#offers {
    height: 160vh;
  }*/
}

@media only screen and (max-width: 480px) {
  #portfolio[data-status="active"]{
    background-size: 10vmin 10vmin;
  background-opacity: 0.25;
  transition: opacity 800ms ease, 
    background-size 800ms ease;
  }
  ul {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }
  ul li:before {
    letter-spacing: 4px;
    
  }
  /*#offers {
    height: 165vh;
  }*/
}