:root {
  --color-1: #a10303;
  --color-2: #a10303;
  --color-3: #0f0f0f;
  --color-4: #3c3c3c;
  --white--: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none !important;
  outline: 0;
  transition: all 0.4s linear;
}

body {
  overflow-x: hidden;
}

a,
input,
label,
li,
p,
textarea,
ul {
  font-family: Outfit, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Outfit, sans-serif;
  margin: 0;
}

#cover-spin {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  display: none;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

#cover-spin::after {
  content: "";
  display: block;
  position: absolute;
  left: 48%;
  top: 40%;
  width: 120px;
  height: 120px;
  border-style: solid;
  border-color: #112229;
  border-top-color: var(--color-1);
  border-bottom-color: #fff;
  border-width: 8px;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}

.myprev {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white--);
  color: var(--color-1);
  font-size: 30px;
  border-radius: 30px;
}

.writerSlider .pegination .myprev {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-1);
  color: var(--white--);
  font-size: 30px;
  border-radius: 30px;
}

.writerSlider .pegination .mynext {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-1);
  color: var(--white--);
  font-size: 30px;
  border-radius: 30px;
}

.mynext {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white--);
  color: var(--color-1);
  font-size: 30px;
  border-radius: 30px;
}

.main-header {
  background-image: url(../../assets/images/header-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.navbar-nav .nav-link {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 3px;
}

.navbar-nav .dropdown-menu a:hover {
  background: var(--color-1);
  color: var(--white--);
}

.navbar-nav a:hover {
  color: #a10303;
}

.navbar-nav a:focus {
  color: var(--color-1);
}

.navbar-nav .nav-link.active {
  color: #f6cf27;
}

.navbar .nav-item a.order-btn {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  position: relative;
  padding: 8px 55px 8px 15px;
  border-radius: 41px;
  transition: 0.2s linear;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}

.navbar a.order-btn:hover {
  color: #fff;
}

.fixed {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
}

.navbar.scrollTop.fixed .nav-item a.order-btn {
  background: #fff;
  color: #000;
}

.order-btn .fa-arrow-right {
  background: var(--color-1);
  padding: 8px 8px;
  border-radius: 41px;
  color: #fff;
  position: absolute;
  right: 6px;
}

.order-btn:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: var(--color-1);
  left: 0;
  top: 0;
  border-radius: 41px;
  z-index: -1;
  transition: 0.2s linear;
}

.order-btn:hover::before {
  width: 95%;
}

.navbar .nav-item a.login {
  background: var(--color-1);
  position: relative;
  padding: 8px 65px 8px 20px;
  border-radius: 41px;
  transition: 0.2s linear;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}

.navbar .nav-item a.login:hover {
  color: #fff;
}

.navbar .nav-item a.login .fa-user {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  padding: 8px 9px;
  border-radius: 100%;
  color: #fff;
  position: absolute;
  right: 6px;
}

.navbar .nav-item a.login:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  left: 0;
  top: 0;
  border-radius: 41px;
  z-index: -1;
  transition: 0.2s linear;
}

.navbar .nav-item a.login:hover::before {
  width: 95%;
}

.service-header {
  background-image: url(../../assets/images/service-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-header p.header-service {
  font-size: 8rem;
  line-height: 1;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--color-1);
  opacity: 0.6;
  font-family: "Source Sans", sans-serif;
}

.main-header h1 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  margin: 0;
}

.main-header h1 span {
  background-image: linear-gradient(to right, #00000000, #a10303);
  border-top-right-radius: 41px;
  border-bottom-right-radius: 41px;
  padding: 3px 10px 5px 4px;
}

.main-header p {
  color: #fff;
  line-height: 1.8;
  margin: 0;
}

.main-header .col-lg-7 ul li {
  flex: 48%;
}

.button-1 {
  background-color: var(--color-1);
  position: relative;
  padding: 8px 50px 8px 15px;
  border-radius: 41px;
  transition: 0.2s linear;
  z-index: 1;
  color: var(--white--);
  font-weight: 700;
  font-size: 17px;
}

.button-1:hover {
  color: #fff;
}

.button-1 .fa-arrow-right {
  background: var(--white--);
  padding: 8px 9px;
  border-radius: 100%;
  color: var(--color-3);
  position: absolute;
  right: 9px;
}

.button-1:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  left: 0;
  top: 0;
  border-radius: 41px;
  z-index: -1;
  transition: 0.2s linear;
}

.button-1:hover::before {
  width: 95%;
}

.button-2 {
  border: none;
  background: var(--color-1);
  position: relative;
  padding: 8px 50px 8px 15px;
  border-radius: 41px;
  transition: 0.2s linear;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  width: fit-content;
}

.button-2:hover {
  color: #fff;
}

.button-2 .fa-arrow-right {
  background: var(--white--);
  padding: 8px 9px;
  border-radius: 100%;
  color: #000;
  position: absolute;
  right: 9px;
}

.button-2:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: var(--color-3);
  left: 0;
  top: 0;
  border-radius: 41px;
  z-index: -1;
  transition: 0.2s linear;
}

.button-2:hover::before {
  width: 95%;
}

.header-button a h6 {
  font-family: "Source Sans Pro", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  margin: 0;
}

.main-header .d-flex li {
  flex: 28%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.main-header .d-flex li svg {
  color: #fff;
}

.main-header .header-girl {
  position: relative;
  right: 2.3rem;
  bottom: 0;
  max-width: 397px;
  height: 100%;
}

.form-bg {
  background: var(--white--);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.form-bg .ordernow {
  position: relative;
  font-size: 8rem;
  line-height: 1;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ced4da;
  opacity: 0.5;
  margin: 0;
  left: -8rem;
  font-family: "Source Sans", sans-serif;
  top: 1rem;
}

.form-bg span.fw-semibold {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  color: #fff;
  width: fit-content;
  display: block;
}

.form-bg h3 {
  font-weight: 600;
  margin: 0;
  font-size: 1.65rem;
}

.form-bg p {
  color: var(--color-3);
}

.form-bg .header-button h6 {
  font-family: "Source Sans Pro", sans-serif;
  color: var(--color-3);
  font-weight: 600;
  font-size: 22px;
  margin: 0;
}

.form-bg select {
  background: 0 0;
  border: 1px solid #ced4da;
  padding: 12px 10px;
  color: var(--color-4);
  font-weight: 400;
  width: 100%;
}

.btnmerger {
  border: 1px solid #ced4da;
}

.form-bg .form-control:disabled {
  background: 0 0;
  border: none;
  text-align: center;
  padding: 12px 10px;
}

.btnmerger .minus {
  background: 0 0;
  border: none;
}

.btnmerger .plus {
  background: 0 0;
  border: none;
}

.feature-bg-about {
  background-image: url(../../assets/images/features-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.feature-bg-about ul li svg {
  color: #fff;
}

.feature-bg {
  background-image: url(../../assets/images/features-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.feature-bg:before {
  content: "FEATURES";
  position: absolute;
  right: -14.5rem;
  bottom: 16rem;
  transform: rotate(270deg);
  height: 150px;
  width: 626px;
  font-size: 10rem;
  line-height: 1;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #ced4da;
  opacity: 0.8;
}

.feature-bg li {
  flex: 40%;
  line-height: 2.5;
  font-size: 14px;
}

.feature-bg li svg {
  color: #fff;
}

.feature-bg .col-lg-5 {
  margin-left: 75px;
}

.feature-bg h4 {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  width: fit-content;
}

.feature-bg .boxes .box {
  flex: 31%;
  height: 180px;
}

.feature-bg .feature-icon {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  width: 80px;
  height: 80px;
  margin: auto;
}

.feature-bg .box:hover {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  color: var(--white--);
  font-weight: 800;
}

.feature-bg .box:hover .feature-icon {
  background: linear-gradient(180deg,
      #a10303 11%,
      #a10303 78%);
  color: #fff;
}

.cta {
  background-image: url(../../assets/images/cta.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta .text-white {
  background: #a10303;
  width: fit-content;
}

.main-subjects {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  position: relative;
  z-index: 1;
}

.subject-slider p {
  content: "SUBJECTS, SERVICES, DIPLOMA";
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--color-1);
  opacity: 0.5;
  text-align: center;
}

.main-subjects .swiper-slide {
  height: auto;
}

.main-subjects .subject-box-1 {
  background: linear-gradient(180deg,
      rgba(15, 15, 15, 1) 25%,
      rgba(60, 60, 60, 1) 75%);
  height: 100%;
}

.main-subjects .subject-heading {
  writing-mode: vertical-lr;
  background: var(--color-1);
}

.main-subjects .subject-box-1 p.h5 {
  font-size: 40px;
  text-align: center;
  font-family: "Source sans", sans-serif;
  padding-top: 4px;
}

.main-subjects .subject-box-1 h5 {
  font-size: 40px;
  text-align: center;
  font-family: "Source sans", sans-serif;
  padding-top: 4px;
}

.main-subjects .subject-div {
  text-orientation: mixed;
}

.pricing {
  background-image: url(../../assets/images/home-price-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pricing span {
  background: var(--color-1);
  width: fit-content;
}

.pricing .vl {
  width: 2px;
  height: 55px;
  background-color: var(--color-4);
}

.pricing .button-2 i {
  background: var(--color-1);
}

.pricing h6 {
  font-family: "Source sans", sans-serif;
}

.pricing p {
  line-height: 1;
}

.pricing-content p {
  text-align: end;
}

.pricing-box:hover {
  background: linear-gradient(180deg,
      rgba(15, 15, 15, 1) 25%,
      rgba(60, 60, 60, 1) 75%);
}

.pricing-box:hover h6 {
  color: var(--color-1);
}

.pricing-box:hover h4 {
  color: #fff;
}

.pricing-box:hover .m-0 {
  color: var(--white--);
}

.pricing-box:hover .pricing-para p {
  color: #fff;
}

.pricing-box:hover .pricing-cta p {
  color: #fff;
}

.pricing .button-2.mt-lg-4 {
  width: fit-content;
}

.testimonials {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
}

.testimonial-review {
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  background: #fff;
  padding: 3rem;
}

.testimonials .fa-star {
  color: #ffdf00;
}

.testimonials .fa-quote-left {
  font-size: 9rem;
  position: absolute;
  top: -1rem;
  right: 3rem;
  color: var(--color-1);
  z-index: -1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-content::before {
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
  content: "";
  background: var(--color-1);
  position: absolute;
  height: 100%;
  width: 50rem;
  z-index: -1;
  left: -9rem;
  top: 0;
}

.testimonial-content span {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  width: fit-content;
}

.point {
  background: url(../../assets/images/point-section.webp);
}

.point li {
  line-height: 2.5;
}

.point li object {
  vertical-align: middle;
}

.point .col-lg-4 img {
  max-width: 555px;
  position: relative;
  right: -2rem;
  bottom: -3px;
}

.why-chose-us {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
}

.why-chose-us .col-lg-4 h4 {
  background-color: var(--color-2);
  color: var(--white--);
}

.why-chose-us h6 {
  color: var(--color-1);
}

.main-writer {
  background: #eaeaea;
}

.main-writers span.text-white {
  background: var(--color-1);
  width: fit-content;
}

.writers {
  position: relative;
}

.writer-image {
  display: block;
  width: 100%;
  height: auto;
  border-top-right-radius: 65px;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
}

.swiper-slide-active .writers .overlay {
  height: 100%;
}

.writer-box {
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.writer-info {
  padding: 20px;
  border: 1px solid #ced4da;
  border-top-right-radius: 65px;
}

.main-writers .writer-subjects {
  writing-mode: vertical-lr;
  background: var(--color-1);
}

.main-writers .writer-heading {
  text-orientation: mixed;
}

.main-writers .overlay h5 {
  color: transparent;
  line-height: 1;
  font-size: 47px;
  text-align: center;
  font-family: "Source sans", sans-serif;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--white--);
  opacity: 0.4;
}

.scroll-container {
  background-image: url(../../assets/images/content-section.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.scroll-content {
  height: 300px;
  overflow-y: auto;
}

.scroll-content::-webkit-scrollbar {
  width: 10px;
}

.scroll-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.scroll-content::-webkit-scrollbar-thumb {
  background-color: var(--color-2);
  outline: 0.5px solid var(--color-4);
}

.process {
  background: #eaeaea;
  position: relative;
  z-index: 1;
}

.process .swiper-slide {
  margin: 0;
}

.process-img {
  height: 10rem;
  width: 10rem;
  background: var(--color-1);
}

.process-img object:hover {
  transform: rotate(360deg);
}

.process-box {
  height: 12rem;
  width: 12rem;
  margin: auto;
}

.home-line {
  position: absolute;
  top: -30px;
  min-width: 100%;
  left: 0;
  right: 0;
}

.footer {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
}

.footer .quicklinks {
  /*background-color: var(--color-1);*/
  width: fit-content;
}

.footer .footer-links object {
  vertical-align: middle;
}

.footer .footer-links li {
  line-height: 2.5;
}

.footer .footer-links li svg {
  color: #fff;
  padding-right: 10px;
}

.footer .footer-social i {
  padding: 10px;
}

.footer .footer-social .fa-facebook-f {
  padding: 10px 13px;
}

.footer .footer-social .fa-x-twitter {
  padding: 10px 13px;
}

.footer .footer-social .fa-instagram {
  padding: 10px 13px;
}

.footer .footer-social .fa-linkedin-in {
  padding: 10px 13px;
}

.footer li a {
  color: #fff;
}

.footer-last {
  background: var(--color-1);
}

.about-bg {
  background-image: url(../../assets/images/about-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-form h2 {
  background: 0 0;
}

.about-content {
  background: url(../../assets/images/point-section.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-content-2 {
  background-image: url(../../assets/images/about-book-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-content-2 span {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  color: #fff;
  display: block;
  width: fit-content;
}

.service-content {
  background-image: url(../../assets/images/service-content.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-girl {
  position: relative;
}

.service-content li {
  flex: 45%;
}

.order-bg {
  background-image: url(../../assets/images/order-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-order {
  background-image: url(../../assets/images/main-order-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-order h3 {
  background-color: var(--color-2);
  width: fit-content;
}

.main-order h5 {
  background-color: var(--color-2);
  width: fit-content;
  padding: 5px 15px;
  border-radius: 20px;
}

.main-order label {
  color: #fff;
  padding-bottom: 15px;
}

.main-order select {
  background: 0 0;
  margin-bottom: 30px;
  appearance: auto;
}

.main-order select:hover {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
}

.main-order option {
  color: var(--color-4);
}

.main-order select:focus {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  border: none;
  box-shadow: none;
}

.main-order input {
  background: 0 0;
  margin-bottom: 30px;
}
.main-order input::placeholder,.main-order textarea::placeholder{
  color: #fff;
}
.main-order .form-control{
  color: #fff;
}

.main-order input:hover {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
}

.main-order input:focus {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  border: none;
  box-shadow: none;
}

.main-order textarea {
  background: 0 0;
  margin-bottom: 30px;
}

.main-order textarea:hover {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
}

.main-order textarea:focus {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  border: none;
  box-shadow: none;
}

.order-summary {
  background-color: var(--color-1);
  color: #fff;
}

.order-aside {
  position: sticky;
  top: 150px;
}

.review-bg {
  background-image: url(../../assets/images/review-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.review-section {
  background-color: #f5f5f5;
}

.review-subject {
  writing-mode: vertical-lr;
  background: var(--color-1);
}

.review-heading {
  color: #fff;
  text-orientation: mixed;
}

.main-reviews .review-subject h5 {
  font-size: 47px;
  font-family: "Source sans", sans-serif;
  text-align: center;
}

.main-reviews .swiper-slide {
  height: auto;
}

.main-review-info img {
  width: 30%;
  height: 30%;
}

.review-box {
  height: 100%;
  border-top: 3px solid #ced4da;
}

.price-bg {
  background-image: url(../../assets/images/price-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.price-section {
  background-color: #f5f5f5;
}

.main-pricing {
  background-image: url(../../assets/images/main-order-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-pricing h4 {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
}

.price-list {
  background: var(--color-1);
  color: #fff;
}

.fixedbtnwhatsapp {
  position: fixed;
  bottom: 1em;
  left: 2em;
  z-index: 999999;
}

.fixedbtnwhatsapp img {
  display: block;
}

.fixedbtnwhatsapp img.offerimg {
  transition: 0.2s linear;
  animation: Myanimation 3s ease-in-out infinite;
}

@keyframes Myanimation {
  10% {
    transform: rotate(-60deg) scale(1.2);
  }

  30% {
    transform: rotate(-30deg) scale(1.1);
  }

  50% {
    transform: rotate(-40deg) scale(1.1);
  }
}

/* 404 Page */

.error-page {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
}

.error-page h1 {
  font-size: 10rem;
}

.error-header {
  background: var(--color-4);
}

.error-page a {
  background: var(--color-1);
  position: relative;
  padding: 10px 65px 10px 20px;
  border-radius: 41px;
  transition: 0.2s linear;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  width: fit-content;
  margin: auto;
}

.error-page a:hover {
  color: #fff;
}

.error-page a .fa-arrow-right {
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  padding: 8px 9px;
  border-radius: 100%;
  color: #fff;
  position: absolute;
  right: 6px;
}

.error-page a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(60, 60, 60, 1) 7%,
      rgba(15, 15, 15, 1) 94%);
  left: 0;
  top: 0;
  border-radius: 41px;
  z-index: -1;
  transition: 0.2s linear;
}

.error-page a:hover::before {
  width: 98%;
}

.process-box {
  border: 5.5px solid var(--color-1);
}

.fotter-payment {
  flex: 1;
}

.main-pricing .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: #fff;
}

ul.nullItmes li {
  flex: 30%;
}
.pricing-para p.h4 {
    font-weight: 700;
    font-size: 18px;
    padding-top: 5px;
}
.guarante-content p.h6 {
    color: #fff;
}