/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* Local Font */
@font-face {
  font-family: "albra-trial-Regular.otf";
  src: url("../fonts/albra.otf");
}

:root {
  --white: #fff;
  --black: #000;
  --primary: #3a1d1d;
  --secondary: #3a3f4f;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "K2D", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
}

h1,
h2,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "albra-trial-Regular.otf";
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}
.char{
    display:inline !important;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 1.125rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: bold;
  display: inline-block;
  padding: 22px 53px;
  line-height: normal;
  border-radius: 50px;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  margin: 0 0.625rem;
  width: 100%;
  padding: 25.3px;
  transition: 0.3s ease-in-out;
  background-color: #e5e7f0;
  position: relative;
  z-index: 2;
}

.navbar-brand {
  padding: 0;
  margin: -1.875rem 0;
}

.navbar-nav {
  align-items: center;
  gap: 11px;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.09375rem;
  color: #262626;
  text-transform: capitalize;
  font-weight: 800;
  padding: 0 0;
  display: inline-block;
}

/* !NAV HEADER CSS */

/* Drop-Down Css Start */

.navbar .nav-item.drop-down {
  position: relative;
  z-index: 1;
}

.quicklist li a:hover {
  color: var(--white);
}

.navbar .drop-down>a:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: var(--primary);
}

.navbar .drop-down ul {
  display: block;
  position: absolute;
  left: 0.875rem;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  transition: 0.3s;
}

.navbar .drop-down ul {
  opacity: 0;
  visibility: hidden;
  top: calc(100% + 30px);
  transition: opacity 0.3s, top 0.3s;
}

.navbar .drop-down.open>ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.navbar .drop-down li {
  min-width: 200px;
  position: relative;
  list-style: none;
}

.navbar .drop-down ul a {
  padding: 6px 1.0625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: none;
  color: #151515;
  display: block;
  text-transform: capitalize;
}

.navbar .drop-down ul a:hover {
  background: var(--primary);
  color: var(--white);
}

.navbar .drop-down ul {
  transition: opacity 0.3s, top 0.3s;
}

/* Drop-Down Css End  */

/* Main Banner Css Start */
.top-bar {
  text-align: center;
  background-color: var(--primary);
  margin: 0.625rem 0.625rem 0;
  border-radius: 30px;
  padding: 0.455rem 0;
}

.top-bar p {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
}

.top-bar p a {
  font-weight: bold;
  color: #fff600;
}

.welcome_offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 2rem;
  padding-left: 4rem;
}

.welcome_offer .contact_phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  margin-right: 1rem;
}

.welcome_offer .whatsapp {
  color: #25d366;
  font-size: 1.7rem;
}

.second-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

ul.second-list li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: #262626;
  font-family: "K2D";
}

.second-flex {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.second-wrapp a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  font-weight: bold;
  color: #262626;
}

.second-wrapp a i {
  color: var(--primary);
}

.second-wrapp {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.second-wrapp a:last-child {
  border: 1px solid #3a1d1d;
  padding: 1rem 1.125rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  color: #3a3f4f;
  text-transform: capitalize;
}

.second-bar {
  padding: 1.25rem 0;
}

section.mainBanner {
  background: linear-gradient(240deg, #e4eaff, #ededed);
  z-index: 1;
  padding: 6rem 0 13rem;
}

.main-content {
  text-align: center;
}

.main-content h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 3.75rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #3a3f4f;
  font-family: "albra-trial-Regular.otf";
  gap: 1rem;
}

.main-content h1:nth-child(2) {
  color: var(--primary);
}

.main-content h1 span {
  color: var(--secondary);
}

.main-content p {
  color: #353535;
  font-size: 14px;
  margin: 1rem 0;
}

.main-content p a {
  color: var(--primary);
  font-size: 1rem;
  font-weight: bold;
  text-transform: capitalize;
}

form.main-form .form-group {
  margin: 0;
  position: relative;
  box-shadow: 0 9px 35px 0 rgb(0 0 0 / 4%);
}

form.main-form .row .col-md-3:first-child .form-group .form-control {
  border-radius: 60px 0 0 60px;
}

form.main-form .form-control::placeholder {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  color: #757575;
}

form.main-form .form-control {
  height: 3.75rem;
  outline: unset;
  box-shadow: unset;
  border: unset;
  position: relative;
  background-color: var(--white);
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  color: #757575;
  padding: 0 2.5rem;
}

form.main-form .form-control::before {
  position: absolute;
  height: 100%;
  width: 1px;
  background: #000;
  right: 0;
}

form.main-form .form-group::before {
  position: absolute;
  content: "";
  height: 60%;
  width: 1px;
  background: #cfcfcf;
  right: 0;
  z-index: 1;
  bottom: 0;
  top: 0;
  margin: auto;
}

.main-overlay p {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #353535;
}

ul.maint-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-para {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: center;
  margin: 1.25rem 0 2rem;
}

ul.maint-stars li a {
  color: #febb00;
}

form.main-form .row .col-md-3:last-child .form-group .form-control {
  border-radius: 0 60px 60px 0;
}

form.main-form .row .col-md-3:nth-child(3) .form-group .form-control {
  border-radius: 0 60px 60px 0;
}

form.main-form .row .col-md-3:nth-child(3) .form-group::before {
  position: unset;
}

form.main-form button {
  width: 172px;
  border-radius: 50px;
  border: unset;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
}

.main-images {
  text-align: start;
}

.main-box {
  border: 1px solid rgb(58 29 29 / 20%);
  width: fit-content;
  padding: 30px 20px 17px 20px;
  border-radius: 14px;
  background: rgb(199 190 190 / 11%);
  transition: 0.6s ease;
}

.main-box p {
  color: #696969;
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

.main-box span {
  font-weight: bold;
  color: #3a1d1d;
}

figure.mainimg {
  text-align: center;
}

.mainimg1 {
  position: absolute;
  left: 0;
  top: 0%;
  z-index: -1;
}

img.img-fluid.mainimg2 {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

.main-box:hover {
  background-color: #ffff;
  box-shadow: 7px 12px 46px 0 rgb(58 63 79 / 11%);
}

img.img-fluid.mainimg4 {
  position: absolute;
  right: 280px;
  bottom: 0;
}

img.img-fluid.mainimg3 {
  position: absolute;
  right: 0;
  top: 180px;
}

.main-flex {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-top: 1rem;
}

img.img-fluid.main-blur {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

form.main-form .form-group a {
  color: #757575;
  position: absolute;
  left: 1rem;
  bottom: 0;
  top: 0;
  height: fit-content;
  margin: auto;
}

.main-images {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-images .main-box:last-child figure.mainimg {
  text-align: start;
}

/* Main Banner Css End  */

/* Marquee Sec Css Start */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  position: absolute;
  top: -7rem;

  span {
    text-transform: uppercase;
    will-change: transform;
    white-space: nowrap;
    animation: marquee 24s linear infinite;
    font-size: 300px;
    font-weight: 400;
    font-family: "albra-trial-Regular.otf";
    -webkit-text-stroke: 1px;
    color: rgb(236 233 233 / 21%);
  }
}

/* Marquee Sec Css End  */

/*  Expert Sec Css Start */
img.img-fluid.expert1 {
  position: absolute;
  top: 270px;
  left: 313px;
  z-index: 0;
}

section.expert-sec img {
  border-radius: 20px;
}

img.img-fluid.expert4 {
  position: absolute;
  right: 20px;
  top: 160px;
}

img.img-fluid.expert5 {
  position: absolute;
  right: 380px;
  bottom: 25rem;
}

img.img-fluid.expert6 {
  position: absolute;
  bottom: 0;
  right: 0;
}

section.expert-sec {
  padding: 17rem 0 29rem;
}

img.img-fluid.expert2 {
  position: absolute;
  left: 0;
  bottom: 26rem;
}

.expert-content button {
  border: unset;
  outline: unset;
}

img.img-fluid.expert3 {
  position: absolute;
  bottom: 120px;
  left: 400px;
}

.subHead {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  color: var(--primary);
}

.expert-content .subHead {
  margin-bottom: 1rem;
}

.mainHead {
  font-size: 52px;
  font-weight: 500;
  color: #3a1d1d;
  line-height: 1.1;
}

.mainHead span {
  color: var(--secondary);
}

.expert-content p {
  color: #353535;
  line-height: 1.5;
  margin: 1rem auto 2rem;
  width: 83%;
}

.expert-content p span {
  color: #3a1d1d;
  font-weight: bold;
}

/*  Expert Sec Css End  */

/* Marquee Sec Css Start */
@keyframes marqueee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marqueee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  gap: 3rem;

  span {
    text-transform: capitalize;
    will-change: transform;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-size: 45px;
    font-weight: 400;
    font-family: "albra-trial-Regular.otf";
    -webkit-text-stroke: 1px;
    color: var(--white);
  }
}

/* Marquee Sec Css End  */

section.academic-sec {
  background-color: #ece9e9c4;
  border-radius: 60px;
  z-index: 1;
  padding: 6rem 0 7rem;
  overflow-x: hidden;
}

section.academic-sec .marquee span {
  color: #ebe8e8;
}

section.academic-sec .marquee {
  z-index: -1;
}

.academic-top {
  text-align: center;
  margin-bottom: 46px;
}

.academic-top .subHead {
  margin: 1rem 0;
}

.academic-top p {
  color: #353535;
  text-transform: capitalize;
  width: 50%;
  margin: auto;
}

.academic-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

figure.academic-img {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

figure.academic-img span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #353535;
  margin-top: 6px;
}

figure.academic-img h5 {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  color: #3a3f4f;
}

figure.academic-img span a {
  color: #3a1d1d;
  margin-right: 2px;
}

a.stars {
  color: #220a0a;
  font-size: 11px;
  font-weight: 600;
}

figure.academic-img img {
  flex-shrink: 0;
}

figure.academic-img img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.academic-wrwrapp {
  background-color: #ededed;
  position: relative;
  border: 1px solid rgb(171 160 160 / 78%);
  padding: 20px 20px 20px 20px;
}

ul.academic-list li a {
  font-size: 0.625rem;
  font-weight: 400;
  color: #353535;
  text-transform: capitalize;
  display: block;
  padding: 7px;
  background-color: var(--white);
  width: fit-content;
  border-radius: 6px;
  white-space: nowrap;
}

ul.academic-list {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

ul.academic-list+ul.academic-list {
  margin: 0.5rem 0 0;
}

.acdemic-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

a.stars i {
  color: #ffb600;
}

.acdemic-bottom h6 {
  font-size: 14px;
  font-weight: 600;
  color: #3a1d1d;
  display: flex;
  align-items: center;
  gap: 5px;
}

.acdemic-bottom h6 span {
  font-size: 11px;
  color: #3a3f4f;
  font-family: "K2D";
  font-weight: 400;
}

.acdemic-bottom .themeBtn {
  font-size: 12px;
  font-weight: 500;
  padding: 16px 37px;
}

.academic-wrwrapp::before {
  position: absolute;
  height: 250px;
  width: 352px;
  background: linear-gradient(45deg, black, transparent);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.services-top {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-main h5 {
  font-size: 1rem;
  font-weight: 400;
  color: #353535;
  margin-bottom: 1.5rem;
  font-family: "K2D";
}

.services-main {
  text-align: center;
}

.services-box a {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #3a3f4f;
  font-family: "albra-trial-Regular.otf";
  margin-top: 1rem;
}

section.services-sec p {
  text-align: center;
  color: #353535;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 3rem;
}

.services-box::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 47px;
  background-color: #eeeeef;
  bottom: -28px;
  left: 0;
  right: 0;
  margin: auto;
  clip-path: polygon(50% 100%, 0 0, 97% 0%);
  border-radius: 0 0 100% 0;
  opacity: 0;
  transition: 0.6s ease;
}

section.marquee-sec {
  padding: 1rem 0;
  background-color: #3a1d1d;
  border-radius: 40px;
}

.academicslider .swiper-pagination {
  bottom: 0;
  z-index: 11;
}

.academicslider {
  padding-bottom: 6rem;
}

.academicslider .swiper-pagination-bullet {
  border-radius: unset;
  margin: 0 auto !important;
  width: 67px;
  height: 3px;
  position: relative;
}

.academicslider .swiper-pagination-bullet-active {
  background: #000 !important;
}

section.services-sec .marquee span {
  line-height: 1;
}

section.services-sec .marquee {
  top: -13px;
}

.services-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.services-box:hover::before {
  opacity: 1;
}

section.academic-sec::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 16%;
  background-color: rgb(236 233 233 / 0%);
  backdrop-filter: blur(5px);
  z-index: 2;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

section.academic-sec::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 16%;
  background-color: rgb(236 233 233 / 0%);
  backdrop-filter: blur(5px);
  z-index: 2;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.services-box {
  padding: 38px 32px 0;
  width: 228px;
  margin: auto;
  position: relative;
  height: 175px;
  transition: 0.6s ease;
}

.services-box:hover {
  background-color: #eeeeef;
}

section.cutomer-sec .mainHead span {
  color: var(--primary);
}

section.cutomer-sec .mainHead {
  color: var(--secondary);
}

section.philo-sec .mainHead {
  text-align: start;
  margin: 0 0 2rem 23rem;
}

.philo-wrapp {
  border: 1px solid rgb(24 24 24 / 15%);
  padding: 30px 40px 47px 40px;
  border-radius: 30px;
  background-color: #f8f8f9;
}

.philo-wrapp h4 {
  font-size: 1.875rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #3a3f4f;
  line-height: 1.2;
}

.philo-wrapp p {
  color: #353535;
  line-height: 1.5;
  margin: 0.625rem 0 1.5rem;
}

figure.philo-img {
  border-radius: 15px;
  height: 84px;
  width: 84px;
  display: grid;
  place-items: center;
  background-color: #3a1d1d;
}

.customer-top {
  text-align: center;
  margin-bottom: 2rem;
}

.cutomer-wrapp {
  border: 1px solid #eff0f7;
  background-color: #f8f8f9;
  padding: 40px 40px 46px 40px;
  border-radius: 20px;
  position: relative;
  opacity: 40%;
  z-index: 1;
}

.cutomer-wrapp p {
  color: #353535;
  line-height: 1.5;
  margin: 1rem 0;
}

.cutomer-wrapp h4 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: capitalize;
  color: 33A1D1D;
}

.cutomer-bottom h5 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #3a3f4f;
}

.cutomer-bottom h5 span {
  font-weight: 400;
  color: #353535;
  display: block;
  font-family: "K2D";
  margin-top: 0.25rem;
}

.cutomer-flex {
  display: flex;
  justify-content: space-between;
}

figure.customer-star h5 {
  font-size: 19px;
  font-weight: bold;
  color: #353535;
}

figure.customer-star {
  align-items: center;
  gap: 0.625rem;
  display: flex;
}

.customer-stars ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.customer-stars ul li a {
  color: #feba02;
}

.cutomer-wrapp::before {
  position: absolute;
  content: "";
  height: 44px;
  width: 44px;
  background: #f8f8f9;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  border-radius: 9px;
  z-index: 111111;
}

section.philo-sec::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 16%;
  background-color: rgb(236 233 233 / 0%);
  backdrop-filter: blur(5px);
  z-index: 11;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

section.philo-sec {
  z-index: 1;
  padding: 7rem 0rem 15rem 20rem;
}

.swiper-slide.swiper-slide-next .cutomer-wrapp {
  opacity: 100%;
}

.swiper-slide.swiper-slide-active figure.imag img {
  border: 10px solid #3a1d1d;
  opacity: 100%;
}

figure.imag img {
  border-radius: 12px;
  transition: 0.6s ease;
  opacity: 40%;
}

.connect-content p {
  color: #fdfdfd;
  line-height: 1.5;
  width: 57%;
  margin: 1rem 0;
}

.coonect-overlay {
  position: relative;
  background: url(../images/connectbg.webp) center/cover no-repeat;
  padding: 0 0 0 60px;
  width: 1190px;
  border-radius: 30px;
  margin-bottom: -100px;
  z-index: 1;
}

.connectsub {
  position: absolute;
  bottom: 30px;
  left: -19rem;
  right: 0;
  margin: auto;
}

.connect-content .themeBtn {
  color: var(--primary);
  background-color: var(--white);
}

figure.connectimg {
  margin-top: -40px;
}

.connect-content .mainHead {
  color: #fff;
}

.connectsub1 {
  position: absolute;
  right: 0;
  top: -30px;
}

section.imag-sec {
  padding: 0 0 6rem 0;
}

section.philo-sec .swiper-button-next:after,
section.philo-sec .swiper-button-prev:after {
  display: none;
}

section.philo-sec .swiper-button-next {
  bottom: 0;
  top: unset;
  right: 18%;
}

section.philo-sec .swiper-button-next,
section.philo-sec .swiper-button-prev {
  bottom: 100px;
  top: unset;
  font-size: 2rem;
  color: var(--primary);
}

section.philo-sec .swiper-button-prev {
  left: unset;
  right: 21%;
}

footer {
  position: relative;
  background-color: #ece9e9;
  border-radius: 60px 60px 0 0;
  padding: 11rem 0 2rem;
}

footer .marquee span {
  color: rgb(224 222 223 / 62%);
}

section.connect-sec {
  padding: 6rem 0 0;
}

footer h2 {
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #3a3f4f;
  margin-bottom: 1rem;
}

ul.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

ul.footer-social li a {
  font-size: 15px;
  font-weight: bold;
  text-transform: capitalize;
  color: #3a1d1d;
}

ul.footer-list li a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #3a3f4f;
}

ul.footer-list span {
  color: #3a1d1d;
  font-weight: bold;
}

ul.footerlist {
  display: flex;
  flex-flow: column wrap;
  max-height: 130px;
  gap: 6px;
}

ul.footerlist li a {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #353535;
}

form.footer-form {
  margin: 2rem 0 1rem;
}

form.footer-form .form-control {
  height: 3.75rem;
  border: unset;
  background: transparent;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #353535;
  outline: unset;
  box-shadow: unset;
  border-bottom: 1px solid rgb(53 53 53 / 15%);
  border-radius: unset;
}

form.footer-form .form-group {
  position: relative;
}

form.footer-form .form-group a {
  position: absolute;
  right: 0;
  bottom: 0;
  height: fit-content;
  top: 0;
  margin: auto;
  color: #000;
}

.footer-right p {
  font-size: 15px;
  font-weight: 500;
  color: #353535;
}

.footer-right p a {
  text-decoration: underline !important;
  color: #353535;
}

ul.footer-icon li a {
  font-size: 1rem;
  font-weight: 500;
  color: #353535;
  text-decoration: underline !important;
}

ul.footer-icon {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

section.price-sec {
  background-color: #ece9e9;
  border-radius: 60px;
  z-index: 1;
  padding: 8rem 0 9rem;
}

section.price-sec .marquee span {}

section.price-sec .marquee span {
  color: rgb(215 212 214 / 30%);
}

.price-content p {
  color: #353535;
  width: 73%;
  margin: 1rem 0 1.5rem;
  line-height: 1.5;
}

.price-content h4 {
  font-size: 36px;
  font-weight: 400;
  text-transform: capitalize;
  color: #3a3f4f;
  margin-bottom: 1.75rem;
}

ul.price-list li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #353535;
}

ul.price-list {
  display: flex;
  flex-flow: column wrap;
  max-height: 114px;
  gap: 1rem;
}

.price-box figure h5 {
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #262626;
}

.price-box figure {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 1.125rem 1.875rem;
  box-shadow: 0 8px 14px 0 rgb(0 0 0 / 3%);
  border-radius: 12px;
}

.price-box a {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #07ea78;
}

.price-box a del {
  display: block;
  color: #696969;
  font-size: 13px;
}

.price-box+.price-box {
  margin: 1rem 0;
}

.priec-main h6 {
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  color: #3a1d1d;
  text-align: center;
  margin-bottom: 1.125rem;
}

.priec-main h6 span {
  color: var(--secondary);
}

.peice-btn {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
}

.peice-btn p {
  font-weight: 500;
  text-transform: capitalize;
  color: #353535;
  margin-bottom: 1rem;
}

.priec-main {
  position: relative;
}

.priec-main::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent, #ece9e9);
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}

.second-wrapp a:last-child:hover {
  background-color: var(--primary);
  color: var(--white);
}

.second-wrapp a:last-child:hover i {
  color: #fff;
}

ul.second-list li a:hover {
  color: var(--primary);
}

.themeBtn:hover {
  color: var(--white);
  background-color: var(--secondary);
}

ul.footerlist li a:hover {
  color: #000;
}

section.services-sec {
  padding: 9rem 0 6rem;
}

section.cutomer-sec {
  padding: 7rem 0 4rem;
}

.swiper.cutomerslider {
  padding-bottom: 6rem;
}

ul.expertlist {
  display: flex;
  flex-flow: column wrap;
  gap: 9px 1rem;
  max-height: 149px;
  margin: 1rem 0;
}

.mainBanner.inner-banner {
  padding: 7rem 0;
}

.thesis-contet p {
  font-size: 1rem;
  color: #444444;
  margin: 1rem 0 40px 0;
  width: 77%;
}

.thesis-contet {
  padding-left: 3rem;
}

.writing-wrap h4 {
  font-size: 1.5rem;
  color: #181818;
  width: 65%;
}

ul.whesislist li {
  font-size: 1.25rem;
  font-weight: 500;
  color: #181818;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-content ul li {
  margin-left: 2rem !important;
}

ul.whesislist li+li {
  margin-top: 1rem;
}

ul.whesislist {
  margin-top: 1rem;
}

ul.whesislist li i {
  color: var(--primary);
}

.writing-wrap {
  padding-left: 11rem;
}

section.thesis-writing {
  padding-top: 0;
}

section.thesis-section {
  padding-bottom: 2rem;
}

.assigntop p {
  font-size: 1rem;
  color: #353535;
  line-height: 1.7;
  width: 73%;
  text-align: center;
  margin: auto;
}

.assigntop {
  text-align: center;
  margin-bottom: 3rem;
}

.assigntop .mainHead {
  margin-bottom: 1rem;
}

.assigntop .mainHead span {
  font-weight: 600;
}

.assignwrps h4 {
  font-size: 30px;
  font-weight: 500;
  color: #3a3f4f;
  margin: 30px 0 15px 0;
}

.assignwrps p {
  font-size: 1rem;
  color: #353535;
  line-height: 1.74;
  margin-bottom: 1.5rem;
  width: 81%;
}

.assignwrps figure {
  background: #3a1d1d;
  width: fit-content;
  padding: 17px 24px;
  border-radius: 15px;
}

.assignwrps {
  box-shadow: 1px 4px 55px rgb(58 29 29 / 25%);
  padding: 40px;
  border-radius: 30px;
}

section.assignemnt-section::before {
  position: absolute;
  content: "";
  background: #ece9e9;
  width: 98%;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 60px;
  z-index: -1;
  top: 0;
}

.contactnumbers {
  background: #efefef;
  border-radius: 30px;
  padding: 50px 60px 120px;
}

.contactForm input {
  width: 100%;
  height: 55px;
  border-bottom: 1px solid #fff;
  border-top: unset;
  border-right: unset;
  border-left: unset;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  padding: 18px 15px;
  margin-bottom: 24px;
  border-radius: unset;
}

.contactForm textarea {
  width: 100%;
  border-bottom: 1px solid #fff;
  border-top: unset;
  border-right: unset;
  border-left: unset;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  /* padding: 18px 15px; */
  margin-bottom: 24px;
  /* resize: none; */
  height: 50px;
  border-radius: unset;
}

.contactForm input::placeholder {
  color: #fff;
}

.contactForm textarea::placeholder {
  color: #fff;
}

.contactForm {
  background: #3a1d1d;
  border-radius: 30px;
  padding: 61px 63px;
}

.contactForm h3 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.contactnumbers h2 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.contactnumbers ul li a {
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
}

.contactnumbers ul li+li {
  margin-top: 2rem;
}

.nav-item.drop-down>.nav-link::after {
  content: "\f107";
  font-size: 0.6em;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-item.drop-down.open>.nav-link::after {
  transform: rotate(180deg);
}

/* faqs section */

.faqs .mainHead {
  text-align: center;
  margin: 4rem 0 2rem;
  color: #000;
}

.rotate-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  display: inline-block;
  padding: 8px;
  background: #fff;
  color: #fff;
  border-radius: 50%;
}

button[aria-expanded="true"] .rotate-icon {
  transform: rotate(180deg);
}

.faqs .card {
  border: none;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faqs .card-header {
  background-color: var(--primary);
  border: none;
  border-radius: 6px 6px 0 0;
}

.faqs .btn-link {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Plus Jakarta Sans";
}

.faqs .card-body {
  background-color: #ffffff;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid #ddd;
}

.btn .fa-chevron-up:before {
  content: "\f077";
  color: var(--primary);
}

div#accordionExample .card {
  border-radius: 10px;
}

.price-content .themeBtn {
  border: unset;
  outline: unset;
  margin-top: 2rem;
}

ul.list-unstyled li {
  font-size: 1rem;
  color: #353535;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

h6.text-theme {
  font-size: 20px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.modal-footer button {
  outline: unset;
  border: unset;
}

PRIVACY SECTION START .privacy-content h2 {
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.privacy-content h3 {
  font-size: 2rem;
  font-weight: 500;
  margin: 1rem 0;
  font-family: "albra-trial-Regular.otf";
}

.privacy-content p {
  font-weight: 300;
  margin: 0.75rem 0;
  line-height: 1.6;
  color: #000;
}

.privacy-content span {
  font-weight: bold;
  color: #000;
}

ul.privacylist li {
  list-style: disc;
}

ul.privacylist li+li {
  margin: 10px 0;
}

ul.privacylist li a {
  font-weight: 400;
  color: #000;
}

.privacy-content h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

/* TERM-CONTENT END */

.thesis-section figure {
  text-align: center;
}

.thesis-writing figure img {
  width: 100% !important;
}

.grid_col {
  columns: 3;
  column-gap: 18px;
}

.explore_box {
  padding-bottom: 3.75rem;
  margin-bottom: 2rem;
  break-inside: avoid;
}

.explore_one {
  background-color: var(--primary);
  height: 404px;
  padding: 40px 24px 0px 40px;
  border-radius: 20px;
  margin-bottom: 2rem;
  break-inside: avoid;

}


:is(.explore_one h4, .explore_two h4) {
  color: #fff;
}

.explore_two {
  background-color: var(--primary);
  height: 428px;
  padding: 40px 24px 35px 40px;
  border-radius: 20px;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  break-inside: avoid;

}

.explore_two a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.32px;
}

.explore_two div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.explore_box p time {
  color: #565969;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

.explore_box h4 {
  color: #3A1D1D;
  font-weight: 400;
  font-size: 26px;
}

.explore_box p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #565969;
  line-height: 26px;
  margin: 0.5rem 0;
}

.explore_box a {
  color: #3A1D1D;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.32px;
}


/* form details */
.blog_form {
  background: #ece9e9;
  padding: 3rem 2rem;
  border-radius: 10px;
}

.blog_form h3 {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-align: center;
}

.blog_form h6 {
  color: #000;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.blog_form h6 span {
  color: var(--primary);
  font-weight: 600;
}

.blog_form form button {
  margin: 1rem 0;
  border: unset;
  outline: unset;
  white-space: nowrap;
}

.blog_form form .form-control {
  box-shadow: unset;
  border: unset;
  height: 60px;
  outline: var(--primary);
}

.blog_form form .form-control:focus {
  border: 2px solid var(--primary);
}

.calender {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.calender h6 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-style: italic;
}

.blog_content h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.blog_content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.blog_content h6 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog_content ul {
  margin-bottom: 1rem;
}