* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s linear;
}


.header-show {
  top: 0;
  transition: all 0.5s ease;
  scroll-behavior: smooth;
}


.header-hide {
  top: -100%;
}


.header-black {
  background-color: black;
}


header:not(.header-black) {
  background-color: transparent;
}
#mobMenuNav {
  display: none;
  background-color: #000;
}
.container {
  max-width: 1350px;
  margin: auto;
  position: relative;
  padding: 0px 10px;
}

/* logo */
#logo {
  position: absolute;
  left: 0;
  width: 19%;
}
#logo a {
  display: inline-block;
  width: 100%;
}
#logo a img {
  width: 100%;
}

#menuNav {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu {
  position: absolute;
  right: 31%;
  display: flex;
  justify-content: space-between;
  width: 50%;
  align-items: center;
  margin-right: -100px;
}
#navContact {
  position: absolute;
  right: 0;
}
.dropMenu {
  opacity: 0;
  position: absolute;
  top: 75px;
  left: 50%;
  width: max-content;
  background: #fff;
  line-height: 40px;
  visibility: hidden;
  border-left: 5px solid yellow;
  transform: translate(-50%, 0%);
  box-shadow: 0px 0px 30px -20px #000;
}
.dropMenu::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 5px;
  background-color: yellow;
  top: -5px;
  left: -5px;
}
/* .dropMenu.autoFlow {
    overflow-y: scroll;
    height: 250px;
} */
.dropMenu.visible {
  visibility: visible;
  animation: dropVisible 0.2s ease-in-out forwards, visible 0.2s ease-in-out;
}
@keyframes dropVisible {
  from {
    opacity: 0;
    transform: translate(-50%, 50%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0%);
  }
}

.menuLink * {
  color: #333;
}
.menuLink {
  cursor: pointer;
  position: relative;
  padding: 30px 0px;
}
.menuLink > span,
.menuLink > a,
.menuLink i {
  color: #fff;
}
.menuLink span {
  display: flex;
  align-items: center;
}
.menuLink i {
  font-size: 12px;
  margin-left: 3px;
}

.dropLink {
  padding: 10px 20px;
  transition: all 0.3s linear;
  position: relative;
}
.dropLink::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}

.dropLink:hover::after {
  width: 100%;
  background-color: yellow;
}

/* header link button */
.contButton {
  display: inline-block;
  background-color: yellow;
  padding: 20px;
  position: relative;
  color: #000;
  width: 290px;
  font-weight: 700;
  clip-path: polygon(0 0, 98.5% 0%, 92% 100%, 0% 100%);
  bottom: 0;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
.contButton::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  clip-path: polygon(40% 0, 100% 0%, 100% 100%, 18% 100%);
  right: 0;
  top: 0;
  transition: all 0.3s linear;
}
.contButton:hover {
  background-color: transparent;
  border-color: yellow;
  color: #fff;
}
.contButton:hover::after {
  background-color: yellow;
  width: 30%;
}
.contButton:hover i {
  background-color: transparent;
  color: #000;
}

/* header link icon */
.contButton i {
  display: flex;
  align-items: center;
  font-size: 17px;
  position: absolute;
  right: 2px;
  top: 2px;
  bottom: 2px;
  z-index: 2;
  background: #000;
  color: #fff;
  padding: 20px 25px;
  clip-path: polygon(30% 0%, 91% 0%, 60% 100%, 0% 100%);
  transition: all 0.3s linear;
}

/* slider -css */
#slider {
  height: 95vh;
  overflow: hidden;
}
#sliderWrapper {
  position: relative;
  height: 100%;
}
.slideInfo {
  position: relative;
  z-index: 2;
  /*top: 30%;*/
  left: 6%;
  color: #fff;
  width: 30%;
  height: 100%;
}
.sliderItem {
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
/* sliderItem */
.sliderItem.active {
  visibility: visible;
  z-index: 1;
}

/* slide h tag */
.slideInfo h2 {
  font-size: 4rem;
  position: absolute;
  top: 50px;
  opacity: 0;
}
.sliderItem.active .slideInfo h2 {
  animation: bottomTop 0.6s 0.3s forwards ease-in-out;
}
@keyframes bottomTop {
  from {
    top: 50px;
    opacity: 0;
  }
  to {
    top: 32%;
    opacity: 1;
  }
}

/* slide paragraph */
.slideInfo p {
  font-size: 19px;
  font-weight: 500;
  line-height: 30px;
  position: absolute;
  opacity: 0;
}
.sliderItem.active .slideInfo p {
  animation: bottomTop2 0.8s 0.5s forwards ease-in-out;
}
@keyframes bottomTop2 {
  from {
    top: 60%;
    opacity: 0;
  }
  to {
    top: 48%;
    opacity: 1;
  }
}

/* slide link button */
.slideInfo .slideLink {
  display: inline-block;
  background-color: yellow;
  padding: 25px 20px 25px 50px;
  color: #000;
  width: 290px;
  text-transform: capitalize;
  font-weight: 700;
  clip-path: polygon(0 0, 98.5% 0%, 92% 100%, 0% 100%);
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
.slideInfo .slideLink::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  clip-path: polygon(40% 0, 100% 0%, 100% 100%, 18% 100%);
  right: 0;
  top: 0;
  transition: all 0.3s linear;
}
.slideInfo .slideLink:hover {
  background-color: transparent;
  border-color: yellow;
  color: #fff;
}
.slideInfo .slideLink:hover::after {
  background-color: yellow;
  width: 30%;
}
.slideInfo .slideLink:hover i {
  background-color: transparent;
  color: #000;
}
.sliderItem.active .slideInfo a {
  animation: bottomTop3 1s 0.5s forwards ease-in-out;
}
@keyframes bottomTop3 {
  from {
    bottom: -50%;
    opacity: 0;
  }
  to {
    bottom: 91px;
    opacity: 1;
  }
}

/* slider link icon */
.slideInfo .slideLink i {
  display: flex;
  align-items: center;
  font-size: 17px;
  position: absolute;
  right: 2px;
  top: 2px;
  bottom: 2px;
  z-index: 2;
  background: #000;
  color: #fff;
  padding: 20px 25px;
  clip-path: polygon(30% 0%, 91% 0%, 60% 100%, 0% 100%);
  transition: all 0.3s linear;
}
.fa-angle-double-right:before,
.fa-angles-right:before {
  margin-left: -5px;
}

/* slider img */
.sliderItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  transition: opacity 1s ease-in-out, visibility 0s ease-in-out 1s;
}
.sliderItem.active img {
  opacity: 1;
  transition: opacity 1s ease-in-out, visibility 0s ease-in-out;
}

#slider .sliderItem::after {
  content: "";
  position: absolute;
  background-color: #000;
  opacity: 0.6;
  inset: 0;
}

/* slider ArrowsBox */
#slider .sliderArrowsBox {
  position: absolute;
  right: 3%;
  bottom: 10%;
  display: flex;
  align-items: center;
  z-index: 99;
}
#slider .customShape {
  display: grid;
  place-items: center;
  background-color: yellow;
  z-index: 2;
  clip-path: polygon(45% 0%, 100% 0%, 59% 100%, 5% 100%);
  position: relative;
  padding: 60px 80px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
#slider .customShape:hover {
  background-color: #898989;
}
#slider .slideArrow {
  color: #fff;
  background: #000;
  height: 98%;
  width: 98%;
  position: absolute;
  display: grid;
  place-items: center;
  clip-path: polygon(45% 0%, 100% 0%, 59% 100%, 5% 100%);
}
.customShape:nth-child(1) {
  margin-right: -50px;
}

/* slider bigPolygon */
.sliderItem .bigClip {
  position: absolute;
  right: 10%;
  top: 0;
  bottom: 5px;
  height: 100%;
  width: 900px;
  background-color: yellow;
  opacity: 0;
  clip-path: polygon(45% 0%, 98% 0%, 65% 100%, 0% 100%);
  transform: translateX(70px);
  z-index: 1;
}
.sliderItem.active .bigClip {
  animation: bigClip 1.3s 0.8s forwards;
}
@keyframes bigClip {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
    transform: translateX(0px);
  }
}
/* slider smallPolygon */
.sliderItem .smallClip {
  position: absolute;
  right: 6%;
  bottom: 5px;
  height: 80%;
  width: 500px;
  background-color: yellow;
  opacity: 1;
  clip-path: polygon(45% 0%, 100% 0%, 59% 100%, 0% 100%);
  z-index: 2;
  opacity: 0;
}
.sliderItem.active .smallClip {
  animation: smallClip 1s 0.5s forwards;
}
@keyframes smallClip {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
/* company about */
#aboutSection {
  margin-top: 30px;
}
#aboutContents {
  display: flex;
  position: relative;
}
.leftSideAbout {
  width: 50%;
  padding-top: 4rem;
}
.leftSideAbout h4 {
  line-height: 25.6px;
  color: #6b7177;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}
.leftSideAbout h2 {
  line-height: 54.6px;
  letter-spacing: -1.8px;
  font-size: 52px;
  text-transform: capitalize;
}

.leftSideAbout p {
  font-size: 18px;
  line-height: 28.8px;
  margin: 16px 0px;
}

.leftSideAbout a {
  display: inline-block;
  padding: 7px 16px;
  font-size: 14.4px;
  line-height: 23px;
  text-align: center;
  background-color: #000;
  color: #fff;
  border-radius: 3px;
  text-transform: capitalize;
  border: 2px solid #000;
}

.leftSideAbout a:nth-of-type(2) {
  background-color: #fff;
  color: #000;
}
#aboutCounters {
  position: absolute;
  display: flex;
  bottom: 10%;
  left: 0;
  width: 60%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px 0px;
  padding: 16px 7px;
  z-index: 9;
  background-color: #fff;
}
#aboutCounters div {
  width: 33%;
  text-align: center;
  padding: 16px;
}
#aboutCounters div p:nth-of-type(1) {
  font-size: 31px;
  font-weight: 600;
  line-height: 49.92px;
}

/* ------------------- */
/* whychoose video and content */
#whyChoose {
  background-color: #0f1934;
  margin-top: 30px;
  margin-bottom: 70px;
}
#whyChooseBox {
  height: 580px;
  display: flex;
}
#whyChooseBox > div {
  width: 50%;
  position: relative;
}
#whyChooseVideo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.playIcon {
  display: grid;
  place-items: center;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 50px;
  border-radius: 50%;
  background-color: chocolate;
  cursor: pointer;
}
.playIcon i {
  position: relative;
  z-index: 99;
}
.playIcon::before {
  content: "";
  background-color: chocolate;
  border-radius: 50%;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(1);
  animation: scaleHuge 1s ease-in-out infinite;
}
@keyframes scaleHuge {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* choose content */
#whyChooseContent {
  padding: 30px 0px 50px 50px;
}
#headAbove {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  color: #f55b14;
  padding-left: 70px;
}
#headAbove::before {
  position: absolute;
  content: "";
  background: #f55b14;
  width: 60px;
  height: 1px;
  top: 14px;
  left: 0;
}
#whyChooseContent h2 {
  font-size: 36px;
  text-transform: capitalize;
  color: #fff;
  font-weight: bold;
  margin-bottom: 40px;
}
.whySingleContent {
  display: flex;
  position: relative;
  width: 70%;
}
.whySingleContent:nth-of-type(2){
    margin-top:20px;
}
.whySingleContent span {
  position: relative;
}
.whySingleContent i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 20px;
  background: #f55b14;
  color: #fff;
  font-size: 17px;
  border-radius: 50%;
  /* padding: 20px; */
  position: relative;
  z-index: 9;
}
.whySingleContent span::before {
  width: 1px;
  height: 160px;
  position: absolute;
  content: "";
  top: 0;
  left: 30px;
  border-left: 1px dashed #f2f2f2;
}
.whySingleContent h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #fff;
}
.whySingleContent p {
  margin-bottom: 20px;
  color: #fff;
  opacity: 0.7;
  line-height: 1.5rem;
}
.whySingleContent:nth-last-child(1) span::before {
  border: none;
}

/* modalVideo */
#whyVideoBox {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  place-items: center;
  top: 0;
}
#whyVideoBox.visible {
  display: grid;
}
#modalVideo {
  height: 300px;
  width: 500px;
  position: relative;
}
#modalVideo iframe {
  width: 100%;
  height: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
#whyVideoBox::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 0;
}
.closeModal {
  display: grid;
  width: 50px;
  height: 50px;
  position: absolute;
  right: -30px;
  top: -25px;
  background: #fff;
  z-index: 9999;
  border-radius: 50%;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0px 0px 10px #000;
}

/* services style*/

#serviceSlider {
  margin-top: 60px;
  position: relative;
}
.articleTitle {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.swiper-nav {
    position: absolute;
    top: -20%;
    right: 2%;
    width: 10%;
}
.swiper-nav>div{
    height: 50px;
    width: 50px;
    position: absolute;
    background: #3335;
    border-radius: 50%;
    color: #fff;
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
}
.swiper-nav>div::after {
    font-size: 20px;
}
.subtitle {
  padding-left: 45px;
  padding-right: 45px;
  position: relative;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-top: 20px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.6;
  color: #a3a3a3;
}
.allPosts {
    position: absolute;
    top: 10%;
    right: 20%;
    display: inline-block;
    color: #333;
}
/*.articleTitle::before {*/
/*  content: "";*/
/*  border-radius: 5px;*/
/*  position: absolute;*/
/*  margin: 0 auto;*/
/*  width: 56px;*/
/*  height: 13px;*/
/*  background: url("/img/carbefore.png");*/
/*}*/
.articleTitle h2 {
  font-size: 50px;
}

/* slider */

#serviceSlider .swiper-slide,
.serviceShort{
  position: relative;
  height: 450px;
  width: 400px !important;
}
.services {
    padding: 50px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.serviceShort:hover .swiper-slide-content::before {
    width: 100%;
    height: 100%;
}
.swiper-slide-content * {
    transition: all .3s linear;
}
.serviceShort:hover .swiper-slide-content * {
    color: #fff;
}
#serviceSlider .slideImg,
.services .slideImg {
  overflow: hidden;
  height: 100%;
  border-radius: 20px;
}
#serviceSlider .swiper-slide img,
.serviceShort img{
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

#serviceSlider .swiper-slide:hover img {
  transform: scale(1.2);
}
#serviceSlider .swiper-pagination,
#projectSlider .swiper-pagination-2 {
  bottom: -60px !important;
  position: relative;
}
#serviceSlider .swiper-pagination span,
#projectSlider .swiper-pagination-2 span {
  width: 12px;
  height: 12px;
}
#serviceSlider .swiper-wrapper {
  padding-left: 30px;
}
.swiper-slide-content {
  position: absolute;
    left: -25px;
    right: 50px;
    bottom: 28px;
    padding-left: 34px;
    transition: all 300ms ease;
    z-index: 3;
    background-color: #fff;
    height: 104px;
}
.swiper-slide * {
  transition: all 0.4s ease-in-out;
}
.swiper-slide-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: #ff6d2e;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.swiper-slide:hover .swiper-slide-content * {
  color: #fff;
}
.swiper-slide:hover .swiper-slide-content::before {
  width: 100%;
  height: 100%;
}
.swiper-slide-content .topIcon {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  background-color: #ff6d2e;
  transition: all 300ms ease;
  z-index: 1;
}
.topIcon i {
  position: relative;
  z-index: 2;
}
.topIcon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: #f44e07;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}
.swiper-slide:hover .topIcon::before {
  width: 100%;
  height: 100%;
}
.swiper-slide-content .titleLink {
  padding-left: 1.5rem;
    font-size: 20px;
    color: #000;
    font-weight: 600;
    position: absolute;
    top: 15px;
}
.swiper-slide-content p {
    position: absolute;
    font-size: 14px;
    line-height: 26px;
    /* padding-top: 20px; */
    /* margin-bottom: 0; */
    color: #929292;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    bottom: 0;
    left: 10px;
    width: 80%;
}
.swiper-slide-content .btmIcon {
  position: absolute;
    width: 50px;
    height: 50px;
    right: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    background-color: #04223e;
    color: #fff;
}

/* ----------- */

/*products*/
.blogPageContents {
    position: relative;
}
.blogPageTexts {
    position: relative;
    top: -150px;
    width: 80%;
    left: 10%;
    background: #fff;
    padding: 60px 80px;
    box-shadow: 0px 0px 20px #0004;
}
.blogPageTitle {
        font-size: 48px;
    margin-bottom: 30px;
}
.blogPageStory {
    font-size: 16px;
    line-height: 1.375;
    color: #5C626A;
}
.blogPageStory ul li,
.blogPageStory ol li {
    list-style: initial;
}
.blogPageStory ul,
.blogPageStory ol {
    padding-left: 15px;
}
.productPage,
.blogPage {
    padding: 50px 0px;
}
#productsContent {
    padding-top: 50px;
}
.products {
    padding: 50px 0px;
}
.products img {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 150px;
    height: 150px;
    transition: all 1s ease, -webkit-all 1s ease;
}
.products a {
    display: inline-block;
    height: 450px;
    width: 33%;
    position: relative;
    overflow:hidden;
    padding: 40px 30px 40px 40px;
    border-radius: 12px;
    box-shadow: 0px 0px 1px #0005;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: -0.3px;
    color:#6d635d;
}
.products a:hover img {
    transform: scale(1.1);
}
.products a h4 {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -0.6px;
    color: #493d36;
    margin-bottom: 15px;
}
#products {
    padding: 50px 0px;
}
#productsBox {
    margin: 50px 0px;
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 0px;
    color: #FFF;
    background: linear-gradient(180deg, #20395A 0%, #060D13 100%);
}
#productsBox h2 {
    position: relative;
    font-size: 40px;
    line-height: 50px;
    text-align:center;
}
#productsBox h2::before,
#productsBox h2::after{
    content: "";
    position:absolute;
    width: 40%;
    height: 1px;
    top:50%;
    background: #fff;
}
#productsBox h2::before {
    left:0;
}
#productsBox h2::after {
    right:0;
}
.productPost {
    width: calc(33.33% - 30px);
}
.productPost p{
    margin-top: 25px;
    font-size: 14px;
    text-align: left;
    color:#8ca3bc;
}

#products a {
    display: inline-flex;
    position: relative;
    width: 100%;
    background: #0c1725;
    padding: 45px 20px;
    color: #fff;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
}
#products a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left:50%;
    height: 1px;
    background: #7e8ef6;
    width: 15%;
    transform: translate(-50%, -50%);
}
#products .prImg {
    filter: invert(1);
    width: 90px;
    height: 90px;
}
#products .prImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#products a h4 {
    font-size: 25px;
    line-height: 30px;
    padding: 25px 50px 0px;
}
/*#productsBox::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    left: 0;*/
/*    top: 0;*/
/*    background-color: #0008;*/
/*    z-index: 0;*/
/*}*/
/*#productsContent {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    padding: 40px 10px 30px;*/
/*}*/
/*#productsContent h2 {*/
/*    display: inline-block;*/
/*    font-size: 52px;*/
/*    line-height: 54px;*/
/*    letter-spacing: -1.82px;*/
/*    color: #fff;*/
/*    position: relative;*/
/*}*/
/*#productsContent h2::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 20px;*/
/*    background-color: #fecd87;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    z-index: -1;*/
/*}*/
/*#products {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    gap: 20px;*/
/*    flex-wrap: wrap;*/
/*    margin-top: 48px;*/
/*}*/
/*#products a {*/
/*    color: #fff;*/
/*    display: inline-block;*/
/*    width: 20%;*/
/*}*/
/*#products h4 {*/
/*    font-size: 25px;*/
/*    text-transform: capitalize;*/
/*    margin: 7px 0px;*/
/*}*/
/*#products img {*/
/*    width: 75px;*/
/*    filter: invert(1);*/
/*}*/
/*#products p {*/
/*    line-height: 25.6px;*/
/*}*/
.productLeft h2{
    font-size: 52px;
    line-height: 68px;
    letter-spacing:-1.4px;
    color:#493d36;
    margin-bottom: 30px;
}

.productBoxes .productLeft {
 width: 60%;   
}
.postImgs .otherimgs li {
    height: 100px;
}
.postImgs .otherimgs {
    margin-top: 20px;
}
.productLeft a {
    display: inline-block;
    height: 400px;
    width: 100%;
    position: inherit;
    overflow: hidden;
    padding: 0px;
    border-radius: 0px;
    box-shadow: 4px 4px 10px #0005;
    font-size: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 20px;
}
.productLeft img {
    position: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.productLeft a:hover img{
    transform: scale(1);
}
.productBoxes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.prContents {
    margin-top: 40px;
}
.prPdfs span {
    width: 49%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    font-weight: 500;
    font-size: 16px;
    color: #FF2828;
    background-color: rgba(255, 255, 255, 0.05);
    background-image: url(/img/link_red_arrow.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 36px) 50%;
    box-shadow: inset 0 0 0 1px #ff2828;
    transition: all 0.15s linear;
    margin: 5px 0px;
}
.prPdfs span:hover {
    background:#FF2828;
    color:#fff;
    background-image: url(/img/link_white_arrow.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 36px) 50%;
}
.prPdfs a {
 width: 100%;
 height: 100%;
 box-shadow:initial;
 display: grid;
 place-items:center;
}
.prContentTitle {
    display: flex;
    gap:40px;
    margin-bottom: 30px;
}
.prAbout {
    display: none;
    text-align:justify;
}
.prAbout.active {
    display: block;
}
.prContentTitle h3 {
    position: relative;
    font-weight: 600;
    font-size:21px;
    line-height: 35px;
    color: #493d36;
    letter-spacing: -.5px;
    transition: color .3s ease;
    cursor: pointer;
}
.prContentTitle h3::before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 49%;
    width: 0;
    height: 2px;
    background-color: #493d36;
    border-radius: 2px;
    opacity: 0;
    -webkit-transition: width .3s ease, opacity .3s ease;
    transition: width .3s ease, opacity .3s ease;
}

.prContentTitle h3::after {
    content: "";
    position: absolute;
    right: 49%;
    bottom: 3px;
    width: 0;
    height: 2px;
    background-color: #493d36;
    border-radius: 2px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0;
    -webkit-transition: width .3s ease, opacity .3s ease;
    transition: width .3s ease, opacity .3s ease;
}
.prContentTitle h3.active::before,
.prContentTitle h3.active::after{
    width: 51%;
    opacity: 1;
}
.prContentTitle h3 span {
    position: relative;
    bottom: -1px;
    left: 50%;
    display: block;
    width: 18px;
    height: 4px;
    overflow: hidden;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.prContentTitle h3 span::before {
    content: "";
    position: absolute;
    bottom: 4px;
    width: 18px;
    height: 4px;
    background-image: url("/img/tub-subtract.svg");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    -webkit-transition: bottom .3s ease, opacity .3s ease;
    transition: bottom .3s ease, opacity .3s ease;
}
.prContentTitle h3.active span::before{
    bottom: 0;
    opacity: 1;
    -webkit-transition: bottom .3s ease, opacity .3s ease;
    transition: bottom .3s ease, opacity .3s ease;
}
.prAbout {
    color:#493d36;
    font-size: 16px;
    line-height: 28px;
    word-spacing: -.025em;
}
/* ----------- */

/* projects slider  */
.projects {
    padding: 50px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.projects .swiper-slide{
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    width: 30%;
}
.projects .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proctSliderTitle {
  margin-bottom: 60px;
}
.articleTitle {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.prItem {
  height: 100%;
  overflow: hidden;
}
.prItem::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  opacity: 1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.3);
  transition: all 500ms linear;
  z-index: 1;
}
.prItem::after {
  content: "";
  position: absolute;
  bottom: 50%;
  top: 50%;
  left: 0;
  right: 0;
  opacity: 1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.3);
  transition: all 600ms linear;
}
.prItem:hover::before {
  left: 0;
  right: 0;
  opacity: 0;
}
.prItem:hover::after {
  top: 0;
  bottom: 0;
  opacity: 0;
}
/*.articleTop::before {*/
/*  content: "";*/
/*  border-radius: 5px;*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  margin: 0 auto;*/
/*  width: 56px;*/
/*  height: 13px;*/
/*  background: url("/img/carbefore.png");*/
/*}*/
.subtitle {
  padding-left: 45px;
  padding-right: 45px;
  position: relative;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-top: 20px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.6;
  color: #a3a3a3;
}
#projectSlider {
  padding-bottom: 60px;
}
#projectSlider .swiper-slide {
  height: 400px;
  overflow: hidden;
    border-radius: 20px;
}
#projectSlider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.prItem:hover img {
  transform: scale(1.1);
}
#projectSlider .swiper-pagination {
  bottom: -50px !important;
}
#projectSlider .swiper-pagination-2 {
  text-align: center;
}
#projectSlider .swiper-pagination span {
  width: 12px;
  height: 12px;
}
.swiper-pagination-bullet {
  background-color: #ed3237 !important;
}
.projectContent {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 70px;
    max-width: 329px;
    background-color: #fff;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}
.projectContent::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #ed3237;
  transition: all 300ms ease;
  content: "";
}
.projectContent::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 19%;
  width: -webkit-fill-available;
  height: 8px;
  background-color: #ff6d2e;
  z-index: -1;
  overflow: hidden;
}
.prItem:hover .projectContent::before {
  width: 100%;
}
.projectDirectLink {
  position: relative;
  padding: 20px 30px 15px;
  display: inline-flex;
  color: #000;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1.2rem;
}
.prItem:hover .projectDirectLink {
  color: #fff;
}
.projectLinkOther {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  display: block;
  color: #fff;
  text-align: center;
  background-color: #ff6d2e;
}

#offsetWrap {
  margin: 0px -320px 0px -320px;
  position: relative;
}
#prSlides {
  overflow: hidden;
}

/* Galleries */
#galleryTitle {
  text-align: center;
  padding-top: 100px;
}
#galleryTitle h5 {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  color: #f55b14;
}
#galleryTitle h2 {
  font-size: 36px;
  text-transform: capitalize;
  color: #0f1934;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}
#galleryTitle span {
  background: #0f1934;
  display: block;
  height: 1px;
  left: 0;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  top: 0;
  width: 30%;
  margin: 0px auto;
}
#galleryTitle p {
  margin-bottom: 50px;
  margin-top: 30px;
}
#galleryNav {
  position: relative;
  text-align: center;
  margin: 40px 0px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  gap: 20px;
}
#galleryNav li {
  display: inline-block;
  background: #0f1934;
  padding: 12px 32px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}
#galleryNav li.active {
  background-color: red;
}
.gallery {
  display: none;
  flex-wrap: wrap;
  gap:15px;
}
.gallery.active {
  display: flex;
}
.gallery .galleryItem {
  width: 20%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  /*padding: 15px;*/
  transform: scale(0);
  transition: all 0.5s ease;
}
.galleryItem.is-visible {
  transform: scale(1);
}
.imgBox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#galleryLists .gallery img {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin:0px;
}
#galleryLists .gallery img:hover {
  transform: scale(1.2);
}
.galleryItem img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

/* galleryModal */
.galleryModal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}
.galleryModal.active {
  display: flex;
}
.galleryModal span {
  position: absolute;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
}
.modalLeftIcon {
  left: 20px;
}
.modalRightIcon {
  right: 20px;
}
.galleryModal .galleryItem {
  width: 300px;
  height: 300px;
  position: relative;
  z-index: 3;
}
.galleryModal::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  top: 0;
}
#sortGalleries {
  display: none;
}

/* blogs */
.blogsTitle {
  text-align: center;
  margin-top: 80px;
  position: relative;
}
.blogsTitle .allPosts {
    top: 30px;
    right: 0;
}
.blogsTitle h3 {
  color: #6b7177;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
}
.blogsTitle h2 {
  font-size: clamp(2.074rem, -0.875rem + 8.333vw, 2.44rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-transform: capitalize;
}
.blogsBox {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
}
.blog {
  width: 32%;
  display: inline-flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #000;
}
.blogImg {
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
}
.blogImg img {
  width: 100%;
  height: 100%;
}

.blog h4 {
    margin-top: -15px;
    line-height: 1.2;
    font-size: 1rem;
    font-weight: 100;
}
.blog p {
    font-size: 14px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
}
.blog p span {
  font-weight: bold;
  color: #000;
  margin-right: 5px;
}
.blogPageImg{
    height: 540px;
    overflow: hidden;
    border-radius: 20px;
}
.blogPageImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* contact forms */
:root {
  --color-text: #003973;
}
.contTitleTop {
  display: inline-block;
  margin: 0px 0px 25px 0px;
  padding: 3px 10px 3px 10px;
  background-color: #ffd84f;
  border-radius: 5px 5px 5px 5px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-text);
}
.contactLinks h2 {
  position: relative;
  margin: 0px 0px 40px 0px;
  font-size: 4rem;
  color: var(--color-text);
}
.contactLinks h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 30px;
  background-color: #ccd7e3;
  z-index: -1;
}
.contactBox {
  display: flex;
  justify-content: space-between;
  padding: 100px 0px;
}
.contactLinks .link {
  display: flex;
  align-items: center;
}
.links {
  padding: 44px 32px 28px 40px;
  background: #0001;
    border-radius: 15px;
}
.link {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.link a {
  color: var(--color-text);
}
.contIcon {
  margin-right: 20px;
  font-size: 17px;
  width: 35px;
  height: 35px;
  background-color: #ffd84f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.contIcon:hover {
  transform: scale(1.1);
}
.link a > span {
  font-size: 20px;
  font-weight: bold;
}
.contactForm {
  width: 50%;
}
.contactForm h3 {
  font-size: 30px;
  line-height: 39.9px;
  color: var(--color-text);
  margin-bottom: 40px;
}
.similar {
  width: 50%;
  padding: 12px;
  line-height: 21px;
  border-radius: 5px;
  outline: none;
  border: none;
  background-color: #ececec;
  margin-bottom: 35px;
  color: #999;
  font-weight: 300;
}
.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.contact textarea {
  min-width: 100%;
  height: 150px;
}
.policyBox {
  margin-bottom: 20px;
}
.formSubmit {
  width: 100%;
  font-size: 18px;
  line-height: 31px;
  text-align: center;
  background-color: #ffd84f;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px 0px;
  border-radius: 5px;
  transition: all 0.3s linear;
  padding: 15px 20px;
  border: none;
  outline: none;
  color: var(--color-text);
  cursor: pointer;
}
.formSubmit:hover {
  background-color: var(--color-text);
  color: #fff;
}
select {
  color: #999;
}
#policy:focus input {
  background-color: transparent;
}

/* references */

#references {
    margin: 60px 0px;
  background-color: #f0f2f6;
}
#references .swiper {
  height: 300px;
  max-width: 1200px;
}
#references img {
    width: 100%;
}
#references .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
#references div[role="button"] {
  color: black;
}
#references div[role="button"]::after {
  font-size: 35px;
}

/* ---------------- */

/* calltoaction */

#callToAction {
  background-color: #f0f2f6;
  padding-block: 3.188rem;
  margin: 60px 0px;
}
#callContent {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#callLeftSide {
  width: 70%;
}
#callToAction h2 {
  margin-bottom: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
#callToAction p {
  font-size: 1.25rem;
  font-weight: 400;
}
.writeWp {
    width: 25%;
}
.writeWp a {
  display: inline-block;
  width: 100%;
  background: #c21416;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 3.125rem;
  border-radius: 4px;
  font-size: 0.938rem;
  color: white;
  animation: ctaBtnPlay 4s ease infinite;
  box-shadow: 0 0 0 2px #d42224;
}
@keyframes ctaBtnPlay {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(194, 20, 22, .2);
        -moz-box-shadow: 0 0 0 0 rgba(194, 20, 22, .2);
        box-shadow: 0 0 0 0 rgba(194, 20, 22, .2);
    }
    1% {
        -webkit-box-shadow: 0 0 0 10px rgba(194, 20, 22, .2);
        -moz-box-shadow: 0 0 0 10px rgba(194, 20, 22, .2);
        box-shadow: 0 0 0 10px rgba(194, 20, 22, .2);
    }
    10% {
        -webkit-box-shadow: 0 0 0 10px rgba(194, 20, 22, .2), 0 0 0 20px rgba(194, 20, 22, .1);
        -moz-box-shadow: 0 0 0 10px rgba(255, 7, 64, .2), 0 0 0 20px rgba(194, 20, 22, .1);
        box-shadow: 0 0 0 10px rgba(194, 20, 22, .2), 0 0 0 20px rgba(194, 20, 22, .1);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(194, 20, 22, .2);
        -moz-box-shadow: 0 0 0 0 rgba(194, 20, 22, .2);
        box-shadow: 0 0 0 0 rgba(194, 20, 22, .2);
    }
}

/* ------------- */

/* Footer */

#footer {
  background-color: #000;
  color: #fff;
}
#footer * {
  color: #fff;
}
#footerTop {
  padding-top: 50px;
}
#footerTop {
  display: flex;
  padding-bottom: 50px;
}
#footerTopLeft {
  width: 25%;
}
#footerTopLeft img {
  width: 100%;
}
#footerTopLeft p {
  padding-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
}
#footerTopCenter {
  width: 50%;
  display: flex;
  justify-content: center;
}
#footerTopCenter ul {
  padding: 0px 40px;
}
#footerTopCenter ul:nth-child(1) {
  text-align: right;
}
#footerTopCenter ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#footerTopCenter ul:nth-child(2) a {
  font-size: 14px;
  letter-spacing: 1px;
}

#footerTopCenter ul:nth-child(2) li:first-child {
  font-size: 21px;
  font-weight: 600;
}
#footerTopCenter ul:nth-child(1) a {
  border-bottom: 1px solid #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 13px;
}
#footerTopCenter ul:nth-child(1) li:first-child a {
  font-size: 24px;
  transition: all 0.3s ease;
  width: 100%;
  display: inline-block;
  border-bottom: 0px;
}
#footerTopRight {
  width: 25%;
}
#footerTopRight h3 {
  font-weight: 600;
  font-size: 21px;
}
#footerTopRight p {
  margin-top: 0.5rem;
  line-height: 1.4;
  font-size: 14px;
}
#footerTopRight h5 {
  padding-top: 50px;
  padding-bottom: 1rem;
  font-size: 16px;
}
#footerSociaLinks {
  display: flex;
  align-items: center;
}
#footerSociaLinks a {
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #e2e2e2;
}
#footerSociaLinks a i {
  color: #f4f4f4;
  font-size: 20px;
  text-shadow: 1px 1px #080808;
  transition: all 0.225s ease 0s;
}
#footerSociaLinks li:nth-child(1):hover a {
  background-color: blue;
}
#footerSociaLinks li:nth-child(2):hover a {
  background-color: #4867aa;
}
#footerSociaLinks li:nth-child(3):hover a {
  background-color: #33a8da;
}
#footerSociaLinks li:nth-child(4):hover a {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
#footerSociaLinks li:nth-child(5):hover a {
  background-color: #0966c2;
}

#footerBtm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0px;
}
#footerBtm > div {
  width: 50%;
}
#footerBtmLeft {
  border-right: solid 1px #e1e1e1;
  color: #69737f;
  padding-right: 1.5rem;
  line-height: 22px;
}
#footerBtmRight {
  font-size: 12px;
  line-height: 23px;
  text-align: left;
  position: relative;
  padding-right: 0px;
  padding-left: 37px;
  color: #bec4cc;
}
#footerBtmRight span img {
  width: 60px;
  margin-left: 0.5rem;
  margin-top: 0.5rem;
}

.aboutImg {
    border-radius: 20px;
    overflow: hidden;
}
.aboutImg img {
    height: 100%;
}


/*others page css*/
.post {
    padding: 120px 0;
}
.post h2 {
    font-size: 22px;
    color: #444;
    font-weight: bold;
    margin-bottom: 20px;
}
.otherContents {
    margin-top: 40px;
}
.postContent,
.otherContents{
    font-size: 16px;
    line-height: 30px;
    color: #444;
    font-weight: 400;
}
.postImage{
  height: 560px;  
  margin: 40px 0px;
  border-radius: 20px;
  overflow: hidden;
}
.postImage img,
.postContent img{
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.banner-style-one {
    background: black;
    padding-top: 145px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.banner-style-one .parallax {
    background-size: contain;
    background-position: center right;
    opacity: 0.2;
    left: 13% !important;
}
.parallax {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    top: 0;
    left: 0;
}
.banner-style-one .breadcrums {
    border-top: 1px solid #444;
    padding: 30px 0 28px;
}
.banner-style-one .banner-details {
    padding-bottom: 75px;
}
.banner-style-one .banner-details h2 {
    font-size: 60px;
    color: white;
}
.banner-style-one .banner-details p {
    color: #c1c1c1;
    margin-top: 5px;
}
.breadcrums *{
    color: #fff;
}
.otherimgs {
    display: flex;
    flex-wrap:wrap;
    gap:15px;
    align-items: center;
}
.otherimgs li {
    width: 25%;
    border-radius:  20px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
}
.otherimgs li img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/*-----------*/


.blogs {
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    /*gap:10px;*/
    padding: 60px 0px;
}
.blogs a {
    display: inline-block;
    width: 32%;
    text-align:center;
    margin: 40px 0px;
    color: #000;
}
.blogPost .blogImg {
    margin-bottom: 40px;
    height: 380px;
    border-radius: 20px;
    box-shadow: 1px 3px 24px 0 rgba(0, 0, 0, .11);
}
.blogPost .blogImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servicePage {
    position: relative;
    padding: 50px 0px;
}
.serviceImg{
    width: 70%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}
.serviceImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.serviceContent {
    position: absolute;
    right: 5%;
    top: 150px;
    width: 50%;
    background-color: #fff;
    padding: 50px !important;
    border-radius: 5px;
    box-shadow: 3px 0px 33px 0px rgba(0, 0, 0, .1);
    height: 400px;
    overflow: hidden;
}
.extra {
    padding-top: 50px;
}
.extra::after {
    content: "";
  clear: both;
  display: table;
}
.extraContents{
    display: flex;
    justify-content: space-between;
    line-height: 27px;
}
.specificalContents {
    width: 60%;
}
.specificalContents .list {
    display: flex;
    padding-left: 60px;
    justify-content: space-between;
    margin-top: 50px;
}
.specificalContents .list li {
    list-style: initial;
}
.specificalContents h2 {
    font-size: 2rem;
    line-height: 40px;
    word-break: break-all;
}
.extra .prRight,
.productBoxes .prRight{
    height: min-content;
    float: right;
    padding: 30px 30px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #0003;
    border-radius: 20px;
    width: 30%;
}
.productBoxes .prRight {
    margin-top: 7%;
}
.prRight h2 {
    font-weight: 400;
    font-size: 24px;
    color: #fbfcff;
    line-height: 1;
    margin-bottom: 16px;
}
.botao-wpp {
    color: #eee;
    display: inline-flex;
    align-items:center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 3px;
    width: 100%;
    font-size: 20px;
}

.botao-wpp:hover {
  background-color: darken(#25d366, 5%);
}

.botao-wpp:focus {
  background-color: darken(#25d366, 15%);
}
.serviceContent h2 {
    font-size:31px;
    margin-bottom: 20px;
    line-height: 37px;
}
.serviceContent {
    line-height: 27px;
}
.serviceContent p,
.serviceContent li {
    line-height: 25px;
}
.contentBox {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 20;
    overflow: hidden;
}

.companyStory {
    padding: 50px 0px;
}
.companyContent::after{
    content: "";
    display: table;
    clear: both;
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*flex-wrap:wrap;*/
}

/*.abContent {*/
/*    width: 49%;*/
/*}*/
.abContent {
    line-height: 30px;
    text-align:justify;
}
.abContent ul,
.abContent ol{
    padding-left: 20px;
}
.abContent li {
    list-style:initial;
}
.abContent h1 {
    font-size: clamp(1.50rem, calc(1.33rem + 0.92vw), 2.00rem);
}
.abContent p {
    padding: 30px 0 0 0;
    /*line-height: 160%;*/
    font-size: 17px;
    text-align: justify;
}
.aboutPageImg {
    width: 45%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 30px;
    margin-bottom: 30px;
    float:right;
}
.aboutPageImg img {
   width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
}
@media screen and (max-width: 768px) {
    .blogPost .blogImg {
        margin-bottom: 20px;
    }
    .blogPageTitle {
        font-size: 2rem;
    }
    .blogPageTexts {
        position:initial;
        width: 100%;
        padding: 20px 0px;
    }
  .articleTop::before {
    display: none;
  }
  #serviceSlider .swiper-slide {
    width: inherit !important;
  }
  #offsetWrap {
    margin: inherit;
  }
  #prSlides .swiper-wrapper {
    padding: 0px;
  }
  #galleryTitle span {
    width: 100%;
  }
  /* headerMobile */

  header {
    position: inherit;
  }
  #mobMenuNav {
    display: block;
  }
  #mobMenuBox {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #menuNav {
    display: none;
  }
  #mobNavLogo {
    width: 40%;
  }
  #mobNavLogo img {
    width: 100%;
  }

  .line {
    fill: none;
    stroke: white;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 3;
  }
  .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 3;
  }
  .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 3;
  }
  .open .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 3;
  }
  .open .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 3;
  }
  .open .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 3;
  }
  #mobileMenuHam svg {
    fill: white;
    width: 50px;
    height: 50px;
  }
  #mobNavLinks {
    position: fixed;
    padding: 20px;
    top: 0;
    left: -100%;
    height: 100%;
    bottom: 0;
    background: #000;
    z-index: 100;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
  #mobNavLinks.openLinks {
    left: 0;
  }
  #mobNavLinksClose {
    position: absolute;
    font-size: 50px;
    color: #fff;
    right: 8%;
    top: 3%;
  }
  #navigationLogo {
    width: 70%;
    padding-top: 60px;
  }
  #navigationLogo img {
    width: 100%;
  }
  #mobNavigations {
    margin-top: 40px;
  }
  .mobNavigationsList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .mobNavigationsList > li {
    padding-bottom: 10px;
    border-bottom: 1px solid #fff5;
    position: relative;
  }
  .mobNavigationsList > li > a {
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
  }
  .mobNavigationsList > li > i {
    display: none;
    position: absolute;
    color: #fff;
    right: 0;
    top: 5px;
  }
  .fa-angle-down {
    display: none;
  }
  .otherNavs {
    display: none;
    padding: 20px;
    flex-direction: column;
    gap: 1.2rem;
  }
  .otherNavs a {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
  }
  .otherNavs.open {
    display: flex;
  }
  .fa-angle-right {
    display: block !important;
  }
  .fa-angle-down.active {
    display: inline-block;
  }
  .fa-angle-right.close {
    display: none !important;
  }

  /* ------------ */

  /* Slider */
  .slideInfo {
    left: 0;
    padding: 0px 10px;
    width: 100%;
    top: 10%;
  }
  .slideInfo h2 {
    font-size: 2rem;
  }
  .slideInfo p {
    margin: 0;
  }
  @keyframes bottomTop {
    from {
      top: 60%;
      opacity: 0;
    }
    to {
      top: 10%;
      opacity: 1;
    }
  }
  .sliderItem .bigClip,
  .sliderItem .smallClip {
    display: none;
  }
  .slideInfo p {
    font-size: 1rem;
  }
  @keyframes bottomTop3 {
    from {
      bottom: -50%;
      opacity: 0;
    }
    to {
      bottom: 30%;
      opacity: 1;
    }
  }
  #slider .sliderArrowsBox {
    bottom: -10%;
  }

  /* ---------------- */

  /* galleryMobile */
  #galleryTitle {
    padding-top: 50px;
  }
  #galleryTitle h2 {
    font-size: 26px;
    margin-top: 20px;
  }
  .gallery .galleryItem {
    width: 100%;
  }
  #sortGalleries {
    background: darkorange;
    padding: 20px 30px 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #sortGalleries span {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
  }
  #galleryNav {
    flex-direction: column;
    margin-top: 30px;
    height: 0px;
    overflow: hidden;
    margin: inherit;
    transition: all 0.3s ease-in-out;
    gap: 10px;
  }
  #galleryNav.active {
    height: 220px;
    transition: all 0.3s ease-in-out;
    margin-top: 30px;
  }
  #galleryNav li {
    width: 80%;
    margin: 0px auto;
  }
  .galleryBars {
    padding: 5px;
    border-radius: 3px;
    background-color: red;
  }
  /* ------------- */

  /* BlogMobile */
  .blogsBox {
    flex-direction: column;
    padding: 0px 10px;
  }
  .blog {
    width: 100%;
    margin: 5px 0px;
  }
  .blogsTitle {
    margin-top: 40px;
  }
  /* ------------ */

  /* whyChooseUsMobile */
  #whyChooseVideo {
    display: none;
  }
  #whyChooseContent {
    padding: 0px;
  }
  #whyChoose {
    padding: 100px 20px 50px;
  }
  #whyChooseBox > div {
    width: 100%;
  }
  .whySingleContent {
    width: 100%;
  }
  .whySingleContent i {
    margin-right: 10px;
  }
  .whySingleContent span::before {
    height: 180px;
  }
  /* services slider mobile */
  .swiper-wrapper {
    padding: inherit;
  }
  #serviceSlider {
    padding: 0px 20px;
  }
  .swiper-slide-content {
    padding: 20px 15px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    box-shadow: 0px 0px 1px #3334;
  }
  .swiper-slide-content .titleLink {
    padding-left: 80px;
  }
  .articleTitle h2 {
    font-size: 2rem;
  }
  #projectSlider .swiper-slide {
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
  }
  #projectSlider .swiper-pagination {
    bottom: 20px !important;
  }
  .projectContent {
    bottom: 0px;
    left: 0px;
    right: 0px;
    box-shadow: 0px 0px 10px #0005;
  }
  .projectLinkOther {
    right: 0px;
  }
  #projectSlider .swiper {
    padding: 0 15px 20px !important;
  }

  /* --------------- */

  /* ContactMobile */
  .contactBox {
    flex-direction: column;
    padding: 100px 10px 100px;
  }
  .links {
    padding: 0px;
  }
  .contactForm {
    width: 100%;
    margin-top: 30px;
  }
  /* ------------- */
  #footerTop {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }
  #footerTopCenter {
    flex-direction: column;
  }
  #footerTopLeft,
  #footerTopCenter,
  #footerTopRight {
    margin: 15px 0px;
    width: 100%;
  }
  #footerTopCenter ul:nth-child(1) {
    text-align: center;
    margin-bottom: 15px;
  }
  #footerBtm {
    flex-direction: column;
    padding: 50px 20px;
  }
  #footerBtm > div {
    width: 100%;
  }
  #footerBtmRight {
    padding: 0px;
    font-size: 13px;
  }
  #footerBtmLeft {
    padding: 0px;
    border: none;
  }
  #footerTopLeft p {
    padding-top: 30px;
  }
  #footerSociaLinks {
    justify-content: center;
  }
  #footerBtmLeft {
    font-size: 15px;
  }
  #serviceSlider .swiper-wrapper {
    padding-left: 0px;
  }

  /* about mobile */
  
  #aboutContents {
    flex-direction: column;
    padding: 0rem 10px;
  }
  .leftSideAbout {
    width: 100%;
  }
  .leftSideAbout p {
    margin: 16px 0px;
  }
  .aboutImg {
    width: 100%;
    margin: 16px 0px;
  }
  .aboutImg img {
    width: 100%;
  }
  #aboutCounters {
    position: relative;
    width: 100%;
  }
  .leftSideAbout h2 {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  #products a {
        width: 100%;
    }
    .swiper-nav {
        top: -8%;
        right: 15%;
    }
    .swiper-nav>div {
        width: 40px;
        height: 40px;
    }
    #productsBox {
        padding: 0px 10px;
    }
    #serviceSlider .swiper-button-next{
    right: -20px;
    }
    #serviceSlider .swiper-button-prev {
        left: -40px;
    }
    #callLeftSide,
    .writeWp {
        width: 100%;
    }
    .writeWp {
        margin-top: 45px;
    }
    #whyChooseBox {
        height: fit-content;
    }
    @keyframes bottomTop2 {
      from {
        top: 60%;
        opacity: 0;
      }
      to {
        top: 25%;
        opacity: 1;
      }
    } 
    #slider .slideArrow {
            height: 75%;
        width: 75%;
    }
    #slider .customShape {
        background-color: inherit;
    }
    header .container {
        padding: inherit;
    }
    #references .swiper {
        height: 200px;
    }
    #references img {
    width: 70%;
    }
      .banner-style-one .parallax {
        background-size: cover;
        left: 0 !important;
    }
        .banner-style-one .banner-details {
        padding-bottom: 60px;
    }
    .otherimgs {
        gap: 5px;
    }
    .otherimgs li {
        height: 100px;
        width: 49%;
    }
    .post {
        padding: 60px 0;
    }
    .banner-style-one {
        padding-top: 60px;
    }
    .blogs a {
        width: 100%;
        margin: 10px 0px;
    }
    .banner-style-one .banner-details h2 {
        font-size: 40px;
    }
    .abContent,
    .aboutPageImg{
        width: 100%;
    }
    .aboutPageImg {
        margin-top: 40px;
    }
    .productPost {
        width: 100%;
    }
    #productsBox h2::before,
    #productsBox h2::after{
        width: 20%;
    }
    #productsBox h2 {
        font-size: 30px;
    }
}
#map {
    height: 400px;
    margin-bottom: 30px;
}