html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #b5b5b5;
}

/*--------------
    MANISH
--------------*/
H2 {
	line-height: 50px;
}


/*--------------
    NAVIGATION
--------------*/
nav ul li a {
  position: relative;
}
nav ul li a::after {
  content: "";
  position: absolute;
  height: 5px;
  background: transparent;
  transition: all 0.3s ease-in;
}
nav ul li a:hover::after,
nav ul li a.active::after {
  content: "";
  position: absolute;
  height: 5px;
  background: #f13e4f;
  transition: all 0.3s ease-in;
  left: 0;
  right: 0;
  bottom: -10px;
}
.header {
  transition: all 0.3s ease-out;
  height: 90px;
	}

.letter {
	letter-spacing: -1.5px;
}

.header.fixed {
  background: #202020;
  position: fixed;
  top: 0;
  transition: all 0.3s ease-in;
  height: 60px;
}

/*-----------------
    BUTTON HOVER
-----------------*/
.button_su {
  overflow: hidden;
  position: relative;
  display: inline-block;
  border-radius: 10px;
}

.su_button_circle {
  background-color: #F13E4F;
  border-radius: 1000px;
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
  animation-timing-function: ease-in-out;
}

.button_su_inner {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  transition: 400ms;
  text-decoration: none;
  padding: 16px 40px;
  z-index: 9;
  cursor: pointer;
}

.button_text_container {
  position: relative;
  z-index: 9;
}

.explode-circle {
  animation: explode 0.5s forwards;
}

.desplode-circle {
  animation: desplode 0.5s forwards;
}

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2);
  }
  100% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    background-color: rgba(241, 62, 79);
  }
}

@keyframes desplode {
  0% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    background-color: rgba(241, 62, 79, 0.8);
  }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6);
  }
}

/*----------------
    ACCORDION
----------------*/
.accordion-header {
  font-weight: 600;
  font-size: 32px;
  color: #b4b4b4;
  transition: all 0.3s ease-out;
}
.accordion-header.active {
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  transition: all 0.3s ease-in;
}

.websiteDesignIconPosition,
.appDevelopmentIconPosition,
.digitalMarketingIconPosition {
  transition: all 0.3s ease-out;
  transform: translate(0, 0);
  border-bottom: 10px solid;
}

.websiteDesignIconPosition {
  background-position: center 50px;
  border-color: #4353ff;
}

.appDevelopmentIconPosition {
  background-position: center 75px;
  border-color: #89c5cc;
}
.digitalMarketingIconPosition {
  background-position: center 50px;
  border-color: #3caefa;
}

.websiteDesignIconPosition:hover,
.appDevelopmentIconPosition:hover,
.digitalMarketingIconPosition:hover {
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in;
  transform: translate(-5px, -5px);
  /* border-color: #E83748; */
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  font-size: 0;
  transform: translateY(calc(-50% - 50px));
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}
.owl-carousel .owl-nav button span {
  color: transparent;
  display: inline-block;
  padding: 0 20px;
  height: 68px;
}
.owl-carousel .owl-nav button.owl-prev span:after {
  content: "";
  display: block;
  width: 37px;
  height: 68px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/arrow-left.png") no-repeat center center;
  background-size: 37px 68px;
  left: 15px;
}
.owl-carousel .owl-nav button.owl-next span:after {
  content: "";
  display: block;
  width: 37px;
  height: 68px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/arrow-right.png") no-repeat center center;
  background-size: 37px 68px;
  right: 15px;
}
.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  background: #535353;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease-in;
  display: inline-block;
}
.owl-carousel .owl-dots .owl-dot.active span {
  width: 35px;
  height: 16px;
  background: #fff;
  border-radius: 20px;
  transition: all 0.3s ease-in;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .button_su_inner {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    transition: 400ms;
    text-decoration: none;
    padding: 11px 16px;
    z-index: 100000;
    cursor: pointer;
  }
  .owl-carousel .owl-nav button.owl-next span:after,
  .owl-carousel .owl-nav button.owl-prev span:after {
    background-size: 18px 34px;
  }

  .accordion-header {
    font-size: 22px;
  }
  .accordion-header.active {
    font-size: 25px;
  }
}
