@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #2696E9;
  --second-color: #04487c;
  --white-font-color: #fff;
  --black-color: #121212;
  --dark-font-color: #ddd;
  --light-mode: #fff;
  --theme-btn: #fff;
  --nav-bar-color: #fff;
  --background-color: #121212;
  --bg-transparent-color: rgba(0, 0, 0, 0.1);
  --transparent-color-01: rgba(0, 0, 0, 0.1);
  --footer-color: #ddd;
  --font_2: normal normal normal 28px/1.4em raleway,sans-serif;
  --font_8: normal normal normal 20px/1.4em raleway,sans-serif;
  --transparent-color-02: rgba(106, 89, 209, 0.1);
  --box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
  --font: 'Poppins', sans-serif;
}

.dark-theme{
  --primary-color: #2696E9;
  --second-color: #04487c;
  --white-font-color: #000;
  --dark-font-color: #222;
  --theme-btn: #222;
  --black-color: #fff;
  --background-color: #fff;
  --nav-bar-color: #222;
  --footer-color: #222;
  --bg-transparent-color: rgba(0, 0, 0, 0.1);
  --transparent-color-01: rgba(0, 0, 0, 0.1);
  --transparent-color-02: rgba(106, 89, 209, 0.1);
  --box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
  --font: 'Poppins', sans-serif;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html{
  scroll-behavior: smooth !important;
}

p{
  color: var(--white-font-color) !important;
}

body{
  transition: .5 ease;
  background: var(--background-color) !important;
}

.btn{
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  color: var(--white-font-color);
  font-family: var(--font);
  border: 1.8px solid var(--primary-color);
  outline: none;
  transition: .3s;
  border-radius: 50px;
}


.ob-is-breaking-bad{
  padding: 0 !important;
  margin: 0 !important;
  
}


/********Light/Dark Mode********/
.theme-btn{
  z-index: 999999;
  position: fixed;
  right: 0;
  top: 100px;
  background-color: var(--transparent-color-01);
  backdrop-filter: blur(20px);
  width: 50px;
  height: 50px;
  font-size: 1.2em;
  border-radius: 5px 0 0 5px;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: 0.3s ease;
}

.theme-btn .fa-sun, .theme-btn.sun .fa-moon{
  display: none;
}

.theme-btn.sun .fa-sun{
  display: block;
}

.theme-btn{
  color: var(--theme-btn);
}

/* Tooltip */
.test+.tooltip>.tooltip-inner {
  background-color: #73AD21;
  color: #FFFFFF;
  border: 1px solid green;
  padding: 15px;
  font-size: 20px;
}

/* Tooltip on top */
.test+.tooltip.top>.tooltip-arrow {
  border-top: 5px solid green;
}

/* Tooltip on bottom */
.test+.tooltip.bottom>.tooltip-arrow {
  border-bottom: 5px solid blue;
}

/* Tooltip on left */
.test+.tooltip.left>.tooltip-arrow {
  border-left: 5px solid red;
}

/* Tooltip on right */
.test+.tooltip.right>.tooltip-arrow {
  border-right: 5px solid black;
}

/********Header********/
.active2{
  color: var(--primary-color)!important;
}

.flex-center{
  display: flex;
  justify-content: center;
  align-items: center;
}


section{
  padding: 100px 200px;
}

/********Home Section********/
.home{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--primary-color);
}

.home:before{
  z-index: 777;
  content: '';
  position: absolute;
  background: #12121277;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .content{
  z-index: 888;
  color: #fff;
  width: 70%;
  margin-top: 50px;
  display: none;
  text-align: left;
}

.home .content.active{
  display: block;
}

.home .content h1{
  font-size: 2em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 45px;
  margin-bottom: 40px;
  color: #fff;
}

.home .content h1 span{
  font-size: 1.2em;
  font-weight: 600;
}

.home .content p{
  margin-bottom: 65px;
  color: #ddd !important;
}

.home .content a{
  background: #fff;
  padding: 15px 35px;
  color: var(--primary-color);
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.home .content a:hover{
  color: var(--white-font-color);
  background: var(--primary-color);
}

.home .media-icons{
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
}

.home .media-icons a{
  color: #fff;
  font-size: 1.6em;
  transition: 0.3s ease;
}

.home .media-icons a:not(:last-child){
  margin-bottom: 20px;
}

.home .media-icons a:hover{
  transform: scale(1.3);
  color: var(--primary-color);
}

.home video{
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation{
  z-index: 888;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(80px);
  margin-bottom: 12px;
}

.slider-navigation .nav-btn{
  width: 12px;
  height: 12px;
  background: var(--white-font-color);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}

.slider-navigation .nav-btn.active{
  background: var(--primary-color);
}

.slider-navigation .nav-btn:not(:last-child){
  margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
  transform: scale(1.2);
}

.video-slide{
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.video-slide.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}

/********Services Section********/
.services-section{
  background: url(https://cpsrv24.misshosting.com:2083/cpsess5168766083/bg.jpg);
  background-size: cover;
  padding: 60px 0;
}

.inner-width{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  overflow: hidden;
}

.section-title{
  text-align: center;
  color: var(--dark-font-color);
  text-transform: uppercase;
  font-size: 2.5em;
}

.border{
  width: 160px;
  height: 2px;
  background: var(--primary-color);
  margin: 40px auto;
  margin-top: -3px;
}

.services-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  cursor: auto;

}

.service-box{
  max-width: 33.33%;
  padding: 10px;
  text-align: center;
  color: var(--dark-font-color);
  cursor: pointer;
}

.service-icon{
  display: inline-block;
  width: 70px;
  height: 70px;
  border: 3px solid var(--primary-color);
  color: var(--primary-color);
  transform: rotate(45deg);
  margin-bottom: 30px;
  margin-top: 16px;
  transition: 0.3s linear;
}

.service-icon a{
  color: var(--primary-color);
  transition: .5s ease;
  
}

.service-icon i{
  line-height: 70px;
  transform: rotate(-45deg);
  font-size: 30px;
}

.service-box:hover .service-icon{
  background: rgba(117, 117, 117, 0.219) !important;
  color: var(--white-font-color) !important;
}

.service-title{
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  cursor: auto;
}

.service-desc{
  font-size: 14px;
  cursor: auto;

}

/********Slanted Section********/
.cus-div{
  width: 100%;
  position: relative;
  margin-bottom: 100px;
}

.cus-div:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background: inherit;
  z-index: -9999;
  bottom: 0;
}

#skew1{
  background: url("https://cpsrv24.misshosting.com:2083/img/Slanted%20img/3d_norge_tegner_drommen-1920x927.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  z-index: 99999;

}

#skew2{
  background: url("https://cpsrv24.misshosting.com:2083/img/Slanted%20img/3d-norge-hus-i-h%C3%A5nd-med40-1620x1080.jpg%5C%20%5C(1%5C).webp");
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  z-index: 99999;
}

#skew1::after{
  transform-origin: right bottom;
  transform: skewy(-3deg);
}

#skew2::after{
  transform-origin: left top;
  transform: skewy(-3deg);
}

.content{
  font-weight: bold;
  text-align: center;
  padding: 250px 50px;
  overflow: hidden;
  display: block;
  height: auto;
  margin: 0 !important;
}

/********Before/After Img Section********/
.before-after-img{
  display: grid;
  height: 100%;
  place-items: center;
}

.before-after-img h3{
  color: var(--dark-font-color);
  font-size: 1em;
  margin-bottom: 15px;
}

.wrapper{
  position: relative;
  height: 550px;
  width: 850px;
  border: 7px solid rgba(131, 130, 130, 0.644);
  background: rgba(52, 59, 52, 0.133);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.wrapper .img{
  height: 100%;
  width: 100%;
  display: flex;
}

.wrapper .img .img-1{
  height: 100%;
  width: 100%;
  background: url(../img/1/Wail_Hanawi_Fotomontage.jpg);
}

.wrapper .img .img-2{
  position: absolute;
  height: 100%;
  width: 50%;
  background: url(../img/1/Wail_Hanawi_Fotomontage_Original.jpg);
}

.wrapper .slider{
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
}

.wrapper .slider input{
  width: 100%;
  height: 1400px;
  outline: none;
  background: none;
  z-index: -99999;
  -webkit-appearance: none;
}

.slider input::-webkit-slider-thumb{
  -webkit-appearance: none;
  height: 586px;
  width: 3px;
  background: none;
  cursor: col-resize;
}

.slider .drag-line{
  width: 5px;
  height: 586px;
  position: absolute;
  left: 49.85%;
}

.slider .drag-line::before,
.slider .drag-line::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 273px;
  background: #fff;
}

.slider .drag-line::before{
  top: 0;
}

.slider .drag-line::after{
  bottom: 0;
}

.slider .drag-line span{
  height: 42px;
  width: 52px;
  border: 3px solid #fff;
  position: absolute;
  cursor: col-resize;
  z-index: -999999;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.slider .drag-line span::before,
.slider .drag-line span::after{
  content: '';
  position: absolute;
  top: 50%;
  border: 10px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  
  transform: translate(-50%, -50%) rotate(45deg);
}

.slider .drag-line span::before{
  left: 40%;
  border-left-color: #fff;
}

.slider .drag-line span::after{
  left: 60%;
  border-top-color: #fff;
}



/********Before/After Img2 Section********/
.wrapper .img2{
  height: 100%;
  width: 100%;
  display: flex;
}

.wrapper .img2 .img-3{
  height: 100%;
  width: 100%;
  background: url(../img/2/10.jpg);
}

.wrapper .img2 .img-4{
  position: absolute;
  height: 100%;
  width: 50%;
  background: url(../img/2/11.jpg);
}

.wrapper .slider2{
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
}

.wrapper .slider2 input{
  width: 100%;
  height: 1400px;
  outline: none;
  background: none;
  z-index: -99999;
  -webkit-appearance: none;
}
.slider2 .input::-webkit-slider-thumb{
  -webkit-appearance: none;
  height: 586px;
  width: 3px;
  background: none;
  cursor: col-resize;
  
}

.slider2 .drag-line2{
  width: 5px;
  height: 586px;
  position: absolute;
  left: 49.85%;
}

.slider2 .drag-line2::before,
.slider2 .drag-line2::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 273px;
  background: #fff;
}

.slider2 .drag-line2::before{
  top: 0;
}

.slider2 .drag-line2::after{
  bottom: 0;
}

.slider2 .drag-line2 span{
  height: 42px;
  width: 52px;
  z-index: -999999;
  border: 3px solid #fff;
  cursor: col-resize;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.slider2 .drag-line2 span::before,
.slider2 .drag-line2 span::after{
  content: '';
  position: absolute;
  top: 50%;
  border: 10px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.slider2 .drag-line2 span::before{
  left: 40%;
  border-left-color: #fff;
}

.slider2 .drag-line2 span::after{
  left: 60%;
  border-top-color: #fff;
}

/********Before/After Img3 Section********/
.wrapper .img3{
  height: 100%;
  width: 100%;
  display: flex;
}

.wrapper .img3 .img-5{
  height: 100%;
  width: 100%;
  background: url(../img/3/Wail__Hanawi_interior_1.jpg);
}

.wrapper .img3 .img-6{
  position: absolute;
  height: 100%;
  width: 50%;
  background: url(../img/3/Wail__Hanawi_interior_3.jpg);
}

.wrapper .slider3{
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
}

.wrapper .slider3 .input1{
  width: 100%;
  height: 1400px;
  outline: none;
  background: none;
  z-index: -99999;
  -webkit-appearance: none;
}

.slider3 .input1::-webkit-slider-thumb{
  -webkit-appearance: none;
  height: 586px;
  width: 3px;
  background: none;
  cursor: col-resize;
  
}

.slider3 .drag-line3{
  width: 5px;
  height: 586px;
  position: absolute;
  left: 49.85%;
}

.slider3 .drag-line3::before,
.slider3 .drag-line3::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 273px;
  background: #fff;
}

.slider3 .drag-line3::before{
  top: 0;
}

.slider3 .drag-line3::after{
  bottom: 0;
}

.slider3 .drag-line3 span{
  height: 42px;
  width: 52px;
  border: 3px solid #fff;
  position: absolute;
  z-index: -999999;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  cursor: col-resize;
  transform: translate(-50%, -50%);
}

.slider3 .drag-line3 span::before,
.slider3 .drag-line3 span::after{
  content: '';
  position: absolute;
  top: 50%;
  border: 10px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.slider3 .drag-line3 span::before{
  left: 40%;
  border-left-color: #fff;
}

.slider3 .drag-line3 span::after{
  left: 60%;
  border-top-color: #fff;
  
}

/********paragraph Section********/
.paragraph{
  width: 100%;
  height: 80vh;
}

.paragraph .font-2{
  font: var(--font_2);
  color: var(--white-font-color);
}

.paragraph .font_8{
  font: var(--font_8);
  color: var(--white-font-color);

}

::marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0px !important;
  text-align: start !important;
  color: var(--white-font-color);
  text-align-last: start !important;
}

/********Our Products Section********/
.our-products{
  max-width: 1350px;
  justify-content: center;
  align-items: center;
  height: 175vh;
  margin: auto;
  width: 80%;
  padding: 20px;

}

.our-products .card{
  margin-top: 0px;
  max-width: 100%;
  justify-content: center;
  display: block;
  margin-left: auto;
  margin-right: auto;

}

.our-products .details{
  padding-left: -90px;
  max-width: 60%;
  margin-left: -50px;
  margin-top: 50px;
}

.our-products .details h3{
  color: var(--white-font-color);
  font-size: 1.2rem;
  max-width: 600px;
  margin-top: 0px;
}

.our-products .details span p{
  color: var(--dark-font-color);
  font-size: 15px;
  margin-top: 15px;
}

.our-products .img-card{
  display: flex;
  position: relative;
  width: 450px;
  height: 350px;
  float: right;
  margin-top: -330px;
}

.our-products .img-card img{
  height: auto;
  max-width: 100%;
  vertical-align: top;
  margin-left: 80px;
  border-radius: 10px;

}

.our-products .card1{
  max-width: 100%;
  justify-content: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 200px
}

.our-products #card3{
  margin-top: 700px
}

.our-products .card1 .details{
  margin-bottom: 180px;
}


.our-products .card1 .details{
  margin-right: -50px;
  max-width: 50%;
  margin-top: 0px;
  float: right;
}

.our-products .card1 .img-card{
  display: flex;
  position: relative;
  width: 450px;
  height: 350px;
  float: left;
  margin: auto;
}

.our-products .card1 .img-card img{
  height: auto;
  max-width: 100%;
  margin-left: auto;
  border-radius: 10px;
}

/********Image Gallery Section********/
.image-layout h3{
  color: var(--white-font-color);
  align-items: center;
  font-size: 3em;
  margin-bottom: 25px;
  text-align: center;
}


/********Product Section********/
.prodIntro{
  display: flex;
  justify-content: space-evenly;
  position: relative;
  padding: 4rem 0;
  height: 55vh;
  margin-bottom: auto;
  background: var(--prod-intro) !important;
}

.prodIntro::before{
  content: '';
  position: absolute;
  top: -4rem;
  left: 0;
  width: 330px;
  height: 260px;
  z-index: 1;
}

.prodIntro .card{
  width: 450px;
  height: 400px;
}

.prodIntro .card h1{
  color: var(--dark-font-color);
}

.prodIntro .card p{
  color: var(--dark-font-color);
  font-size: 15px;
}

.prodIntro .card:first-child{
  z-index: 1;
}

.prodIntro .card:last-child{
  width: 600px;
}

.prodIntro .card:last-child p{
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
  letter-spacing: 1px;
  font-size: 16px;
}

.prodIntro .card img{
  width: 450px;
  height: 320px;
  border-radius: 10px;
}

/********Products Section********/
#productss{
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white-font-color);
  background-color: var(--background-color);
  padding: 0 100px;
}
#productss .content1{
  display: flex;
  flex-direction: column;
  padding-top: 170px;
}
#productss .title h1{
  font-size: 45px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
}
#productss .image{
  background-image: url(https://cpsrv24.misshosting.com:2083/img/Product/3/1.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 500px;
}
#productss .content2{
  display: flex;
  flex-direction: column;
  padding-top: 190px;
  padding-left: 20px;
}
#productss .content2 .image{
  background-image: url(https://cpsrv24.misshosting.com:2083/img/Product/3/2.png);
  width: 100%;
  height: 470px;
}
#productss .title p{
  margin-bottom: 0;
  margin-top: 33px;
  font-size: 14px;
  font-family: 'Raleway',sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 25px;
}
#productss .content2 button{
  padding: 14px 27px;
  margin-top: 30px;
  background-color: var(--primary-color);
  border: none;
  outline: none;
  color: var(--black-color);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Raleway',sans-serif;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s;
}

#productss .content2 button a{
  text-decoration: none;
  color: var(--black-color);

}

/********Cookie-Consent-Banner********/
#cookiePopup {
  background-color: #ffffff;
  position: fixed;
  font-size: 14px;
  bottom: 30px;
  width: 70vw;
  max-width: 42.85em;
  box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
  font-family: "Poppins", sans-serif;
  text-align: justify;
  line-height: 1.8em;
  padding: 2em 1.4em;
  border-radius: 6px;
  transition: all 0.5s ease-in;
  z-index: 999999999999999999999999 !important;
}
#cookiePopup img {
  display: block;
  width: 3.75em;
  transform: translateZ(0);
  position: relative;
  margin: auto;
}
#cookiePopup p {
  text-align: center;
  margin: 1.4em 0;
  color: #000 !important;
}
#cookiePopup button {
  background-color: var(--primary-color);
  border: none;
  color: #ffffff;
  font-size: 1.2em;
  padding: 1em 1.4em;
  display: block;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
}

#cookiePopup .buttons{
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: space-between;
  text-align: center;
  justify-content: center;
  align-items: center;
}

#cookiePopup a {
  color: var(--primary-color);
}
.hide {
  visibility: hidden;
  bottom: 0;
  right: 2em;
}
.show {
  visibility: visible;
  bottom: 2em;
  right: 2em;
}
@media only screen and (max-width: 37.5em) {
  #cookiePopup {
    width: 100%;
  }
  .hide {
    bottom: 2em;
    right: 0;
  }
  .show {
    right: 0;
    bottom: 0;
  }
}

/********Slanted Image********/
.slanted-image{
  margin: 0 0 100px;
  padding: 0;
}

.slanted-image .skew{
  padding: 100px;
  background: red;
  transform: skew(0deg, -5deg) translateY(-120px);
}


/********Footer********/
.footer-distributed{
  background-color: #272727;
  height: 45vh;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
  margin-top: 50px;
}

/* Footer left */
.footer-distributed .footer-left{
	width: 40%;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.footer-distributed .footer-left h2{
  color: #ddd;
  margin-left: 30px;
}


/* The company logo */
.footer-distributed img{
	color:  #ffffff;
	font: normal 36px 'Open Sans', cursive;
	margin: 0;
  width: 370px;
  
}

.footer-distributed h3 span{
	color:  lightseagreen;
}

/* Footer links */

.footer-distributed .footer-links{
	color:  #ffffff;
	margin: 20px 30px 12px;
	padding: 0;
}

.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
  color: #fff !important;
  font-weight:400;
	text-decoration: none;
	color:  inherit;
}

.footer-distributed .footer-company-name{
	color:  var(--white-font-color);
  text-align: center;
	font-size: 14px;
	font-weight: normal;
  margin-top:  80px !important;
}

/* Footer Center */

.footer-distributed .footer-center{
	width: 35%;
}

.footer-distributed .footer-center i{
	background-color:  #33383b;
	color: #ffffff;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

.footer-distributed .footer-center p{
	display: inline-block;
	color: #ffffff !important;
  font-weight:400;
	vertical-align: middle;
	margin:0;
}

.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer-distributed .footer-center p a{
	color:  lightseagreen;
	text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
	width: 20%;
}

.footer-distributed .footer-company-about{
	line-height: 20px;
	color:  #92999f !important;
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}

.footer-distributed .footer-company-about span{
	display: block;
	color:  #ffffff;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-distributed .footer-icons{
	margin-top: 25px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color:  #33383b;
	border-radius: 2px;
	font-size: 20px;
	color: #ffffff;
	text-align: center;
	line-height: 35px;
	margin-right: 3px;
	margin-bottom: 5px;
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {

	.footer-distributed{
		font: bold 14px sans-serif;
    height: 120vh;
    width: 414px !important;
    align-items: center;
    right: 0 !important;
    left: 0 !important;
    margin-top: 100px;
	}

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-distributed .footer-center i{
		margin-left: 0;
	}

}
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  max-width: 50px;
  background-color: transparent;
  color: var(--white-font-color);
  text-align: center;
  padding: 5px 0;
  border-radius: 6px; 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext {
  top: -5px;
  right: 70px;
}


/*****Media Query Max Width 1080px*****/
@media (max-width: 1080px){
	.cards .image{
		flex: 100%;
		max-width: 100%;
	}

  .home{
    min-width: 100%;
  }

  header{
    padding: 12px 20px;
  }

  section{
    padding: 20px 20px;
  }

  .home .media-icons{
    right: 15px;
  }

  

  .menu-btn{
    background: url(https://cpsrv24.misshosting.com:2083/img/menu.png)no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu-btn.active{
    z-index: 999;
    background: url(https://cpsrv24.misshosting.com:2083/img/close.png)no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }
}

/*****Media Query Max Width 960px*****/
@media screen and (max-width:960px) {
  .service-box{
    max-width: 45%;
  }

  .border{
    margin-bottom: 0px !important;
    display: none !important;
  }

  .our-products{
    right: 0;
    left: 0;
    max-width: 300px !important;
    justify-content: center !important;
    align-items: center !important;
    height: 975vh;
    width: 80%;
    display: grid;
    margin-right: auto !important;
    margin-left: auto !important;
    height: 470vh !important;
    
}

.our-products .card{
    margin-top: 0px !important;
    max-width: 300px;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
}

.our-products #card{
  margin-top: 0px !important;
}

.our-products .details{
    padding-left: 0px;
    max-width: 100%;
    margin-left: 0px;
    margin-top: 50px;
}

.our-products .card1{
  margin-top: 0px !important;
}

.our-products .card1 .img-card{
    display: grid;
    position: relative;
    width: 450px;
    height: 350px;
    float: none;
    margin-top: -80px;

}

.our-products .img-card img{
    height: auto;
    max-width: 300px;
    vertical-align: top;
    margin-left: 150px;
    margin-top: 370px;
    border-radius: 10px;
    position: absolute;
    display: flex;
}

.our-products .card1 .details{
    max-width: 300px;
    margin-right: 0px;
    max-width: 100%;
    margin-left: 50px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    float: none;

}

.our-products .card1 .details p{
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
}

.our-products .card1 .details h3{
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;

}


.our-products .card1 .img-card{
    display: grid;
    position: relative;
    width: 450px;
    height: 350px;
    float: none;
    margin-top: -500px;
    margin-bottom: -800px;

}


.our-products .card1 .img-card img{
    height: auto;
    max-width: 300px;
    margin-left: 0px;
    margin-left: 100px;
    margin-top: 400px;
    border-radius: 10px;
}  

}

/*****Media Query Max Width 767px*****/
@media screen and (max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
  }


  .service-box{
    max-width: 50%;
  }

  .card .popup-img img{
    width: 100px;
  }
}

/*****Media Query Max Width 574px*****/
@media screen and (max-width: 574px){

  .paragraph{
    width: 100%;
    height: 185vh;
  }
  
  .footer-col{
    width: 100%;
  }

  .home .content h1{
    font-size: 3em;
    line-height: 60px;
  }

  .home .content h1{
    font-size: 1.8em;
    line-height: 40px;
  }  
}

/*****Media Query Max Width 480px*****/
@media screen and (max-width:720px) {
  body{
    width: 100%;
    margin: 0px;
    right: 0;
    left: 0;
  }


  .content{
    padding: 70px 0px;
  }  
  
  .card .popup-img img{
    width: 100%;
  }

  .cards .popup-img{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .9);
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
  }

  .service-box{
    max-width: 300px;
    
  }

  .services{
    max-width: 390px;
  }

  .wrapper{
    max-width: 390px;
  }
  
  .our-products{
    right: 0;
    left: 0;
    max-width: 300px !important;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 475v;
    margin: 0px;
    width: 100%;
    padding: 0px;
    display: grid;
  
}

.our-products .card{
    margin-top: 0px;
    margin-left: 100px;
    max-width: 300px;
    justify-content: center;
}

.our-products .details{
    padding-left: 0px;
    max-width: 100%;
    margin-left: 0px;
    margin-top: 50px;
}

.our-products .card1 .img-card{
    display: grid;
    position: relative;
    width: 450px;
    height: 350px;
    float: none;
    margin-top: -80px;

}

.our-products .img-card img{
    height: auto;
    max-width: 300px;
    vertical-align: top;
    margin-left: 150px;
    margin-top: 370px;
    border-radius: 10px;
    position: absolute;
    display: flex;
}

.our-products .card1 .details{
    max-width: 300px;
    margin-right: 0px;
    max-width: 100%;
    margin-left: 50px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    float: none;

}

.our-products .card1 .details p{
    max-width: 300px;
}

.our-products .card1 .details h3{
    max-width: 300px;
}


.our-products .card1 .img-card{
    display: grid;
    position: relative;
    width: 450px;
    height: 350px;
    float: none;
    margin-top: -500px;
    margin-bottom: -800px;

}


.our-products .card1 .img-card img{
    height: auto;
    max-width: 300px;
    margin-left: 0px;
    margin-left: 100px;
    margin-top: 400px;
    border-radius: 10px;
}

/* Our main images-slideshow container */
.cards .images-slideshow {
  width: 90%;
  height: 90%;
  float: none;
  position: fixed;
  margin: 15px;
  margin-top: 200px;
  text-align: center;
}
 
/*Style for ">" next and "<" previous buttons */
.cards .slider-btn{
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 8px 16px;
  margin-top: -22px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
 
/* setting the position of the previous button towards left */
.cards .previous {
  left: 2%;
}
 /* setting the position of the next button towards right */
.cards .next {
  right: 2%;
}
 
/* On hover, adding a background color */
.cards .previous:hover,
.cards .next:hover {
  color: rgb(255, 253, 253);
  background-color: rgba(0, 0, 0, 0.8);
}

.cards .popup-img{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .9);
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
}

.cards .popup-img span{
  position: absolute;
  top: 0;
  right: 0;
  font-size: 25px;
  margin: 20px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
  z-index: 100;
}
}

/*****Media Query Max Width 480px*****/
@media screen and (max-width: 480px){
  body{
    max-width: 480px !important;
    margin-right: auto;margin-left: auto;
  }

  .home{
    width: 100%;
  }

  .home video {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

	.cards .image .details p{
		font-size: 16px;
	}

	.cards .more .read-more, .more .icon-links a i{
		font-size: 18px;
	}

  .wrapper{
    position: relative;
    height: 300px;
    width: 300px;
    border: 7px solid rgba(131, 130, 130, 0.644);
    background: rgba(52, 59, 52, 0.133);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }  

  .slider input::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 300px;
    width: 3px;
    background: none;
    cursor: col-resize;
  }

  .slider .drag-line{
    width: 5px;
    height: 300px;
    position: absolute;
    left: 49.85%;
  }

  .slider2 .input::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 300px;
    width: 3px;
    background: none;
    cursor: col-resize;
  }

  .slider2 .drag-line2{
    width: 5px;
    height: 300px;
    position: absolute;
    left: 49.85%;
  }

  .slider3 .input1::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 300px;
    width: 3px;
    background: none;
    cursor: col-resize;
  }

  .slider3 .drag-line3{
    width: 5px;
    height: 300px;
    position: absolute;
    left: 49.85%;
  }  

  .wrapper .img .img-1{
    height: 100%;
    width: 100%;
    background: url(../img/1-mob/Wail_Hanawi_Fotomontage.jpg);
  }
  
  .wrapper .img .img-2{
    position: absolute;
    height: 100%;
    width: 50%;
    background: url(../img/1-mob/Wail_Hanawi_Fotomontage_Original.jpg);
  }
  

  .wrapper .img2 .img-3{
    height: 100%;
    width: 100%;
    background: url(../img/2-mob/10.jpg);
  }
  
  .wrapper .img2 .img-4{
    position: absolute;
    height: 100%;
    width: 50%;
    background: url(../img/2-mob/11.jpg);
  }
  
  .wrapper .img3 .img-5{
    height: 100%;
    width: 100%;
    background: url(../img/3-mob/Wail__Hanawi_interior_1.jpg);

  }
  
  .wrapper .img3 .img-6{
    position: absolute;
    height: 100%;
    width: 50%;
    background: url(../img/3-mob/Wail__Hanawi_interior_3.jpg);
  }

  .wrapper{
    height: 270px;
  }

  #productss{
    height: 110vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: var(--white-font-color);
    background-color: var(--background-color);
    padding: 0 50px;
    margin-right: auto;
    margin-left: auto;
  }
  #productss .content1{
    display: flex;
    flex-direction: column;
    padding-top: 170px;
  }
  #productss .title h1{
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
  }
  #productss .image{
    background-image: url(https://cpsrv24.misshosting.com:2083/img/Product/3/1.png);
    background-position: center;
    background-size: cover;
    width: 150px;
    height: 200px;
  }
  #productss .content2{
    display: flex;
    flex-direction: column;
    padding-top: 190px;
    padding-left: 20px;
  }
  #productss .content2 .image{
    background-image: url(https://cpsrv24.misshosting.com:2083/img/Product/3/2.png);
    width: 150px;
    height: 250px;
  }
  #productss .title p{
    margin-bottom: 0;
    margin-top: 33px;
    font-size: 10px;
    font-family: 'Raleway',sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 25px;
    max-width: 250px;
  }
  #productss .content2 button{
    padding: 14px 27px;
    margin-top: 30px;
    background-color: var(--primary-color);
    border: none;
    outline: none;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Raleway',sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
  }
  
  #productss .content2 button a{
    text-decoration: none;
    color: var(--black-color);
  
  }  
}
