@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("./assets/css/variables.css");

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 8px;
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: var(--heading-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins";
  overflow-x: hidden;
}

.container {
  max-width: 1250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ////////////////////////////   Swiper Slider  ////////////////////*/
.swiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  position: relative;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.swiper-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: clamp(280px, 50%, 700px);
  z-index: 10;
  color: var(--slider-text);
}

.swiper-info h2 {
  font-size: clamp(1.875rem, 4vw, 3.5rem);
  text-align: center;
}

.swiper-line {
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 20px 0 30px 0;
}

.swiper-description {
  color: color-mix(in srgb, var(--slider-text), transparent 20%);
  font-size: clamp(1rem, 1.5vw, 1.875rem);
  text-align: center;
  margin-bottom: 30px;
}

.swiper-btn {
  padding: 12px 40px;
  letter-spacing: 1px;
  border-radius: 50px;
  color: var(--slider-text);
  font-weight: 500;
  border: 2px solid var(--accent-color);
  transition: 0.5s;
}

.swiper-btn:hover {
  background-color: var(--accent-color);
}

.swiper-button-next,
.swiper-button-prev {
  width: 30px;
  height: 30px;
  background-size: 20px 20px;
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 90%
  );
  padding: 28px;
  border-radius: 50%;
  color: color-mix(in srgb, var(--slider-text), transparent 80%);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 25px;
}

/**************************NAVBAR START *********************************/
.navbar-menu .active::before {
  position: absolute;
  bottom: -6px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}

nav {
  position: fixed;
  top: 0;
  z-index: 11;
  width: 100%;
  height: 91px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  transition: 0.3s;
}

nav.scrolled {
  background-color: var(--nav-color-scroll) !important;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

nav.scrolled .logo a,
nav.scrolled .nav-bars i {
  color: var(--nav-dropdown-color);
}

nav .logo a {
  color: var(--background-color);
  font-size: var(--fs-24);
  font-weight: 700;
}

.logo a span {
  color: var(--accent-color);
}

.navbar-menu ul,
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar-menu ul li a {
  color: var(--nav-color);
  font-size: var(--fs-14);
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.navbar-menu ul li a.active {
  color: var(--nav-hover-color);
}

.navbar-menu ul li a::before {
  position: absolute;
  bottom: -6px;
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s linear;
}

.navbar-menu ul li a:hover {
  color: var(--nav-hover-color);
}

.navbar-menu ul li a:hover:before {
  width: 100%;
}

nav.scrolled .navbar-menu ul li a {
  color: var(--nav-scrolled-color);
}

.dropdown {
  position: relative;
  top: 0;
}

.dropdown .dropdown-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--background-color);
}

.dropdown .dropdown-head i {
  font-size: var(--fs-12);
  transition: all 0.3s linear;
}

.dropdown-body {
  position: absolute;
  top: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.dropdown-body ul {
  position: absolute;
  top: 0;
  width: 200px;
  height: 250px;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: var(--fs-14);
  background-color: var(--background-color);
  gap: 0px;
  border-radius: 8px;
}

.dropdown-body ul li {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 20px;
  font-weight: 500;
  transition: all 0.2s linear;

  cursor: pointer;
}

.dropdown-body > ul > li:hover p {
  color: var(--accent-color);
}

.deep-drop-head {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown:hover .dropdown-body {
  opacity: 1;
  visibility: visible;
}

.deep-drop {
  position: relative;
}

.deep-drop-body {
  width: 200px;
  position: absolute;
  top: 0px;
  left: -200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.deep-drop:hover .deep-drop-body {
  opacity: 1;
  visibility: visible;
}

.deep-drop-body ul li span:hover {
  color: var(--accent-color);
}

.nav-bars,
.navbar-mask,
.nav-close {
  display: none;
}

.nav-bars i {
  color: var(--nav-color);
  font-size: 28px;
  line-height: 0;
  cursor: pointer;
  transition: all 0.3s;
}

/*****************************section start **********************/

.section-1 {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.section-1 .texts {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: var(--background-color);
  color: var(--heading-color);
}

.section-1 .texts h1 {
  width: 100%;
  margin-bottom: 60px;
  font-size: clamp(1.875rem, 3vw, 3.5rem);
  font-weight: 600;
  position: relative;
}

.section-1 .texts h1::after {
  position: absolute;
  bottom: -25px;
  left: 0;
  content: "";
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
}

.section-1 .texts p {
  font-size: 14px;
}

.section-1 .login {
  background-color: var(--background-color);
}

.login .login-info {
  background-color: #f9f9fa;
  padding: 20px;
  color: var(--heading-color);
}

.login .login-info h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.login .login-info p {
  font-size: 14px;
  margin-bottom: 20px;
}

.login .login-inputs {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.login-inputs input {
  margin-bottom: 20px;
  font-size: 14px;
  padding: 15px;
  outline: none;
  border: 2px solid #cdd1d4;
}

.login-inputs input::placeholder {
  color: #bfc5ca;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.login-inputs input:focus {
  border: 2px solid var(--accent-color);
  outline: none;
}

.login .login-inputs textarea {
  padding: 10px;
  resize: vertical;
  outline: none;
  border: 2px solid #cdd1d4;
}

.login-inputs textarea:focus {
  border: 2px solid var(--accent-color);
  outline: none;
}

.login .login-inputs {
  position: relative;
}

.login .login-inputs button {
  width: 150px;
  height: 44px;
  background-color: var(--accent-color);
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  margin: 30px auto;
  cursor: pointer;
}

.login .login-inputs button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.row {
  display: grid;
  grid-template-columns: auto 40%;
  column-gap: 1.5rem;
}

/* //////////////////////////////  Constructio section /////////////////////////////////////// */

.cunstruction {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-heading_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-heading {
  position: relative;
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  color: var(--heading-color);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: inline;
  margin-bottom: 8px;
}

.page-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -35%;
  transform: translate(0, -50%);
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.page-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -35%;
  transform: translate(0, -50%);
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.page-subtext {
  font-size: var(--fs-16);
  color: var(--default-color);
  text-align: center;
  padding-bottom: 60px;
}

.construction-card__wrapper {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
}

.construction-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.construction-card .construction-card__img {
  width: 40%;
  height: 100%;
  overflow: hidden;
}

.construction-card .construction-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.construction-card__info {
  padding: 20px 44px;
  width: 60%;
}

.construction-card__heading {
  font-size: var(--fs-20);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--default-color);
  margin-bottom: 15px;
}

.construction-card__desc {
  font-size: var(--fs-16);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.services {
  background-color: #f4f7f6;
  padding-top: 60px;
  padding-bottom: 60px;
}

.servis-page-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60%;
  transform: translate(0, -50%);
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.container .servis-page-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -60%;
  transform: translate(0, -50%);
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.services-card__wrapper {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(2, 350px);
  gap: 20px;
}

.services-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.services-card .services-card_icon {
  color: var(--heading-color);
  font-size: 56px;
  position: relative;
  z-index: 1;
}

.services-card_icon::before {
  content: "";
  position: absolute;
  top: 22px;
  right: -8px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  z-index: -1;
  transition: 0.3s;
}

.services-card:hover .services-card_icon::before {
  background-color: var(--accent-color);
  opacity: 1;
}

.services-card-info h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid
    color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

.services-card-info p {
  line-height: 24px;
  font-size: 14px;
}

.services-card-info a {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.services-card:hover .services-card-info a {
  color: var(--accent-color);
}

.services-card:hover .services-card-info h3 {
  border-color: var(--accent-color);
}

/***********************services end ************************/

/*********************** consequatur start ************************/

.consequatur .consequatur-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  padding: 60px 0;
}

.consequatur .consequatur-img {
  width: 100%;
  height: 715px;
}

.consequatur .consequatur-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consequatur-info {
  /* background-color: blue; */
}

.consequatur-info > h3 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.consequatur-info > h3::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.consequatur-info > p {
  padding-top: 20px;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  color: var(--default-color);
}

.consequatur-info-cards-wrapper {
  margin-top: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 50px;
}

.consequatur-info-card {
  display: flex;
  cursor: pointer;
}

.consequatur-info-card i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s linear;
}

.consequatur-card-text h3 {
  color: var(--heading-color);
  transition: 0.3s;
  font-weight: 600;
  font-family: var(--heading-font);
}

.consequatur-card-text p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--heading-color);
}

.consequatur-info-card:hover .consequatur-card-text h3 {
  color: var(--accent-color);
}

.consequatur-info-card:hover i {
  color: var(--surface-color);
  background-color: var(--accent-color);
}

/* /////////////////////  Section Tabs  ////////////////////// */

.section-tabs {
  padding: 60px 0;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tab-link {
  position: relative;
  border: none;
  background: none;
  color: var(--heading-color);
  font-size: var(--fs-18);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: capitalize;
  cursor: pointer;
  padding: 15px 0;
}

.tab-link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 8px;
  background-color: var(--light-gray);
  transition: all 0.3s ease;
}

.tab-link:hover::before {
  background-color: var(--light-gray-hover);
}

.tab-link.active::before {
  background-color: var(--accent-color);
}

.tab-content {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  transition: all 0.7s ease-in;
}

.tab-content__text {
  width: 50%;
}

.tab-content__img {
  width: 50%;
  height: 410px;
  overflow: hidden;
}

.tab-content__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-content__text h2 {
  position: relative;
  font-size: var(--fs-32);
  color: var(--heading-color);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.tab-content__text h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.tab-content__text p {
  margin-bottom: 30px;
}

.tab-content__text p,
.tab-content__text ul li {
  color: var(--default-color);
  font-size: var(--fs-18);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 150%;
}

.tab-content__text ul li {
  list-style-image: url("./assets/img/check.png");
  list-style-position: inside;
  margin-bottom: 16px;
}

/********************************* isotope style  ***********************/
.isotope {
  margin-top: 60px;
  margin-bottom: 60px;
}
.button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.button-group:after {
  content: "";
  display: block;
  clear: both;
}

.button-group .button {
  float: left;
  border-radius: 0;
  border: none;
  background: none;
  margin-left: 0;
  margin-right: 1px;
  font-size: var(--fs-18);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
}

.button-group button.is-checked {
  color: var(--accent-color);
}

/* ---- isotope ---- */

/* clear fix */
.grid:after {
  content: "";
  display: block;
  clear: both;
}

/* ---- .element-item ---- */

.element-item {
  position: relative;
  float: left;
  width: calc(33.333% - 26px);
  height: 267px;
  margin: 13px;
  overflow: hidden;
}

.grid-items-img {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  transition: all 0.3s ease-in-out;
}

.element-item:hover .grid-items-img {
  transform: scale(1.1) !important;
}

.grid-items-img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}

.element-item:hover .grid-items-img::before {
  opacity: 1;
}

.item-sort {
  position: absolute;
  top: 15px;
  left: 10px;
  padding: 5px;
  background-color: var(--accent-color);
  color: var(--slider-text);
  font-size: var(--fs-16);
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease-in-out;
}

.element-item .item-icons,
.element-item p {
  z-index: 3;
}

.item-icons {
  position: absolute;
  display: flex;
  gap: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.item-icons i {
  font-size: var(--fs-32);
  -webkit-text-stroke: 1px;
  color: white;
}

.element-item p {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: var(--fs-18);
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.element-item p,
.item-icons,
.item-sort {
  opacity: 0;
}

.element-item:hover p,
.element-item:hover .item-sort,
.element-item:hover .item-icons {
  opacity: 1;
}

.element-item > * {
  margin: 0;
}

.element-item .name {
  position: absolute;

  left: 10px;
  top: 60px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: normal;
}

.element-item .symbol {
  position: absolute;
  left: 10px;
  top: 0px;
  font-size: 42px;
  font-weight: bold;
  color: white;
}

.element-item .number {
  position: absolute;
  right: 8px;
  top: 5px;
}

.element-item .weight {
  position: absolute;
  left: 10px;
  top: 76px;
  font-size: 12px;
}
/**************************footer *******************************/
footer {
  color: var(--default-color);
  background-color: var(--background-color);
  background: url(./assets/img/footer-bg.jpg) top center no-repeat;
  background-size: cover;
  font-size: 14px;
  position: relative;
  padding: 10px;
}
footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 5;
}
.footer-top {
  position: relative;
  z-index: 9;
}
footer hr {
  border: none;
  border-top: 1.5px solid #ffffff74;
}
.footer-top {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  padding-top: 50px;
  padding-bottom: 30px;
}
.footer-about {
  float: 1;
  margin-right: 50px;
}
.footer-about .footer-logo span {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 1px;
}
.footer-contact {
  margin-top: 25px;
  color: var(--slider-text);
}
.footer-contact p {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  margin-bottom: 5px;
}
.footer-contact #phone {
  margin-top: 15px;
}
.footer-icon {
  margin-top: 20px;
  display: flex;
}
.footer-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, #fff, transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, #fff, transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}
.footer-icon a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer-link h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: var(--slider-text);
}
.footer-link ul {
  list-style: none;
  padding: 0;
}
.footer-link ul li {
  padding-top: 15px ;
  display: flex;
  align-items: center;
}
.footer-link ul li a{
  color: 
color-mix(in srgb, #fff, transparent 30%);
    display: inline-block;
    line-height: 1;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}
.footer-link ul li a:hover{
  color: var(--accent-color);
}
.footer-text-center {
  position: relative;
  z-index: 9;
  width: 100%;
  margin: 24px auto;
  text-align: center;
  color: #fff;
}
.footer-text-center p strong {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.footer-text-center .footer-text-center_text {
  margin-top: 8px;
  font-size: 13px;
}
.footer-text-center_text a{
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}
.footer-text-center_text a:hover{
  color: color-mix(in srgb, var(--accent-color), transparent 40%) ;
}
