/* -------------- font google --------- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --rich-black-fogra-29-1: hsl(210, 26%, 11%);
  --sonic-silver: hsl(0, 0%, 47%);
  --cadet-gray: hsl(214, 15%, 62%);
  --coquelicot: #ff5219;
  --black_10: hsl(0, 0%, 0%, 0.1);
  --white: hsl(0, 0%, 100%);

 
  /**
   * spacing
   */

  --section-padding: 80px;

  /**
   * shadow
   */

  --shadow-1: 0 0 20px var(--black_10);
  --shadow-2: 0px 10px 24px var(--coquelicot_20);

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}


#background-video {

  width: 100vw;
  height: 100%;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

/*=========*/

@keyframes barsss1 {

  0%{
    width:0px;
  }
  100% {
    width:100px;
  }
}
@keyframes barsss2 {

  0%{
    width:100px;
  }
  100% {
    width:0px;
  }
}


@keyframes bounceTop-1 {

  0%,
  100% {
      transform: translateY(-30px);
  }

  50% {
      transform: translateY(0px);
  }
}


/* ----------- global ---------------- */

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background-color: #000000f0;

  color: var(--sonic-silver);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  display: inline-block;
}


::-webkit-scrollbar {
  width: 6px;
  border-radius: 20px;
}

::-webkit-scrollbar-track {
  background-color: #000
}

::-webkit-scrollbar-thumb {
  background-color: #ff5219;
}

::selection {
  background-color: #ff5219;
  color: #fff;
}
/* 
.has-scrollbar {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: inline mandatory;
} */

/* .has-scrollbar > .teamcol {
  min-width: 100%;
  scroll-snap-align: start;
} */
/* 
.has-scrollbar::-webkit-scrollbar { height: 10px; }

.has-scrollbar::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 20px;
  outline: 2px solid #FF5219;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background: #FF5219;
  border: 2px solid #fff;
  border-radius: 20px;
}

.has-scrollbar::-webkit-scrollbar-button { width: calc(25% - 40px); }
 */


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 10px;
  box-shadow: var(--shadow-1);
  z-index: 999999999999999;
  padding: 0% 8% 0% 8%;
}

.header > .header-custome {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-width: 55px;
}

.nav-open-btn span i
{
  font-size: 30px;
  color: #FF5219;
}


.navbar {
  background-color: var(--coquelicot);
  color: var(--white);
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  visibility: visible;
  transform: translateY(-100%);
  transition: 0.5s var(--cubic-out);
}

.nav-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: var(--white);
  font-size: 25px;
  padding: 10px;
  border-radius: var(--radius-8);
}

.navbar-link {
  text-align: center;
  padding-block: 10px;
  margin-block-end: 20px;
  transition: var(--transition-1);
  color: #fff;
}

.navbar-link:is(:hover, :focus, .active) { color: var(--rich-black-fogra-29-1); }

.navbar-list li a
{
  font-size: 17px;
}

.circle {
  animation: rotate360 5s linear infinite;
}

@keyframes rotate360 {
  0% { transform:  rotate(0); }
  100% { transform: rotate(1turn); }
}

.circle-2 { animation-direction: reverse; }


/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  color: var(--cadet-gray);
  text-align: center;
  padding-block-start: calc(var(--section-padding) + 80px);
  padding-block-end: 0;
  overflow: hidden;
}

.hero-title
{
    font-family: "Poppins",Sans-serif;
    font-size: 60px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: capitalize;
    margin: 60px 0 30px 0;
    color: #fff;
    -webkit-text-stroke: 2px #fff;
    text-shadow: 0px 0px 5px #fff;
}

.circle-2
{
  position: absolute;
  left: 60%;
}

.anii{
  animation: bounceTop-1 3s ease infinite;
}
.img--main-her {
  position: absolute; 
  left: 49%; 
  top: 10%; 
  width: 700px; 
  height: 700px;
}


/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.has-bg-image {
  background-repeat: no-repeat;
  background-position: top left;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}
.cus-sec
{
  background-color: #000000f0;
  padding: 5% 0;
}

.cus-sec--main
{
  background-color: #000000f0;
}

.box-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.box-shape li {
    position: absolute;
    height: 400px;
    width: 400px;
    background-color: #f24f1b17;
    border-radius: 70px;
    transform: rotate(45deg);
}
.box-shape li:nth-child(1) {
    left: -12%;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.box-shape li:nth-child(2) {
    left: 44%;
    top: -55%;
}


.box-shape li:nth-child(3) {
    right: -13%;
    bottom: 22%;
}
/*-----------------------------------*\
  #SERVICES
\*-----------------------------------*/

.services-crd
{
  background-color: #FF5219;
  border-radius: 10px;
  width: 100%;
  height: auto;  
  box-shadow: 0px 3px 20px 0px #56565677;
  color: #fff;
  padding: 50px 30px;
}
.services-crd h3
{
  font-weight: 400;
  letter-spacing: 0.1em;
}

.services-crd h1
{
  font-size: 45px;
}
.services-crd-two
{
  background: linear-gradient(to right bottom, #212428, #16181c);
  border-radius: 10px;
  width: 100%;
  height: 400px;  
  box-shadow: 0px 0px 20px 0px #56565677;
  color: #000;
  padding: 50px 30px;
}

.services-crd-two img
{
  width: 80px;
  height: 80px;
}

.services-crd-two h4
{
  margin-top: 40px;
  font-size: 18px;
  color: #fff;
}
.services-crd-two p
{
  color: #a9a8a8;
  margin-top: 20px;
  font-family: "Poppins",Sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
}
.read--more--btn
{
  background-color: transparent;
  border: 1px solid #000;
  padding: 7px 40px;
  border-radius: 40px;
  margin-top: 10px;
  transition: all 0.5s ease;
}
.read--more--btn:hover
{
  background-color: #FF5219;
  box-shadow: 0px 0px 20px 0px #777;
  border: 1px solid #FF5219;
  color: #fff;
  transform: translateY(-5px);
}

/*=======digital======card--*/
.digital-crd
{
  background-color: #FF5219;
  border-radius: 10px;
  width: 100%;
  height: 500px;  
  box-shadow: 0px 3px 20px 0px #56565677;
  color: #fff;
  padding: 50px 30px;
}
.digital-crd h3
{
  font-size: 40px;
}
.digital-crd-two
{
  background: linear-gradient(to right bottom, #212428, #16181c);
  border-radius: 10px;
  width: 100%;
  height: 500px;  
  box-shadow: 0px 0px 20px 0px #56565677;
  color: #000;
  padding: 50px 30px;
}


.digital-crd-two img
{
  width: 80px;
  height: 80px;
}

.digital-crd-two h4
{
  color: #fff;
  margin-top: 40px;
  font-size: 18px;
}
.digital-crd-two p
{
  color: #a9a8a8;
  margin-top: 20px;
  font-family: "Poppins",Sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
}
.digital--text
{
  font-size: 20px;
}
.img-about
{
  padding: 80px;
}
.about-sec 
{
  margin-top: 70px;
}
.about-sec h1
{
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 50px;
    color: #FF5219;
    -webkit-text-stroke: 1px #FF5219;
    text-shadow: 0px 0px 5px #FF5219;
}
.about-sec h5
{
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}
.read--more--btn-about
{
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #1c1e22, -10px -10px 19px #262a2e;
  text-align: center;
  letter-spacing: 2px;
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  margin-top: 50px;
  color: #ff5219;
  padding: 10px 40px;
  outline: none!important;
  border: none;
}
.read--more--btn-about:hover
{
  background: linear-gradient(145deg, #ff5219, #fff);
  box-shadow: none;
  transform: translateY(-10px);
  color: #000;
}
.heading h5
{

  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;

}

.heading-title
{
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 50px;
    color: #FF5219;
    -webkit-text-stroke: 1px #FF5219;
    text-shadow: 0px 0px 5px #FF5219;
}
.border-sec-new {
  display: flex;
  justify-content: start;
  align-items: center;
}

.border-sec-new strong {
  width: 80px;
  height: 4px;
  border-radius: 20px;
  background-color: #FF5219;
  margin-bottom: 20px;
  animation: barsss1 5s linear infinite;
}
.border-sec-new span{
  width: 30px;
  height: 4px;
  margin-left: 10px;
  border-radius: 20px;
  background-color: #FF5219;
  margin-bottom: 20px;
  animation: barsss2 5s linear infinite;
}

.product__cart
{
    cursor: pointer;
    padding: 10px;
    position: relative;
    border-radius: 20px;
    background: linear-gradient(to right bottom, #212428, #16181c);
    height: 100%;
    transition: 0.5s all ease-in-out;
    margin-bottom: 30px;
}
.product__cart:hover
{
  transform: translateY(-10px);
  box-shadow: 0px 0px 20px 0px #ffffff42;  
}
.product__cart:hover img
{
  transform: scale(0.9);

}


.product__cart img
{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: 0.5s all ease-in-out;
  overflow: hidden;
  background-position: center;
}
.content
{
  border-top: 1px solid #0e010e;
  display: flex;
  padding: 20px 0px;
  justify-content: space-between;
}

.box-service--th
{
   cursor: pointer;
    padding: 30px;
    position: relative;
    border-radius: 20px;
    background: linear-gradient(to right bottom, #212428, #16181c);
    background-color: #FF5219;
    height: 100%;
    transition: 0.5s all ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-service--th--two
{
    cursor: pointer;
    padding: 30px 0px;
    position: relative;
    border-radius: 20px;
    background-color: #FF5219;
    height: 100%;
    transition: 0.5s all ease-in-out;
    z-index: 999999;
    margin-top: 60px;
}


.img--serv {
  padding: 0px 30px;
}
.img--serv img
{
  width: 60px;
  height: 60px;
}

.heading-title-start h1
{
  font-size: 60px;
  color: #fff;
  font-weight: 500;
}


.heading-start h5
{
  color: #000;
  font-size: 15px;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

.read--more--btn-about-start
{
  background-color: #000;
  text-align: center;
  letter-spacing: 2px;
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  margin-top: 50px;
  color: #ff5219;
  padding: 10px 40px;
  outline: none!important;
  border: none;
}
.read--more--btn-about-start:hover
{
  background-color: #fff;
  box-shadow: none;
  box-shadow: 10px 10px 19px #FF5219;
  color: #000;
  transform: translateY(-10px);
}


/*===========*/

.avatar {
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
    text-align: center;
}
.teamcolinner {
    position: relative;
}
.avatar > img {
    width: 150px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid rgb(170 170 173/ 1);
    box-shadow: 0px 3px 10px 3px rgb(170 170 173 / 0.5);
}
.teamcolinner {
    position: relative;
    border: 1px dashed #ddd;
    min-height: 100px;
    background: #fff;
    z-index: 9;
}
.teamcol {
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    transition: transform 1s ease-in-out;
}
.teamcol:hover {
    transform: translateY(-30px);
    box-shadow: 0px 3px 10px 3px rgb(170 170 173 / 0.5);
    cursor: pointer;
    transition: transform 1s ease-in-out;
}
.teamcol:before {
    content: "";
    width: 50%;
    height: 50%;
    position: absolute;
    right: 0;
    top: 0;
    background: -webkit-linear-gradient(#ff5219, #ff5219);
    border-top-right-radius: 10px;
    transition: width 1s ease-in-out;
}
.teamcol:after {
    content: "";
    width: 50%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: -webkit-linear-gradient(#000, #000);
    border-bottom-left-radius: 10px;
    transition: width 1s ease-in-out;
}
.teamcol:hover::before, .teamcol:hover::after {
    width: 100%;
    transition: width 1s ease-in-out;
}
.member-name {
    margin-top: 80px;
}
.member-info p{
  font-size: 13px;
}
.member-info h6
{
  font-size: 12px;
  color: #FF5219;
}
.member-info {
    padding: 10px 20px;
}
.social-listing {
    align-items: center;
    justify-content: center;
    display: flex;
    list-style: none;
    padding: 0;
}
.social-listing > li a{
  color: #ff5219;
  font-size: 20px;
}
.social-listing > li a:hover,
.social-listing > li a:focus
{
  background-color: #ff5219;
  color: #fff;
}

  .social-listing > li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f4f5f7;
    border-radius: 50%;
    margin: 5px;
    margin-bottom: 10px;
    transition: all 0.5s ease-in-out;
}
.contact--icon 
{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.contact--content a
{
  color: #fff;
}
.contact--icon span i
{
 width: 70px;
 height: 70px;
 display: flex;
 justify-content: center;
 align-items: center;
 background-color: #ff5219;
 border-radius: 50%;
 border: none;
 font-size: 20px;
 color: #fff;
 outline: none;
 transition: all 0.5s ease-in-out;
}
.product__cart:hover .contact--icon span i
{
 background-color: #ff521928;
 transform: scale(1.1);
 box-shadow: 0px 0px 20px 0px #16181c;
}
.contact--content h4
{
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}
.contact--content p
{
  font-size: 18px;
  letter-spacing: 1px;
}

.end--foot--copy i
{
  color: rgb(145, 4, 4);
}
.end--foot--copy
{
  
  border-top: 1px solid #eee;
}


#foot::before
{
  content: "";
  position: absolute;
  background-image: url(../images/testimonial-shape-2.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain !important;
  width: 35%;
  right: 0;
  height: 35%;
}


#foot
{
  width: 100%;
  height: auto;
  background-color: #ffffff;  
}
.foot--content ul li a:hover
{
  color: #FF5219;
  transform: translateX(10px);
}
.foot--content ul li i
{
  transition: all 0.5s ease-in-out;
  padding: 0px 5px;
}
.foot--content
{
  margin-bottom: 100px;
}
.foot--content ul li a
{
  transition: all 0.5s ease-in-out;
  color: #000;
}
.touch a i
{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 25px;
  color: #FF5219;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  transition: all 0.5s ease-in-out;
  margin-top: 30px;
}
.touch a i:hover
{
  background-color: #FF5219;
  color: #ffff;
  transform: translateY(-10px);
  box-shadow: -4px 40px -20px 20px ;
}




/*** responsive for larger than 768px screen***/


 @media only screen and (max-width:676px){
  *,body
  {
    scroll-behavior: smooth;
  }
  .img--serv img
  {
    width: 25px!important;
    height: 25px!important;
  }
  .img--serv {
    padding: 0px 5px;
  }
 }
 @media only screen and (max-width:999px){
  .header
  {
    padding: 10px 20px 10px 20px;
  }
  .hero-title
  {
    font-size: 40px;
    -webkit-text-stroke: 0px #fff;
    text-shadow: 0px 0px 2px #fff;
  }
  .circle
  {
    width: 300px;
    height: 300px;
    display: none;

  }
  .circle-1 {
    
    z-index: -1!important;
  }

  .circle-2 {
    position: absolute;
    left: 13%;
    z-index: -1;
  }
  .img--main-her
  {
    display: none;
  }
  .img-about
  {
    padding: 0;
  }
  .px-5 {
    padding-right: 1rem!important;
    padding-left: 1rem!important;
  }
  .about-sec h1
  {
    font-size: 30px;
    -webkit-text-stroke: 0px #FF5219;
    text-shadow: 0px 0px 0px #FF5219;
  }
  .heading-title {
    -webkit-text-stroke: 0px #FF5219;
    text-shadow: 0px 0px 0px #FF5219;
  }
 }


 @media (min-width: 768px) {
  /**
   * HERO
   */

  .hero-banner {
    max-width: max-content;
    margin-inline: auto;
  }


}


/**
 * responsive for larger than 1200px screen
 */

 @media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {
    --section-padding: 120px;

  }

}


/**
 * responsive for larger than 992px screen
 */

 @media (min-width: 992px) {

 
  /**
   * HEADER
   */

  .nav-open-btn,
  .nav-close-btn { display: none; }

  .header .btn { display: block; }

  .header {
    background-color: transparent;
    box-shadow: none;
    padding-block: 30px;
    transition: var(--transition-1);
  }

  .header.active {
    transform: translateY(-100%);
    background-color: var(--white);
    padding-block: 20px;
    box-shadow: var(--shadow-1);
    animation: slideIn 0.5s ease forwards;
  }

  @keyframes slideIn {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
  }

  .header .header-custome { gap: 30px; }

  .header .logo { color: var(--white); }

  .header.active .logo { color: var(--rich-black-fogra-29-1); }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .navbar-list {
    display: flex;
    gap: 10px;
  }

  .navbar-link {
    color: var(--white);
    font-size: unset;
    padding: 0 10px;
    margin-block-end: 0;
  }

  .header.active .navbar-link { color: var(--rich-black-fogra-29-1); }

  .header .navbar-link:is(:hover, :focus, .active) { color: var(--coquelicot); }

  .header.active .btn {
    background-color: var(--coquelicot);
    color: var(--white);
  }

  .header.active .btn:is(:hover, :focus) { background-color: var(--rich-black-fogra-29-1); }



  /**
   * HERO
   */

  .hero {
    background-size: contain;
    text-align: left;
  }

}
