/*scroll*/
::selection {
  background: #895ffc;
  color: #fff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #dedede;
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-image: linear-gradient(#9916AD, #9916AD);
}

/*body*/
body {
  overflow-x: hidden;
  font-family: "Inter", serif;

  background-color: #000;
}

*:hover,
*:focus,
* {
  outline: none !important;
}

.overflw {
  overflow: hidden;
}

[class^="box-"] {
  display: none
}

[class^="box-"].showfirst {
  display: block
}

img {
  max-width: 100%;
  height: auto;
}

a:hover,
button:hover {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
}

a.logo img {
    width: 60%;
}

.loader img {
    width:50px;
}

/*padding*/
.pad {
  padding: 0;
}

.padL {
  padding-left: 0;
}

.padR {
  padding-right: 0;
}

.pad-top-80 {
  padding-top: 80px !important;
}

.pad-top {
  padding-top: 60px;
}

.pad-btm-30 {
  padding-bottom: 30px;
}

.pad-btm {
  padding-bottom: 50px;
}

.pad-btm-70 {
  padding-bottom: 70px;
}

.pad-tb {
  padding: 80px 0;
}

.pad-tbm {
  padding: 50px 0;
}

.padRt-60 {
  padding-right: 60px;
}

.pad-LR30 {
  padding: 0 30px;
}

.pad-80-240 {
  padding: 80px 0 240px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-35 {
  margin-top: 35px;
}

/*botton*/
.btn-a {
  background-color: #9916AD;
  border: 2px solid #9916AD;
  border-radius: 0;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.btn-a:hover {
  background: transparent;
  color: #fff;
}

.btn-submit {
  border-radius: 5px !important;
  text-transform: uppercase !important;
  font-size: 24px !important;
  letter-spacing: .2px;
}

.btn-submit:hover {
  background: transparent;
  color: #fff;
}

/*heading*/
.m1-h h5 {
  font-size: 60px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  position: relative;
  font-family: 'Poppins';
}

.m1-h h5 span {
  font-weight: 400;
  font-size: 44px;
}

.m2-h h5 {
  font-size: 36px;
  text-transform: capitalize;
  color: #9916AD;
  font-weight: 600;
  position: relative;
  font-family: 'Poppins';
  text-transform: uppercase;
  padding-bottom: 20px
}

.m2-h h5 span {
  border-bottom: 3px solid #9916AD;
  text-transform: capitalize;
}

.m3-h h5 {
  margin-bottom: 35px;
  padding-bottom: 19px;
  color: #9916AD;
  font-weight: 600;
  font-family: 'Poppins';
  text-transform: uppercase;
  font-size: 18px;
}

.m4-h h5 {
  color: #9916AD;
  font-family: 'Poppins';
  text-transform: capitalize;
  font-size: 18px;
  margin: 25px 0 30px;
  font-weight: 600;
}

.m5-h h5 {
  font-weight: 600;
  color: #fff;
  font-size: 48px;
  text-transform: uppercase;
  font-family: 'Poppins';
}

.m5-h h5 span {
  border-bottom: 3px solid #fff;

}

.m6-h h5 {}

/*paragrape*/
.p1 p {
  font-size: 14px;
  color: #fff;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.p2 p {
  font-size: 36px;
  color: #fff;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.p3 p {
  color: #fff;
  line-height: 32px;
  font-weight: 600;
  font-size: 18px;
  font-family: 'Poppins';
}

.p4 p {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  font-family: 'Poppins';
  line-height: 22px;
}

.p5 p {}

/* Font size */
.font-16 {
  font-size: 16px !important;
}

/* Hamburger Menu */
.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 999;
  display: none;
}

.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: #9916AD;
  position: absolute;
  transition: .6s all;
  border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
  top: 0;
}

.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}

.menu-Bar span:nth-child(3) {
  top: 16px;
}

.menu-Bar.open span {
  background: #000;
}

.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}

/*top-header*/
/*header*/
header {
  padding: 15px 20px;
  background: rgb(0, 0, 0);
}

ul.menu {
  display: block;
  text-align: end;
}

ul.menu>li {
  display: inline-block;
  margin-right: 20px;
}

ul.menu>li:last-child {
  margin-right: 0;
  margin: 0 0 0 30px;
}

ul.menu>li>a {
  font-size: 17px;
  font-weight: 300;
  color: #000;
  text-transform: capitalize;
  letter-spacing: 0;
  border-bottom: 2px solid transparent;
  font-family: "Lilita One", serif;
}

ul.menu>li.active a {
  border-bottom: 2px solid #000;
}

ul.menu>li>a:hover {
  /* border-bottom: 2px solid #000; */
}

/*main-banner*/
.mainBanner {
  background-size: cover;
  background-position: center;
  height: 100vh;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
}

video#myVideo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 99;
}

.z-9 {
  z-index: 999;
  position: relative;
}

.mainBanner:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #00000059;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  margin: 0 auto;
}

/*main-banner End*/
/* Social Icons */
.socialIcon li {
  display: inline-block;
}

.socialIcon li span {
  padding: 12px 10px;
  background-color: #9916AD;
  border: 1px solid #9916AD;
  color: #fff;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  text-align: center;
  margin: 0 5px 0 0;
}

/* .socialIcon li span:hover {
  border: 1px solid #9916AD;
  background: transparent;
  color: #9916AD;
} */

/*media-quries*/
@media (max-width:1440px) {}

@media (max-width:1200px) {
  .menu-Bar {
    display: block;
    top: 0px;
  }

  .menuWrap.open {
    display: flex;
    left: 0px;
  }

  .menuWrap {
    /* position: fixed; */
    left: -210%;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    /* background: #9916AD; */
    /* height: 100vh; */
    /* display: flex; */
    align-items: center;
    justify-content: center;
    flex-flow: column;
    transition: all 0.4s ease;
    z-index: 99;
    /* width: 100vw; */
    margin-top: 20px;
  }

  .menuWrap .menu li {
    display: block;
  }

  .menuWrap .menu li a {
    margin-bottom: 10px;
    padding: 0;
    display: block;
    margin-bottom: 30px;
    padding-right: 0px;
    margin-right: 0px;
    color: #fff;
    font-size: 25px;
  }

  .container {
    position: relative;
  }

  header .header-top {
    display: none;
  }

  header .main-header ul.menu>li {
    display: block;
    padding: 0px;
  }

  header .main-header ul.menu>li a {
    color: #fff;
    padding: 10px;
    text-align: center;
  }

  header .main-header ul.menu>li a:before {
    display: none;
  }
}

@media (max-width:980px) {
  .btn-a {
    margin-bottom: 20px;
  }

  footer {
    padding-bottom: 60px;
  }
}

@media (max-width:824px) {}

@media (max-width:767px) {
  header {
    padding: 0;
  }

  footer {
    text-align: center;
  }

  .m1-h h5 span {
    font-size: 26px;
  }

  .at-h {
    padding-bottom: 0;
  }

  .padRt-60 {
    padding-right: 0 !important;
  }

  .btn {
    border: 1px solid #000;
  }

  ul.menu>li:last-child {
    margin: 0;
  }

  a.logo img {
    width: 100%;
  }

  .m1-h h5 {
    font-size: 20px;
  }

  .mainBanner {
    height: 35vh;
  }

  .m2-h h5 {
    font-size: 20px;
  }

  .pad-tb {
    padding: 40px 0;
  }

  .p1 p {
    font-size: 16px;
    line-height: 20px;
  }

  .flogo img {
    width: 50%;
  }

  .flogo {
    text-align: left;
    margin-bottom: 20px;
  }

  .copyright.text-center {
    font-size: 16px;
  }

  footer {
    padding: 15px 0;
  }

  ul.menu>li.active a {
    border-bottom: 0;
  }

  ul.menu>li {
    margin-right: 0;
  }

  .menuWrap .menu li a {
    margin-bottom: 15px;
    font-size: 15px;
  }

  ul.menu>li>a {
    border-bottom: none;
  }

  ul.menu>li.active a {
    border-bottom: none;
  }

  ul.menu>li>a:hover {
    border-bottom: none;
  }

  .inner-ban .ban_hdn h5::after {
    width: 90px;
  }

  .inner-ban {
    height: 20vh;
  }

  .Tec-ctn h5::after {
    width: 270px;
  }
}

@media (min-width:320px) and (max-width:340px) {}

@media (min-width:341px) and (max-width:365px) {}

@media (min-width:366px) and (max-width:380px) {}

@media (min-width:381px) and (max-width:415px) {}

/* UL style */
.listStyle {
  list-style: disc;
  display: inline-block;
  list-style-position: inside;
}

.listStyle li {
  margin: 30px 0;
  font-family: 'Poppins';
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
  /* position: relative;
   */
}


/* /// */

/* Changes-mine */

a:hover {
  text-decoration: none;
}

body {
  background-color: #fff;
}

header {
  padding: 15px 20px;
  background: white;
  /* background: linear-gradient(99deg, rgba(0, 0, 0, 1) 0%, #956752 47%, rgba(170, 118, 94, 1) 59%, rgba(33, 37, 41, 1) 100%); */
  text-align: center;
}

a.btn.btn-a {
  padding: 9px 24px;
  border: 1px solid #9916AD;
  border-radius: 42px;
  color: white;
}

a.btn.btn-a:hover {
  color: #9916AD;
}

section.home-banner {
  padding: 90px 0 60px;
  background-image: url('../images/banner/home-banner.png');
  background-position: center;
  background-size: cover;
}

.banner-text h1 {
  font-size: 37px;
  font-weight: 700;
  line-height: 44px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: 'crayon-pastel';
}

.banner-text p {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 20px;
}

.banner-text h5 {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.banner-text ul {
  padding-left: 20px;
  margin-top: 19px;
}

.banner-text ul li {
  font-size: 16px;
  margin-bottom: 10px;
  list-style-type: disclosure-closed;
  font-weight: 600;
}

.banner-text ul li::marker {
  color: #9916AD;
}

.buttons-div {
  margin-top: 40px;
}

.buttons-div a.btn-01 {
  background: #1E9BD8;
  padding: 13px 25px;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
  margin-right: 10px;
}

.buttons-div a.btn-02 {
  background: #9916AD;
  padding: 13px 25px;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
}

.banner-form {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  border: 1px solid #9916AD !important;
  position: relative;
}

.banner-form::after {
  content: "";
  position: absolute;
  background-image: url(../images/form-after.png);
  width: 140px;
  height: 230px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  right: -60px;
  bottom: -60px;
}

.banner-form:before {
  content: "";
  position: absolute;
  background-image: url(../images/form-before.png);
  width: 150px;
  height: 170px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: -60px;
  top: -60px;
}

.banner-form h2 {
  font-size: 27px;
  margin-bottom: 10px;
  color: black;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'crayon-pastel';
}

.banner-form p {
  color: black;
  font-size: 15px;
}

.banner-form label {
  font-size: 0px !important;
  color: black !important;
}

.banner-form label input {
  margin: 0px !important;
  margin-bottom: 18px !important;
  padding: 13px 15px;
  border: 1px solid #9916AD !important;
  border-radius: 9px;
  color: black;
  margin-top: 8px !important;
}

.banner-form label input::placeholder {
  color: black;
}

.banner-form label textarea {
  margin: 0px !important;
  padding: 13px 15px;
  border: 1px solid #9916AD !important;
  border-radius: 9px;
  margin-top: 8px !important;
  color: black;
}

.form-work input {
  color: black !important;
}

.banner-form label textarea::placeholder {
  color: black;
}

.banner-form button.btn.submitbtn {
  background: #9916AD;
  color: white;
  width: 100%;
  padding: 14px 0;
  font-size: 15px;
}

section.visions-sell {
  padding: 20px 0;
}

section.visions-sell h3 {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  text-transform: uppercase;
  line-height: 24px;
  font-family: 'crayon-pastel';
}

section.professional-book {
  padding: 80px 0;
  background-image: url(../images/about-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.professional-book-text h2 {
  color: black;
  font-size: 33px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 15px;
  font-family: 'crayon-pastel';
}

.professional-book-text p {
  color: black;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 16px;
}

.professional-book-text ul li {
  width: 50% !important;
  margin-bottom: 25px;
  color: black;
  font-size: 16px;
  position: relative;
  padding-left: 20px;
  font-weight: 700;
  text-transform: capitalize;
}

.professional-book-text ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.professional-book-text a {
  background: white;
  color: black;
  padding: 12px 35px;
  font-size: 16px;
  border-radius: 8px;
  font-family: "Lilita One", serif;
}

.professional-book-text ul li:before {
  content: "";
  background-image: url(../images/icon/listicons.png);
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  top: 2px;
}

section.book-name {
  padding: 90px 0;
}

.prominent-text h2 {
  color: black;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 15px;
  font-family: 'crayon-pastel';
}

.prominent-text p {
  color: #000000;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 16px;
}

.counter-box-main {
  display: flex;
  gap: 7px;
  justify-content: space-between;
}

.prominent-text .counter-box-main .counter-box i {
  font-size: 27px;
  color: #9916AD;
  margin-right: 8px;
}

.prominent-text .counter-box-main .counter-box span.counter {
  font-size: 30px;
  color: black;
  font-weight: 800;
}

.prominent-text .counter-box-main .counter-box p {
  margin: 0px;
  margin-top: 7px;
  font-size: 13px;
  font-weight: 400;
}

.counter-box-main .counter-box {
  font-size: 32px;
  color: black;
  font-weight: 800;
}

section.awards {
  background: black;
  padding: 40px 0;
}

section.awards h3 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 35px;
  font-family: 'crayon-pastel';
}

section.tech {
  padding: 90px 0;
  /* background: #e8c9bb; */
  background-image: url(../images/tech-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.texh-text h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'crayon-pastel';
}

.texh-text h2 span {
  font-weight: 500;
  color: #565656;
}

.texh-text p {
  font-size: 16px;
  text-align: center;
  color: #555555;
  width: 80%;
  margin: 0 auto;
  line-height: 25px;
}

.texh-text {
  margin-bottom: 30px;
}

.left-side-bar {
  padding-right: 30px;
}

.left-side-bar .tango-tech-main {
  background: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: row-reverse;
  gap: 25px;
  align-items: center;
  margin-bottom: 30px;
}

.left-side-bar .tango-tech-main img {
  padding: 20px 18px;
  border-radius: 7px;
  background: white;
  box-shadow: 2px 2px 7px -2px #bbbbbb;
  margin-right: -50px;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.left-side-bar .tango-tech-main p {
  width: 60%;
  font-size: 15px;
  color: #555555;
  line-height: 21px;
  text-align: end;
}

.left-side-bar .tango-tech-main h4 {
  width: 24%;
  font-size: 16px;
  font-weight: 700;
  color: black;
  text-align: end;
}

.right-side-bar {
  padding-left: 30px;
}

.right-side-bar .tango-tech-main {
  background: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
  margin-bottom: 30px;
}

.right-side-bar .tango-tech-main img {
  padding: 20px 18px;
  border-radius: 7px;
  background: white;
  box-shadow: -2px 2px 7px -2px #bbbbbb;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.right-side-bar .tango-tech-main p {
  width: 60%;
  font-size: 15px;
  color: #555555;
  line-height: 21px;
  text-align: left;
}

.right-side-bar .tango-tech-main h4 {
  width: 24%;
  font-size: 16px;
  font-weight: 700;
  color: black;
  text-align: left;
}

section.tabs-section {
  padding: 80px 0;
  background-image: url(../images/stars-bg.png);
  background-size: auto;
  background-position: right center;
  background-repeat: repeat-y;
}

.divider {
  position: relative;
}

.divider::before {
  background: #9916ad5c;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
}

.tabs-head {
  margin-bottom: 20px;
}

.tabs-head h2 {
  text-align: center;
  font-size: 39px;
  margin-bottom: 12px;
  font-weight: 400;
  font-family: 'crayon-pastel';
  line-height: 50px;
}

.tabs-head p {
  font-size: 16px;
  text-align: center;
  color: #555555;
  width: 80%;
  margin: 0 auto 30px;
  line-height: 25px;
}

.tablist {
  text-align: center;
  margin-bottom: 30px;
}

.tablist button {
  background: transparent;
  border: 0px;
  padding: 13px 20px;
  font-size: 15px;
  border-radius: 7px;
  margin: 0 5px;
  color: #000;
  font-weight: 700;
}

.tablist button[aria-selected="true"] {
  background: #9916AD;
  color: #fff;

}

.image-box {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  row-gap: 30px;
}

.image-box img {
  width: 25%;
}

.image-box.illustration {
  gap: 20px;
}

.image-box.illustration img {
  width: 23.5%;
}

section.edited {
  padding: 70px 0 30px;
  /* background: #603927; */
  background-image: url(../images/never-get.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
}

section.edited h2 {
  color: black;
  font-size: 33px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 42px;
  width: 80%;
  margin: 0 auto 20px;
  font-family: 'crayon-pastel';
}

section.edited p {
  color: black;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 16px;
}

.left-img img {
  margin-left: -50px;
  width: 150% !important;
  margin-right: -60px;
  max-width: 150%;
}

.right-img img {
  margin-left: -50px;
  width: 150% !important;
  margin-right: -60px;
  max-width: 150%;
}

section.service {
  padding: 100px 0 150px;
  text-align: center;
  background-image: url(../images/stars-bg.png);
  background-size: auto;
  background-position: left center;
  background-repeat: repeat-y;
}

.services-head {
  margin-bottom: 30px;
}

.services-head h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'crayon-pastel';
}


.services-head p {
  font-size: 16px;
  text-align: center;
  color: #555555;
  width: 86%;
  margin: 0 auto;
  line-height: 25px;
}

.serve-box {
  padding: 30px;
  border: 1px solid #9916AD;
  border-radius: 10px;
  transition: 0.5s all;
  color: #9916AD;
  margin-bottom: 30px;
  height: 330px;
  background-color: #fff;
}

.serve-box:hover {
  background-color: #9916AD;
  color: white !important;
  transition: 0.5s all;

}

.serve-box img {
  margin-bottom: 15px;
  width: 60px;
}

.serve-box:hover img {
  filter: brightness(0) invert(1);
}

.serve-box h4 {
  font-size: 23px;
  margin-bottom: 17px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 29px;


}

.serve-box p {
  font-size: 15px;
  text-align: center;
  line-height: 22px;
}

section.authors-sec {
  background-image: url(../images/authors-bg.webp);
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

section.authors-sec img {
  width: 100%;
  margin: -90px 0 -80px;
}

.author-sec-content {
  padding-left: 160px;
}

.author-sec-content h3 {
  color: black;
  font-size: 43px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 52px;
  margin-bottom: 15px;
  font-family: 'crayon-pastel';

}

.author-sec-content p {
  color: black;
  color: black;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 16px;
}

section.authors-sec-2 {
  background-image: url(../images/best-selling-bg.png);
  background-size: cover;
  background-position: center;
}

section.authors-sec-2 img {
  width: 100%;
  margin: -50px 0;
}

.author-sec-text h3 {
  color: black;
  font-size: 43px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 52px;
  margin-bottom: 15px;
  font-family: 'crayon-pastel';

}

.author-sec-text p {
  color: black;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 16px;
}

.author-sec-text .buttons-div a.btn-01 {
  background: #9916AD;
  color: white;
  border-radius: 100px;
}

section.value {
  padding: 150px 0 130px;
  text-align: center;
}

.value-text h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 13px;
  font-weight: 700;
  color: #9916AD;

  font-family: 'crayon-pastel';
}

.value-text p {
  font-size: 16px;
  color: #000;
}

.value-text .buttons-div a.btn-01 {
  background: #9916AD;
  border-radius: 100px;
}

.value-text .buttons-div {
  margin-bottom: 70px;
}


section.faqs {
  padding: 100px 0 80px;

  .accordion-container .set a {
    background: #1E9BD8;
    padding: 11px 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 16px;
    color: white;
    display: block;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }

  .accordion-container .set a i.fa {
    color: black;
    background: white;
    border-radius: 100%;
    width: 36px;
    height: 36px;
    padding: 12px;
    margin-right: 9px;
  }

  .accordion-container {
    position: relative;
  }

  .accordion-container>h2 {
    text-align: center;
    color: #fff;
    padding-bottom: 5px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
  }

  .set>a.active {
    background-color: #1E9BD8;
    color: #000;
    margin-bottom: 10px !important;
  }

  .content {
    background-color: #fff;
    display: none;
  }

  .content p {
    padding: 10px 15px 30px;
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 21px;
  }
}

.faqs-text {
  margin-bottom: 20px;
  text-align: center;
}

.faqs-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: #302946;
  margin-bottom: 20px;
  font-family: 'crayon-pastel';
}

.faqs-text p {
  font-size: 16px;
}

section.contact-sec {
  background-image: url(../images/contact-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 0;
}

.contact-text {
  text-align: center;
  margin-bottom: 20px;
}

.contact-text h2 {
  color: black;
  font-size: 40px;
  font-weight: 700;
  /* width: 40%; */
  line-height: 47px;
  margin: 0 auto;
  font-family: 'crayon-pastel';

}

.contact-form {
  padding: 35px;
  border-radius: 10px;
  background: linear-gradient(45deg, #9916AD, #1E9BD8);
}

.contact-form h2 {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  color: white;
  margin-bottom: 29px;
  font-family: 'crayon-pastel';
}

.contact-form input,
.contact-form textarea {
  color: white;
  padding: 8px 7px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: white;
}

.contact-form button.btn.submitbtn {
  background: #FFC200;
  color: black;
  padding: 13px 30px;
  text-transform: uppercase;
  border-radius: 100px;
  font-weight: 500;
}

section.contact-sec h3 {
  color: black;
  text-align: center;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px !important;
  font-family: 'crayon-pastel';
}

section.contact-sec h3 span {
  color: #9916AD;
}

section.contact-sec ul.contact-point li {
  font-size: 14px;
  color: black;
  line-height: 24px;
  margin-bottom: 13px;
  position: relative;
  padding-left: 50px;
}

ul.contact-point li::before {
  width: 25px;
  height: 25px;
  content: "";
  position: absolute;
  left: 18px;
  background: #9916AD;
  border-radius: 100px;
  top: 3px;
}

.footer-top {
  background: #9916AD;
  padding: 20px 0;
}

.socialIcon li.first {
  position: relative;
  width: 44px;
}

.socialIcon li.first span.fa.fa-twitter {
  position: absolute;
  top: -26px;
}

.ftr-lt img {
  margin-bottom: 20px;
}

.contact-details a {
  color: black;
  display: block;
  margin-bottom: 13px;
  font-size: 15px;
  line-height: 22px;
}

.other-details h4 {
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: black;
}

.other-details a {
  color: black;
  display: block;
  margin-bottom: 13px;
  font-size: 15px;
  line-height: 14px;
}

p.disclaimer {
  margin: 13px 0 0px;
  font-size: 15px;
  line-height: 21px;
  color: black;
}

.text-right a {
  color: white;
  margin-left: 15px;
  font-size: 15px;
  line-height: 14px;
}

section.testimonail {
  padding: 110px 0 30px;
  /* background-image: url(../images/never-get.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white; */
}

.test-head {
  text-align: center;
  margin-bottom: 50px;

}

.test-head h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  color: #302946;
  font-family: 'crayon-pastel';
}

.test-main {
  padding: 0 30px;
  position: relative;
}

/* .test-main::before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 90px;
  height: 90px;
  border-radius: 0 0 0 60px;
  border-left: 8px solid #861397;
  border-bottom: 8px solid #861397;
  left: 0px;
} */
/* img.stars-img {
  margin-bottom: 30px;
} */
.img-box {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.img-box img {
  height: 100px;
}

.test-main {
  padding: 30px 30px;
  position: relative;
  border: 2px solid #861397;
  margin: 0 10px;
  text-align: center;
  height: 260px;
  border-radius: 7px;
}

.test-main h3 {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.test-main p {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 22px;
}

.test-main img {
  display: inline;
}

.form-work {
  position: relative;
  z-index: 11;
}

/*footer start*/
footer {
  background-color: #ffc2006b;
  padding: 70px 0;
  color: black;
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 18%;
}

.flogo {
  text-align: right;
}

span.fa.fa-twitter::before {
  content: url(../images/twitter.png);
}

.copyright.text-center {
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: black;
  background: #000;
}

.copyright.text-center p {
  text-transform: capitalize;
  color: white;
}

.footer-img {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  align-items: center;
}

/*footer end*/

/* ///// process-css */

.process {
  text-align: left;
}

.process h3 {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Inter';
  line-height: 25px;
  margin-bottom: 8px;
}

.process p {
  font-size: 15px;
  line-height: 18px;
}

.process-01 h3 {
  color: #f7b900;
}

.process-01 img {
  margin-right: -40px;
  margin-left: 50px;
  margin-top: 10px;
}

.left-process {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-02 {
  padding-bottom: 90px;
}

.process-02 h3 {
  color: #ffd21f;
}

.process-02 img {
  margin-right: -50px;
  margin-left: 130px;
  margin-top: 20px;
}

.right-process {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-div {
  margin-top: 210px !important;
}

.process-03 {
  margin-top: -180px;
  margin-left: -120px;
}

.process-03 h3 {
  color: #ff6eb1;
}

.process-04 {
  margin-top: -230px;
  margin-left: -30px;
}

.process-04 img {
  margin-left: -210px;
  margin-top: 20px;
  max-width: 140%;
}

.process-04 h3 {
  color: #32a3f9;
}

.process-05 {
  margin-bottom: 100px;
}

.process-05 img {
  margin-left: -60px;
  margin-bottom: 20px;
}

.process-05 h3 {
  color: #d21fed;
}

/* responsive-css */
.modal-dialog {
  max-width: 930px;
  margin: 100px auto;
}

.logo {
  text-align: center;
}

.popup-work h2 {
  text-align: center;
  font-family: 'Inter';
  font-size: 40px;
  color: #e2107f;
  text-transform: uppercase;
  font-weight: 800;
  margin: 20px 0 15px;
}

.popup-work h2 span {
  color: #f7c319;
}

.popup-work p {
  text-align: center;
  margin-bottom: 13px;
  font-size: 19px;
  font-weight: 600;
  color: #5e2c83;
}

.modal-body {
  background-image: url(../images/popupbg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px;
  position: relative;
}

.modal-body::after {
  content: url(../images/popup-before.png);
  position: absolute;
  right: 0;
  bottom: 0;
}

.popup-work input {
  background: white !important;
  border: 1px solid #5e2c83 !important;
  color: #5e2c83 !important;
  padding: 14px;
  font-family: 'Lato' !important;
  font-weight: 500;
  margin: 10px 0 !important;
}

.popup-work .cta label {
  font-size: 0px !important;
}

.popup-work button.btn.submitbtn {
  width: 100%;
  background: #5c2b80;
  margin: 0px !important;
  color: white;
  font-family: 'Lato';
  font-size: 17px;
  padding: 9px 0;
}

.modal-body button.close {
  background: #5e2c83;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  padding: 0px !important;
}

.popup-work textarea {
  background: white !important;
  border: 1px solid #5e2c83 !important;
  color: #5e2c83 !important;
  padding: 14px;
  font-family: 'Lato' !important;
  font-weight: 500;
  margin: 10px 0 !important;
}

.mobile-version {
  display: none;
}

.process.process-01 {
  margin-top: -30px;
}

@media screen and (max-width: 1024px) {
  .banner-text h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .banner-text ul li {
    font-size: 14px;
    margin-bottom: 10px;
    list-style-type: disclosure-closed;
  }

  .professional-book-text h2 {
    font-size: 28px;
  }

  .prominent-text h2 {
    font-size: 33px;
    line-height: 37px;
  }

  .prominent-text .counter-box-main .counter-box span.counter {
    font-size: 23px;
  }

  section.awards h3 {
    font-size: 21px;
    line-height: 30px;
  }

  .texh-text h2 {
    font-size: 32px;
    margin-bottom: 11px;
  }

  .tabs-head h2 {
    font-size: 33px;
    margin-bottom: 15px;
  }

  .tablist button {
    padding: 13px 17px;
    font-size: 14px;
  }

  .image-box img {
    width: 25%;
  }

  .image-box.illustration img {
    width: 22.5%;
  }

  section.edited {
    padding: 70px 0 60px;
  }

  .serve-box {
    padding: 20px;
  }

  .serve-box h4 {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .author-sec-content {
    padding-left: 0px;
    padding: 30px 0;
  }

  .author-sec-content h3 {
    font-size: 37px;
    line-height: 43px;
    margin-bottom: 15px;
    width: 100%;
  }

  section.authors-sec img {
    width: 100%;
    margin: -150px 0;
  }

  section.value {
    padding: 70px 0 70px;
    text-align: center;
  }

  section.authors-sec-2 img {
    width: 90%;
    margin: -90px 0;
  }

  .author-sec-text h3 {
    font-size: 37px;
    line-height: 45px;
  }

  .img-box h3 {
    font-size: 15px;
  }

  .img-box img {
    width: 40%;
  }

  section.contact-sec h3 {
    margin-top: 40px;
    font-size: 28px;
  }

  .test-main {
    padding: 30px 30px 30px;
    position: relative;
  }

  .footer-img {
    justify-content: center;
  }

  .test-head h2 {
    font-size: 30px;
  }

  .faqs-text h2 {
    font-size: 33px;
  }

  .contact-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto;
  }

  .other-details h4 {
    font-size: 16px;
  }

  /* footer {
  background-color: #9916AD;
  padding: 50px 0;
} */
  .buttons-div a.btn-01 {
    padding: 13px 23px;
  }

  .buttons-div a.btn-02 {
    padding: 13px 28px;
  }

  .process-04 {
    margin-top: -70px !important;
    margin-left: -56px !important;
  }

  .process-03 {
    margin-top: -137px !important;
    margin-left: -150px !important;
  }

  .process-04 img {
    margin-left: -240px !important;
    margin-top: -2px !important;
    max-width: 140% !important;
  }

  .process-05 img {
    margin-left: -131px !important;
    margin-bottom: 20px !important;
  }

}

@media screen and (max-width: 768px) {
  .banner-form::after {
    display: none;
  }

  .process.process-01 {
    margin-top: 0px;
  }

  .mobile-version .process-01 h3 {
    color: #ff6eb1;
  }

  .mobile-version .process-02 h3 {
    color: #f7b900;
  }

  .mobile-version .process-03 h3 {
    color: #32a3f9;
  }

  .mobile-version .process-04 h3 {
    color: #d21fed;
  }

  .mobile-version .process-05 h3 {
    color: #ffd21f;
  }

  .mobile-version {

    display: block;
  }

  .desktop-version {
    display: none;
  }

  .modal-dialog {
    max-width: 700px;
    margin: 100px auto;
  }

  section.professional-book {
    padding: 40px 0;
  }

  .banner-form {
    margin-top: 40px;
  }

  .texh-text p {
    font-size: 16px;
    width: 100%;

  }

  section.tech {
    padding: 70px 0;
  }

  img.img-work {
    width: 60%;
    float: right;
  }

  .left-img img {
    margin-left: 0px;
    width: 40% !important;
    margin-right: 0px;
  }

  .right-img img {
    margin-left: 0px;
    width: 40% !important;
    margin-right: 0px;
  }

  section.authors-sec img {
    width: 50%;
    margin: 0;
    float: right;
  }

  .process-div {
    margin-top: 50px !important;
  }

  section.authors-sec-2 img {
    width: 50%;
    margin: 0 0;
  }

  section.authors-sec-2 {
    padding: 0 0 60px;
  }

  .faqs-text h2 {
    font-size: 28px;
  }

  .contact-text h2 {
    font-size: 28px;
    width: 100%;
  }

  section.contact-sec h3 {
    margin-top: 40px;
  }

  .other-details h4 {
    margin-top: 20px;
  }

  .process img {
    display: none !important;
  }

  .left-process {
    display: flex;
    flex-direction: row !important;
  }

  .process {
    text-align: center !important;
    padding: 20px !important;
    width: 50% !important;
    margin: 0px !important;
  }

  .right-process {
    height: 100%;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  img.five {
    width: 40%;
  }
}

@media screen and (max-width: 480px) {
  .image-box.illustration img {
    width: 47%;
  }

  img.img-pop {
    display: none;
  }

  .banner-form h2 {
    font-size: 19px;
  }

  .professional-book-text h2 {
    font-size: 20px;
    line-height: 30px;
  }

  img.img-work {
    width: 100%;
    float: right;
    margin-top: 40px;
  }

  .prominent-text h2 {
    font-size: 25px;
    line-height: 32px;
  }

  .texh-text h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .tabs-head p {
    width: 100%;
  }

  .value-text .buttons-div {
    margin-bottom: 0px;
  }

  .process-div {
    margin-top: 70px !important;
  }

  .left-side-bar .tango-tech-main {
    padding: 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 25px;
  }

  .left-side-bar .tango-tech-main img {
    margin-right: 0px;
  }

  .left-side-bar .tango-tech-main h4 {
    width: auto;
    text-align: center;
  }

  .left-side-bar .tango-tech-main p {
    width: auto;
    color: #555555;
    text-align: center;
    height: auto;
  }

  .left-side-bar {
    padding-right: 0px;
  }

  .right-side-bar .tango-tech-main {
    padding: 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 25px;
  }

  .right-side-bar .tango-tech-main img {
    margin-left: 0px;
  }

  .right-side-bar .tango-tech-main h4 {
    width: auto;
    text-align: center;
  }

  .right-side-bar .tango-tech-main p {
    width: 100%;
    font-size: 15px;
    color: #555555;
    line-height: 21px;
    text-align: center;
    height: auto;
  }

  .right-side-bar {
    padding-left: 0px;
  }

  .tabs-head h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 28px;
  }

  .image-box img {
    width: 50%;
  }

  section.edited h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
    width: 100%;
  }

  section.edited {
    padding: 40px 0 40px;
  }

  .right-img {
    margin-top: 30px;
  }

  .serve-box h4 br {
    display: none;
  }

  .author-sec-content h3 {
    font-size: 26px;
    line-height: 35px;
  }

  .author-sec-content p {
    color: white;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 16px;
    width: 100%;
  }

  section.authors-sec img {
    width: 100%;
    margin: 0;
    float: right;
  }

  .value-text h2 {
    font-size: 27px;
  }

  section.authors-sec-2 img {
    width: 90%;
    margin: 20px 0 0;
  }

  .author-sec-text h3 {
    font-size: 28px;
    line-height: 35px;
  }

  section.authors-sec-2 {
    padding: 50px 0;
  }

  .faqs-text h2 {
    font-size: 25px;
  }

  .copyright.text-center p {
    text-transform: capitalize;
    text-align: center;
  }

  .text-right {
    text-align: center;
    margin-top: 20px;
  }

  img.five {
    width: 60%;
  }

  .services-head h2 {
    font-size: 31px;
  }

  .left-process {
    display: flex;
    flex-direction: column !important;
  }

  .process {
    width: 100% !important;
  }

  .professional-book-text ul li {
    width: 100% !important;
  }

  .counter-box-main .counter-box {
    font-size: 22px;
    color: black;
    font-weight: 800;
  }

  .buttons-div a.btn-01 {
    padding: 16px 14px;
    font-size: 14px;
    display: block;
    margin-bottom: 16px;
    text-align: center;
    margin: 10px 0;
  }

  .buttons-div a.btn-02 {
    padding: 16px 14px;
    font-size: 14px;
    display: block;
    margin-bottom: 16px;
    text-align: center;
    margin: 10px 0;
  }

  .socialIcon li.first span.fa.fa-twitter {
    position: absolute;
    top: -25px;
    left: 0;
  }

  .test-main {
    height: auto;
  }

  section.tabs-section {
    background-image: none;
  }

  section.service {
    background-image: none;
  }
}

a {
  cursor: pointer;
}

.fancybox-slide>* {
  display: inline-block;
  position: relative;
  padding: 0px;
  margin: 0px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: transparent;
  overflow: auto;
  box-sizing: border-box;
  width: 70%;
}

.card {
  border: none;
  position: relative;
}

.card img.playbutton {
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #ffffffd1;
  border-radius: 100px;
}

.video-fancy {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.video-fancy .card {
  width: 31%;
}

.video-fancy .card img.card-img-top.img-fluid {
  height: 100%;
  height: 220px;
  object-fit: cover;
}