@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://db.onlinewebfonts.com/c/68d4a688ddc9eebfa36e155a2cd9d311?family=Bahij+Helvetica+Neue+45+Light);
/* 

backgrwound  #EE4623
font color #fff
font Second color #2D2D2D

*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  /* font-size: 10px; */

  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;

  /* Does NOT work on Safari */
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #010101;
  color: #000000;
  /* Only works if there is nothing absolutely positioned in relation to body */
  overflow: hidden;
  
}
.conatiner-slider
{
  max-width: 120rem;
  width: 100%; 
  padding: 3rem 0 ;
  /* border: 2px solid green; */
}
.container {
  max-width: 140rem;
  width: 100%;
  margin: auto;
  padding: 3rem 4rem;
  /* border: 2px solid red; */

}
.flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.grid {
  display: grid;
}
.grid--2-cols {
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr 2fr;
  place-items: center;
}
.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
 
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #010101;
  transition: all 0.3s ease;
  /* Because we want header to be sticky later */
  height: 8rem;
  padding: 0 4.8rem;
  position: relative;
}
.left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1rem;
}
.list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
}
.nav-link:link,
.nav-link:visited {
  color: #fff;

  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
  line-height: 1.2;
  transition: all 0.4s ease;
}
.nav-link:hover,
.nav-link:active {
  color: #ee4623;
}
.list li .font {
  font-family: "Bahij Helvetica Neue 45 Light";
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0;
}

.hero .pragraph
{
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  width: 90%;

}
.right {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 10px; */
}
.logo {
  cursor: pointer;
  width: 93%;
}
.mobile-logo  {
 z-index:99 ;
}
/* menu btn */
.hamburger
{
  position: relative;
  display: block;
  width: 30px;
  height: 35px;
  cursor: pointer;
  z-index: 100;
  appearance: none;
  background: none;
  outline: none;
  border: none;
}
.hamburger .bar,
.hamburger::after,
.hamburger::before
{
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  margin: 8px 0;
  transition: 0.4s ease;
}
.hamburger.is-active::before
{
  transform: rotate(-45deg) translate(-7px,1px);
}
.hamburger.is-active::after
{
  transform: rotate(45deg) translate(-7px,-2px);
}
.hamburger.is-active .bar
{
  opacity: 0;
}
.mobile-nav
{
  position: fixed;
  top: 0;
  left:100%;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 98;
  background-color: #ee4623;
  padding: 120px 0;
  transition:  0.4s ease;
}
.mobile-nav.is-active{
  left: 0;
}
.mobile-nav a
{
  
  font-size: 32px;
  display: block;
  text-align: left;
 
  width: 100%;
  max-width: 400px;
  padding:0 30px  ;
  margin: 5px 0;
  transition: all 0.3s ease;
  color: #010101;
  text-decoration: none;
}
.mobile-nav a:hover
{
  color:#fff;
}
@media (min-width:944px)
{
  .mobile-nav{
    display: none;

  }
  .hamburger{
    display: none;
  }
}
/*  */
.main-nav .active {
  color: #ee4623;
  font-weight: 500;
}
.hero-flex {
  display: flex;
  flex-direction: column;
}
/*  */
.section-hero {
  background-color: #010101;
  padding: 0 0 6.4rem 0;
}
.hero {
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 3.2rem;
 
  align-items: center;
}
.image {
  position: relative;
}
.img {
  width: 100%;
  height: 100vh;
  padding-left: 12rem;
}
.header-text {
  position: absolute;
  letter-spacing: -2px;
  padding: 1rem;
  width: 55%;
  color: #ee4623;
  font-size: 6rem;
  font-weight: 500;
  bottom: 15%;
  line-height: 1;
}
/* MOBILE */

.mobile-display
{
  display: none;

}


/* STICKY NAVIGATION */
 .sticky .header  {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color:#010101;
  z-index: 999;

  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

.hero-button{
  margin-top: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  
}
.hero-btn 
{
border: none;
 background-color: transparent;
}

.hero-btn .btn-link:link,
.hero-btn .btn-link:visited
{
  text-decoration: none;
  display: inline-block;
  font-size: 1.6rem;
  font-weight:500 ;
  padding: 1rem 2.5rem;
  border-top-left-radius:0.9rem ;
  border-bottom-right-radius:0.9rem ;
  color: #fff;
  margin-top: 4rem;

}
.active-btn
{
  background-color: #ee4623;
}
.disactive{
  background-color: transparent;
  border: 0.2rem solid #ee4623;
}
/************* end hero section   *****************************************/
/************* start about section   *****************************************/
.about-section {
  padding: 9.6rem 0;
  margin-bottom: 6.4rem;
}
.about
{
 display: grid;
 grid-template-columns: 1fr 3fr;
 grid-template-rows:1fr 1fr ;

}
.about-title
{
  place-self: end;
  position: relative;
}
.detail-title
{
  
  place-self: start;
  grid-area:2/2 ;
  position: relative;
}
.about-title img ,
.detail-title img{
  display: block;
  width: 100%;


}
.text-title {
  position: absolute;
  color: #ee4623;
  text-align: start;
  font-size: 4.4rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  bottom: 0;
  left: 30%;
  letter-spacing: -2px;
}
.text-detail {
  position: absolute;
  text-align: start;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 300;
  width: 83%;
  padding: 2rem;
}
/*  */
 .about-img  
{
  display: block;
  width: 100%;
  
}
.mobile-about
{
  position: relative;
}
.about-header-mobile
{
  color: #ee4623;
  font-size: 3.2rem;
  margin-bottom: 2.8rem;
}

.mobile-about .text-detail-mobile
{
  position: absolute;
  color: #fff;
  font-size: 1.4rem;
  top: 30%;
  left: 10%; 
  padding: 1rem;
}
/***********************************/

/*************** News Section ************/
.news-section {
  padding: 4.8rem 0 9.6rem  0;
  background-color: #1e1e1e;
  position: relative;
  
}
.slide-container
{
  margin:0 6rem ;
  overflow: hidden;


 
}
.card-wrapper
{
  margin-bottom: 4.8rem;
}
.news-title {
  color: #ee4623;
  text-align: start;
  font-weight: 600;
  font-size: 4.8rem;
  margin-bottom: 6.4rem;
  letter-spacing: -2px;
  padding: 3rem;
}
.card {
  clip-path: polygon(
    10% 0,
    70% 0%,
    100% 0,
    100% 70%,
    100% 100%,
    0 100%,
    0% 70%,
    0 10%
  );
  background-color: #fcfcfc;
 
  width: 39rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  /* gap: 10px; */
  min-height: 50vh;
  
}
.card .image-box {
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%, 0 13%);

  height: 20rem;
  margin-bottom: 2rem;
  
  width:100%;
}
.card .image-box img
{
  height: 100%;
  width: 100%;
}
.profile-details
{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-details .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 8px; */
}
.viwe-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.title {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -1px;

}
.viwe-record {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
}
.card-detail {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 500;
  
}
.not-plan {
  margin-bottom: 1.8rem;
}
.plan {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ee4623; 
}
.card-footer {
  display: flex;
  justify-content: space-between;
}
.date span {
  font-size: 1rem;
  font-weight: 400;
}
.card-link a:link,
.card-link a:visited {
  text-decoration: none;
  color: #000;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
}
.card-link a:hover,
.card-link a:active {
  color: #ee4623;
}
/*  */
.footer-news {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.news-pragraph {
  flex: 1.5;
  width: 100%;
}
.news-pragraph p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  width: 75%;
}
.footer-news-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: end;

}
.footer-news-button button {
  font-weight: 500;
  font-size: 1.6rem;
  cursor: pointer;
}
.footer-news-button  a
{
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.swiper-button-next, .swiper-button-prev{
  opacity: 0.7;
  color:#4D4D4D ;
  transition: all 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
  opacity: 1;
  color: #ee4623;
}
.card::before
{
  content: "";
  position: absolute;
  height: 40%;
  width: 100%;

}
/* ***********************************/
/*    Service section   */
/* ********************************* */
.service-section {
  padding: 9.6rem 0;
}
.service-title
{
  color: #ee4623;
  font-weight: 600;
  font-size: 4.8rem;
  letter-spacing: -1.5px;
  margin-bottom:9.6rem ;
}
.items {
  color: #fcfcfc;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  
  row-gap: 5rem;
 
}
.item {
  

  transform: translateX(-7rem);
  transition: transform 0.4s ease;
  position: relative;
  cursor: pointer;
  
  
}
 
.item svg 
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item:nth-child(1)
{
  transform: translateX(0);
  justify-content: center;
}
.item:nth-child(2)
{
  
  
}
.item:nth-child(3)
{
  transform: translateX(-14rem);
  justify-content: center;
}
.item:nth-child(4)
{
  transform: translateX(0);
  justify-content: center;
}
.item:nth-child(5)
{

    
}
/* HOVER */
.item:hover
{
  transform: translate(-7rem, -3rem);
}
.item:nth-child(1):hover {
  transform: translate(0, -3rem);
}
.item:nth-child(3):hover {
  transform: translate(-14rem, -3rem);
}
.item:nth-child(4):hover {
  transform: translate(0, -3rem);
}

.text-service
{
  position: absolute;
  display: flex;
  justify-content: start;
  align-items: start;
  text-align: start;
  bottom :0;
  left: 1rem;
 font-size: 2.4rem;
 font-weight: 600;
 /* width: 42%; */
 line-height: 1.15;
 padding: 1.2rem;

 transition: all 0.4s ease;
}
.icon-svg
{
  fill: #010101;
}

.item:hover{

  color: #ee4623;
  stroke: #ee4623;
}


/* Clients Section */
.our-client-section {
  padding: 9.6rem 0;
}
.title-client
{
  color: #ee4623;
  font-size: 4.8rem;
  letter-spacing: -2px;
  font-weight:600 ;
  margin-bottom: 6.4rem;
}
.Clients
{
 display: grid;
 grid-template-columns: repeat(6,1fr);
 place-items: center  ;
 row-gap: 2rem;
 column-gap: 9rem; 

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



}
.client img
{
  width:100%;
  height:100%;

  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.5s ease;
  
  
}
/* .client img:hover
{
  filter: grayscale(0);
  transform: scale(115%);
} */
/* Contact us Section */

.contact-section {
  padding: 9.6rem 0;
}
.contact-us {
  clip-path: polygon(
    5% 0,
    70% 0%,
    100% 0,
    100% 86%,
    94% 100%,
    0 100%,
    0% 70%,
    0 13%
  );
  background-color: #2d2d2d;
  height:100%;
  width: 100%;
  padding: 0 5.5rem 0 6.4rem;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1.5fr 2fr 1fr;
  row-gap: 3rem;
}
.contact-title {
  display: flex;
  align-items: end;
  justify-content: start;
  padding-bottom: 0.8rem;
  font-size: 4.2rem;
  font-weight: 600;
  letter-spacing: -1px;
  color: #ee4623;
}
.contact-deatil {
  grid-area: 2/1;

  display: flex;
  align-items: start;
  justify-content: start;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 400;
  width: 100%;
  line-height: 2.2rem;
}
/* ------------ Form  ------------ */
.contact-form {
  grid-area: 2/2;
}
.form {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 2rem;
}
.form:last-child {
  justify-content: end;
  align-items: end;
}
.form-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  column-gap :2rem;
  padding: 10px;
  width: 100%;
}
.form-group .a
{
  width: 100%;
}
input {
  width: 100%;
  border: none;
  outline: none;
  color: #fcfcfc;
  background-color: #2d2d2d;
  padding-bottom: 6px;
  border-bottom: 1px solid #fcfcfc;

  
}
::-webkit-input-placeholder
{
  color: #ffff;
  transition: all  0.2s ease-in;
}
/* :focus::-webkit-input-placeholder
{
  opacity: 0.5;
 
} */
.a,
.b,
.c {
  position: relative;
}

label {
  position: absolute;
  color: #fcfcfc;
  bottom: 5px;
  left: 0;
  font-size: 1.2rem;
  pointer-events: none;
  transition: all 0.3s ease;
}
/* input:focus ~ label {
  transform: translateY(-13px);
  font-size: 1.2rem;
} */
.text-area {
  margin-bottom: 2rem;
  display: flex;
  padding: 10px;
}
.underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
}
.underline::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #ee4623;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
input:focus ~ .underline::before,
input:valid ~ .underline::before {
  transform: scaleX(1);
}
/* ------------------------ */
/* ------------------------------------------------------ */

.contact-footer {
  grid-area: 3/-2;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
}
.contact-location {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
}
.contact-phone {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  width: 100%;
}

/* footer************************ */
.page-footer {
  width: 100%;
  height: 11rem;
  background-color: #000;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
}
.social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.8rem;
}
.social-list li {
  list-style: none;
}
.social-link:link,
.social-link:visited {
  text-decoration: none;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 400;
  display: inline-block;
  transition: all 0.3s ease;
}

.error {
  color: red;
}

.social-link:hover,
.social-link:active {
  color: #ee4623;
}
/*  */


