@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Black.woff2') format('woff2'),
      url('../fonts/Poppins-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('BebasNeue-Regular.woff2') format('woff2'),
      url('BebasNeue-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2'),
      url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
      url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
      url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
      url('../fonts/Poppins-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
      url('../fonts/Poppins-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
      url('../fonts/Poppins-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
      url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
      url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Italic.woff2') format('woff2'),
      url('../fonts/Inter-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
      url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}






h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea {
margin: 0;
padding: 0;
}
* {
margin: 0;
padding: 0;
}
a{
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:focus {
text-decoration: none;
}
ul {
list-style: none;
padding: 0;
}
body{
font-family: 'Inter' !important;
}

/* ************************************ */
/*RESPONSIVE NAVIGATION*/
.mobile-menu{
  display: none;
}
.mobile-menu .circle {
 width: 40px;
 height: 40px;
 line-height: 40px;
 color: #fff;
 border-radius: 50%;
 background: #51dfcf;
 margin: 0 auto;
 font-size: 16px;
 position: fixed;
 right: 40px;
 top: 40px;
 display: flex;
 justify-content: center;
 align-items: center;
 z-index: 2;
}
.mobile-menu .mobile-cross {
 width: 40px;
 height: 40px;
 line-height: 40px;
 color: #fff;
 border-radius: 50%;
 background: #51dfcf;
 margin: 0 auto;
 font-size: 16px;
 position: fixed;
 right: 0px;
 top: 40px;
 display: flex;
 justify-content: center;
 align-items: center;
 z-index: 99999;
}
.mobile-menu .nveMenu {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 width: 280px;
 height: 100%;
 background: #fff;
 opacity: 0;
 visibility: hidden;
 z-index: 999;
 transform: translateX(-320px);
 transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
 padding: 40px 20px;
 z-index: 1111111;
}
.mobile-menu .nveMenu.is-opened {
 opacity: 1;
 visibility: visible;
 transform: translateX(0);
 position: relative;
 width: 100%;
 height: 100%;
 /* min-height: 600px; */
}
/*.mobile-menu .nveMenu h1 {
 color: #000;
 font-weight: 700;
 }*/
 .mobile-menu .overlay {
   position: fixed;
   top: 0;
   right: 0;
   width: calc(100% - 280px);
   height: 100%;
   background: rgba(0, 0, 0, 0.71);
   opacity: 0;
   visibility: hidden;
   transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
 }
 .mobile-menu .overlay.is-on {
   opacity: 1;
   visibility: visible;
   z-index: 999;
 }
 .mobile-menu .navlinks li {
   display: block;
   padding: 12px 0;
 }
 .mobile-menu .navlinks li a {
   text-transform: uppercase;
   color: #666;
   font-weight: 700;
 }
 .mobile-menu .navlinks li a:hover {
   text-decoration: none;
 }
/*RESPONSIVE NAVIGATION*/



.first-banner{background-image: url(../images/here-banner.png);padding: 300px 0 70px;background-position: center;background-repeat: no-repeat;background-size: cover;position: relative;overflow: hidden;z-index: 111;}
/* 
.banner-inner-add-image:before{
  content: '';
  background-image: url(../images/hero-inner1.png);
  width: 688px;
  background-size: 80%;
  background-repeat: no-repeat;
  height: 678px;
  position: absolute;
  top: 187px;
  left: 513px;
  animation: circle 10s linear infinite;
  z-index: 1;
} */
.main-header {
  position: absolute;
  z-index: 11111;
  padding-top: 17px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.first-inner-banner-social ul {
  display: flex;
  gap: 17px;
  transform: rotate(-90deg);
  transform-origin: left top 0;
  float: left;
  margin-left: -90px;
  /* margin-top: -40px; */
  z-index: 9999;
  position: relative;
}



.first-banner-content {
  z-index: 111111;
  position: relative;
  padding-top: 70px;
  margin-left: 30px;
}

.nav-social ul {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: end;
}

.first-banner-inner-image img {
  width: 90%;
  float: right;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.first-banner-heading h1 {
  font-size: 45px;
  z-index: 111;
  position: relative;
  color: #fff;
  font-weight: 900;
  font-family: 'Inter';
  text-transform: uppercase;
}

.first-banner-heading h1 span {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #51dfcf;
  background: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.first-banner-content p {
  width: 46%;
  color: #fff;
  font-family: 'Inter';
  font-size: 14px;
  line-height: 25px;
}

.first-banner-content ul {
  display: flex;
  padding-top: 23px;
  gap: 30px;
}

.first-banner-heading h2 {
  font-size: 45px;
  z-index: 111;
  position: relative;
  color: #fff;
  font-weight: 900;
  font-family: 'Inter';
  text-transform: uppercase;
}

.first-banner-content ul li p {
  width: 100%;
}

.first-banner-content ul li h3 {
  font-size: 30px;
  color: #51dfcf;
  font-weight: 700;
}

.first-banner-heading {
  margin-left: 30px;
  z-index: 111111;
  position: relative;
}

.first-inner-banner-social ul li a {
  color: #a5a5a5;
  font-size: 16px;
  font-weight: 500;
}
.nav-social ul li i {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100%;
  padding: 10px;
}

.nav-social ul li h2 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.nav-social ul li a {
  font-size: 25px;
  color: #fff;
  font-weight: 500;
}
a {
  text-decoration: none !important;
}

.main-header .row {
  display: flex;
  align-items: center;
}

.nav-social ul li a:hover {color: #51dfcf;transition: 0.5s;}

marquee {
  background: #000;
  padding: 15px 0;
  margin-top: 110px;
  transform: skewY(-4deg);
  --duration: 60s;
}

marquee ul li {
  display: flex;
  align-items: center;
  gap: 14px;
}

marquee ul li h2 {
  color: #fff;
  font-weight: 700;
  font-size: 46px;
}

section.second-sec {
  padding: 120px 0;
}

.second-about-content h5 {
  color: #51dfcf;
  font-size: 14px;
  font-weight: 600;
}

.second-about-content h2 {font-size: 40px;line-height: normal;font-weight: 700;color: #000;text-transform: capitalize;}

.second-about-content {
  padding-bottom: 30px;
}

section.second-sec .row {
  display: flex;
  align-items: center;
}

.second-about-content p {
  font-size: 15px;
  line-height: 24px;
  color: #484848;
}


@keyframes circle{
  0%{
    transform: rotate(0deg)
              translate(-118px)
              rotate(0deg);
  }
  100%{
    transform: rotate(360deg)
              translate(-65px)
              rotate(-360deg);
  }
}
/* shash kay  */

/* button {
  background: linear-gradient(to left,#AD1115 50%, #fff 50%);
  background-position: left bottom;
  transition: all .6s ease-out;
  background-size: 200% 100%;
}
button:hover{
background-position: right bottom;
} */










/* inner scroll side bar  */


/* className::-webkit-scrollbar {
width: 4px;
} */
/* Track */

/* className::-webkit-scrollbar-track {
background: #d4d4d4 ;
} */
/* Handle */

/* className::-webkit-scrollbar-thumb {
background: #790101 ;
} */
/* Handle on hover */

/* className::-webkit-scrollbar-thumb:hover {
background: #8b8b8b;
}  */

section.four-banner {
  background: #000;
  padding: 22px 0;
}

.four-banner .item img {
  width: 45%;
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  object-fit: contain;
}

/* tabs-css */
.sidebar {
  width: 300px;
  background-color: #fff;
  padding: 20px 10px;
  /* border-right-style: dashed; */
}

.sidebar ul {
  list-style-type: none;
}

.sidebar ul li {
  padding: 10px 0;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
}

.sidebar ul li.active {
  color: #00c2c2;
  font-weight: bold;
}

.content {
  width: 1000px;
  padding: 50px 0;
  background-color: #fff;
  flex-grow: 1;
  border-left: 2px dashed #000000;
}

.content-section {
  display: none;  
}

.content-section.active {
  display: block;
}
li#uxui2, li#webdev2, li#mobiledev2, li#aws2, li#launch2, li#children2, li#audio2 {
  display: none;
}
.content h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.content h2 span {
  color: #00c2c2;
  font-weight: bold;
}

.content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.checklist {
  list-style-type: none;
  margin-bottom: 30px;
}

.checklist li {
  font-size: 16px;
  margin-bottom: 10px;
}

.checklist li::before {
  content: 'ÃƒÂ¢Ã…â€œÃ¢â‚¬Â';
  color: #00c2c2;
  margin-right: 10px;
}

.graphic {
  margin-top: 40px;
  text-align: center;
}

.graphic img {
  width: 150px;
}

.third-tab {
  display: flex;
  align-items: center;
}
.tab-image img {
  width: 80%;
  margin: 0 auto;
  display: flex;
}

section.five-banner {
  padding: 100px 0;
}

section.five-banner .row {
  display: flex;
  align-items: center;
}

.five-banner-inner-image img {
  width: 90%;
  margin: 0 auto;
  display: flex;
}

.five-inner-card ul {
  display: flex;
  align-items: center;
  gap: 13px;
}

.five-inner-card ul li i {
  color: #51dfcf;
  font-size: 25px;
}

.five-inner-card ul li h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  text-transform: capitalize;
  padding-bottom: 8px;
}

.five-inner-card ul li p {
  font-size: 15px;
  line-height: 21px;
}

.five-inner-card {
  margin: 20px 0;
}
.tab-inner-content h2 span {
  color: #51dfcf;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  top: -15px;
}

.tab-inner-content h2 {
  font-size: 30px;
  color: #000;
  font-weight: 900;
  margin-bottom: 10px;
}

.tab-inner-content p {
  font-size: 16px;
  line-height: 29px;
}

.tab-inner-content ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 14px 0;
}

.tab-inner-content ul li i {
  color: #51dfcf;
  font-size: 20px;
}

.tab-inner-content ul li h4 {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}
section.tab-banner-sec {border-top: 2px dashed #000;padding-bottom: 100px;}
section.third-banner {
  padding-bottom: 10px;
}

section.client-sec {
  background: #000;
  padding: 100px 0 70px;
}

.client-main-sec .item {width: 80%;margin: 0 auto;}

.item .client-inner-image img {
  width: 80%;
  margin: 0 auto;
}

.client-inner-content p {
  color: #ededed;
  font-size: 16px;
  line-height: 29px;
}

.client-inner-content ul {display: flex;gap: 12px;margin: 20px 0;}

.client-inner-content ul li i {
  color: #DBFF00;
}

.client-main-sec .owl-nav {color: #fff;position: absolute;bottom: 0;right: 150px;top: 220px;}

.client-main-sec .owl-nav button.owl-prev {
    border: 1px solid #51dfcf;
    width: 70px;
    border-radius: 10px;
    margin: 0px 10px;
}

.client-main-sec .owl-nav button.owl-next {
    border: 1px solid #51dfcf;
    width: 70px;
    border-radius: 10px;
    margin: 0px 10px;
}

.client-main-sec {
    position: relative;
}

.client-main-sec .owl-nav button.owl-prev:hover {
    background: #fff;
    transition: 0.5s;
    color: #000;
}

.client-main-sec .owl-nav button.owl-next:hover {
    background: #fff;
    transition: 0.5s;
    color: #000;
}

.client-inner-detail h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}

.client-inner-content::before{
  content: '';
  background-image: url(../images/client-icon.png);
  width: 40px;
  height: 40px;
  position: absolute;
  background-repeat: no-repeat;
  top: 0px;
  left: -20px;
}
.client-item-inner .row {display: flex;align-items: center;}

.client-inner-content {position: relative;padding-left: 30px;padding-top: 30px;}

.blogs-slide .item img {
  width: 60%;
  height: 80px;
  margin: 0 auto;
}

section.blogs-sec {
  /* padding: 180px 0 100px; */
  padding: 100px 0 100px;
}

footer {
  background: #000;
  padding: 100px 0 80px;
}

.footer-form form input {
  width: 100%;
  background: transparent;
  border: 1px solid #a3a3a3;
  padding: 8px 15px;
  margin: 10px 0;
  border-radius: 10px;
  color: #fff;
}

.footer-detail h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  text-transform: capitalize;
  width: 70%;
  line-height: 54px;
}

.footer-detail p {
  color: #fff;
  width: 90%;
  line-height: 26px;
  padding-top: 19px;
}

.footer-social-list h2 {
  color: #51dfcf;
  font-size: 18px;
}

.footer-social-list {
  padding-top: 30px;
}

.footer-social-list a {
  color: #fff;
  line-height: 39px;
  font-weight: 600;
  font-size: 15px;
}

.footer-social-list a:hover {
  color: #51dfcf;
  transition: 0.5s;
}

.footer-form {
  width: 80%;
  margin: 0 auto;
}

.footer-form h2 {
  font-size: 27px;
  color: #fff;
  padding-bottom: 20px;
  font-weight: 600;
}

.footer-form form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #a3a3a3;
  padding: 8px 15px;
  margin: 10px 0;
  border-radius: 10px;
  height: 110px;
  color: #fff;
}

.footer-form form button {
  padding: 10px 25px;
  background: #51dfcf;
  border: none;
  float: right;
  border-radius: 7px;
}

.footer-form form button:hover {
  background: #ffffff;
  color: #51dfcf;
  transition: 0.5s;
}

.footer-form form textarea::placeholder {
  color: #d9d9d9;
  font-size: 16px;
  font-weight: 400;
}


.footer-form form input::placeholder {
  color: #d9d9d9;
  font-size: 16px;
  font-weight: 400;
}
.footer-last {
  background: #000;
  border-top: 2px dashed #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-last .row {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 32%;
}

.footer-copy p {
  text-align: end;
  color: #bbbbbb;
  font-size: 16px;
  font-weight: 300;
}


.my-gallery .owl-carousel {
  float: right;
  left: 140px;
  position: absolute;
  right: 0px;
  top: 0;
  transform: translateY(-50%);
}

.my-gallery .owl-carousel .owl-item {
  opacity: 1;
  transition: 300ms;
}

.my-gallery .owl-carousel .owl-item.center {
  opacity: 1;
}

.galeri.my-gallery {
  position: relative;
}
section.blogs-sec .row {
  display: flex;
  align-items: center;
}
.my-gallery .item {
  position: relative;
}

.blogs-inner-heading {
  position: absolute;
  z-index: 999999;
  bottom: 0;
  padding: 20px 20px;
}

.blogs-inner-heading span {
  color: #51dfcf;
  font-weight: 600;
  font-size: 16px;
}

.blogs-inner-heading p {
  color: #fff;
}

.my-gallery .owl-nav {
    display: block !important;
    position: absolute;
    left: -580px;
    top: 243px;
}

.my-gallery .owl-nav button.owl-prev {
    border: 1px solid #51dfcf;
    width: 70px;
    border-radius: 10px;
    margin: 0px 10px;
}

.my-gallery .owl-nav button.owl-next {
  border: 1px solid #51dfcf;
  width: 70px;
  border-radius: 10px;
  margin: 0px 10px;
}
.my-gallery .owl-nav button.owl-prev:hover {
  background: #000;
  color: #51dfcf;
  transition: 0.5s;
}

.my-gallery .owl-nav button.owl-next:hover {
  background: #000;
  color: #51dfcf;
  transition: 0.5s;
}










.floatbutton.active {
  right: 0;
  z-index: 9;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  transition: .4s
}

.floatbutton {
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  position: fixed;
  right: -371px;
  top: 30%;
  font-size: 0;
  width: 420px;
  z-index: 999
}

.floatbutton .clickbutton {
  width: 50px;
  z-index: 999;
  height: 200px;
  cursor: pointer;
  box-shadow: -20px 7px 18px -7px rgba(87, 184, 151, .09);
  border-radius: 3px 0 0 3px;
  border-radius: 30px 0 0 30px;
  display: inline-block;
  padding-top: 0;
  vertical-align: top;
  margin-top: 125px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  border: 1px solid #fff;
  text-transform: uppercase;
  background: linear-gradient(45deg, #51dfcf, #000);
  box-shadow: 0 0 40px #00000026;
  -webkit-box-shadow: 0 0 40px #00000026;
  -ms-box-shadow: 0 0 40px #00000026;
  -o-box-shadow: 0 0 40px #00000026
}

.floatbutton .clickbutton .crossplus:before {
  content: "";
  display: none;
  position: absolute;
  width: 20px;
  height: 2px;
  right: 0;
  background: #fbb334;
  z-index: 99;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto
}

.floatbutton .clickbutton .crossplus:after {
  content: "";
  display: none;
  position: absolute;
  width: 2px;
  height: 20px;
  right: 0;
  background: #fab334;
  z-index: 99;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto
}

.floatbutton .clickbutton .crossplus {
  position: absolute;
  display: block;
  transform: rotate(-90deg);
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  left: -52px;
  white-space: pre;
  bottom: 87px
}

.floatbutton .clickbutton .crossplus.rotate {
  transform: rotate(45deg);
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  transition: .4s
}

.floatbutton .clickbutton .crossplus i {
  font-size: 18px;
  color: #fff;
  margin: 17px 0 0 15px
}

.floatbutton .banner-form {
  background: #fff;
  padding: 15px;
  position: relative;
  z-index: 9999999 !important;
  border-radius: 5px;
  margin: 0;
  width: 370px;
  display: inline-block;
  box-shadow: 0 0 30px #0000001f
}

.ban-form input {
  width: 100%;
  margin: 0;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 10px 15px;
  color: gray;
  font-size: 14px;
  border-radius: 3px;
  height: 50px;
  font-weight: 400;
  outline: 0 !important;
  margin: 0 0 15px 0
}

.banner-form .intl-tel-input {
  width: 100%
}

.banner-form h3 {
  color: #141315;
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 700
}

.banner-form h3 strong {
  font: 24px/24px Poppins, sans-serif;
  font-weight: 600
}

.ban-form input[type=submit] {
  color: #fff;
  font-weight: 600;
  border-radius: 3px;
  text-align: center;
  padding: 10px 15px;
  margin: 20px 0 0;
  border: transparent;
  cursor: pointer;
  background: linear-gradient(45deg, #44bdb0, #000);
}

.ban-form textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 10px 15px;
  color: gray;
  font-size: 14px;
  border-radius: 3px;
  font-weight: 400;
  height: 120px;
  outline: 0 !important;
  margin: 15px 0 0 0;
  resize: none
}

.btns_wrap {
  position: fixed;
  right: -6px
}

.btns_wrap a:hover {
  text-decoration: none !important;
  right: 0
}

.btns_wrap .call_wrap {
  width: 280px;
  border: 1px solid #fff;
  background: linear-gradient(45deg, #51dfcf, #000);
  position: absolute;
  right: -225px;
  top: 63px;
  border-radius: 3px 0 0 3px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 9999;
  border-radius: 30px 0 0 30px
}

.btns_wrap .call_wrap span {
  color: #fff;
  font-size: 20px;
  vertical-align: middle;
  padding: 15px 20px 15px 15px
}

.btns_wrap .chat_wrap {
  display: block;
  position: absolute;
  right: -225px;
  width: 280px;
  background: linear-gradient(45deg, #51dfcf, #000);
  top: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #fff;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 30px 0 0 30px;
  z-index: 9999;
  cursor: pointer;
}

.btns_wrap .call_wrap span.icoo, .btns_wrap .chat_wrap span.icoo {
  color: #fff;
  font-size: 18px;
  padding: 15px 20px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 10px 0 0 10px
}

.btns_wrap .chat_wrap span {
  color: #fff;
  font-size: 20px;
  vertical-align: middle;
  padding: 15px 30px 15px 15px
}

.ban-form .fldset.inpchecbx label {
  display: inline-block;
  margin: 0;
  line-height: 1.4;
  color: #676767;
  font-size: 13px
}

.ban-form .fldset.inpchecbx input {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0
}

.fldset.inpchecbx {
  margin: 10px 0 0 0
}

.fldset p {
  font-size: 13px;
  color: #676767;
  padding: 0;
  margin: 10px 0 0 0
}

.fldset p a {
  display: block;
  padding: 5px 0 0 0;
  color: #141315;
  font-weight: 500;
  font-size: 14px
}

.nav-bar ul {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.nav-bar ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.nav-bar ul li a:hover {
  color: #51dfcf;
  transition: 0.5s;
}
section.third-banner .row {
  display: flex;
  align-items: center;
}


section.contact-banner {
  background: #000;
  padding: 180px 0 100px;
  position: relative;
}

.contact-inner-heading h1 {
  font-size: 64px;
  z-index: 111;
  position: relative;
  color: #fff;
  font-weight: 900;
  font-family: 'Inter';
  text-transform: uppercase;
}

.contact-inner-heading h1 span {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #51dfcf;
  background: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.contact-inner-heading p {
  color: #fff;
  font-size: 16px;
  padding-top: 10px;
}

section.contact-inner-form {padding: 100px 0;z-index: 1;position: relative;}

.contact-innner-form-heading h1 {
  font-size: 58px;
  line-height: 67px;
  font-weight: 900;
  color: #000;
  text-transform: capitalize;
  width: 80%;
}

.contact-main-form form input {
  width: 100%;
  background: transparent;
  border: 2px solid #40b1a4;
  padding: 11px 15px;
  margin: 10px 0;
  border-radius: 10px;
  color: #000000;
}

.contact-main-form form textarea {
  width: 100%;
  background: transparent;
  border: 2px solid #40b1a4;
  padding: 11px 15px;
  margin: 10px 0;
  border-radius: 10px;
  color: #000000;
  height: 120px;
}

.contact-main-form form button {
  padding: 10px 35px;
  background: #51dfcf;
  border: none;
  border-radius: 7px;
  color: #fff;
}

.contact-main-form form button:hover {
  background: #000;
  color: #46c2b4;
  transition: 0.5s;
}

.contact-innner-form-heading ul {
  margin-top: 20px;
}

.contact-innner-form-heading ul li {
  margin: 13px 0;
  display: flex;
  gap: 13px;
  align-items: center;
}

.contact-innner-form-heading ul li i {
  color: #51dfcf;
  font-size: 15px;
  border: 1px solid #51dfcf;
  border-radius: 100%;
  padding: 10px;
}

.contact-innner-form-heading ul li a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.contact-innner-form-heading ul li a:hover {
  color: aqua;
  transition: 0.5s;
}

section.contact-inner-form .row {
  display: flex;
  align-items: center;
}




/*privacy page*/
.privacy-page {
  padding: 70px 0;
}

.privacy-page h2 {
  color: #51dfcf;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 44px;
}

.privacy-page p {
  color: #000;
  font-size: 16px;
  margin-bottom: 29px;
}

.privacy-page ul li {
  list-style: circle;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 16px;
}

.privacy-page ul {
  padding-left: 20px;
}

.privacy-page h3 {
  color: #51dfcf;
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 12px;
}

.footer-copy ul {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.footer-copy ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #51dfcf;
}

.footer-copy ul li a:hover {
    color: #51dfcf;
    transition: 0.5s;
}
.four-banner .item ul li {
    display: flex;
    align-items: center;
    gap: 2px;
}

.four-banner .item ul li h3 {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.magic {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/orbit-book-publishing-home-page.png') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}

.magic-1 {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/about-page.png') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.bookms {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/book-marketing-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}

.bookms-1 {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/book-marketing-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.expformat {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Expert-Formatting-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}

.expformat-1 {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Expert-Formatting-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.authorps {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Author-Platforms-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.authorps-1 {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Author-Platforms-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.amazonbp {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Amazon-Book-Publishing-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.amazonbp-1 {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Amazon-Book-Publishing-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.childbs {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Children-Book-Publishing.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.childbs-1 {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Children-Book-Publishing.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.audiosb {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Audio-Book-Services.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.audiosb-1 {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Audio-Book-Services.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.bookcd {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Book-Cover-Design.png') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.bookcd-1 {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Book-Cover-Design.png') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.ghost {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Ghost-Writing-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.ghost-1 {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Ghost-Writing-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.manu {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Manuscript-Editing-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.manu-1 {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Manuscript-Editing-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.wiki {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Wiki-Writing-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
.wiki-1 {
  z-index: 5;
  position: absolute;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  width: 20rem;
  height: 20rem;
  background: url('../images/Wiki-Writing-banner.webp') 50% 50% no-repeat fixed;
  background-size: cover;
  border-radius: 50%;
  z-index: -1;
  background-position: center;
}
section.about-banner {
  background-image: url(../images/here-banner.png);
  padding: 270px 0 170px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 111;
}



.about-page-inner-heading h1 {
  font-size: 45px;
  z-index: 111;
  position: relative;
  color: #fff;
  font-weight: 900;
  font-family: 'Inter';
  text-transform: uppercase;
} 

.about-page-inner-heading h1 span {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #51dfcf;
  background: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.about-page-inner-content p {
  width: 100%;
  color: #fff;
  font-family: 'Inter';
  font-size: 14px;
  line-height: 25px;
}

/* service page */

    .black-box img {
    margin-bottom: 10px;
}
        .black-box-btn {
        z-index: 1;
        position: relative;
        }
            .box-show.open:is(.black-box p) {
            color: #000 !important;
        }
        .black-box h4 {
            font-size: 25px;
            font-weight: 700;
            line-height: 35px;
            text-transform: uppercase;
        }
        .box-show, .box-show2, .box-show3, .box-show4, .box-show5, .box-show6, .box-show7, .box-show8, .box-show9, .box-show10, .box-show11, .box-show12  {
        position: absolute;
        top: 0px;
        background: #000;
        display: block;
        max-height: 0; 
        overflow: hidden;
        transition: max-height 0.5s ease-out, transform 0.5s ease-out; 
        transform: translateY(20px); 
        }
        .box-data {
            position: relative;
        }
      
        .box-show.open, .box-show2.open, .box-show3.open, .box-show4.open, .box-show5.open, .box-show6.open, .box-show7.open, .box-show8.open, .box-show9.open, .box-show10.open, .box-show11.open, .box-show12.open {
            max-height: 190px;
            transform: translateY(0); 
        }

        button.toggle-btn {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            color: white;
            border: none;
            background-color: #666666;
            border-radius: 50px;
        }

        button.toggle-btn:hover {
            background-color: #51dfcf;
            color: #000;
        }
        .blogs-slide {
        /* margin-top: 180px; */
        margin-top: 0px;
        }
        .service-blog-slide .blogs-slide {
        margin-top: 0px;
        }
        .service-blog-slide  {
          margin-bottom: 100px;
          margin-top: 50px;        
        }
        .faq-img-col img {
        width: 100%;
        }
        .service-faq-sec {
          margin-top: 100px;
        margin-bottom: 50px;
        }
        .box {
        background-color: #000;
        padding: 30px 25px;
        border-radius: 15px;
        color: #fff;
        transform: 0.5s;
        transition: all 0.5s ease-in-out;
        margin-bottom: 25px;
        }
        .box p{
        transform: 0.5s;
        transition: all 0.5s ease-in-out;
        margin-bottom: 10px;
        }
        #more {
            display: none;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease-in-out;
        }
        .hidden {
                display: none;
            }

        #dots {
            display: inline;
        }

        .service-faq-sec .accordion-button::after {
            display: none !important;
        }

        .service-faq-sec .accordion-button.collapsed .fas.fa-plus {
            display: inline-block !important;
        }

        .service-faq-sec .accordion-button.collapsed .fas.fa-minus {
            display: none !important;
        }

        .service-faq-sec .accordion-button:not(.collapsed) .fas.fa-minus {
            display: inline-block !important;
        }

        .service-faq-sec .accordion-button:not(.collapsed) .fas.fa-plus {
            display: none !important;
        }

        .service-faq-sec .accordion-button {
            display: flex !important;
            justify-content: space-between !important;
        }
  .service-faq-content h1{
    padding-bottom: 30px;
    font-size: 58px;
    line-height: 67px;
    font-weight: 900;
    color: #000;
    text-align: center;
    text-transform: capitalize;
  }
  .service-faq-sec .service-about-content h5 {
    color: #51dfcf;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
  }
  .service-faq-sec .accordion-button:not(.collapsed) {
    color: #000;
    background-color: #ffffff;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 0%);
    box-shadow: none !important;
  }
  .service-faq-sec .accordion-button:focus {
    z-index: 3;
    border-color: #ffffff;
    outline: 0;
    box-shadow: none !important;
}
.service-faq-sec .accordion-flush .accordion-item .accordion-button {
  border-radius: 10px;
  font-weight: 600;
}
.service-faq-sec .accordion-item {
  box-shadow: 0px 0px 10px #b2b2b2;
  margin: 15px 0px;
  border: none;
  border-radius: 10px !important;
}
.service-faq-sec .accordion-body {
  padding-top: 0px;
}
section.services-banner {
  background-image: url(../images/here-banner.png);
  padding: 270px 0 170px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 111;
}

section.second-sec.second-srvices-sec {
  padding: 100px 0;
}

.second-service-content h5 {
  color: #51dfcf;
  font-size: 14px;
  font-weight: 600;
}

.second-service-content h1 {font-size: 58px;line-height: 67px;font-weight: 900;color: #000;text-transform: capitalize;}

.second-service-content {
  padding-bottom: 10px;
}
.service-faq-sec .second-about-content {
  text-align: center;
}
p.text-h {
  overflow-y: scroll;
  max-height: 190px;
  height: 190px;
}
p.text-h::-webkit-scrollbar {
  width: 5px;
}
p.text-h::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
p.text-h::-webkit-scrollbar-thumb {
  background: rgb(255, 255, 255); 
  border-radius: 10px;
}
.service-faq-sec div#accordionFlushExample {
  width: 100% !important;
}

/* menu */
.mobile-menu .nav-link:focus, .nav-link:hover {
  color: #57e0d0;
}
.mobile-menu button.navbar-toggler {
  display: none !important;
}
.mobile-menu .nav-link {
  color: #000000;
  padding: 3px;
}
ul.sevices-dropdown {
  background: #000000;
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 210px;
  display: none;
  top: 24px;
}
ul.sevices-dropdown li a {
  padding: 10px;
  font-size: 15px;
  line-height: 20px;
  width: 100%;
  display: block;
}
ul.sevices-dropdown li a:hover {
  background-color: #51dfcf;
  color: #000;
}
.menu-drop-item:hover ul.sevices-dropdown {
  display: block;
}
.menu-drop-item {
  position: relative;
}
ul.sub-sevices-dropdown {
  display: none;
  position: absolute;
  left: 210px;
  width: 170px;
  top: 0px;
  background: #000000;
}
.sub-menu-drop-item {
  position: relative;
}
.sub-menu-drop-item:hover .sub-sevices-dropdown {
  display: block  ;
}
ul.sub-sevices-dropdown li a {
  width: 100%;
  display: block;
}
.sub-menu-drop-item a span {
  float: right;
}
ul.dropdown-menu.dropdown-menu-end.show.service-sub {
  top: 0px;
  position: absolute;
  left: 261px;
  right: auto;
}
.ser-icon.dropdown-toggle::after {
  rotate: -90deg !important;
}

.main-header .nav-link {
  color: #ffffff;
}
.main-header .nav-link:focus, .main-header .nav-link:hover {
  color: #51dfcf;
}
.main-header div#navbarNav {
  display: flex;
  justify-content: center;
}
.main-header a.nav-link {
  padding: 10px 15px !important;
}
.main-header .dropdown-item.active, .main-header .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #51dfcf;
}
.main-header .dropdown-item:focus, .main-header .dropdown-item:hover {
  color: #fdfdfd;
  background-color: #51dfcf;
}
/* .main-header ul.dropdown-menu.show {
  padding: 0px;
} */
.main-header .dropdown-item {
  font-size: 15px;
  line-height: 26px;
}
.lm-btn {
  padding: 10px 25px;
  background: #51dfcf;
  border: none;
  border-radius: 7px;
  text-decoration: none;
  color: #fff;
}
.lm-btn:hover {
  background: #060606;
  color: #ffffff;
  transition: 0.5s;
}
ol, ul {
  padding-left: 0rem !important;
}
.audio-services {
  padding-bottom: 0px;
  padding-top: 100px;
}

/* popup start */

#popup {
  display: none; 
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000000;
  box-shadow: 0 0 20px #51dfcfc7;
  z-index: 99999999 !important;
  border-radius: 10px;
  /* background-image: url(../images/about-inner.png); */
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 700px;
  width: 100%;
}
.popup-body {
  background: #000000a8;
  padding: 20px;
  border-radius: 10px;

}

#overlay-2 {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  z-index: 99999999 !important;
}

#close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #51dfcf;
  color: white;
  border: none;
  padding: 5px 11px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 100px;
  font-weight: bold;
}
#close-btn:hover {
  background-color: #399e92;
}
.my-popup .contact-main-form form textarea {
  width: 100%;
  background: transparent;
  border: 2px solid #40b1a4;
  padding: 8px 15px;
  margin: 10px 0;
  border-radius: 10px;
  color: #000000;
  height: 70px;
}
.my-popup .contact-main-form form input {
  padding: 8px 15px;
  margin: 7px 0;
}
.my-popup p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}
.my-popup a {
  color: #51dfcf;
}
.my-popup a:hover {
  color: #ffffff;
}
.my-popup form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
/* popup end */

.footer-social ul {
    gap: 0.7rem;
    display: flex;
}
.footer-social ul li i {
    color: #ffffff;
    font-size: 20px;
    transition: 0.3s;
}
.footer-social ul li i:hover {
    color: #4cd0c1;
    scale: 1.2;
}

@media (max-width: 1200px){
  .tab-data {
    padding: 0 8% !important;
  }
  .tab-banner-sec .tab-col-1 {
    display: none;
  }
  .tab-banner-sec .rotate-img {
    display: none;
  }
  .black-box h4 {
    font-size: 20px;
    line-height: 25px;
}
p.text-h {
  max-height: 180px;
}
.mar-bs {
  margin-bottom: 0px ;
}
}

@media (max-width: 992px){
  .mobile-menu {
    display: block;
    z-index: 9999999 !important;
    position: relative;
}
  .mobile-menu .circle {
    z-index: 999 !important;
    position: absolute;
    right: 30px;
}
  .mobile-menu .mobile-cross {
    right: 25px !important;
}
  .ser-icon.dropdown-toggle::after {
    rotate: -0deg !important;
}
  .mobile-menu ul.dropdown-menu.dropdown-menu-end.show.service-sub {
    top: 0px;
    position: relative;
    left: 0px;
}
  .mobile-menu .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: relative;
    padding: 6px 0 0px;
}
  .mobile-menu .navbar-expand-lg .navbar-nav {
    flex-direction: column;
}
  ul.sevices-dropdown {
    background: #ffffff;
    position: relative;
    width: 100%;
    display: none;
    top: 10px;
}

  section.services-banner {
    padding: 180px 0 110px;
}
  .about-page-inner-heading h1 {
    font-size: 54px;
}
  .black-box h4 {
    font-size: 15px;
    line-height: 20px;
}
.box-show.open, .box-show2.open, .box-show3.open {
  max-height: 254px;
}
p.text-h {
  max-height: 190px;
  max-height: 265px;
  height: 500px !important;  
}
.service-blog-slide {
  margin-bottom: 70px;
}
.service-faq-sec {
  margin-top: 70px;
}
}

@media (max-width: 768px){
  #popup {
      max-width: 90%;
  }
  section.services-banner {
    padding: 150px 0 100px;
}
  .about-page-inner-heading h1 {
    font-size: 45px;
}
  .box {
    margin-bottom: 20px;
  }
  section.second-sec.second-srvices-sec {
    padding: 70px 0;
    padding-bottom: 30px;
}
  p.text-h {
  max-height: 150px;
}
.service-faq-sec {
  margin-top: 50px;
}
}
@media (max-width: 576px) {
  .about-page-inner-heading h1 {
    font-size: 30px;
}
  section.second-sec.second-srvices-sec {
      padding: 50px 0px;
  }
  section.second-sec.second-srvices-sec {
    padding: 50px 0px;
}
}
@media (max-width: 360px) {
  p.text-h {
    max-height: 180px;
}
}


body {
  overflow-x: hidden;
}