/* @import url('https://fonts.googleapis.com/css2?family=Barlow:wght@700&family=Poppins:ital,wght@0,200;0,300;0,400;0,600;1,700&display=swap'); */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
}

*:not(i) {
  font-family: "Poppins", sans-serif;
}

a {
  color: red;
}

a:hover {
  color: #fff;
  transition: .2s
}

header {
  /* position: fixed; */
  width: 100%;
  background-color: #000;
  /* padding: 3rem 5rem; */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 6rem;
}

nav a {
  font-size: 1.8rem;
  text-decoration: none;
}

nav a#logo {
  color: #000000;
  font-weight: 700;
}

nav ul a {
  color: #ffffff;
  font-weight: 600;
}

nav ul a:hover {
  color: #ff2a32;
}

/* nav ul li .active{
    color: #ff2a32;
  } */
nav .active a {
  left: 0;
  /* display: block; */
  width: 50%;
  padding-bottom: 90px;
  margin-top: 79px;
  color: #ff2a32;

}

section#home {
  height: 100vh;
  display: grid;
  place-items: center;
}

h1 {
  font-size: 4rem;
}

#ham-menu {
  display: none;
}

nav ul.active {
  left: 0;
}

.banner-head h2 {
  color: #fff;
  transform: translate(0%, 100%);
  line-height: 2;
  font-size: 21px;
}

.video-box {
  width: 100%;
  height: 400px;
}

.round-one {
  margin-top: 30vh;
  margin-left: 90px;
  width: 50px;
  height: 50px;
  background: red;
  opacity: 0.5;
  /* transform: translate(78px, 166px); */
  animation: zoom-in-zoom-out 7s ease-out infinite;
}

.round-two {
  margin-left: 250px;
  margin-top: -67px;
  width: 200px;
  height: 200px;
  background: red;
  opacity: 0.5;
  position: absolute;
  animation: zoom-in-zoom-out 9s ease-out infinite;
}

.round-three {
  margin-top: -21px;
  width: 70px;
  height: 70px;
  background: red;
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

.round-four {
  border: 7px solid red;
  margin-top: -66px;
  width: 200px;

  height: 200px;
  animation: zoom-in-zoom-out 6s ease-out infinite;
}

.round-five {
  width: 15px;
  height: 15px;
  background: red;
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

hr {
  height: 8px;
  border-width: 0;

}

.round-five:before {}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.second-left .first {
  margin-top: -200px;
  width: 86%;
}

.second-left .popup-img {
  width: 96vh;
}

.second-right {
  margin-top: 222px;
}

.second-right h1 {
  color: #fff;
}

.second-right p {
  color: #fff;
  font-size: 15px;
  line-height: 2;
  text-align: justify;
}

.home-third {
  margin-top: 125px;
}

.home-third p {
  font-size: 15px;
  line-height: 2;
  text-align: justify;
}

.heading-deco ::before {
  content: '';
  position: relative;
  width: clamp(1.25rem, 0.9164rem + 1.8405vw, 3.125rem);
  height: 2px;
  background-color: rgba(var(--wdtBorderColorRgb), 0.6);
  display: inline-flex;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  margin-right: 15px;
}


.service-one img {
  filter: invert(31%) sepia(31%) saturate(5654%) hue-rotate(345deg) brightness(99%) contrast(98%);
  width: 100px;
  max-height: 100px;
  object-fit: contain;
}

.service-one h3 {
  color: #fff;
}

.service-one p {
  color: #fff;
  font-size: 14px;

}

.service-list img {
  border-radius: 30px;
  width: 570px;
}

.service-list img:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.experience h1 {
  color: #fff;
  -webkit-text-stroke: 1px #000;
  font-size: 100px;
}

.experience h1:hover {
  color: #fb352c;
  -webkit-text-stroke: 1px #fb352c;
  transition: all .5s ease-in-out;
}

.work-dtl {
  line-height: 2;
  font-size: 14px;
}

.project-head h1 {
  margin-left: -105px;
}


/* slider */
.slider {
  position: relative;
  width: 100%;
  background-color: transparent;
  overflow: hidden;
}

.slider .action-button {
  position: absolute;
  top: 50%;
  width: 50px;
  aspect-ratio: 1;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.9);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  z-index: 100;
  transition: color 0.2s linear, background 0.2s linear, transform 0.2s linear;
}

.slider .action-button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
  cursor: pointer;
}

.slider .action-button.left-chevron {
  left: 0;
  transform: translate(5%, -50%);
}

.slider .action-button.left-chevron:hover {
  transform: translate(15%, -50%);
}

.slider .action-button.right-chevron {
  right: 0;
  transform: translate(-5%, -50%);
}

.slider .action-button.right-chevron:hover {
  transform: translate(-15%, -50%);
}

.slider .slider-list {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  margin: 0;
  padding: 1rem 0;
  list-style: none;
  transition: transform 5s linear;
  gap: 1rem;
}

@media (min-width: 576px) {
  .slider .slider-list {
    grid-auto-columns: 50% !important;
  }

}

@media (min-width: 768px) {
  .slider .slider-list {
    grid-auto-columns: 40% !important;
  }
}

@media (min-width: 992px) {
  .slider .slider-list {
    grid-auto-columns: 40% !important;
  }
}

@media (min-width: 1200px) {
  .slider .slider-list {
    grid-auto-columns: 40% !important;
  }
}

.slider .slider-list .slider-item {
  display: inline-block;
  /* height: 26rem; */
  color: white;
  text-align: center;
}

.slider .slider-list .slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s linear;
}

.slider .slider-list .slider-item img:hover {
  transform: scale(1.1);
  transition: all 1s ease-in-out 0s;
}

/*//slider*/

/* tesimonial section */
.test-head span {
  -webkit-text-stroke: 1px #000;
  color: #fff;
  font-family: "Roboto";
}

.test-head h1 {
  letter-spacing: 2px;
}

.testimonial {
  position: relative;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}

.testimonial .image {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: 100%;
  width: 100%;
}

.slide p {
  text-align: center;
  padding: 0 160px;
  font-size: 15px;
  font-weight: 400;
  color: #333;
}

.slide .quote-icon {
  font-size: 30px;
  color: #4070f4;
}

.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.details .name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.details .job {
  font-size: 12px;
  font-weight: 400;
  color: #333;
}

/* swiper button css */
.nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 1.1);
  transition: 0.2s;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.nav-btn::after,
.nav-btn::before {
  font-size: 20px;
  color: #fff;
}

.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
  background-color: red;
}

@media screen and (max-width: 768px) {
  .slide p {
    padding: 0 20px;
  }

  .nav-btn {
    display: none;
  }
}


.slider-box {
  display: flex;
  width: 100%;
  padding: 4% 2%;
  box-sizing: border-box;
}

.box {
  flex: 1;
  overflow: hidden;
  transition: .5s;
  margin: 0 2%;
  box-shadow: 0 20px 30px rgba(0, 0, 0, .1);
  line-height: 0;
}

.box>img {
  width: 200%;
  height: calc(100% - 10vh);
  object-fit: cover;
  transition: .5s;
}

.box>span {
  font-size: 3.8vh;
  display: block;
  text-align: center;
  height: 10vh;
  line-height: 2.6;
}

.box:hover {
  flex: 1 1 50%;
}

.box:hover>img {
  width: 100%;
  height: 100%;
}


/* bottum up */
.top-btn {
  width: 50px;
  height: 50px;
  display: block;
  background: #ff2a32;
  color: #000;
  text-align: center;
  border-radius: 10px;
  position: fixed;
  bottom: 10px;
  right: 30px;
  cursor: pointer;
  font-size: 18px;
  line-height: 50px;
  z-index: 999;
  transition: .5s;
}

.top-btn::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 0;
  background: #fff;
  color: #000;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 10px;
  transition: .5s;
}

.top-btn:hover::before {
  height: 100%;
}


/* portfolio */
.portfolio-gal a::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: none;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.portfolio-gal a:hover img {
  opacity: 0.2;
}

.portfolio-gal a:hover::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background: url(https://i.ibb.co/3fMkjjF/Resize.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 99;
}

.portfolio-gal {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.portfolio-gal a {

  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.portfolio-gal img {
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.card {
  background: #000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333333;
  border-radius: 2px;
}

.card-image {
  background: #ffffff;
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
}

.card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media only screen and (max-width: 500px) {

  .portfolio-gal {
    display: grid;
    /* grid-template-columns: 1fr; */
    grid-gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}


/* footer */
.footer-left img {
  width: 260px;
}

.social-icons i {
  color: #fff;
  font-size: 30px;
  padding: 6px;
}

.social-icons i:hover {
  color: red;
  transition: .2s
}

/* submit button */
.btn:hover {
  background: #fb352c;
  border: #fb352c;
  transition: .2s
}



/* about page */
.about {
  /* background: linear-gradient(rgba(0,0,0,0.2),#000), url(../img/aboutback.jpg) no-repeat; */
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 218px;
  max-width: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;

}

.bg-image {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 31vh;
  max-width: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}



.more,
.less {
  background-color: #000;
  clear: both;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 14px;
  margin-top: 6px;
  padding: 6px 0;
  text-align: center;
  text-transform: uppercase;
  width: 320px;
}





/* media query */
@media only screen and (max-width: 1300px) {
  html {
    font-size: 56.25%;
  }

  header {
    padding: 2.2rem 5rem;
  }

  .second-left img {
    width: 100%;
  }

  .second-left .first {
    margin-top: -56px;
    width: 100%;
  }

  .round-two {
    margin-left: 100px;
    margin-top: 0px;
  }

  .second-right {
    margin-top: 0;
  }

  .service-list img {
    width: 100%;
  }

  .tab button {
    width: 33% !important;
  }

  .tab-section {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 50%;
  }

  #ham-menu {
    display: block;
    color: #ffffff;
  }

  nav a#logo,
  #ham-menu {
    font-size: 3.2rem;
  }

  nav ul {
    background-color: black;
    position: fixed;
    left: -100vw;
    top: 73.6px;
    width: 100vw;
    height: calc(100vh - 73.6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transition: 1s;
    gap: 0;
  }

  nav ul {
    top: 160.18px;
    /* height: calc(100vh - 195.18px); */
    z-index: 1;
  }

  .service-icon {
    margin-top: 57vh;
  }

  .tab button {
    width: 100% !important;
  }

  .tab-section {
    display: none;
  }

}

@media only screen and (max-width: 575px) {
  html {
    font-size: 46.87%;
  }

  header {
    padding: 2rem 3rem;
  }

  nav ul {
    top: 160.18px;
    height: calc(100vh - 195.18px);
    z-index: 1;
  }

  .round-four {
    /* z-index: -1;
      position: relative;
      top: -263px;
      left: 76px; */
    display: none;
  }

  .tab button {
    width: 100% !important;
  }

  .tabcontent .content {
    margin-left: 0 !important;
  }

  .tab-section {
    display: none;
  }

  .approach-img img {
    left: 0 !important;
    margin: 0 !important;
  }

  .approach-content {
    margin-top: -63px !important;
    position: relative;
    left: 53px !important;
    margin-bottom: 30px;
  }

  .bg-image {
    background-attachment: scroll;
  }

  .slider .slider-list {
    grid-auto-columns: 35%;
  }
}


.tab {
  overflow: hidden;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: #000;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 17px 16px;
  transition: 0.3s;
  font-size: 14px;
  color: #fff;
  gap: 10px;
  border-right: 1px solid #fff;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
  color: #000;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #fb352c;
  color: #000;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}

/* .tabcontent .content{
    margin-left: 125px !important;
  } */

.content-sec {
  background: linear-gradient(to right, #fb352c 0%, #000 100%);
  /* background:  #fb352c; */
  width: 100%;
}

.content-sec span {
  color: #fff;
  font-size: 15px;

}

.list-box p {
  font-size: 14px;
}

.list-box {
  border-radius: 40px;
  background-color: #ecf0f3;
  height: 306px;
}


.approach-img img {
  position: relative;
  width: 100%;
  padding: 39px;
  margin: 21px;
  border-radius: 64px;
  left: 70px;
}

.approach-content {
  background: linear-gradient(to right, #fb352c 0%, #000 100%);
  /* background-color: red; */
  color: #fff;
  padding: 35px;
  margin-top: 104px;
  position: relative;
  left: 0;
  z-index: 1;
  width: 75vh;
}





/*accordion*/
.tab-acc {
  position: relative;
  width: 100%;
  color: #fff;
  overflow: hidden;
  transition: all 1s ease;
  /* display: none; */
}

.tab-acc input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab-acc label {
  position: relative;
  display: block;
  padding: 10px 0 10px 1em;
  background: #000;
  line-height: 3;
  cursor: pointer;
  font-size: 16px;
  border-bottom: 1px solid red;
}


.tab-content-acc {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
  color: #000;
  transition: all 1s ease;
}

.tab-content-acc p {
  margin: 1em;
}

/* :checked */
.tab-acc input:checked~.tab-content-acc {
  max-height: 100%;
}

/* Icon */
.tab-acc label::after {
  position: absolute;
  right: 0;
  top: 10px;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}

.tab-acc input[type=checkbox]+label::after {
  content: "+";
}

.tab-acc input[type=radio]+label::after {
  content: "\25BC";
}

.tab-acc input[type=checkbox]:checked+label::after {
  transform: rotate(315deg);
}

.tab-acc input[type=radio]:checked+label::after {
  transform: rotateX(180deg);
}

.tab-acc label i {
  font-size: 28px;
  width: 5%;
}

/* .content p{
  font-size: 14px;
} */







.accordion dl,
.accordion-list {
  border: none;

  &:after {
    content: "";
    display: block;
    height: 1em;
    width: 100%;
    background-color: darken(#38cc70, 10%);
  }
}

.accordion dd,
.accordion__panel {
  background-color: #eee;
  font-size: 1em;
  line-height: 1.5em;
}

.accordion dt {
  border-bottom: 1px solid #ff88b4;
}

.accordion p {
  padding: 1em 2em 1em 2em;
}

.accordion-title i {
  font-size: 28px;
  width: 5%;
}

.accordion {
  position: relative;
  background-color: #eee;
}


.accordionTitle:after,
.accordion__Heading:after {
  content: "+";
  font-size: 1.5em;
  line-height: 1.5em;
  float: right;
  transition: transform 0.3s ease-in-out;
}

.accordionTitleActive:after,
.accordionTitle.is-expanded:after {
  transform: rotate(-225deg);
}

.accordionTitle,
.accordion__Heading {
  background-color: #333333;
  font-family: myForthFont !important;
  font-size: 16px;
  text-align: left;
  padding: 2em;
  display: block;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.5s ease-in-out;
  border-bottom: 1px solid darken(#38cc70, 5%);

  &:before {
    content: "+";
    font-size: 16px;
    line-height: 0.5em;
    float: left;
    transition: transform 0.3s ease-in-out;
  }

  &:hover {
    background-color: darken(#38cc70, 10%);
  }
}

.accordionTitleActive,
.accordionTitle.is-expanded {
  background-color: darken(#38cc70, 10%);

  &:before {

    transform: rotate(-225deg);
  }
}

.accordionItem {
  height: auto;
  overflow: hidden;


  max-height: 50em;
  transition: max-height 1s;

  @media screen and (min-width:48em) {
    max-height: 15em;
    transition: max-height 0.5s
  }


}

.accordionItem.is-collapsed {
  max-height: 0;
}

.no-js .accordionItem.is-collapsed {
  max-height: auto;
}

.animateIn {
  animation: accordionIn 0.45s normal ease-in-out both 1;
}

.animateOut {
  animation: accordionOut 0.45s alternate ease-in-out both 1;
}

@keyframes accordionIn {
  0% {
    opacity: 0;
    transform: scale(0.9) rotateX(-60deg);
    transform-origin: 50% 0;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes accordionOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.9) rotateX(-60deg);
  }
}

/*//accordion*/


.whatsapp-float{
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 120px;
    right: 25px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 0 0 rgba(37,211,102,0.6);
    animation: pulse 2s infinite;
}

/* WhatsApp Icon */
.whatsapp-float i{
    position: relative;
    z-index: 2;
}

/* Ripple Circle */
.whatsapp-float::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37,211,102,0.5);
    border-radius: 50%;
    z-index: -1;
    animation: ripple 2s infinite;
}

@keyframes pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }
    70%{
        box-shadow: 0 0 0 20px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@keyframes ripple{
    0%{
        transform: scale(1);
        opacity: 0.7;
    }
    100%{
        transform: scale(1.6);
        opacity: 0;
    }
}

html, body {
    overflow-x: hidden;
}
.service-one {
    overflow: hidden;
}