body {
  margin: 0;
  padding: 0;
  background-color: rgb(248, 250, 252);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

a {
  text-decoration: none;
}

.k-link {
  text-decoration: underline;
  color: #1a2126;
  transition: all 0.3s;
  font-size: 14px;
}
.k-link:hover {
  color: #0f1d3f;
}

.k-bg-slate {
  background-color: rgb(241, 245, 249) !important;
}

header {
  background-color: #1a2126;
  position: sticky;
  top: -1px;
  z-index: 99;
}
header nav {
  padding: 0 !important;
}
header nav .nav-link {
  color: #fff;
}
@media screen and (max-width: 575px) {
  header {
    height: 95px;
  }
}

.k-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s ease-out;
}

.k-btn-success {
  background-color: #89ba47;
  border: 1px solid #89ba47;
  color: #fff;
}
.k-btn-success:hover {
  color: #e6d5ac;
  background-color: #338f2a;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-color: #338f2a;
}

.k-btn-wheat-outline {
  background-color: transparent;
  border: 1px solid #e6d5ac;
  color: #e6d5ac;
}
.k-btn-wheat-outline:hover {
  background-color: #e6d5ac;
  color: #1a2126;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #fff;
}
.navbar-brand:hover {
  color: #fff;
}
.navbar-brand img {
  height: 70px;
}
@media screen and (max-width: 575px) {
  .navbar-brand {
    display: grid;
    align-content: center;
    justify-items: center;
  }
}

@media screen and (min-width: 992px) {
  .navbar-nav {
    margin-left: 50px;
  }
}
.navbar-nav .nav-link {
  padding: 0.5rem 1rem !important;
  position: relative;
  display: flex;
  justify-content: center;
}
.navbar-nav .nav-link::before {
  position: absolute;
  width: 0px;
  height: 2px;
  background-color: #89ba47;
  z-index: 2;
  opacity: 0.05;
  bottom: 0;
  transition: all 0.3s ease-out;
  content: "";
}
.navbar-nav .nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
}
.navbar-nav .nav-link.active::before, .navbar-nav .nav-link:hover::before {
  width: 60px;
  opacity: 1;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus, .navbar-nav .nav-link:active {
  color: #89ba47;
}

.navbar-collapse {
  background-color: #1a2126;
}

.navbar-toggler {
  width: 25px;
  height: 20px;
  padding: 0 !important;
}
.navbar-toggler input {
  display: none;
}
.navbar-toggler input:checked + label #s1 {
  transform: translateY(9px) rotate(45deg);
}
.navbar-toggler input:checked + label #s2 {
  transform: translateX(100px);
}
.navbar-toggler input:checked + label #s3 {
  transform: translateY(-9px) rotate(-45deg);
}
.navbar-toggler label {
  display: inline-block;
  width: 25px;
  height: 20px;
  display: grid;
  align-content: space-between;
}
.navbar-toggler span {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s;
  border-radius: 5px;
}

.on-off-toggle {
  width: 56px;
  height: 28px;
  position: relative;
  display: inline-block;
}

.on-off-toggle__slider {
  width: 56px;
  height: 28px;
  display: block;
  border-radius: 34px;
  background-color: #e6d5ac;
  cursor: pointer;
  transition: background-color 0.4s;
}
.on-off-toggle__slider::before {
  content: "";
  display: block;
  background: url("./../img/en.png") no-repeat;
  background-size: cover;
  box-shadow: 1px 1px 3px #949494;
  bottom: 4px;
  height: 20px;
  left: 5px;
  position: absolute;
  transition: 0.4s;
  width: 20px;
  z-index: 5;
  border-radius: 100%;
}
.on-off-toggle__slider::after {
  display: block;
  line-height: 28px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  content: "EN";
  color: #484848;
  padding-left: 28px;
  transition: all 0.4s;
}

.on-off-toggle__input {
  /*
      This way of hiding the default input is better 
      for accessibility than using display: none;
    */
  position: absolute;
  opacity: 0;
}
.on-off-toggle__input:checked + .on-off-toggle__slider {
  background-color: #89ba47;
}
.on-off-toggle__input:checked + .on-off-toggle__slider:before {
  transform: translateX(24px);
  background: url("./../img/ir.png") no-repeat;
  background-size: cover;
}
.on-off-toggle__input:checked + .on-off-toggle__slider:after {
  content: "IR";
  color: #ffffff;
  padding-left: 8px;
}

.k-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: 0.5s;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 80px 200px;
}
.k-overlay h1 {
  transform: translateY(40px);
  transition: 1s;
  opacity: 0;
}
.k-overlay p {
  transform: translateY(80px);
  transition: 1.3s;
  opacity: 0;
}
.k-overlay::before {
  position: absolute;
  z-index: -1;
  width: 50%;
  top: 0;
  left: -20%;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  content: "";
  transform: skewX(-10deg);
  transition: width 0.8s;
}
.k-overlay::after {
  position: absolute;
  z-index: -1;
  width: 10%;
  top: 0;
  right: -5%;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
  content: "";
  transform: skewX(-10deg);
  transition: right 0.8s;
}
.k-overlay > div {
  max-width: 400px;
  color: #1a2126;
}

.sliderSec img {
  height: 570px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  transform: scale(0.9);
  transition: 1s;
}
@media screen and (max-width: 991px) {
  .sliderSec img {
    height: 450px;
  }
}
@media screen and (max-width: 420px) {
  .sliderSec img {
    height: 300px;
  }
}
.sliderSec .swiper-slide {
  overflow: hidden;
}
.sliderSec .swiper-slide-active img {
  transform: none;
}
.sliderSec .swiper-slide-active .k-overlay h1,
.sliderSec .swiper-slide-active .k-overlay p {
  transform: none;
  opacity: 1;
}
.sliderSec .swiper-slide-active .k-overlay::before {
  width: 60%;
}
.sliderSec .swiper-slide-active .k-overlay::after {
  right: 50%;
}
@media screen and (max-width: 1200px) {
  .sliderSec .swiper-slide-active .k-overlay {
    padding: 120px;
  }
  .sliderSec .swiper-slide-active .k-overlay::before {
    width: 55%;
    left: -10%;
  }
  .sliderSec .swiper-slide-active .k-overlay::after {
    right: 45%;
  }
}
@media screen and (max-width: 991px) {
  .sliderSec .swiper-slide-active .k-overlay {
    padding: 120px 90px;
  }
  .sliderSec .swiper-slide-active .k-overlay::before {
    width: 67%;
    left: -10%;
  }
  .sliderSec .swiper-slide-active .k-overlay::after {
    right: 33%;
  }
}
@media screen and (max-width: 767px) {
  .sliderSec .swiper-slide-active .k-overlay {
    padding: 100px 50px;
  }
  .sliderSec .swiper-slide-active .k-overlay::before {
    width: 75%;
    left: -10%;
  }
  .sliderSec .swiper-slide-active .k-overlay::after {
    right: 25%;
  }
}
@media screen and (max-width: 550px) {
  .sliderSec .swiper-slide-active .k-overlay {
    padding: 50px 40px;
  }
  .sliderSec .swiper-slide-active .k-overlay::before {
    width: 77%;
    left: -10%;
  }
  .sliderSec .swiper-slide-active .k-overlay::after {
    right: 23%;
  }
}
@media screen and (max-width: 450px) {
  .sliderSec .swiper-slide-active .k-overlay {
    padding: 50px 20px;
  }
  .sliderSec .swiper-slide-active .k-overlay::before {
    width: 95%;
    left: -10%;
  }
  .sliderSec .swiper-slide-active .k-overlay::after {
    right: 5.1%;
  }
}
.sliderSec .swiper-slide-active .k-overlay p {
  width: 90%;
}
.sliderSec .swiper-button-prev,
.sliderSec .swiper-button-next {
  color: #1a2126;
}
.sliderSec .swiper-button-prev::after,
.sliderSec .swiper-button-next::after {
  font-size: 35px;
}

.carousel-caption {
  z-index: 2;
  bottom: auto !important;
  top: 10%;
  left: 15%;
  right: auto;
  text-align: left;
  width: 400px;
}

.carousel-indicators {
  z-index: 3;
  bottom: auto !important;
}

.k-max-content {
  width: -moz-max-content !important;
  width: max-content !important;
}

.projectSwiper .card {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}
.projectSwiper .card figure {
  margin: 0;
}
.projectSwiper .card figure figcaption {
  font-weight: bold;
  color: #1a2126;
  padding: 7px 10px;
}
.projectSwiper .card figure p {
  padding: 0 10px;
  overflow: hidden;
  font-size: 13px;
  color: #7b889c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.projectSwiper .card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(0, 0, 0, 0.45) 0px 18px 20px -20px;
}

.k-gallery {
  display: grid;
  grid-template-columns: repeat(2, 49%);
  gap: 10px;
  justify-content: center;
}
.k-gallery a {
  display: inline-block;
}
.k-gallery a img {
  width: 100%;
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translate3d(0%, 0%, 0);
  margin: 0;
}
.box:hover {
  cursor: pointer;
}
.box:hover .box__caption {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0);
}
.box:hover .box__img {
  transform: scale(1);
  filter: blur(3px) brightness(40%);
}
.box__img {
  width: 100%;
  height: auto;
  transform: scale(1.1);
  transition: all 250ms ease-in-out;
}
.box__caption {
  color: white;
  line-height: 1.25;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -30%, 0);
  transition: all 250ms ease-in-out;
}

footer {
  background-color: #1a2126;
}
footer ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
footer ul a {
  color: #888;
  font-size: 12px;
  padding: 5px 10px;
}
@media screen and (max-width: 575px) {
  footer ul a {
    padding: 5px 7px;
  }
}

.k-three-gallery {
  display: grid;
  grid-template-columns: repeat(2, 49%);
  gap: 10px;
  justify-content: center;
}
.k-three-gallery > div {
  display: grid;
  gap: 10px;
}
.k-three-gallery .k-vertical-img {
  height: 100%;
}
.k-three-gallery .k-vertical-img * {
  height: 100%;
}
.k-three-gallery .k-vertical-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.k-three-gallery .k-vertical-img .box__caption {
  transform: translate3d(-50%, 10%, 0);
}
.k-three-gallery .k-vertical-img .box:hover .box__caption {
  opacity: 1;
  transform: translate3d(-50%, -5%, 0) !important;
}

.k-contact-us {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  grid-template-columns: 45% 55%;
}
.k-contact-us form {
  display: grid;
  gap: 5px;
  width: 100%;
}
.k-contact-us button {
  height: 35px;
}

label {
  display: grid;
  font-size: 14px;
  color: #64748b;
}
label select,
label input {
  width: 100%;
  height: 35px;
  border: 1px solid #cbd5e1;
  border-radius: 30px;
  outline: none;
  padding: 0 10px;
  transition: all 0.2s ease-out;
}
label select:focus,
label input:focus {
  border: 1px solid #64748b;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px -1px, rgba(0, 0, 0, 0.06) 0px 2px 6px -1px;
}
label select::-moz-placeholder, label input::-moz-placeholder {
  color: #cbd5e1;
}
label select::placeholder,
label input::placeholder {
  color: #cbd5e1;
}
label textarea {
  border: 1px solid #cbd5e1;
  border-radius: 30px;
  resize: none;
  outline: none;
  padding: 10px;
  transition: all 0.2s ease-out;
}
label textarea::-moz-placeholder {
  color: #cbd5e1;
}
label textarea::placeholder {
  color: #cbd5e1;
}
label textarea:focus {
  border: 1px solid #64748b;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px -1px, rgba(0, 0, 0, 0.06) 0px 2px 6px -1px;
}

.k-contact-info {
  background-color: #1a2126;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  border-radius: 5px;
  color: #e6d5ac;
  padding: 30px;
  display: grid;
  align-content: space-between;
  position: relative;
  overflow: hidden;
}
.k-contact-info ul {
  list-style-type: none;
  padding: 0;
}
.k-contact-info ul:first-of-type {
  padding-top: 30px;
}
.k-contact-info ul:first-of-type li {
  padding: 15px 0;
}
.k-contact-info ul:first-of-type li i {
  margin-right: 20px;
}
.k-contact-info ul:last-of-type {
  display: flex;
  padding-top: 20px;
}
.k-contact-info ul:last-of-type li a {
  color: #e6d5ac;
  padding: 0 10px;
  font-size: 13px;
}

.k-circle-pink {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: pink;
  right: -70px;
  bottom: -70px;
  z-index: 1;
  position: absolute;
}
.k-circle-pink::before {
  position: absolute;
  width: 100px;
  height: 100px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  top: -20px;
  left: -20px;
}

.k-filter {
  width: 100%;
}
.k-filter > div {
  background-color: #fff;
  width: 100%;
  display: flex;
  gap: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
}
.k-filter button {
  height: 35px;
}
.k-filter input,
.k-filter select {
  width: 250px;
}

.projectDetailSwiper img {
  width: 100%;
  border-radius: 15px;
}

.companyInfo {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
  border-radius: 15px;
  position: sticky;
  top: 100px;
}
.companyInfo strong {
  font-size: 22px;
}
.companyInfo .k-des {
  font-size: 13px;
  color: #64748b;
}
.companyInfo ul {
  display: grid !important;
}
.companyInfo ul li {
  display: grid;
  gap: 5px;
  color: #64748b;
  padding: 5px 0 !important;
}
.companyInfo ul li a {
  font-size: 16px !important;
  padding: 0 !important;
}
.companyInfo ul li span {
  color: #e6d5ac;
}

.k-box {
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 15px;
  padding: 20px;
}

.alert {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar {
  position: relative;
}
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a2126;
  transition: 0.5s;
  z-index: 99;
}
.navbar.show::before {
  width: 0;
}

.navbar-toggler {
  color: #fff;
  font-size: 26px;
}
.navbar-toggler:focus, .navbar-toggler:active {
  box-shadow: none;
  outline: none;
}

.navbar-nav .dropdown-menu a {
  color: #1a2126;
}
.navbar-nav .dropdown-menu a:hover, .navbar-nav .dropdown-menu a:focus, .navbar-nav .dropdown-menu a:active {
  color: #7847ba;
}

.card-loading {
  background: linear-gradient(90deg, #f6f6f6 0%, #f6f6f6 35%, #ededed 45%, #ededed 60%, #f6f6f6 70%, #f6f6f6 100%);
  background-size: 400%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.hide-overflow, .k-news .card p {
  position: relative;
  line-height: 22px;
  overflow: hidden;
  height: 66px;
}
.hide-overflow::after, .k-news .card p::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 22px;
  background: linear-gradient(90deg, transparent, white);
}

.k-news {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.k-news .card {
  color: #1a2126;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  transition: all 0.3s ease-out;
}
.k-news .card:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
.k-news .card figcaption,
.k-news .card p {
  padding: 5px 10px;
}
.k-news .card figcaption {
  font-weight: bold;
}
.k-news .card p {
  padding: 0 10px;
  overflow: hidden;
  font-size: 13px;
  color: #7b889c;
}/*# sourceMappingURL=style.css.map */