@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

section.harp_high {
    padding: 4rem 0;
    margin-top: 1rem;
    /* background: linear-gradient(90deg, #ff5722 0%, #ff784e 100%); */
}

.harp_high h2 {
    text-align: center;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    padding-bottom: 4rem;
    /* animation: pop 2s linear infinite; */
    width: 56%;
    margin: 0 auto;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
    font-style: italic;
    text-shadow: 4px 4px 3px #000000;
}

.about_wrapper.v2.v3 h2 {/* background: -webkit-linear-gradient(#ff5e2b, #ff764b); *//* -webkit-background-clip: text; *//* -webkit-text-fill-color: transparent; *//* background-size: 500% auto; *//* animation: textShine 5s ease-in-out infinite alternate; */text-shadow: 4px 2px 0px #ff6f42;}
@keyframes pop{
    0%{transform:scale(1);}
    50%{transform:scale(1.1);}
    100%{transform:scale(1);}
}
main,
body {
  overflow-x: hidden;
}
.Playfairfont {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-weight: 500 !important;
}
body {
  background: #ffffff;
}

:root {
  --bgColor: #003028;
  --TextColor: #ff3810;
  --boxColor: #004a3f;
  --spanColor: #000;
  --HeadFontSize: 50px;
  --ParaFontSize: 18px;
  --fontSizeThree: 20px;
}

.py_bi {
  padding: 6rem 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:focus {
  color: #36b7a5;
}

.nav-link:focus,
.nav-link:hover {
  color: #fff;
}

select:focus,
textarea:focus,
input:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0px 0px 20px;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
}

/* ::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(45deg, #62e0c3, #36b7a5) !important;
  border: 1px solid #fff;
}
::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 10px;
} */


/* content */
.content h2 {
  font-size: 47px;
  font-weight: 700;
  padding: 0px 0px 30px;
  text-transform: capitalize;
}

.content h2 span {
  color: #fb300b;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

/* contant */

/* btn */
.btn_box {
  display: flex;
  justify-content: center;
}

.btn_box .consult-btn {
  background: #ffffff;
  padding: 15px 30px;
  border-radius: 7px;
  color: #000000;
  border: 2px solid transparent;
  font-size: 16px;
  transition: all 0.3s ease-in;
  font-weight: 500;
}

.btn_box .consult-btn:hover {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

/* btn */
.navbar-toggler {
    background: #ff5f06;
    padding: 3px 13px;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.navbar-toggler i {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 28px;
}

/* header css */
.header {
  padding: 5px 0;
  background: #ffffff;
  position: relative;
}

.header .navbar {}

.header .navbar .logo {}

.header .navbar .logo img {
  width: 166px;
}

.header .navbar .nav-ul {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header .navbar .nav-ul .nav-item {
    padding: 0 9px;
}

.header .navbar .nav-ul .nav-item .nav-link {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding: 0;
}

a.nav-link {}

.header .navbar .nav-ul .nav-item .nav-link::before {
  content: "\f107";
  position: absolute;
  top: 0px;
  transition: all 0.3s ease-in-out;
  font-family: 'Font Awesome 5 Pro';
  font-size: 22px;
  right: -20px;
  font-weight: 400;
  line-height: 20px;
}

.header .navbar .nav-ul .nav-item .nav-link:hover::before {
  transform: rotate(180deg);
}

.header .navbar .nav-ul .nav-item.rm .nav-link::before {
    display: none;
    background: none;
}

.header .navbar .header-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0px 0px 0px 30px;
  position: relative;
  z-index: 9999;
}

.header .navbar .header-btn .btn-sign {
  border: 2px solid #000;
  padding: 10px 20px;
  color: #000000;
  border-radius: 8px;
  font-size: 12px;
  transition: all .3s ease-in-out;
}
.header .navbar .header-btn .btn-sign:hover{
  background-color: #000;
  color: #fff;
  transform: translateY(-6px);
}
.header .navbar .header-btn .btn-sign.btn-schedule {
  border-color: #ff3e0e;
  color: #ffffff;
  background: linear-gradient(45deg, #ff2400, #ff985e);
}
.header .navbar .header-btn .btn-sign.btn-schedule:hover{
  transform: translateY(-6px);
}

/* dropdown */
.header .navbar .nav-ul .nav-item .dropdown-product {
  position: absolute;
  width: 100%;
  background: #ffffff;
  padding: 40px 30px 30px;
  left: 0;
  top: 100px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  border-radius: 10px;
}

.header .navbar .nav-ul .nav-item:hover .dropdown-product {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
  top: 45px;
}

.dropdown-product.hed img {
    object-fit: contain !IMPORTANT;
    object-position: center !IMPORTANT;
    background: linear-gradient(45deg, #ff370f, #ff8d55);
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box {}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box img {
  width: 100%;
  height: 229px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  /* background: linear-gradient(45deg, #ff370f, #ff8d55); */
  margin: 0px 0px 20px;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box h6 {
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 5px;
  color: #000;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box p {}

/* dropdown */
/* tabs */
.header .navbar .nav-ul .nav-item .dropdown-product .detail-box a {
    color: #000;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tabs-btns {
  margin: 10px 0px 0px 0px;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tabs-btns .nav-btn.active {
  background: #ececec;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tabs-btns .nav-btn {
  font-size: 16px;
  color: #000;
  text-align: left;
  font-weight: 500;
  padding: 10px 15px;
  width: 300px;
  border-radius: 5px;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tabs-btns .nav-btn img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  margin: 0px 20px 0px 0px;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tabs-btns .nav-btn a {
  color: #000;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tabs-btns .nav-btn::before {
  display: none;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content {}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content .contant {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content .contant .txt {
  display: flex;
  gap: 6px;
  margin: 0px 0px 20px;
  transition: all .3s ease-in-out;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .contant .txt h6,
.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content .contant .txt h6 {
  font-size: 16px;
  margin: 0px 0px 8px;
  color: #000;
  transition: all .3s ease-in-out;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .contant .quiz {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  transition: all .3s ease-in-out;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .contant .quiz i {
  font-size: 18px;
  font-weight: 400;
  margin: 0px 0px 0px 10px;
  line-height: 20px;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content .contant .txt img {
  width: 20px;
  object-fit: contain;
  height: 20px;
  margin: 0;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content .contant .txt p {
  margin: 0;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box h6 span {
  font-size: 13px;
  background: #e1fff6;
  color: #4fb1a0;
  padding: 3px 15px;
  border-radius: 30px;
  border: 1px solid #4ef3b4;
  line-height: 7px;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .contant .quiz:hover,
.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .contant .txt:hover h6,
.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content .contant .txt:hover h6 {
  color: #666666;
}

.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tabs-btns .nav-btn:hover {
  background: #ececec;
}
.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content .blog-head-content{
    display: grid;
    grid-template-columns: repeat(2 ,1fr);
    gap: 20px;
}
.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content .blog-head-content .main-box{
    display: flex;
    align-items: center;
    gap: 15px;
}
.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content .blog-head-content .main-box .main-img{
    background: #e7e7e7;
    padding: 12px;
    border-radius: 10px;
}
.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content .blog-head-content .main-box .main-img img{
    width: 150px;
    height: 120px;
    object-fit: cover;
    margin: 0;
}
.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content .blog-head-content .main-box .txt h4{
    font-size: 16px;
    line-height: 26px;
    margin: 0px 0px 40px;
}
.header .navbar .nav-ul .nav-item .dropdown-product .detail-box .tab-content .blog-head-content .main-box .txt a{
    color: #000;
    font-size: 18px;
    font-weight: 600;
}
.header_moblie{
    display:none;
}
/* tabs */
/* header css */

/* footer css*/
.footer {
  background: linear-gradient(45deg, #1f1f1f, #333333);
  padding: 66px 0px 0px;
  position: relative;
  overflow: hidden;
}

.footer .qucik-link {}

.footer .qucik-link h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0px 0px 30px;
}

.footer .qucik-link ul {
  display: flex;
  align-items: self-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer .qucik-link ul li {}

.footer .qucik-link ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
}

.footer .qucik-link.last {}

.footer .qucik-link.last h4 {
  line-height: 27px;
}

.footer .qucik-link.last h4 i {
  display: block;
}

.footer .qucik-link.last .foot-form {}

.footer .qucik-link.last .foot-form .group-input {
  margin: 0px 0px 10px;
}

.footer .qucik-link.last .foot-form .group-input input {
  width: 100%;
  height: 43px;
  padding: 0px 13px;
  font-size: 12px;
  line-height: 24px;
  border: 0;
  border-radius: 5px;
  color: #555;
}

.footer .qucik-link.last .foot-form .group-input input::placeholder {
  color: #555;
}

.footer .qucik-link.last .foot-form .group-input select {
  width: 100%;
  height: 44px;
  padding: 0px 13px;
  font-size: 12px;
  line-height: 24px;
  border: 0;
  border-radius: 5px;
  color: #555;
}

.footer .qucik-link.last .foot-form .group-input select option {}

.footer .foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #fff;
  padding: 14px 0px;
  margin: 60px 0px 0px;
}

.footer .foot-bottom .logo {
    /* display: none; */
}

.footer .foot-bottom .logo img {
  width: 180px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(7500%) hue-rotate(141deg) brightness(105%) contrast(101%);
}

.footer .foot-bottom p {
  color: #fff;
  margin: 0;
  font-size: 14px;
}

.footer .foot-bottom p a {
  color: #ffffff;
}

.footer .foot-bottom ul {
  display: flex;
  align-items: center;
  gap: 19px;
}

.footer .foot-bottom ul li {}

.footer .foot-bottom ul li a {
  color: #ffffff;
  font-size: 20px;
}

.footer .foot-bottom ul li a i {}

.footer .qucik-link.last .form-check.foot-check {
  color: #fff;
  margin: 20px 0px 0px;
}

.footer .qucik-link.last .submit-btn button {
  width: 100%;
  border: 0;
  background: #ff3e0e;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  margin: 19px 0px 0px;
  font-size: 16px;
}

/* footer css*/

/* ===== Main Banner ===== */
.bannerWrapper{
    position: relative;
    background: linear-gradient(45deg, black, #1e1a1abf);
    height: 687px;
    overflow: hidden;
}

.main_banner {
 position:relative;
 text-align: center;
 height: 685px;
}

.main_banner .dk_only {
    width: 100%;
    height: 690px;
    /* object-fit: cover; */
    object-position: top;
}


.main_banner.b3 {
  position:relative;
  background: linear-gradient(rgb(0 0 0 / 49%), rgb(21 12 8)), url(https://png.pngtree.com/background/20230426/original/pngtree-an-old-library-has-wooden-step-leading-to-stairs-picture-image_2486870.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 100%;
}

.main_banner.b3::after {
  content: '';
  position: absolute;
  right: -50px;
  top: 54%;
  background-image: url('../images/bn-1.png');
  background-position: 100% 100%;
  background-size: cover;
  width: 286px;
  height: 364px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
}

.main_banner.b3::before {
  content: '';
  position: absolute;
  left: -1%;
  top: 39%;
  background-image: url('../images/bn-2.png');
  background-position: 100% 100%;
  background-size: contain;
  width: 360px;
  height: 376px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  z-index: 2;
}

.bg_main {
  position: absolute;
  top: 0%;
  left: 23%;
  width: 100%;
  height: 100%;
  opacity: 1;
  /* z-index: 2; */
}

.main_banner .content {
  position: relative;
  width: 76% !IMPORTANT;
  margin: 0 auto;
  /* text-align: center; */
  top: 13rem;
}

.main_banner .content a {
    background: linear-gradient(45deg, #ff2400, #ff985e);
    border-color: #ffffff;
    color: #fff;
}
.main_banner .content a:hover{
    background: linear-gradient(45deg, #ff2400, #ff985e);
    border-color: #ffffff;
    transform: translateY(-10px);
}
.main_banner .content h1 {
  color: #fff;
  font-size: 57px;
  font-weight: 700;
  line-height: 75px;
}

.main_banner .content span {
  color: #fff;
  font-size: 20px;
  padding: 12px 0;
  display: block;
  width: 74%;
  margin: 29px auto;
}

.slider_wrap .single-logo img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(159deg) brightness(101%) contrast(101%);
  width: 124px;
  height: 67px;
  object-fit: contain;
}

.slider_wrap p {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
}

.slider_wrap {
  background: #170e09;
  text-align: center;
  padding: 40px 0;
}

.main_banner .brandCarousel.owl-carousel.owl-loaded.owl-drag::before {
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background-image: linear-gradient(90deg, #252525 0, transparent 100%);
  z-index: 999999;
}

.main_banner .brandCarousel.owl-carousel.owl-loaded.owl-drag {
  position: relative;
  z-index: 9999;
}

.main_banner .brandCarousel.owl-carousel.owl-loaded.owl-drag::after {
  content: ' ';
  position: absolute;
  right: 0px;
  top: 0;
  width: 200px;
  height: 100%;
  background-image: linear-gradient(270deg, #2c2c2c 0, transparent 100%);
  z-index: 999999;
  visibility: visible;
}

/* ===== About Wrapper ===== */
.about_wrapper {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}

.harp_high .about_wrapper {
    padding: 0;
    position: relative;
}

.about_wrapper.v2 {
    background: linear-gradient(90deg, #ff5722 0%, #ff784e 100%);
    padding: 4rem 0;
}

.about_wrapper.v2.v3 {
    padding: 3rem 0;
    background: #000000;
}

.about_wrapper.v2.v3 a {
    background: linear-gradient(90deg, #ff5722 0%, #ff784e 100%) !important;
}

.about_wrapper .content h2 {
  padding: 0px 5rem 3rem;
  text-align: center;
}

.about_wrapper .content h2 span {
  display: block;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.about_wrapper .content img {
  width: 70%;
  border-radius: 14px;
  margin: 0 auto;
  display: block;
}

.about_wrapper .content p {
  color: #000;
  padding: 0 13px;
  font-size: 16px;
}

.about_wrapper .content p strong {
  font-weight: 700;
}

.about_wrapper .content ul {
  padding: 10px 10px;
}

.about_wrapper .content ul li {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  line-height: 2.4;
  display: flex;
  align-items: center;
}

.about_wrapper .content ul li i {
  width: 30px;
  height: 30px;
  background: #66a19821;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  margin: 0 10px 0 0;
  color: var(--TextColor);
}

.about_wrapper.v2 .content ul li i {
    background: transparent;
    margin: 0;
    font-size: 17px;
    color: #0c0c0c;
}

/* ===== Cta Wrapper ===== */
.cta {
  background: #000000;
  border-radius: 10px;
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta h4 {
  color: #fff;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.4;
  text-transform: capitalize;
  width: 75%;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.cta h4 span {
  color: #fb300b;
}

.cta_bussines .bussines-box .main-img {}

.cta_bussines .bussines-box .main-img img {
    height: 360px;
    object-fit: contain;
}

/* .cta a {
  background: #ff3e0e;
  width: 175px;
  padding: 14px 0;
  border-radius: 7px;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease-in;
  font-weight: 500;
  text-align: center;
  border: 2px solid transparent;
}

.cta a:hover {
  background: transparent;
  border: 2px solid #e3370c;
  color: #ff3e0e;
} */

/* Pricing Wrapper  */
.pricing_wrapper {
  position: relative;
  z-index: 1;
  padding: 36px 0px;
}

.pricing_wrapper .content {
  text-align: center;
}

.pricing_wrapper .content h2 {}

.pricing_wrapper .content h2 span {
  color: #fb300b;
  display: inline;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.pricing_wrapper .content p {
  margin: 0px 0px 15px;
}

.pricing_wrapper .content p:nth-child(3) {
  margin: 0px 0px 40px;
}

.pricing_wrapper .pkg {
  border: 1px solid #e4e4e7;
  padding: 26px;
  border-radius: 10px;
  border-top: 3px solid #0085ff;
  background: #fff;
  height: 552px;
}

.pricing_wrapper .row>div:nth-child(2) .pkg {
  border-top: 3px solid #008672;
}

.pricing_wrapper .row>div:nth-child(3) .pkg {
  border-top: 3px solid #f5a81b;
}

.pricing_wrapper .row>div:nth-child(4) .pkg {
  border-top: 3px solid #c3d6d1;
}

.pricing_wrapper .pkg h4 {
  font-size: 17px;
  font-weight: 700;
  line-height: 30px;
  margin: 0px 0px 40px;
}

.pricing_wrapper .pkg p {
  margin: 0px 0px 40px;
  font-size: 14px;
  line-height: 21px;
  color: #666666;
}

.pricing_wrapper .pkg p span {
  font-weight: 600;
  color: #000;
}

.pricing_wrapper .pkg h5 {
  font-size: 17px;
  font-weight: 600;
  margin: 0px 0px 25px;
}

.pricing_wrapper .pkg ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0px 0px 50px;
  padding: 0px 0px 0px 35px;
  height: 167px;
  overflow-y: scroll;
}

.pricing_wrapper .pkg ul li {
  color: #000;
  font-size: 14px;
  line-height: 32px;
  display: flex;
  gap: 11px;
  font-weight: 400;
  position: relative;
}

.pricing_wrapper .pkg ul li::before {
  content: "\f00c";
  position: absolute;
  height: 25px;
  width: 25px;
  background: #ff5d2e2e;
  top: 0px;
  left: -14%;
  border-radius: 50%;
  font-family: 'Font Awesome 5 Pro';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ff5c2e;
}

.pricing_wrapper .pkg ul li i {
  background: #e5f3f1;
  color: #279887;
  font-size: 16px;
  height: 26px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.pricing_wrapper .pkg a {
  border: 1px solid #000;
  width: 100%;
  display: flex;
  padding: 18px;
  justify-content: center;
  font-size: 18px;
  color: #000;
  border-radius: 6px;
  font-weight: 500;
}

.pricing_wrapper .pkg a:hover {
  background: #e1dede;
  border-color: #e1dede;
}

.pricing_wrapper .pricing-tab {}

.pricing_wrapper .pricing-tab .tabs-ul {
  border: 1px solid #787878;
  width: 20%;
  gap: 0;
  justify-content: center;
  border-radius: 100px;
  padding: 6px 0px;
  margin: 20px auto 40px !important;
}

.pricing_wrapper .pricing-tab .nav-link {
  color: #000;
  padding: 10px 35px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  transition: all .3s ease-in-out;
}

.pricing_wrapper .pricing-tab .nav-link.active {
  background: linear-gradient(45deg, #ff2400, #ff985e);
  color: #fff;
}

.pricing_wrapper .pricing-tab .tab-content {}

/* Pricing Wrapper  */
/* next_step_wrap */
.next_step_wrap {
  position: relative;
  padding: 0px 0px 100px;
}

.next_step_wrap::before {
  content: "";
  position: absolute;
  top: -44%;
  left: 0;
  height: 1692px;
  width: 100%;
  background: linear-gradient(45deg, #ff2400, #ff985e);
  z-index: -1;
}

.next_step_wrap .content {
  text-align: center;
}

.next_step_wrap .content h2 {
  color: #fff;
}

.next_step_wrap .content h2 span {
  color: var(--spanColor);
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.next_step_wrap .content p {
  color: #fff;
  width: 65%;
  margin: 0px auto 40px;
}

.next_step_wrap .content span {
  font-weight: 600;
}

.next_step_wrap .head {
  padding: 95px 00px 0px;
}

.next_step_wrap .head p {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0px 0px 30px;
}

.next_step_wrap .main_box.arrow-img::before {
  content: "";
  position: absolute;
  top: 15%;
  right: 2%;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../images/arrow-2.png);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}

.next_step_wrap .main_box {
  background: #272727;
  padding: 30px 20px;
  border-radius: 15px;
  height: 351px;
  margin: 0px 0px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.next_step_wrap .main_box .txt {
  width: 75%;
}

.next_step_wrap .main_box span {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}

.next_step_wrap .main_box h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin: 15px 0px 20px;
  line-height: 50px;
}

.next_step_wrap .main_box h4 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0px 20px;
  line-height: 60px;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.next_step_wrap .main_box p {
  color: #fff;
  font-size: 14px;
  line-height: 28px;
}

.next_step_wrap .main_box a {
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.next_step_wrap .main_box a span {
  color: #fb300b;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.next_step_wrap .main_box a i {
  font-size: 16px;
}

/* next_step_wrap */

/* Free_tools_sec */
.Free_tools_sec {
  position: relative;
  padding: 26px 0px 0px;
}
.Free_tools_sec .content{
    text-align: center;
    margin: 0px 0px 50px;
}

.Free_tools_sec .tool-box {
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 10px 5px #80808017;
}

.Free_tools_sec .tool-box:hover {
}

.Free_tools_sec .tool-box .main-img {
  margin: 0px 0px 0px;
}

.Free_tools_sec .tool-box .main-img img {
  width: 100%;
  height: 349px;
  object-fit: contain;
  border-radius: 10px;
  background: #171414;
}

.Free_tools_sec .tool-box .head {
  padding: 20px 14px 50px;
}

.Free_tools_sec .tool-box .head h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: #000;
}

/* Free_tools_sec */

/* testimonials_wrap */
.testimonials_wrap {
  position: relative;
  overflow: hidden;
  padding: 100px 0px;
}

.testimonials_wrap .content {
  text-align: center;
}

.testimonials_wrap .content h2 {
    text-transform: capitalize;
}

.testimonials_wrap .testi_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
  gap: 30px;
}

.testimonials_wrap .testi_box .text {}

.testimonials_wrap .testi_box .text h3 {
  font-size: 45px;
  font-weight: 500;
  line-height: 60px;
  margin: 0px 0px 30px;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-style: italic;
}

.testimonials_wrap .testi_box .text h3 span {
  color: var(--TextColor);
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.testimonials_wrap .testi_box .text p {}

.testimonials_wrap .testi_box .text h6 {
  font-size: 20px;
  font-weight: 600;
}

.testimonials_wrap .testi_box .main-img {}

.testimonials_wrap .testi_box .main-img img {
  width: 540px;
  height: 580px;
  object-fit: contain;
}

.testimonials_wrap .owl-carousel .owl-nav button.owl-next,
.testimonials_wrap .owl-carousel .owl-nav button.owl-prev {
  background: #fb300b;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #fff;
  opacity: 1;
}

.testimonials_wrap .owl-carousel .owl-nav button.owl-next,
.testimonials_wrap .owl-carousel .owl-nav button.owl-prev i {
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials_wrap .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 36%;
  left: -3%;
}

.testimonials_wrap .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 36%;
  right: -3%;
}

.testimonials_wrap .owl-theme .owl-dots .owl-dot span {
  width: 18px;
  height: 18px;
  margin: 5px 5px;
  background: #454545;
  transition: all .3s ease-in-out;
}

.testimonials_wrap .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--TextColor);
}

.testimonials_wrap .owl-theme .owl-dots .owl-dot.active span {
  width: 35px;
}

.testimonials_wrap .read {
  display: flex;
  justify-content: center;
  margin: 50px 0px 0px;
}

.testimonials_wrap .read .btn-read {
  border-radius: 8px;
  color: #323232;
  border: 2px solid #000;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 500;
}

.testimonials_wrap .read .btn-read:hover {
  background-color: rgba(0, 0, 0, .05);
  border-color: rgba(0, 0, 0, .05);
}

/* testimonials_wrap */

/* cta_bussines */
.cta_bussines {
  position: relative;
  overflow: hidden;
  padding: 0px 0px 100px;
}

.cta_bussines .bussines-box {
  background: linear-gradient(45deg, #ff2400, #ff985e);
  padding: 3px 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta_bussines .bussines-box .content {}

.cta_bussines .bussines-box .content h2 {
  color: #fff;
  padding: 0px 0px 15px;
}

.cta_bussines .bussines-box .content h2 span {
  color: var(--spanColor);
  text-transform: capitalize;
}

.cta_bussines .bussines-box .content p {
  color: #fff;
  margin: 0px 0px 30px;
}

.cta_bussines .bussines-box .content .btn_box {
  justify-content: left;
}

.cta_bussines .bussines-box .video {
  width: 74%;
}

.cta_bussines .bussines-box .video img {
    width: 100%;
}

.cta_bussines .bussines-box .video video {
  clip-path: inset(0 0 3px 0);
  position: relative;
  width: 100%;
}

/* cta_bussines */

/* type_sec */
.type_sec {
  position: relative;
  padding: 0px 0px 100px;
}

.type_sec .content {
  text-align: center;
}

.type_sec .content h2 {
  padding: 0px 0px 70px;
}

.type_sec .type-box {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  transition: all .3s ease-in-out;
}

.type_sec .type-box:hover {
  box-shadow: 0px 0px 20px 5px #80808045;
}

.type_sec .type-box img {
  width: 70px;
  margin: 0px 0px 20px;
  background: #ff330c;
  padding: 10px;
  border-radius: 10px;
}

.type_sec .type-box h4 {
  font-size: 26px;
  font-weight: 700;
  line-height: 35px;
}

/* type_sec */

/* success_plan_sec */
.success_plan_sec {
  padding: 100px 0px;
  background: linear-gradient(45deg, #1f1f1f, #333333);
}

.success_plan_sec .content {
  text-align: center;
  margin: 0px 0px 70px;
}

.success_plan_sec .content h2 {
  color: #fff;
}

.success_plan_sec .content h2 span {
  color: #ff2f09;
}

.success_plan_sec .content p {
  color: #fff;
}

.success_plan_sec .plan-box {
  background: linear-gradient(45deg, #ff2400, #ff985e);
  padding: 30px 30px;
  border-radius: 10px;
  margin: 0px 0px 20px;
  height: 257px;
}

.success_plan_sec .plan-box h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 0px 0px 30px;
}

.success_plan_sec .plan-box h4 img {
  height: 40px;
  margin: 0px 5px 0px 0px;
}

.success_plan_sec .plan-box p {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
}

.success_plan_sec .plan-box .btn_box {
  justify-content: left;
  margin: 60px 0px 30px;
}

.success_plan_sec .plan-box.launch {
  height: 538px;
}

.success_plan_sec .plan-box.launch h6 a {
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
}

.success_plan_sec .podcast-sec {
  padding: 130px 0px 100px;
}

.success_plan_sec .podcast-sec .content {
  text-align: left;
  width: 83%;
}

.success_plan_sec .podcast-sec .content h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  margin: 0px 0px 18px;
}

.success_plan_sec .podcast-sec .content h3 span {
  color: #ff3d14;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.success_plan_sec .podcast-sec .content p {
  font-size: 16px;
  line-height: 1.7;
}

.success_plan_sec .podcast-sec .content .btn_box {
  justify-content: left;
  margin: 50px 0px 0px;
}

.success_plan_sec .podcast-sec .content .btn_box .consult-btn.listen-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.success_plan_sec .podcast-sec .content .btn_box .consult-btn.listen-btn:hover {
  background: #f3804b;
  border-color: #da7243;
  color: #000;
}

.success_plan_sec .podcast-sec .popular-box {
  background: #fff;
  padding: 30px 30px 30px 134px;
  border-radius: 15px;
  position: relative;
}

.success_plan_sec .podcast-sec .popular-box::before {
  content: "";
  position: absolute;
  top: -14%;
  left: -25%;
  height: 520px;
  width: 310px;
  background-image: url(../images/moblie.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.success_plan_sec .podcast-sec .popular-box h3 {
  font-size: 25px;
  font-weight: 700;
  margin: 0px 0px 20px;
}

.success_plan_sec .podcast-sec .popular-box h3 span {
  color: var(--TextColor);
}

.success_plan_sec .podcast-sec .popular-box ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.success_plan_sec .podcast-sec .popular-box ul li {
  display: flex;
  gap: 20px;
  font-size: 16px;
  color: #333333;
  justify-content: space-between;
}

.success_plan_sec .podcast-sec .popular-box ul li span {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  margin: 0px 14px 0px 0px;
}

.success_plan_sec .podcast-sec .popular-box ul li .play {}

.success_plan_sec .podcast-sec .popular-box ul li .play i {
  height: 30px;
  width: 30px;
  background: #e5f3f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #008672;
  font-size: 14px;
}

/* success_plan_sec */
/* hot_blog_wrap */
.hot_blog_wrap {
  padding: 3rem 0;
}

.hot_blog_wrap .content {
  text-align: center;
  margin: 0px 0px 50px;
}

.hot_blog_wrap .content h2 {
  color: #ff3c14;
}

.hot_blog_wrap .content h2 span {
  color: var(--spanColor);
}

.hot_blog_wrap .blog-box {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.hot_blog_wrap .blog-box .mian-img {}

.hot_blog_wrap .blog-box .mian-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hot_blog_wrap .blog-box .text {
  padding: 30px 30px;
  height: 330px;
}

.hot_blog_wrap .blog-box .text h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin: 0px 0px 15px;
}

.hot_blog_wrap .blog-box .text p {
  font-size: 15px;
  color: #666666;
  line-height: 25px;
  margin: 0px 0px 5px;
}

.hot_blog_wrap .blog-box .text ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0px 0px 20px;
}

.hot_blog_wrap .blog-box .text ul li {
  font-size: 16px;
  color: #666666;
  font-weight: 500;
}

.hot_blog_wrap .blog-box .text a {
  font-size: 18px;
  line-height: 28px;
  color: #ff3e0e;
  font-weight: 500;
}

.hot_blog_wrap .head {
  text-align: center;
  padding: 50px 0px 0px;
}

.hot_blog_wrap .head a {
  color: #fb300b;
  font-size: 20px;
  text-decoration: underline;
}

/* hot_blog_wrap */
/* Written_wrap */
.Written_wrap {
  background: linear-gradient(45deg, #ff2400, #ff985e);
  padding: 100px 0px;
}

.Written_wrap .content {
  text-align: center;
  margin: 0px 0px 50px;
}

.Written_wrap .content h2 {
  color: #fff;
}

.Written_wrap .content h2 span {
  color: var(--spanColor);
}

.Written_wrap .content p {
  color: #fff;
}

.Written_wrap .content p span {
  font-weight: 700;
}

.Written_wrap .book-box {
  text-align: center;
}

.Written_wrap .book-box img {
  width: 100%;
  object-fit: contain;
  height: 302px;
}

.Written_wrap .book-box ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0px 0px 20px;
}

.Written_wrap .book-box ul li {}

.Written_wrap .book-box ul li i {
  color: #fff;
  font-size: 17px;
}

.Written_wrap .book-box p {
  font-size: 18px;
  color: #fff;
}

.Written_wrap .slick-slide {
  transition: all .8s ease-in-out !important;
  will-change: transform;
}

.Written_wrap .slick-initialized .slick-slide {
  transition: all .5s ease-in-out !important;
}

.Written_wrap .slick-slide.slick-current.slick-active.slick-center {
  margin: 0;
}

.Written_wrap .slick-slide.slick-current.slick-active.slick-center .book-box img {
  transform: scale(1.1);
}

/* Written_wrap */
.hot_blog_wrap.white-bg{
  padding: 100px 0px;
}
.hot_blog_wrap.white-bg .content h2{
  color: #000;
}
.hot_blog_wrap.white-bg .content h2 span{
  color: var(--TextColor);
}
.hot_blog_wrap.white-bg .blog-box {
    box-shadow: 0px 4px 12px 0px #a6a6a6;
    position: relative;
    background: #ffffff;
}
/* Program */
.py_h{
    margin: 6rem 0;
}
.program_banner{
    position: relative;
    background: linear-gradient(45deg, #1f1f1f, #000000);
    height: 852px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0 7rem 0;
}
.program_banner::after{
  content: '';
  position: absolute;
  background: url('../images/Vector.webp');
  width: 100%;
  height: 100%;
  top:0;
  left:0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 0;
  background-position: 100% 48%;
}
.program_banner::before{
  content: '';
  position: absolute;
  width: 100%;
  height:100%;
  top:0;
  left:0;
}
.program_banner .content{
    position: relative;
    z-index: 2;
}
.program_banner .content h5{
    color: #ff5c2e;
    text-transform: uppercase;
    font-size: 16px;
    position: relative;
    padding: 0 28px 20px;
    letter-spacing: 1px;
}

.program_banner .content h5::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: linear-gradient(45deg, #ff2400, #ff985e);
    left: 0;
    border-radius: 25px;
}
.program_banner .content h2{
    font-size: 48px;
    color: #fff;
}
.program_banner .content .banner_img {}

.program_banner .content .banner_img img {
    width: 75%;
    margin: 0 auto;
    display: block;
}
.program_banner .content p{
    color: #fff;
}
.btn_program{
    background: linear-gradient(45deg, #ff2400, #ff985e);
    color: #fff;
    width: 156px;
    display: block;
    text-align: center;
    padding: 13px 0;
    border-radius: 7px;
    font-size: 16px;
    transition: all 0.3s ease-in;
    margin: 20px 0 0 0;
}

a.btn_program.dark {width: 200px;display: block;background: #000;margin: 0 auto;}

.btn_program:hover {
    transform: translateY(-10px);
    color: #fff;
}
.program_banner .content img.start-get-img {
    width: 100%;
}
.program_banner  .slider_wrap{
  text-align: center;
  position: relative;
  top: 4rem;
}
.program_banner  .slider_wrap p{
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    padding-bottom: 30px;
}
.program_banner  .slider_wrap img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(159deg) brightness(101%) contrast(101%);
    width: 150px;
    height: 70px;
    object-fit: contain;
}


.program_about_wrapper{
}
.program_about_wrapper img{
    width: 100%;
    filter: grayscale(1);
    height: 100%;
    object-fit: cover;
    border-radius: 21px;
}
.program_about_wrapper h4{
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
    color: #0a0a0a;
}

.program_about_wrapper h4 strong {
    color: #ff4117;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}
.program_about_wrapper p{
    margin: 0;
    font-size: 16px;
    color: #000;
    padding: 20px 0 0;
}

section.program_super {}
section.program_super .head {
    text-align: center;
}
section.program_super .head h4 {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
}
.program_author_wrapper{
    background: #6b6b6b1f;
    padding: 3rem 4rem;
    border-radius: 26px;
    margin: 0px 0px 30px;
}
.program_author_wrapper .content{}

.program_author_wrapper .content h3{
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
    color: #0a0a0a;
    text-align: center;
}

.program_author_wrapper .content ul {
    text-align: left;
    width: 75%;
    margin: 0 auto 41px;
    padding: 33px 0 0;
}

.program_author_wrapper .content h6 {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    padding: 40px 0 0 0;
}

.program_author_wrapper .content ul li {
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: 17px 0;
}

.program_author_wrapper .content p a {
    color: #ff330c;
    font-weight: 600;
}

.program_author_wrapper .content ul li i {
    font-size: 10px;
    background: #ff330c;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    margin: 0 8px 0 0;
    justify-content: center;
}
.program_author_wrapper .content h4{
    font-size: 20px;
    font-weight: 600;
    color: #0a0a0a;
    margin-top: 3rem;
}
.program_author_wrapper .content h4 span{
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #ff451b;
    text-align: center;
    color: #ff451b;
    margin: 0 11px 0 0;
}
.program_author_wrapper .content .nodding {
    text-align: center;
}
.program_author_wrapper .content p{
    margin: 0;
    font-size: 16px;
    color: #000;
    padding: 14px 0;
}
.program_seller_wrapper{
    background: linear-gradient(
48deg, #ff2400, #ff985e);
    padding: 5rem 0;
}

.program_seller_wrapper .content {
    text-align: center;
}
.program_seller_wrapper .content h4{
    text-align: center;
    color: #fff;
    font-size: 16px;
}
.program_seller_wrapper .content h3{
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    padding: 18px 0;
}
.program_seller_wrapper .content h3 span {
    color: #000;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}
.program_seller_wrapper .content p{
    margin: 0 auto;
    color: #fff;
    width: 70%;
}
.program_seller_wrapper .content img{
    width: 100%;
    margin: 2rem 0 4rem;
}
.program_seller_wrapper .become{
    padding-top: 5rem;
}
.program_seller_wrapper .become .crd{
    background: #fff;
    padding: 2rem 3rem;
    border-radius: 21px;
    height: 555px;
    transition: all 0.4s ease-in;
    margin: 0px 0px 30px;
}

.program_seller_wrapper .become .crd:hover {
    transform: translateY(-10px);
}
.program_seller_wrapper .become .crd img{
    width: 85px;
    margin: 0 0 27px 0;
    border-radius: 10px;
}
.program_seller_wrapper .become h2{
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  padding: 18px 0;
  text-align: center;
  width: 72%;
  margin: 0 auto 0em;
}
.program_seller_wrapper .become h2 span{
    color: #000;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}
.program_seller_wrapper .become p{
    margin: 0;
    font-size: 16px;
    color: #fff;
    text-align: center;
    width: 72%;
    margin: 0 auto 4em;
}
.program_seller_wrapper .become .crd h3{
    font-size: 26px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 20px;
}
.program_seller_wrapper .become .crd p{
    width: 100%;
    text-align: left;
    color: #000;
    padding: 15px 0;
    font-size: 15px;
    line-height: 25px;
    margin: 0;
}
.program_seller_wrapper .become .crd ul{
    padding: 0 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 210px;
    overflow: auto;
}
.program_seller_wrapper .become .crd ul li{
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    display: flex;
}

.program_seller_wrapper .become .crd ul li i {
    font-size: 11px;
    background: #ff300a;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    margin: 0 8px 0 0;
    justify-content: center;
    max-width: 20px;
    min-width: 20px;
}


.program_authors_wrapper{}
.program_authors_wrapper .author{}
.program_authors_wrapper .author h2{
    font-size: 48px;
    font-weight: 700;
    color: #0a0a0a;
    padding: 0 0 5rem 0;
    text-align: center;
}
.program_authors_wrapper .author h2 span{
  color: #ff4117;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}
.program_authors_wrapper .author img{
    width: 227px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
}

.program_authors_wrapper .author .crd {
    text-align: center;
}
.program_authors_wrapper .author h3{
    font-size: 26px;
    font-weight: 600;
    color: #0a0a0a;
    padding: 27px 0 8px;
}
.program_authors_wrapper .author p{
    width: 100%;
    color: #2c2a2a;
    padding: 8px 0;
    margin: 0;
    text-align: left;
}
.program_authors_wrapper .author p i{
    font-weight: 500;
}
.program_au_user_wrapper{
    background: linear-gradient(45deg, #000000, #333333);
    padding: 5rem 0;
}
.program_au_user_wrapper img{
    width: 90%;
    margin: 0px 0px 40px;
}

.program_au_user_wrapper .crd{
    padding: 0 25px;
}
.program_au_user_wrapper .crd h3{
    font-size: 40px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
    font-style: italic;
}

.program_au_user_wrapper .crd h3 span {
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
    color: #ff7844;
}
.program_au_user_wrapper .crd p{
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #fff;
    padding: 15px 0 0 0;
}
.program_au_user_wrapper .crd h6{
    color: #ff7844;
    font-size: 20px;
    font-weight: 600;
}

.program_au_user_wrapper h4 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    padding: 9rem 0 4rem;
    text-align: center;
}
.program_au_user_wrapper h4 span {
    color: #ff7844;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.program_au_user_wrapper .price{
    text-align: center;
}
.program_au_user_wrapper .price h6{
    font-size: 100px;
    font-weight: 700;
    color: #fff;
    padding: 3rem 0 0rem;
    text-align: center;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}
.program_au_user_wrapper .price span{
    color: #fff;
    font-size: 24px;
    padding: 11px 0;
    display: block;
}

.program_au_user_wrapper .price a {display: block;margin: 2rem auto 0;}
.program_table_wrapper{}
.program_table_wrapper .author{}
.program_table_wrapper .author h2{
    font-size: 48px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.program_table_wrapper .author h2 span {
    color: #ff370f;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}
.program_table_wrapper .author p{
    width: 50%;
    margin: 0 auto;
    display: block;
    text-align: center;
    padding: 21px 0;
    font-size: 17px;
}
.program_table_wrapper .author table{}
.program_table_wrapper .author table thead{
    background: linear-gradient(45deg, #ff2400, #ff985e);
    color: #fff;
    border: none;
}

.program_table_wrapper .author table tbody {
}
.program_table_wrapper .author table thead tr{
    border: none;
}
.program_table_wrapper .author table thead tr th{
    font-size: 18px;
    padding: 16px 28px;
    font-weight: 500;
    border: none;
    box-shadow: none;
}
.program_table_wrapper .author table tbody tr {
}
.program_table_wrapper .author table tbody tr td{
    font-size: 14px;
    padding: 21px 12px;
    font-weight: 500;
}

.program_table_wrapper .author table tbody tr td i {
    text-align: center;
    font-size: 8px;
    background: linear-gradient(45deg, #ff2400, #ff985e);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    color: #fff;
    line-height: 18px;
    margin: 0 21px 0 0;
}


.program_help_wrapper{}
.program_help_wrapper h2{
    font-size: 48px;
    font-weight: 700;
    color: #000;
    text-align: center;
}
.program_help_wrapper h2 span{
    color: #ff370f;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}
.program_help_wrapper .crd h5{
    font-size: 26px;
    font-weight: 600;
    color: #0a0a0a;
    margin: 3rem 0 2rem 0;
}
.program_help_wrapper .crd {}
.program_help_wrapper .crd ul{}
.program_help_wrapper .crd ul li{
    font-size: 16px;
    display: flex;
    align-items: center;
    font-weight: 400;
    padding: 15px 0;
}
.program_help_wrapper .crd ul li i{
    text-align: center;
    font-size: 14px;
    background: #19875445;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    color: #000000;
    line-height: 24px;
    margin: 0 21px 0 0;
    max-width: 24px;
    min-width: 24px;
}
.program_help_wrapper .crd.right ul li i{
    background: #ff000045;
}
/* Program */



/* =====  fundamentals-of-fiction page css ===== */

/* dreaming_wrap css */
.dreaming_wrap {
  background: linear-gradient(45deg, #1f1f1f, #333333);
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 760px;
  display: flex;
  align-items: center;
}

.dreaming_wrap::after {
  content: '';
  position: absolute;
  right: 0%;
  top: 0%;
  background-image: url('../images/Vector.webp');
  background-position: 100% 100%;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.dreaming_wrap .contant {
  width: 80%;
}

.dreaming_wrap .contant span {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.dreaming_wrap .contant h1 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  color: #fff;
  font-size: 50px;
  line-height: 66px;
  margin: 15px 0px 25px;
}

.dreaming_wrap .contant h4 {
  color: #fff;
  margin: 0px 0px 20px;
  font-size: 18px;
  line-height: 30px;
}

.dreaming_wrap .contant p {
  color: #fff;
  margin: 0px 0px 30px;
}

.dreaming_wrap .contant .btn_box {
  justify-content: left;
}

.btn_box .consult-btn.Apply-btn {
  background: linear-gradient(45deg, #ff2400, #ff985e);
      color: #fff;
}

.btn_box .consult-btn.Apply-btn:hover {
  transform: scale(1.1);
}

.dreaming_wrap .main-img {}

.dreaming_wrap .main-img img {
  width: 100%;
  height: 800px;
  object-fit: cover;
}
.dreaming_wrap .main-img.accelerator img {
    height: 362px;
}
/* dreaming_wrap css */
/* logo-sld */
.logo-sld {
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  background: #fff;
}

.logo-sld .logo-track {
  display: inline-block;
  animation: scroll 100s linear infinite;
}

.logo-sld img {
  height: 70px;
  margin: 0 10px;
  opacity: 0.4;
  vertical-align: middle;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* logo-sld */
/* Germany_wrap */
.Germany_wrap {
  padding: 100px 0px;
}

.Germany_wrap .main-img {}

.Germany_wrap .main-img img {
  width: 100%;
  border-radius: 15px;
  height: 480px;
  object-fit: cover;
}

.Germany_wrap .talk-germany {}

.Germany_wrap .talk-germany ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0px 0px 10px;
}

.Germany_wrap .talk-germany ul li {}

.Germany_wrap .talk-germany ul li i {
  font-size: 22px;
  font-weight: 400;
  color: #ffc83d;
}

.Germany_wrap .talk-germany h2 {
  font-size: 30px;
  line-height: 45px;
  margin: 0px 0px 20px;
  font-weight: 600;
}

.Germany_wrap .head {
  text-align: center;
}

.Germany_wrap .head h3 {
  font-size: 40px;
  line-height: 50px;
  margin: 80px 0px 0px;
  font-weight: 700;
}

/* Germany_wrap */
/* want_book_wrap */
.want_book_wrap {
  background: linear-gradient(45deg, #ff2400, #ff985e);
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
}

.want_book_wrap .want_box {
  background: #fff;
  padding: 80px 110px 80px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.want_book_wrap .want_box::before {
  content: "";
  position: absolute;
  bottom: -7%;
  left: 47%;
  background-image: url(../images/arrow-down.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 80px;
  width: 70px;
}

.want_book_wrap .want_box h2 {
  font-size: 52px;
  font-weight: 500;
  margin: 0px auto 40px;
  color: #000000;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-style: italic;
  width: 100%;
  line-height: 58px;
  text-align: center;
}

.want_book_wrap .want_box ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0px 0px 50px;
}

.want_book_wrap .want_box ul li {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
  display: flex;
  gap: 14px;
}

.want_book_wrap .want_box ul li i {
  height: 30px;
  width: 30px;
  background: linear-gradient(45deg, #ff2400, #ff985e);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  max-width: 30px;
  min-width: 30px;
}

.want_book_wrap .want_box h4 {
  text-align: center;
  font-size: 28px;
  line-height: 38px;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.want_book_wrap .head {
  text-align: center;
  margin: 0px 0px 40px;
}

.want_book_wrap .head span {
  color: #000000;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 3px;
}

.want_book_wrap .head h2 {
  color: #fff;
  font-size: 54px;
  font-style: italic;
  line-height: 80px;
  margin: 10px 0px 0px;
}

.want_book_wrap .want_box p {
  text-align: center;
  margin: 20px 0px 40px;
}

.want_book_wrap .want_box .btn_box .consult-btn.now-btn:hover {
  border-color: #000;
  color: #000;
}

.want_book_wrap .want_box .main-img img {
  width: 100%;
  margin: 0px 0px 30px;
}

.want_book_wrap .cheesy {
  margin: 80px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 31px;
}

.want_book_wrap .cheesy .main-img {
  text-align: center;
}

.want_book_wrap .cheesy .main-img img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.want_book_wrap .cheesy .main-img h6 {
  font-size: 20px;
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
  margin: 10px 0px 0px;
}

.want_book_wrap .cheesy .contan {}

.want_book_wrap .cheesy .contan ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0px 0px 15px;
}

.want_book_wrap .cheesy .contan ul li {}

.want_book_wrap .cheesy .contan ul li i {
  font-size: 20px;
  color: #ffc83d;
}

.want_book_wrap .cheesy .contan h3 {
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  margin: 0px 0px 13px;
  font-weight: 700 !important;
}

.want_book_wrap .cheesy .contan p {
  color: #fff;
}

/* want_book_wrap */
/* imagine_wrap */
.imagine_wrap {
  background-color: #fafafb;
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
}

.imagine_wrap .head {
  text-align: center;
}

.imagine_wrap .head h2 {
  font-size: 50px;
  width: 72%;
  margin: 0 auto 50px;
}

.imagine_wrap .head h4 {
  font-size: 30px;
}

.imagine_wrap .main-box {
  text-align: center;
  padding: 25px 25px;
  margin: 0px 0px 50px;
}

.imagine_wrap .main-box i {
  font-size: 50px;
  color: #f18819;
  margin: 0px 0px 20px;
}

.imagine_wrap .main-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0px 0px 10px;
  line-height: 40px;
  color: #000000;
}

.imagine_wrap .main-box p {
  margin: 0;
}

/* imagine_wrap */
/* Coaching_wrap */
.Coaching_wrap {
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
}

.Coaching_wrap .head {
  text-align: center;
  margin: 0px auto 70px;
  width: 60%;
}

.Coaching_wrap .row {
  height: 430px;
  overflow: hidden;
  margin: 0px 0px 40px;
}

.Coaching_wrap .head span {
  font-size: 21px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #000;
}

.Coaching_wrap .head h2 {
  font-size: 54px;
  font-style: italic;
  color: #000;
  line-height: 80px;
  margin: 10px 0px 0px;
}

.Coaching_wrap .main-img {
  height: 100%;
}

.Coaching_wrap .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Coaching_wrap .txt {
  background: #fff;
  padding: 34px 68px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Coaching_wrap .txt h3 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin: 0px 0px 15px;
}

.Coaching_wrap .txt p {}

.Coaching_wrap .txt ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.Coaching_wrap .txt ul li {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.Coaching_wrap .txt ul li i {
  font-size: 30px;
  color: #f18819;
}

/* Coaching_wrap */
/* question_wrap */
.question_wrap {
  padding: 100px 0px;
  background-image: url(../images/book-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.question_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(360deg, #ff2400, #000000);
  opacity: 0.7;
  z-index: -1;
}

.question_wrap .head {
  text-align: center;
  margin: 0px 0px 40px;
}

.question_wrap .head span {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.question_wrap .head h2 {
  color: #fff;
  font-size: 47px;
  line-height: 79px;
  margin: 20px 0px 0px;
}

.question_wrap .icon {
  text-align: center;
  margin: 0px 0px 20px;
}

.question_wrap .icon i {
  font-size: 85px;
  color: #fff;
  font-weight: 400;
}

.question_wrap .main-img {
  text-align: center;
}

.question_wrap .main-img img {
  width: 100%;
  height: 477px;
  object-fit: cover;
}

.question_wrap .invest {
  text-align: center;
}

.question_wrap .invest span {
  color: #fff;
  font-size: 28px;
}

.question_wrap .invest h4 {
  color: #fff;
  font-size: 100px;
  margin: 0px 0px 10px;
  line-height: 100px;
}

.question_wrap .invest p {
  color: #fff;
}

/* question_wrap */
/* extra */
.extra {
  padding: 100px 0px 0px;
  text-align: center;
}

.extra ul {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0px 0px 10px;
}

.extra ul li {}

.extra ul li i {
  font-size: 20px;
  color: #ffc83d;
}

.extra h2 {
  font-size: 30px;
  line-height: 37px;
  color: #000;
  font-weight: 700 !important;
  margin: 0px auto 20px;
  width: 60%;
}

.extra h6 {
  font-size: 20px;
  color: #000;
  text-transform: uppercase;
}

/* extra */
/* training_wrap */
.training_wrap {
  padding: 100px 0px 0px;
  position: relative;
  overflow: hidden;
}

.training_wrap .head {
  text-align: center;
}

.training_wrap .head span {
  color: #000;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  letter-spacing: 3px;
}

.training_wrap .head h2 {
  color: #000;
  font-size: 50px;
  width: 100%;
  margin: 26px auto 45px;
  font-style: italic;
  line-height: 90px;
}

.training_wrap .head img {
  width: 70px;
  height: 140px;
  object-fit: contain;
}

.training_wrap .Fundamentals {}

.training_wrap .Fundamentals h3 {
  font-size: 20px;
  margin: 0px 0px 10px;
  font-weight: 600;
}

.training_wrap .Fundamentals h6 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin: 0px 0px 40px;
}

.training_wrap .Fundamentals .main-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.training_wrap .Fundamentals .main-box .box {
  border: 2px solid #000;
  padding: 20px;
  border-radius: 10px;
}

.training_wrap .Fundamentals .main-box .box h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.training_wrap .Fundamentals .main-box .box h4 i {
  font-size: 15px;
  background: #f18819;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}

/* training_wrap */
/* Frequently_wrap */
.Frequently_wrap {
  padding: 100px 0px;
}

.Frequently_wrap .head {}

.Frequently_wrap .head h2 {
  font-size: 50px;
  color: #000;
  margin: 0px auto 40px;
  width: 80%;
  text-align: center;
  line-height: 103px;
}

.Frequently_wrap .faqs-box {}

.Frequently_wrap .faqs-box .accordion {}

.Frequently_wrap .faqs-box .accordion .accordion-item {
  margin: 0px 0px 20px;
  border: 0;
  background: #0000001c;
  color: #fff;
  border-radius: 8px;
}

.Frequently_wrap .faqs-box .accordion .accordion-item h2 {}

.Frequently_wrap .faqs-box .accordion .accordion-item h2 .accordion-button:focus {
  box-shadow: none;
  outline: none;
  border: none;
}

.Frequently_wrap .faqs-box .accordion .accordion-item h2 .accordion-button {
  background: #8b8b8b00;
  color: #000;
  font-size: 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 600;
  padding: 20px 20px;
}

.Frequently_wrap .faqs-box .accordion .accordion-item .accordion-body p {
  font-size: 16px;
  line-height: 26px;
  color: #000;
}

.Frequently_wrap .faqs-box .accordion .accordion-item h2 .accordion-button::after {
  content: '\f107';
  font-family: 'Font Awesome 6 pro';
  background: transparent;
  color: #000000;
  font-size: 22px;
  border-radius: 0px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-weight: 600;
  transition: all .3s ease-in-out;
}

.Frequently_wrap .faqs-box .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: '\f106';
  font-family: 'Font Awesome 6 Pro';
  transform: rotate(0deg);
  color: #fff;
}

/* Frequently_wrap */
/* =====  fundamentals-of-fiction page css ===== */


.about_wrapper.v2 .content img {
    width: 100%;
    object-fit: cover;
    height: 437px;
    box-shadow: -3px 4px 29px #27252452;
    /* border: 7px solid #171313; */
}

img.top_img {
    position: absolute;
    width: 407px !IMPORTANT;
    height: 363px !IMPORTANT;
    top: 17%;
    left: 6%;
    border: 5px solid #ff5a25 !important;
}

.about_wrapper.v2 .content h4 {
    font-size: 35px;
    font-weight: 700;
    padding: 0 10px 18px;
    line-height: 1.5;
    color: #fff;
}

.about_wrapper.v2.v3 h4 span {
    color: #ff7347 !important;
}

.about_wrapper.v2 .content p {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

.about_wrapper.v2 .content ul {
}

.about_wrapper.v2 .content ul li {align-items: start;}

.about_wrapper.v2 .content ul li p {
    font-size: 16px;
    margin: 0 2px  20px;
}

.about_wrapper.v2 .content h4 span {
    color: #212529;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.about_wrapper.v2 .content a {
    background: #000;
    padding: 19px 21px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 19px;
    margin: 0 14px;
    transition: all .3s 
ease-in-out;
    display: block;
    width: 228px;
    text-align: center;
}

.about_wrapper.v2 .content a:hover {
    transform: translateY(-10px);
}

.about_wrapper.v2 .content {}

.inner_images{}
.inner_images img{
    width: 100% !IMPORTANT;
    height: 200px !IMPORTANT;
}

.inner_images {
    margin: 16px 0;
}
.inner_images2{}
.inner_images2 img{}
.program_au_user_wrapper .started-h4 {
    padding: 0rem 0 4rem;
}
.program_banner .content .banner_img .program-p2 {
    width: 100%;
}
.program_au_user_wrapper.successful_user_wrapper {
    background: transparent;
    padding: 0px 0px 50px;
}

.program_au_user_wrapper.successful_user_wrapper .head {
    text-align: center;
}

.program_au_user_wrapper.successful_user_wrapper .head h2 {
    font-size: 55px;
    font-weight: 700;
    margin: 0 auto 50px;
    width: 60%;
}

.program_au_user_wrapper.successful_user_wrapper .crd h3 {
    color: #000;
}

.program_au_user_wrapper.successful_user_wrapper .crd p {
    color: #000;
}

.program_au_user_wrapper.successful_user_wrapper .started-h4 {
    color: #000;
}

.program_au_user_wrapper.successful_user_wrapper .price {}

.program_au_user_wrapper.successful_user_wrapper .price h6 {
    color: #000;
}

.program_au_user_wrapper.successful_user_wrapper .price span {
    color: #000;
}



.terms_head{
    background: linear-gradient(45deg, #1f1f1f, #333333);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 318px;
    display: flex;
    align-items: center;
    text-align: center;
}
.terms_head::after {
    content: '';
    position: absolute;
    right: 0%;
    top: 0%;
    background-image: url(../images/Vector.webp);
    background-position: 100% 73%;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.terms_head h4{
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: auto;
}
.terms_body {
    padding: 4rem 0;
}
.terms_body h4{
    padding: 20px 0;
    font-weight: 700;
    font-size: 24px;
}
.terms_body p{
    font-size: 14px;
    color: gray;
}
.terms_body ul{
    padding: 14px 21px;
}
.terms_body ul li{
    list-style: disc;
    font-size: 14px;
    line-height: 2;
    font-weight: 500;
}



    .about_head{
        background: linear-gradient(45deg, #1f1f1f, #333333);
        position: relative;
        overflow: hidden;
        z-index: 1;
        height: 450px;
        display: flex;
        align-items: center;
        text-align: center;
    }
    .about_head::after{
        content: '';
        position: absolute;
        right: 0%;
        top: 0%;
        background-image: url(../images/Vector.webp);
        background-position: 100% 73%;
        background-size: cover;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    .about_head h4{
        color: #fff;
        font-size: 50px;
        font-weight: 700;
    }

.about_head p {
    color: #fff;
    font-size: 16px;
    width: 47%;
    margin: 16px auto;
}

.about_head img {}
    .about_head img{
    margin: 20px 0;
    width: 365px;
}
.program_about_wrapper.about_ img {
        width: 100%;
        height: 465px;
        margin: 28px 0;
}
    .our_mission{
    background: #000000;
    padding: 6rem 0;
    margin-bottom: 0;
}
    .our_mission .content{}
    .our_mission .content h4{
    font-size: 44px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}
    .our_mission .content h4 strong{
    color: #ff4117;
    font-weight: 600;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}
    .our_mission .content h5 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    text-align: center;
    color: #ff4117;
    padding: 12px 0;
    font-size: 23px;
    width: 42%;
    margin: 13px auto;
    line-height: 1.5;
}

.our_mission .content h5 span {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}
    .our_mission .content h5 strong{}
    .our_mission .content p{
    color: #fff;
    text-align: center;
    padding: 22px 0;
    font-size: 18px;
    width: 80%;
    margin: 0 auto;
    display: block;
}
    .our_mission .content img{
    width: 66%;
    height: 598px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}


.insights-sec {
  background: #fff;
  overflow: hidden;
  position: relative;
  padding: 6rem 0;
  z-index: 1;
}

.insights-sec .head {
  text-align: center;
  margin: 0px auto 60px;
  width: 60%;
}

.insights-sec .head h2 {
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  text-transform: capitalize;
}

.insights-sec .main-box {
  background: transparent;
  border-radius: 13px;
  overflow: hidden;
  margin: 0px 0px 40px;
  height: 594px;
  box-shadow: 2px 2px 16px #27242429;
}

.insights-sec .main-box .main-img {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.insights-sec .main-box .main-img:hover {
  transform: scale(1.06);
}

.insights-sec .main-box .main-img img {
  width: 100%;
  height: 301px;
  object-fit: cover;
}

.insights-sec .main-box .contant {
  padding: 30px 25px;
  border-top: 0;
  background: #fff;
}

.insights-sec .main-box .contant p {
  margin: 0px 0px 12px;
  text-transform: uppercase;
}

.insights-sec .main-box .contant .two {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insights-sec .main-box .contant h2 {
  color: #2d2727;
  font-size: 20px;
  line-height: 30px;
  margin: 0px 0px 20px;
  overflow-y: auto;
  font-weight: 600;
}

.insights-sec .main-box .contant a {
  color: #ff2f09;
  font-size: 18px;
  line-height: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 11px 0 0 0;
}

.insights-sec .main-box .contant a i {
  font-weight: 300;
  margin: 0px 0px 0px 0px;
}

section.insights-sec.coaches_wrap {}
section.insights-sec.coaches_wrap .main-box {
    height: auto;
}

section.insights-sec.coaches_wrap .main-box .contant .two h2 {
    font-size: 25px;
    font-weight: 700;
    overflow: hidden;
}

.span {
    margin: 0px 0px 20px;
}

.span span {
    background: #ff3a124d;
    color: #ff3911;
    padding: 6px 13px;
    border-radius: 40px;
    font-size: 18px;
    line-height: 20px;
    display: inline-table;
}

.insights-sec .main-box .contant p {
    text-transform: capitalize;
    margin: 0;
    font-size: 14px;
    line-height: 26px;
    /* height: 139px; */
    /* overflow-y: scroll; */
}
/* === insights-sec ==== */

.reviews_wrap{}
.reviews_wrap .content{}
.reviews_wrap .content{}
.reviews_wrap .content{}

/*== tool Generator ==*/
section.generator_content {
    padding: 100px 0px;
    overflow: hidden;
    position: relative;
}

section.generator_content .head {}

section.generator_content .head h2 {
    font-size: 35px;
    font-weight: 700;
    margin: 0px 0px 20px;
    color: #000;
    text-transform: capitalize;
}

section.generator_content .head h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 0px 0px 20px;
    color: #000;
}

section.generator_content .head p a {
    color: #ff320b;
    font-weight: 600;
    text-decoration: underline;
}
section.generator_content .head .btn_box .consult-btn{
    background: linear-gradient(45deg, #ff2400, #ff985e);
    color: #ffffff;
}
section.generator_content .head .btn_box .consult-btn:hover {
    transform: translateY(-6px);
        border-color: #ff2e08;
}
section.generator_content .main-img {}

section.generator_content .main-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    margin: 20px 0px 40px;
}
Writing Enhancer {}

section.generator_content .line {
    width: 100%;
    height: 1px;
    background: #d34c39;
    display: flex;
    margin: 0px 0px 30px;
}

section.generator_content .helpful_box {
    text-align: center;
    padding: 80px 0px 0px;
}

section.generator_content .helpful_box h4 {
    font-size: 28px;
    font-weight: 600;
    margin: 0px 0px 30px;
    color: #000;
    line-height: 38px;
}

section.generator_content .helpful_box .more-btn {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

section.generator_content .helpful_box .more-btn .box {
    background: #000;
    color: #fff;
    font-size: 16px;
    padding: 20px;
    border-radius: 10px;
    font-weight: 500;
    border: 2px solid #000000;
    transition: all .3s ease-in-out;
}

section.generator_content .helpful_box .more-btn .box:hover {
    border-color: #000000;
    background: #ffffff;
    color: #000000;
}
/*== tool Generator ==*/

/*====   tools page  ====*/
/*tools_banner_wrap*/
section.tools_banner_wrap {
    position: relative;
    background: linear-gradient(45deg, #1f1f1f, #000000);
    padding: 200px 0px;
    overflow: hidden;
    z-index: 1;
}

section.tools_banner_wrap .head {
    text-align: center;
    width: 70%;
    margin: auto;
}

section.tools_banner_wrap .head h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    margin: 0px 0px 20px;
}

section.tools_banner_wrap .head p {
    color: #fff;
    font-size: 22px;
    line-height: 35px;
}

section.tools_banner_wrap:after {
    content: '';
    position: absolute;
    background: url(../images/Vector.webp);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.8;
    background-position: 100% , 50%;
    z-index: -1;
}
/*tools_banner_wrap*/
/*free_book_wrap*/
section.free_book_wrap {
    position: relative;
    margin: -180px 0px 0px;
    z-index: 1;
}

section.free_book_wrap .free_box {
    background: #e5e8e0;
    padding: 40px 40px;
    border-radius: 10px;
}

section.free_book_wrap .free_box .images-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

section.free_book_wrap .free_box .images-box .main-img {
    text-align: center;
}

section.free_book_wrap .free_box .images-box .main-img img {
    width: 70%;
    margin: 0px 0px 10px;
}

section.free_book_wrap .free_box h2 {
    text-align: center;
    margin: 0px 0px 40px;
    color: #000;
    font-size: 30px;
    font-weight: 700;
}

section.free_book_wrap .free_box .images-box .main-img h4 {
    color: #000;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
}
/*free_book_wrap*/
/* resources_wrap */
.resources_wrap{position: relative;overflow: hidden;padding: 100px 0px;}
.resources_wrap .head{
    text-align: center;
    margin: 0px 0px 50px;
}
.resources_wrap .head h2{
    font-size: 45px;
    font-weight: 600;
    line-height: 50px;
    color: #000;
}
.resources_wrap .resour_box{
    background: #f3f3f3;
    overflow: hidden;
    border-radius: 10px;
    margin: 0px 0px 30px;
}
.resources_wrap .resour_box .main-img{}
.resources_wrap .resour_box .main-img img{
    width: 100%;
    height: 270px;
    object-fit: cover;
}
.resources_wrap .resour_box .txt{
    padding: 30px 30px;
    text-align: center;
}
.resources_wrap .resour_box .txt h3{
    color: #000;
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
    margin: 0px 0px 10px;
}
.resources_wrap .resour_box .txt p{}
.success_plan_sec .podcast-sec.podcast-sec_retern {padding: 0;}
/* resources_wrap */
/*====   tools page  ====*/

/*============ online_review_wrap ================*/

section.online_review_wrap {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}
section.online_review_wrap .head {
    text-align: center;
    margin: 0px 0px 40px;
}
section.online_review_wrap .head h2 {
    font-size: 40px;
    font-weight: 700;
}
section.online_review_wrap .review-main-box {
    background: #fff;
    padding: 25px 24px 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px #80808063;
    margin: 0px 0px 30px;
}
section.online_review_wrap .review-main-box .chris {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section.online_review_wrap .review-main-box .chris .box1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
}
section.online_review_wrap .review-main-box .chris .box1 .detail {
    display: flex;
    align-items: center;
    gap: 3px;
}
section.online_review_wrap .review-main-box .chris .box1 .detail p {
    margin: 0;
    font-size: 15px;
    color: #787878;
}
section.online_review_wrap .review-main-box .chris .box1 .detail .date {
    display: block;
}
section.online_review_wrap .review-main-box .comment {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section.online_review_wrap .review-main-box .comment .like {
    display: flex;
    align-items: center;
    gap: 2px;
}
section.online_review_wrap .review-main-box .comment .like p {
    color: #666666;
    font-size: 15px;
    font-weight: 500;
    margin: 0px 0px 0px 4px;
}
section.online_review_wrap .review-main-box .comment .like img {
    width: 18px;
    margin: -6px 0px 0px 0px;
}
section.online_review_wrap .review-main-box .comment .txt-comm {}
section.online_review_wrap .review-main-box .comment .txt-comm p {
    color: #666666;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}
section.online_review_wrap .review-main-box ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    padding: 10px 0px;
    margin: 10px 0px 0px;
}
section.online_review_wrap .review-main-box ul li {
    color: #787878;
    font-size: 16px;
    font-weight: 400;
}
section.online_review_wrap .review-main-box p {
    margin: 20px 0px 12px;
    font-size: 14px;
    line-height: 25px;
}
section.online_review_wrap .review-main-box .chris .box1 .main-img {}
section.online_review_wrap .review-main-box .chris .box1 .main-img .proflie-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
section.online_review_wrap .review-main-box .chris .box1 .detail h4 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}
section.online_review_wrap .review-main-box .chris .box1 .detail .main-img {}
section.online_review_wrap .review-main-box .chris .box1 .detail .main-img img.recommendIcon {
    width: 17px;
    margin: 0px 0px 14px;
}
section.online_review_wrap .review-main-box .chris .box1 .detail strong {
    font-size: 14px;
    color: #dd360c;
}
section.online_review_wrap .review-main-box .chris .box2 {}
section.online_review_wrap .review-main-box .chris .box2 img.MenuButton {
    width: 25px;
}
section.online_review_wrap .review-main-box .chris .box1 .detail_person {}

section.online_review_wrap .review-main-box .chris .box1 .detail_person .date {
    display: flex;
    align-items: center;
    margin: 2px 0px 0px;
    gap: 6px;
}

section.online_review_wrap .review-main-box .chris .box1 .detail_person .date p {
    margin: 0;
    color: #787878;
    font-size: 16px;
}

section.online_review_wrap .review-main-box .chris .box1 .detail_person .date span {
    height: 4px;
    background: #fff;
    width: 4px;
    border-radius: 50%;
}

section.online_review_wrap .review-main-box .chris .box1 .detail_person .date img.EarthIcon {
    width: 15px;
    margin: -5px 0px 0px;
}
section.online_review_wrap .head h2 span {
    color: #ff4016;
}
section.online_review_wrap .review-main-box .person-img {
    margin: 0px 0px 20px;
}

section.online_review_wrap .review-main-box .person-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
}
section.online_review_wrap .btn_box {
    margin: 40px 0px 0px;
}
section.online_review_wrap .btn_box a.consult-btn {
    background: #000;
    color: #fff;
}
section.online_review_wrap .btn_box a.consult-btn:hover {
    border-color: #000;
    color: #000000;
    background: transparent;
}
/*============ online_review_wrap ================*/


/* blog-banner-sec */
.blog-banner-sec {
  position: relative;
  padding: 170px 0px 80px;
  background: linear-gradient(
124deg, #1f1f1f, #000000);
  z-index: 1;
}
.blog-banner-sec::after {
    content: '';
    position: absolute;
    right: 0%;
    top: 0%;
    background-image: url(../images/Vector.webp);
    background-position: 100% 73%;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.blog-banner-sec .about-contant {
    text-align: center;
}

.blog-banner-sec .about-contant span {
  width: 100%;
  font-size: 20px;
  color: #fff;
  margin: 0px 1px 10px;
}

.blog-banner-sec .about-contant span small {
  text-transform: uppercase;
  font-size: 20px;
  margin: 0px 0px 0px 5px;
}

.blog-banner-sec .about-contant h1 {
  margin: 15px auto 35px;
  font-size: 50px;
  line-height: 65px;
  color: #fff;
  font-weight: 600;
  width: 70%;
}

.blog-banner-sec .about-contant h1 span {}

.blog-banner-sec .about-contant ul {
  display: flex;
  align-items: center;
  gap: 19px;
  justify-content: center;
}

.blog-banner-sec .about-contant ul li {
  text-align: left;
}

.blog-banner-sec .about-contant ul li img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-banner-sec .about-contant ul li p {
  width: 100%;
  color: #fff;
  margin: 0;
  font-size: 17px;
  line-height: 27px;
}

.blog-banner-sec .about-contant ul li p a {
  color: #ff3600;
  font-size: 19px;
  font-weight: 600;
}

/* blog-banner-sec */

/* accessibility-sec */
.accessibility-sec {
  overflow: hidden;
  position: relative;
  padding: 100px 0px 100px;
  background: #ffffff;
}

.accessibility-sec .container {
    padding: 0 10rem;
}

.accessibility-sec .main-box {
}

.accessibility-sec .main-box .main-img.banner-img {}

.accessibility-sec .main-box .main-img.banner-img img {
  width: 100%;
  height: 430px;
}

.accessibility-sec .main-box .According {
  margin: 0 auto;
}

.accessibility-sec .main-box .digital {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  margin: 0px 0px 50px;
  align-items: baseline;
  gap: 40px;
}

.accessibility-sec .main-box .digital a {
  font-size: 20px;
  color: #000;
  width: 18%;
}

.accessibility-sec .main-box .digital i {
  color: #000 !important;
  font-size: 20px;
}

.accessibility-sec .main-box .digital p {
  margin: 0;
  font-size: 20px;
  color: #000;
}

.accessibility-sec .main-box .head {
  text-align: left;
}

.accessibility-sec .main-box .head h1 {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 45px;
  line-height: 65px;
  margin: 0px 0px 20px;
}

.accessibility-sec .main-box .head h1 span {
  color: #ee422e;
}

.accessibility-sec .main-box .head h6 {
  font-size: 13px;
  line-height: 23px;
  font-weight: 500;
  margin: 0px 0px 20px;
  color: #bababa;
}

.accessibility-sec .main-box .head h2 {
  color: #000;
  margin: 0px 0px 22px;
  font-size: 37px;
  line-height: 51px;
  font-weight: 600;
}

.accessibility-sec .main-box .head h2 span {
  color: #FF7A03;
}

.accessibility-sec .main-box .head p {
  margin: 0px 0px 26px;
}

.accessibility-sec .main-box .main-img {
  margin: 0px 0px 40px;
}

.accessibility-sec .main-box .main-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 40px;
  object-position: top;
}

.accessibility-sec .main-box .main-img.seo-imge img {
  width: 100%;
  height: 480px;
}

.accessibility-sec .main-box .main-img ul {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0px 40px;
}

.accessibility-sec .main-box .main-img ul li {
  font-size: 14px;
  font-weight: 500;
}

.accessibility-sec .main-box .main-img ul li img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.accessibility-sec .main-box .main-img ul li a {
  color: #67bffe;
  font-size: 14px;
}

.accessibility-sec .main-box p {
  margin: 0px 0px 20px;
  transition: all .3s ease-in-out;
  color: #000000;
  font-size: 18px;
  line-height: 28px;
}

.accessibility-sec .main-box p a:hover {
  color: #fff;
  border-color: #ffff;
}

.accessibility-sec .main-box p a {
  /* font-weight: 600; */
  color: #ffffff;
  /* border-bottom: 3px solid #0dcaf0; */
  /* font-size: 23px; */
  margin: 0 2px 0 0;
}

.accessibility-sec .main-box p span {
  font-weight: 600;
}

.accessibility-sec .main-box .line {
  border-bottom: 1px solid #9f9f9f;
  margin: 0px 0px 50px;
}

.accessibility-sec .main-box .silk h2 {
  color: #000;
  font-size: 50px;
  line-height: 61px;
  font-weight: 600;
  padding: 0px 0px 40px;
}

.accessibility-sec .main-box .silk .request-btn {
  background: #000;
  color: #fff;
  padding: 22px 40px;
  border-radius: 8px;
  font-size: 27px;
  height: 80px;
  display: inline-block;
  border: 0;
  text-transform: uppercase;
  align-items: center;
  margin: 0px 0px 40px;
}

.accessibility-sec .main-box .Website {}

.accessibility-sec .main-box .Website h2 {
  font-size: 40px;
  color: #000000;
  font-weight: 600;
  margin: 0px 0px 20px;
}

.accessibility-sec .main-box .Website h3 {
  color: #000000;
  font-size: 30px;
  font-weight: 600;
  margin: 0px 0px 20px;
}

.accessibility-sec .main-box .Website .h2 {
  margin: 50px 0px;
}

.accessibility-sec .main-box .Website ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0px 0px 0px 20px;
  margin: 0px 0px 40px;
}

.accessibility-sec .main-box .Website ul li {
  font-size: 18px;
  color: #000000;
  list-style: disc !important;
}

.accessibility-sec .main-box .Website ul li i {
  color: #000 !important;
  font-size: 20px;
  margin: 0px 10px 0px 0px;
}

.accessibility-sec .main-box .Website ul li a {
  font-weight: 600;
  color: #000;
  border-bottom: 4px solid #000;
}

.accessibility-sec .main-box .author {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid #0dcaf04d;
  background-color: #00000063;
  margin: 50px 0px 0px;
}

.accessibility-sec .main-box .author img {
  height: 90px;
  border-radius: 50%;
}

.accessibility-sec .main-box .author p a {
  display: block;
  border: 0;
  font-size: 30px;
  color: #ffffff;
  margin: 0px 0px 10px;
}

.accessibility-sec .main-box .event-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  transition: all .4s ease-in-out;
  box-shadow: 0px 0px 7px 0px darkgray;
}

.accessibility-sec .main-box .event-box .event-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accessibility-sec .main-box .event-box .event-header h2 {
  color: #000;
  font-size: 30px;
  font-weight: 600;
}

.accessibility-sec .main-box .event-box .event-header i {
  color: #000 !important;
  font-size: 20px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.accessibility-sec .main-box .event-box .event-header i.rotate {
  transform: rotate(180deg);
}

.accessibility-sec .main-box .event-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .4s ease-in-out;
}

.accessibility-sec .main-box .event-detail h2 {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  margin: 0px 0px 31px;
  border-bottom: 1px solid #77777769;
  padding: 0px 0px 14px;
}

.accessibility-sec .main-box .event-box.active .event-detail {
  max-height: 200px;
  opacity: 1;
  margin-top: 30px;
}
/* accessibility-sec */



/*behind_wrap*/
section.behind_wrap {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}
section.behind_wrap .main-box {}
section.behind_wrap .main-box .main-img {}
section.behind_wrap .main-box .main-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 15px;
}
section.behind_wrap .main-box .contant {
    text-align: center;
    margin: 20px 0px 0px;
}
section.behind_wrap .main-box .contant .span {
    margin: 0px 0px 20px;
}
section.behind_wrap .main-box .contant h2 {
    font-size: 20px;
    font-weight: 700;
}
section.behind_wrap .content {
    text-align: center;
    margin: 0px 0px 60px;
}

section.behind_wrap .content h2 {
    padding: 0px 0px 20px;
}

section.behind_wrap .content p {
    margin: auto;
    width: 60%;
}
section.behind_wrap .btn_box {
    margin: 60px 0px 0px;
}
section.behind_wrap .btn_box .consult-btn {
    background: linear-gradient(45deg, #ff2400, #ff985e);
    color: #fff;
    border: 1px solid #ff461c;
}
/*behind_wrap*/

/* books_published_wrap */
section.books_published_wrap {
    padding: 0px 0px 100px;
    position: relative;
    overflow: hidden;
}
section.books_published_wrap .content {
    text-align: center;
    margin: 0px 0px 30px;
}
section.books_published_wrap .content p {
    margin: auto;
    width: 60%;
}
section.books_published_wrap .main-img {}
section.books_published_wrap .main-img img {
    width: 100%;
}
/* books_published_wrap */

/*===taking_wrap===*/
section.taking_wrap {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #ff2400, #ff985e);
}

section.taking_wrap .content {
    text-align: center;
    margin: 0px 0px 60px;
}

section.taking_wrap .content h2 {
    color: #fff;
}

section.taking_wrap .content p {
    color: #fff;
    width: 60%;
    margin: 0px auto 20px;
}

section.taking_wrap .main-img {}

section.taking_wrap .main-img img {
    width: 100%;
}
/*===taking_wrap===*/

.case_study{
    margin: 5rem 0;
}
.case_study .crd{
    background: #f03a0d1a;
    padding: 1rem 3rem;
    border-radius: 11px;
    margin-bottom: 3rem;
}
.case_study .crd h4{
    color: #ff3e0e;
    font-size: 16px;
    font-weight: 700;
}
.case_study .crd h2{
    padding: 11px 0;
    font-weight: 500;
    font-size: 30px;
    color: #000;
}
.case_study .crd ul{
    list-style: circle;
    padding: 0 20px;
}
.case_study .crd ul li{
    padding: 5px 0;
    font-size: 16px;
}
.case_study .crd img{
    width: 100%;
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
.mb_only{
    display:none !important;
}
.program_banner .slider_wrap {
    background: #070707;
}

/*form*/
.pad-sec {
    padding: 70px 0;
}
.formsecbox {
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 97.01px 11.99px rgba(0, 0, 0, 0.27);
    border-radius: 15px;
    overflow: hidden;
}
.cntform {
    padding: 41px 30px;
    text-align: left;
}
.cntform h5 {
	font-size: 30px;
	font-weight: 600;
	color: #000;
	line-height: normal;
	padding-bottom: 30px;
}

.field {
	margin-bottom: 20px;
	position: relative;
}

.field input,
.field select,
.field textarea {
	font-size: 14px;
	line-height: 26px;
	border: 1px solid rgb(146, 144, 144);
	border-radius: 100px;
	width: 100%;
	height: 55px;
	padding: 0 20px;
}

.field textarea {
	padding: 15px;
	height: 210px;
	width: 100%;
	resize: none;
	margin-bottom: 0;
	border-radius: 15px;
}

.cntform button {
	width: 195px;
	height: 45px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	line-height: 45px;
	text-align: center;
	background: linear-gradient(45deg, #ff2400, #ff985e);
	transition: all 0.4s ease-In-out;
	margin: auto;
	margin-right: 0;
	display: block;
	border: 0;
}

.cntform button:hover {
	background-color: #000;
	transform: scale(0.9);
	transition: all 0.4s ease-In-out;
}

.cntinfo {
	background: linear-gradient(45deg, #ff2400, #ff985e);
	width: 100%;
	height: 100%;
	padding: 40px;
	text-align: left;
}

.cntinfo h5 {
	font-size: 31px;
	font-weight: 600;
	color: #fff;
	line-height: normal;
	padding-bottom: 30px;
}

.cntinfo h6 {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	line-height: normal;
	padding-bottom: 5px;
}

.cntinfo a {
	display: block;
	font-size: 21px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 30px;
}

.cntinfo a:hover {
	color: #000;
}

.cntinfo ul {
    display: flex;
    align-items: center;
    gap: 0px;
    margin: 5px 0px 0px;
}

.cntinfo ul li {
}

.cntinfo ul li.last {
	margin-right: 0px;
}

.cntinfo ul li a {
	font-size: 18px;
	color: #fff;
	margin: 0;
	height: 45px;
	width: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.cntinfo ul li a:hover {
	color: #ffffff;
	background: #000;
}
/*form*/
.insights-sec .content {
    text-align: center;
}


.modal_wrap{}
.modal_wrap .modal-content{
    border: 3px solid #ffffff;
    border-radius: 10px;
    overflow: hidden;
}
.modal_wrap .modal-content .modal-main{
    padding: 30px 20px;
    background: url(../images/popup-bg.webp);
    background-size: cover;
    background-position: 100% 100%;
    position: relative;
}

.modal_wrap .modal-content .modal-main::after {
    /* content: ''; */
    position: absolute;
    top: 0;
    right: -21%;
    width: 68%;
    height: 100%;
    z-index: 1;
    /* background: rgb(255 249 249 / 0%); */
    /* backdrop-filter: blur(4px); */
    -webkit-backdrop-filter: blur(20px);
    transform: skew(
337deg);
}
.modal_wrap .modal-content .modal-main .main-img {}

.modal_wrap .modal-content .modal-main .main-img img {
    width: 100%;
    height: 320px;
    object-fit: contain;
}
.modal_wrap .modal-content .modal-main .form-box .input-main .form-group{
    margin: 0px 0px 10px;
}
.modal_wrap .modal-content .modal-main input::placeholder,
.modal_wrap .modal-content .modal-main textarea::placeholder{
    color: #fff;
}
.modal_wrap .modal-content .modal-main input:focus,
.modal_wrap .modal-content .modal-main textarea:focus,
.modal_wrap .modal-content .modal-main textarea:focus{
    box-shadow:none;
}
.modal_wrap .modal-content .modal-main .form-box .input-main .form-group .form-control{
    border-radius: 100px;
    font-size: 16px;
    background: #354079;
    border: 0;
    color: #fff;
    padding: 15px 20px;
    line-height: 22px;
}
.modal_wrap .modal-content .modal-main .form-box .input-main .form-group textarea.form-control{
    border-radius: 20px;
}
.modal_wrap .modal-content .modal-main .form-box .input-main .submit{
    font-size: 14px;
    color: #ffffff;
    background: #161313;
    padding: 14px 35px;
    font-weight: 600;
    line-height: 23px;
    border: none;
    overflow: hidden;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease-in-out;
    width: 100%;
    margin: 8px 0 0 0;
    font-family: 'Poppins';
    border-radius: 7px;
}
.modal_wrap .modal-content .modal-main .form-box .input-main .submit:hover{
    background: #ffffff;
    color: #000000;
}
.modal_wrap .modal-dialog {
    max-width: 850px;
    margin: 122px auto;
}

.modal_wrap .modal-content .modal-main .form-box {
    position: relative;
    z-index: 2;
}

.modal_wrap .modal-content .modal-main .form-box h2 {
    font-size: 19px;
    font-weight: 600;
    margin: 0px 0px 15px;
    color: #fff;
    font-family: 'Poppins';
    line-height: 1.4;
}

.modal_wrap .modal-content .modal-main .form-box h2 span {
    display: block;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
    font-size: 31px;
    margin: 6px 0 0 0;
    line-height: 1.3;
    color: #ffd9c7;
}

.modal_wrap .modal-content .modal-main form select, .modal_wrap .modal-content .modal-main form input,.modal_wrap .modal-content .modal-main form textarea {
    width: 100%;
    padding: 11px 10px;
    font-size: 14px;
    margin: 6px 0;
    background: #0000008f;
    border: 1px solid #000000;
    color: #fff;
}
.modal_wrap .modal-content .modal-main form select{
}
.modal_wrap .modal-content .modal-header {
    border: 0;
    padding: 25px 25px 0px;
    position: absolute;
    right: 0;
    z-index: 2;
}

.modal_wrap .modal-content .modal-header button.btn-close {
    opacity: 1;
    height: 25px;
    width: 25px;
    border: 2px solid #ff8952 !important;
    border-radius: 50px;
    font-size: 18px;
    filter: brightness(0) saturate(100%) invert(91%) sepia(97%) saturate(8%) hue-rotate(307deg) brightness(107%) contrast(100%);
}

