@import url(fonts.css);
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-black-1: #040303;
  --color-green: #2daa02;
  --color-red: #da0707;
  --color-light-green: #d4f8c6;
  --color-yellow: #e8e176;
  --color-blue: #96b2ff;
  --color-light-blue: #b0c1f7;
  --color-gray-900: #333333;
  --color-gray-400: #00000063;
  --color-gray-200: #dbdbdb;
  --color-gray-100: #f3f4f6;
  --nav-hover-bg: rgba(0, 0, 0, 0.03);
  --header-space: 5rem 0;
  --border-color: rgba(0, 0, 0, 0.02);
  --box-shadow: 5px 0px 10px 4px rgb(0 0 0 / 11%);
  --box-shadow-subnav: 0px 0px 10px 2px rgb(0 0 0 / 10%);
}

*,
ul,
ol,
li {
  margin: 0px;
  padding: 0px;
  list-style: none;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-size: 13px;
}

body {
  font-family: "Poppins";
  font-weight: normal;
  font-style: normal;
  color: var(--color-black);
}

/* common */
.common-section {
  height: 100vh;
  overflow: hidden;
}
.common-section .list {
  margin-top: 3rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}
.common-section .list li {
  display: inline-block;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

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

.btn {
  border-radius: 0;
  display: inline-block;
  margin: 1rem 1rem 1rem 0;
  padding: 0.5rem 2rem;
  position: relative;
  border-radius: 30px;
}
.btn img {
  width: 22px;
  color: #fff;
  margin-right: 6px;
  position: absolute;
  left: 8px;
}

.btn-primary {
  color: var(--color-green);
  background-color: transparent;
  border-color: var(--color-green);
}
.btn-primary:hover {
  color: var(--color-white);
  background-color: var(--color-green);
  border-color: var(--color-green);
}

.btn-danger {
  color: var(--color-red);
  background-color: var(--color-white);
  border-color: var(--color-red);
}
.btn-danger:hover {
  color: var(--color-white);
  background-color: var(--color-red);
  border-color: var(--color-red);
}

.floatbtn {
  position: fixed;
  top: 45%;
  right: -64px;
  z-index: 1;
  vertical-align: top;
  transform: rotate(7deg);
  -ms-transform: rotate(90deg); /* IE 9 */
  -moz-transform: rotate(90deg); /* Firefox */
  -webkit-transform: rotate(90deg); /* Safari and Chrome */
  -o-transform: rotate(90deg); /* Opera */
}

h1 {
  font-size: 2.2rem;
  position: relative;
  font-weight: 700;
}
h1 small {
  font-size: 60%;
  opacity: 0.8;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
}

.strip::after {
  position: absolute;
  content: "";
  width: 96px;
  height: 3px;
  background: #ffd500;
  left: 0;
  bottom: -8px;
}

.grid {
  display: grid;
  position: relative;
  gap: 2rem;
}

.grid-full {
  grid-area: full;
}

.gap-10 {
  gap: 6rem 15rem;
}

.cell-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cell-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cell-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cell-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: inherit;
  left: 0;
  z-index: 9;
  background-color: var(--color-white);
  box-shadow: var(--box-shadow);
  padding: 0;
}
.header .tilips-logo {
  padding: 12px 0;
}
.header .tilips-logo img {
  height: 50px;
}
.header .nav-toggle {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 30px;
  height: 30px;
  padding: 6px 2px 0;
  margin-top: -14px;
  display: none;
  cursor: pointer;
}
.header .nav-toggle::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #343a40;
  border-radius: 10px;
  box-shadow: 0 0.5em 0 0 #343a40, 0 1em 0 0 #343a40;
}
.header .navigation {
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
}
.header .navigation > li {
  display: inline-block;
  position: relative;
}
.header .navigation > li > a {
  font-weight: 600;
  padding: 0 24px;
  height: 50px;
  display: block;
  line-height: 50px;
  position: relative;
}
.header .navigation > li.active a {
  color: var(--color-green);
}
.header .navigation > li.active a:before {
  position: absolute;
  top: inherit;
  right: 0;
  bottom: inherit;
  left: 0;
  content: "";
  background: var(--nav-hover-bg);
  transform: skewX(-13deg);
  height: 50px;
}
.header .navigation > li .submenu-indicator-chevron {
  height: 8px;
  width: 8px;
  display: block;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: transparent var(--color-black) var(--color-black) transparent;
  transform: rotate(45deg);
  transition: border 0.2s;
  position: absolute;
  right: 9px;
  top: 31px;
}
.header .navigation > li:hover a {
  color: var(--color-green);
}
.header .navigation > li:hover a:before {
  position: absolute;
  top: inherit;
  right: 0;
  bottom: inherit;
  left: 0;
  content: "";
  background: var(--nav-hover-bg);
  transform: skewX(-13deg);
  height: 50px;
}
.header .navigation > li:hover .submenu-indicator-chevron {
  border-color: transparent var(--color-white) var(--color-white) transparent;
}
.header .navigation > li:hover > ul {
  display: block;
}
.header .navigation > li:hover > ul li a {
  background: var(--color-white);
  color: var(--color-black);
}
.header .navigation > li:hover > ul li a:hover {
  color: var(--color-green);
}
.header .navigation > li.close-nav {
  padding: 25px 20px;
  display: none;
}
.header .navigation > li.close-nav img {
  width: 22px;
}
.header .navigation ul {
  background: var(--color-white);
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  padding: 12px 0;
  box-shadow: var(--box-shadow-subnav);
}
.header .navigation ul li {
  display: block;
  line-height: normal;
}
.header .navigation ul li a {
  background: var(--color-white);
  color: var(--color-black);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  font-size: 1rem;
  display: block;
  font-weight: 500;
  height: auto;
  line-height: normal;
}
.header .navigation ul li a::before {
  display: none;
}

/* banner */
.banner {
  height: auto;
}
.banner img {
  height: 100%;
}
.banner .carousel-item {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.banner .carousel-item .banner-txt {
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem 3rem 3rem 8rem;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -100%;
  transform: translateY(-50%);
  transition: all ease-in-out 1.5s;
  opacity: 0;
  max-width: 43%;
}
.banner .carousel-item .banner-txt h1 {
  font-weight: 600;
  color: var(--color-white);
  font-size: 3em;
}
.banner .carousel-item .banner-txt p {
  color: var(--color-white);
  font-size: 1.1rem;
}
.banner .carousel-item.active .banner-txt {
  left: 0;
  opacity: 1;
}

/* About */
.about {
  display: flex;
  align-items: center;
  justify-content: inherit;
  position: relative;
  padding: var(--header-space);
  background-color: #ecf0f3;
}
.about .about-img {
  width: 100%;
}
.about .about-internal {
  margin: 4rem 0;
  max-width: 100%;
}
.about .about-sec {
  padding: 4rem;
  position: relative;
}
.about .about-sec h1 {
  margin-bottom: 3rem;
}

.ledlights {
  display: flex;
  align-items: center;
  justify-content: inherit;
  background: var(--color-black-1) url(../images/led-lights.jpg) no-repeat bottom right;
  background-size: cover;
  color: var(--color-white);
  padding: var(--header-space);
}

.decorative {
  display: flex;
  align-items: center;
  justify-content: inherit;
  background: url(../images/decorative.jpg) no-repeat bottom right;
  background-size: cover;
  color: var(--color-white);
  padding: var(--header-space);
}

.outdoorlights {
  display: flex;
  align-items: center;
  justify-content: inherit;
  background: url(../images/outdoor.png) no-repeat right top;
  background-size: 45%;
  padding: var(--header-space);
  position: relative;
}
.outdoorlights img {
  position: absolute;
  top: 0;
}
.outdoorlights .list {
  margin-top: 3rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}
.outdoorlights .list li {
  display: inline-block;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  text-align: center;
}

.networks {
  display: flex;
  align-items: center;
  justify-content: inherit;
  background: url(../images/network.jpg) no-repeat;
  background-size: cover;
  padding: var(--header-space);
  position: relative;
  color: var(--color-white);
}

.ourpersence {
  display: flex;
  align-items: center;
  justify-content: inherit;
  background: var(--color-gray-100);
  padding: var(--header-space);
  position: relative;
}
.ourpersence figure {
  border: 1px solid var(--color-yellow);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}
.ourpersence figure img {
  max-width: 55px;
}
.ourpersence figure figcaption h5 {
  margin: 1.5rem 0 0.5rem;
}
.ourpersence figure figcaption p {
  margin: 0;
  line-height: normal;
}

/* ---------------------------------------- */
/* contact form */
/* ---------------------------------------- */
.contact {
  padding: 7rem;
}
.contact .contactbox {
  display: flex;
  justify-content: space-between;
}
.contact .contactbox .left-sec {
  width: 300px;
  text-align: center;
}
.contact .contactbox .left-sec div {
  width: 180px;
  margin: 32px auto;
}
.contact .contactbox .left-sec img {
  width: 32px;
  clear: both;
  margin-bottom: 12px;
}
.contact .contactbox .left-sec strong,
.contact .contactbox .left-sec small {
  display: block;
}
.contact .contactbox .left-sec small {
  opacity: 0.8;
}
.contact .contactbox .right-sec {
  width: calc(100% - 500px);
  position: relative;
  padding: 32px 0;
}
.contact .contactbox .right-sec::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 50%;
  left: -130px;
  transform: translateY(-50%);
  background: #d7d7d7;
}

.form-group .form-control {
  background-color: rgba(0, 0, 0, 0.01);
  border-color: rgba(0, 0, 0, 0.09);
  margin-top: 24px;
  padding: 8px 16px;
  border-radius: 0px;
}
.form-group.success .form-control {
  border-color: green;
}
.form-group.error .form-control {
  border-color: rgba(255, 0, 0, 0.5);
}
.form-group .error {
  color: rgb(255, 0, 0);
  font-size: 13px;
  font-weight: 500;
}

/* ---------------------------------------- */
/* footer */
/* ---------------------------------------- */
.footer {
  padding: 4rem 0;
  background-color: var(--color-black);
  color: #999999;
}
.footer .copy-rights {
  padding: 1px 0;
  font-size: 13px;
}
.footer ul li {
  margin: 8px 0;
}
.footer ul li a:hover {
  color: var(--color-green);
}
.footer img {
  max-height: 50px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

.newslatter {
  position: relative;
}
.newslatter input {
  background: rgba(255, 255, 255, 0.2);
  border: 0px;
  color: #ddd;
  padding: 10px 12px;
  width: 100%;
  font-size: 13px;
  border-radius: 30px;
}
.newslatter button {
  background-color: var(--color-green);
  border: 0px;
  outline: none;
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  padding: 0 13px;
  font-weight: 600;
  border-radius: 30px;
}

.product {
  position: relative;
}
.product::before {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: 0;
  left: 0;
  content: "";
  background: #f5f5f5;
  width: 25%;
}
.product .d-grid {
  display: grid;
  grid-template-columns: 280px auto;
}
.product .product-nav {
  padding: 7rem 1.5rem 0 0;
  background: #f5f5f5;
}
.product .product-nav li {
  margin: 3px 0;
}
.product .product-nav li a {
  padding: 0.5rem 1rem;
  display: block;
  cursor: pointer;
  position: relative;
  font-weight: 500;
}
.product .product-nav li a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: var(--nav-hover-bg);
  border-left: 2px solid var(--color-gray-200);
}
.product .product-nav li a:hover, .product .product-nav li a.active {
  color: var(--color-green);
}
.product .product-nav li a:hover::before, .product .product-nav li a.active::before {
  background-color: var(--nav-hover-bg);
  border-left-color: var(--color-green);
}
.product .content-box {
  padding: 7rem 0 1.5rem 1.5rem;
}
.product .content-box .tabs_content .product-banner {
  background: rgb(243, 243, 241);
  padding: 1.5rem;
  position: relative;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product .content-box .tabs_content .product-banner img {
  max-height: 200px;
  float: right;
}
.product .content-box .tabs_content .product-banner h1 {
  font-size: 1.5rem;
}

.tilips-table {
  width: 100%;
  margin: 1rem 0;
}
.tilips-table thead th {
  background-color: var(--color-gray-200);
}
.tilips-table tbody tr {
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.07);
}
.tilips-table tbody tr:nth-child(even) {
  background-color: var(--border-color);
}
.tilips-table th,
.tilips-table td {
  padding: 0.6rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .header .nav-toggle {
    display: inline-block;
  }
  .header .close-nav {
    display: block;
  }
  .header .navigation {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    z-index: 9;
    background: var(--color-white);
    transition: all ease-in-out 0.5s;
    flex-direction: column;
    min-width: 320px;
    justify-content: flex-start;
  }
  .header .navigation li {
    border-bottom: solid 1px #f0f0f0;
  }
  .header .navigation li a {
    display: block;
    height: 45px;
    line-height: 45px;
  }
  .header .navigation li.active a:after {
    display: none;
  }
  .header .navigation.shownav {
    right: 0;
  }
  .header .navigation.shownav:before {
    position: fixed;
    transition: all ease-in-out 1s;
    content: "";
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    right: 320px;
  }
  .header .navigation li > ul {
    display: block;
    position: relative;
    width: auto;
    top: inherit;
    left: inherit;
    background: rgba(0, 0, 0, 0.02);
  }
  .header .navigation li > ul li a,
  .header .navigation li > ul li {
    background-color: transparent;
    border: 0;
  }
  .header .navigation li.close-nav {
    display: block;
  }
  .header .navigation li .submenu-indicator-chevron {
    top: 16px;
  }
  .cell-4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .banner .carousel-item {
    height: auto;
  }
  .banner .carousel-item .banner-txt {
    width: 85%;
    padding: 1.5rem;
  }
  .banner .carousel-item .banner-txt h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .cell-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-img {
    max-width: 70%;
  }
  .d-grid {
    grid-template-columns: 195px auto;
  }
}
@media (max-width: 650px) {
  .common-section {
    height: auto;
    overflow: visible;
  }
  .banner {
    padding-top: 74px;
  }
  .banner .carousel-item {
    height: auto;
  }
  .banner .carousel-item .banner-txt {
    max-width: 100%;
    padding: 0.9rem 1.5rem;
  }
  .banner .carousel-item .banner-txt h1 {
    font-size: 1.1rem;
  }
  .ledlights {
    background-size: 100%;
  }
  .about .about-internal {
    max-width: 100%;
  }
  .about .about-sec {
    background: transparent;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .about .about-img {
    max-width: 100%;
  }
  .led-lights {
    background-size: 100%;
  }
  .gap-10 {
    gap: 0;
  }
  .ourpersence figure {
    margin: 1rem 0 0 0;
  }
  .contact {
    padding: 5rem 0;
  }
  .contact .contactbox {
    flex-direction: column;
  }
  .contact .contactbox .left-sec {
    width: 100%;
    text-align: left;
  }
  .contact .contactbox .left-sec div {
    margin: 1rem;
    width: auto;
  }
  .contact .contactbox .right-sec {
    width: auto;
  }
  .product {
    padding: 5rem 0 0 0;
  }
  .product:before {
    display: none;
  }
  .product .product-nav {
    padding: 1rem;
  }
  .product .d-grid {
    grid-template-columns: inherit;
    height: auto;
  }
  .product .content-box {
    padding: 1rem 0;
    max-width: 100%;
    overflow: auto;
  }
  .footer {
    padding: 2rem 0;
  }
  .footer .row {
    row-gap: 1rem;
  }
}/*# sourceMappingURL=style.css.map */