/* Root Style */
@font-face {
  font-family: 'segoeui';
  src: url(../fonts/SegoeUi/segoeui.ttf) format("truetype");
}

@font-face {
  font-family: 'segoeui-bold';
  src: url(../fonts/SegoeUi/segoeuib.ttf) format("truetype");
}

@font-face {
  font-family: 'segoeui-semibold';
  src: url(../fonts/SegoeUi/seguisb.ttf) format("truetype");
}

@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Black.ttf) format("truetype");
}

:root {
  --SegoeUi-regular: "segoeui";
  --SegoeUi-bold: 'segoeui-bold';
  --SegoeUi-semibold: 'segoeui-semibold';
  --Montserrat: 'Montserrat';
  --secondary-color: #019191;
  --gray-color: #707070;
  --gray-dark-color: #333333;
  --primary-color: #05af52;
  --pink-color: #E0E0E0;
  --bg-color: #F1F2F2;
  --card-bg-color: #F8F8F8;
}



body {
  background-color: var(--bg-color);
  font-family: var(--SegoeUi-regular);
  margin: 0;
}

footer {
  border-top: 1px solid #E0E0E0;
  padding: 10px;
  font-size: 13px;
  color: var(--gray-color);
}

footer a {
  font-family: var(--SegoeUi-semibold);
}


ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

button {
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
  height: 22vh;
}

.header {
  background-color: #272727;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5rem;
  overflow: hidden;
  gap: 1rem;
}

.brands-container {
  border-top: 1px solid white;
  padding-top: 1.4rem;
}

main {
  overflow: hidden;
  position: relative;
}

.brands {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.brands .logo {
  width: 75%;
}

.first-lighting {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.first-lighting img {
  width: 70%;
  display: flex;
}

@media (min-width: 768px) {
  .first-lighting img {
    width: 75%;
  }

  .brands .logo {
    width: 100%;
  }
}

@media (min-width: 2000px) {
  .page-content .content .text{
    right: 0 !important;
    left: unset !important;
  }
  .page-content .bulb{
    width: 929px !important;
    bottom: -144px !important;
    margin-left: -300px !important;
  }
  .desktop-title{
    width: 100%;
  }
}
@media (min-width: 1700px) and (max-width:2000px) {
  .page-content .content .text{
    left: 550px !important;
  }
  .page-content .bulb{
    width: 929px !important;
    bottom: -144px !important;
    margin-left: -300px !important;
  }
  .desktop-title{
    width: 100%;
  }
}
@media (min-width: 1024px) and (max-height: 1199px) {
  .header {
    background-color: #272727;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 10.9rem 0.8rem 6rem;
    overflow: hidden;
    gap: 1rem;
    /* height: 10vh; */
  }

  .first-lighting {
    justify-content: end;
  }

  .first-lighting img {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .header{
    flex-direction: row !important;
    min-height: 11vh;
  }
  .brands-container{
    border-top: none;
    padding-top: 0;
  }
}

@media (min-width: 1440px) {
  .first-lighting img{
    width: 40%;
  }
}

@media (min-width: 2000px) {
  .brands-container{
    flex-basis: 60%;

  }
  .brands {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9rem;
}
}

.landing {
  margin: 3rem 0 0;
  display: flex;
  flex-direction: column-reverse;
  justify-content: start;
  align-items: center;
  position: relative;
  padding: 0;
}

.lamp {
  display: flex;
  justify-content: center;
}

.lamp img {
  width: 90%;
  margin-bottom: -20%;
  z-index: -2;

}

.the-one {
  display: flex;
  justify-content: center;
}

.the-one img.descktop {
  display: none;
}

.the-one img.mobile {
  width: 70%;
}



/* .landing{
  height: calc(100vh - 21.5rem);
}

.contact-container{
  height: 11rem;
}

.lamp{
  height: 50%;
}
.the-one{
  height: 50%;
} */
@media (max-width: 450px) {
  .landing{
    height: calc(100vh - 21.5rem);
  }
  
  .contact-container{
    height: 11rem;
  }
  
  .lamp{
    height: 60%;
  }
  .the-one{
    height: 40%;
  }

  .contact-list li:last-child span{
    width: auto !important;
    white-space: normal;
  }
  .page-content .content .text{
    bottom:60px !important
  }
}


@media (min-width: 992px) {
  .the-one img.mobile {
    display: none;
  }

  .the-one img.descktop {
    display: block;
  }

  .landing {
    justify-content: start;
    height: calc(100vh - 29vh);
  }

  .lamp {
    position: relative;
    height: 100%;
  }

  .lamp img {
    width: 120%;
    /* margin-left: -13rem; */
    /* margin-top: -5rem; */
    position: absolute;
    left: -10rem;
    top: -37%;
    margin-bottom: 0;
    
  }

  .the-one {
    height: 100%;
    position: relative;
  }

  .the-one img.descktop {
    position: absolute;
    width: 115%;
    right: 3rem;
    top: 4rem;
  }

}

@media (min-width: 1024px) {
  .landing {
    height: calc(100vh - 30.5vh);
  }
}

@media (min-width: 1601px) {
  .header .brands-container .logo{
    width: 110%;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .header .brands-container .logo{
    width: 150%;
  }
}
@media (min-width: 1200px) {
  .lamp img {
    width: 100%;
    /* margin-left: -13rem; */
    /* margin-top: -5rem; */
    position: absolute;
    left: -10rem;
    top: -37%;
  }

  .the-one img.descktop {
    position: absolute;
    width: 115%;
    right: 3rem;
    top: 1rem;
  }
  .landing {
    height: calc(100vh - 30vh);
  }
  .header .first-lighting{
    width: 40%;
  }
  .first-lighting img{
    width: 65%;
  }
  .header .brands-container{
    width: 60%;
  }
  .header .brands-container .brands{
    gap: 7rem;
  }
}

/* @media (min-width: 1200px) {
    .landing {
        height: calc(100vh - 28vh);
    }
} */

@media (min-width: 2560px) {
    .landing {
        height: calc(100vh - 24.5vh);
    }
}

@media (width: 1024px) and (min-height: 1100px) {
  .lamp img {
        width: 186%;
        left: -24rem;
        top: 4%;
    }
    .the-one img.descktop {
        width: 122%;
        right: 1rem;
        top: 24rem;
    }
}

@media (min-width: 992px) and (height: 800px) {
  .landing {
    height: calc(100vh - 26vh);
  }
  .lamp img {
    width: 130%;
    left: -17rem;
    top: -31%;

  }
  .the-one img.descktop {
    width: 122%;
    right: 1rem;
    top: 7rem;
  }
}

@media (min-width: 1440px) and (height: 800px) {
  .lamp img {
    width: 115%;
    left: -14rem;
    top: -31%;

  }
  .the-one img.descktop {
    width: 122%;
    right: 1rem;
    top: 3rem;
  }
}

.contact-container {
  position: static;
  bottom: 0;
  right: 0;
}

.contact {
  background: #231F20;
  color: white;
  float: right;
  position: relative;
  width: 100% !important;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
  padding: 20px;

}

.contact::after {
  content: '';
  height: 100%;
  background-color: #FFB703;
  position: absolute;
  z-index: -2;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  right: -30%;
  transform: translate(-50%);
  width: 80%;
  top: -7px;
}

.contact-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  flex-basis: 30%;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.contact-list li img {
  height: 20px;
  width: 20px;
}

.contact-list li span {
  font-size: 1rem;
}

.contact-list li:last-child {
  flex-basis: 100%;
  width: max-content;
}

.contact-list li:last-child span{
  width: max-content;
}

.contact-list li:last-child img {
  display: none;
}

.mobile-title{
  display: none;
}
@media (min-width: 768px) {
  .contact-list {
    gap: 1rem !important;
  }
  .contact-list li img {
      height: 25px;
      width: 25px;
  }
}

@media (min-width: 992px) {
 .contact-container {
    position: fixed;
  }
  .contact{
    background: url(../images/footer.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: fit-content !important;
    float: right !important;
    padding: 9px 48px 8px 6.5rem !important;
    /* border-top-left-radius: 50px !important; */
    border-top-right-radius: 0 !important;
  }
  .contact-list {
      gap: 2rem !important;
      display: flex;
      justify-content: end;
  }
  .contact-list li {
      flex-direction: row;
      flex-basis: auto;
      align-items: center;
      gap: .5rem;
  }
  .contact-list li img {
      height: 15px;
      width: 17px;
  }
  .contact-list li:last-child {
    flex-basis: 30%;
  }

  .contact-list li:last-child img {
    display: block;
  }
  
  .contact-list li span {
    font-size: 0.7rem !important;
  }

  .contact::after {
    border-top-left-radius: 8rem;
    border-top-right-radius: 0;
    /* right: 0; */
    width: 90%;
    top: -.3rem;
    right: 0;
    transform: translate(0);
  }
}

@media (min-width: 1024px) {
  .contact {
      padding: 9px 48px 8px 6.5rem !important;
  }
  .contact-list {
    gap: 2rem !important;
  }

  .contact-list li span {
    font-size: 0.7rem !important;
  }
}

@media (min-width: 1501px) {
  .contact {
    font-size: 0.9rem !important;
  }

  .contact-list {
    gap: 3rem !important;
  }

  .contact-list li span {
    font-size: 1.3rem !important;
  }
}
@media (min-width: 1220px) and ((max-width: 1500px)) {
  .contact {
    font-size: 0.9rem !important;
  }

  .contact-list {
    gap: 3rem !important;
  }

  .contact-list li span {
    font-size: 1rem !important;
  }
}

@media (min-width: 2000px) {
  .contact{
    width: 102% !important;
    padding: 1rem 1.5rem 1rem 7rem;
  }
  .contact-list li span {
      font-size: 1.8rem !important;
  }
  .contact-list li img {
      height: 35px;
      width: 35px;
  }
} 

.overlay-top {
  position: absolute;
  z-index: -10;
  top: 0;
}

.overlay-top img {
  rotate: 180deg;
}

.overlay-bottom {
  position: absolute;
  z-index: -10;
  bottom: 0;
}

.header-overlay-top{
  display: none;
}

@media (min-width: 992px) {
  main .overlay-top {
    display: none;
  }
  .header-overlay-top{
    display: block;
  }
  header{
    height: 22vh;
  }
}

.page-content{
  height: calc(100vh - 22vh);
  width: 100%;
  position: relative;
  display: flex;
}
.desktop-title{
  width: 96%;
}
.page-content img{
  max-width: 100%;
  max-height: 100%;
}
.page-content .bulb{
  position: absolute;
  left: 0;
  width: 620px;
  margin-left: -210px;
  bottom: -95px;
}
.page-content .content{
  height: calc(100% - 40px);
  margin-left: auto;
  margin-top: auto;
  margin-bottom: 65px;
  margin-right:70px;
  display: flex;
  align-items: center;
}
.page-content .content img{
  margin: auto;
  height: calc( 100% - 80px);
}
.page-content .content .text{
  position: absolute;
  left: 350px;
}
.page-content .content .text p *{
  font-family: var(--Montserrat);
  font-weight: bold;
  text-transform: uppercase;
  color: #FFB703;
  margin: 0;
}
.mobile-title-img{
  display: none;
}
@media screen and  (min-height:1024px) and (max-width:1024px){
  .page-content .bulb{
    bottom:-160px !important;
  }
  .brands-container {
    border-top: 1px solid white;
    padding-top: 1.4rem;
  }
  .header {
    flex-direction: column-reverse !important;
    min-height: fit-content;
  }
  .contact-container{
    position: static !important;
  }
}
@media screen and  (min-height:1200px) and (max-width:1024px){
  .page-content .bulb{
    position: relative;
    width: auto;
    margin-left: 0px;
    bottom:-145px !important;
  }
  .content img{
    width: 80%;
  }
   .header-overlay-top{
    display: none !important;
  }
}
@media screen and  (min-height:1200px) {
 
}
@media screen and ( max-width:992px ) , (min-height:1200px){
  .mobile-title-img{
    display: block;
  }
  .page-content .content .text span{
    margin-right:auto !important;
    margin-left:auto !important;
  }
  .header{
    padding: 1rem 2rem;
  }
  .mobile-title{
    display: block;
  }
  .desktop-title{
    display: none;
  }
  header{
    height: fit-content;
  }
  .brands .logo{
    width: 100%;
  }
  .page-content{
    height: fit-content !important;
    flex-direction: column-reverse;
  }
  .page-content .bulb{
    position: relative;
    width: auto;
    margin-left: 0px;
    bottom:-119px;
  }
  .page-content .content{
    width: auto;
    margin: 0;
    padding: 50px;
    position: relative;
  }
  .page-content .content .text{
    left: 0;
    right: 0;
    bottom: 70px;
    text-align: center;
  }
  .page-content .content .text p{
    display: flex;
    flex-direction: column;
    margin: auto;
  }
  .page-content .content .text p span{
    font-size: 7vw;
  }
  .page-content .content .text span{
    font-size: 3vw;
  }
  .contact-list span{
    text-wrap: nowrap;
  }
}
@media screen and ( max-width:478px ){
  .page-content .bulb{
    bottom: -66px;
  }
}