@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
body {
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

a {
  text-decoration: none;
}

.font-dm {
  font-family: "DM Sans", sans-serif;
}

.font-jakarta {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.primary-text {
  color: #8C1515;
}

.secondery-text {
  color: #FCEEED;
}

.text-black {
  color: #090202 !important;
}

.text-gray {
  color: #595959;
}

.primary-bg {
  background: #8C1515;
}

.bg-primary-shade {
  background: #DA9E97;
}

.secondery-bg {
  background: #FCEEED;
}

.bg-light-blue {
  background: #C0FCF9;
}

.bg-pink {
  background: #FFCCEE;
}

.bg-shade-blue {
  background: #95D3FF;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

.fs-32 {
  font-size: 32px;
}

.fs-36 {
  font-size: 36px;
}

.fs-40 {
  font-size: 40px;
}

.fs-44 {
  font-size: 44px;
}

.fs-48 {
  font-size: 48px;
}
@media (max-width: 575px) {
  .fs-48 {
    font-size: 32px;
  }
}

.fs-68 {
  font-size: 68px;
}
@media (max-width: 575px) {
  .fs-68 {
    font-size: 42px;
  }
}

.min-h-100vh {
  min-height: 100vh;
}

.z-3 {
  z-index: 3;
}

.mb-22px {
  margin-bottom: 22px;
}

.mb-24px {
  margin-bottom: 24px;
}

.mb-32px {
  margin-bottom: 32px;
}

.mb-35px {
  margin-bottom: 35px;
}

.py-96px {
  padding: 96px 0;
}
@media (max-width: 575px) {
  .py-96px {
    padding: 48px 0;
  }
}

@media (min-width: 1700px) {
  .custom-container {
    max-width: 1640px;
  }
}

@media (min-width: 1400px) {
  .sml-container {
    max-width: 1340px;
  }
}

.heading-big {
  font-size: 68px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .heading-big {
    font-size: 48px;
  }
}

.medium-heading {
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 767px) {
  .medium-heading {
    font-size: 28px;
  }
}

.button {
  padding: 16px 32px;
  transition: all 0.3s ease-in;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 575px) {
  .button {
    padding: 10px 22px;
  }
}
.button__primary {
  background: #8C1515;
  color: #fff;
  border: 1px solid #8C1515;
}
.button__primary:hover {
  opacity: 0.8;
}
.google-login {
  margin-top: 56px;
  margin-bottom: 44px;
}
@media (min-width: 991px) and (max-height: 750px) {
  .google-login {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 575px) {
  .google-login {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
.google-login .google-btn {
  border: 1px solid #898989;
  background: #fff;
  border-radius: 8px;
  display: block;
  color: #090202;
  font-family: "DM Sans", sans-serif;
}

.show-pass {
  position: relative;
}
.show-pass .toggle-btn {
  position: absolute;
  top: 7px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: #F3F3F3;
  border: none;
  box-shadow: none;
}
.show-pass .toggle-btn svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.show-pass .toggle-btn:active, .show-pass .toggle-btn:focus {
  background: #F3F3F3;
  outline: none;
  box-shadow: none;
}
.show-pass .toggle-btn .slash-eye {
  display: none;
}
.show-pass .toggle-btn.eye-slash .eye {
  display: none;
}
.show-pass .toggle-btn.eye-slash .slash-eye {
  display: block;
}

.login-section__content {
  min-height: 100vh;
}
.login-section__left {
  flex: 1;
}
.login-section__left img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 100vh;
  width: 100%;
}
.login-section__right {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 20px 110px;
  display: flex;
  align-items: center;
  flex: 1;
}
@media (max-width: 1399px) {
  .login-section__right {
    padding: 20px 20px 20px 50px;
  }
}
@media (max-width: 1199px) {
  .login-section__right {
    padding: 20px;
  }
}
.login-section__right .button__primary {
  border-radius: 8px;
  margin-bottom: 24px;
}
.login-section__right .continue-line {
  text-align: center;
  margin-bottom: 56px;
}
@media (min-width: 991px) and (max-height: 750px) {
  .login-section__right .continue-line {
    margin-bottom: 32px;
  }
}
@media (max-width: 575px) {
  .login-section__right .continue-line {
    margin-bottom: 32px;
  }
}
.login-section__right .continue-line p {
  background: white;
  position: relative;
  display: inline-block;
  z-index: 2;
  padding: 0 16px;
}
.login-section__right .line {
  width: 100%;
  height: 1px;
  background: #090202;
  position: absolute;
  top: 12px;
}
.login-section__right .blur-bg {
  width: 490px;
  height: 490px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -286px;
  filter: blur(300px);
  z-index: -1;
}
@media (max-width: 1860px) {
  .login-section__right .blur-bg {
    right: -386px;
  }
}
@media (max-width: 1600px) {
  .login-section__right .blur-bg {
    right: -556px;
  }
}
@media (max-width: 1199px) {
  .login-section__right .blur-bg {
    right: -356px;
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 991px) {
  .login-section__right .blur-bg {
    right: -356px;
    width: 200px;
    height: 200px;
  }
}
.login-section__right .blur-bg.blur1 {
  background: #FCEEED;
  bottom: 60px;
}
.login-section__right .blur-bg.blur2 {
  background: #A1FBE5;
  top: 60px;
}
.login-section .login-content {
  max-width: 502px;
  width: 100%;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .login-section .login-content {
    margin: auto;
  }
}

.form-group {
  margin-bottom: 16px;
}
.form-group input,
.form-group textarea {
  height: 56px;
  border-radius: 8px;
  background: #F3F3F3;
  display: block;
  padding: 16px;
  border: 1px solid #F3F3F3;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}

.agree {
  position: relative;
  display: flex;
  align-items: center;
}
.agree p {
  margin-left: 17px;
  color: #090202;
  font-size: 18px;
  margin-bottom: 0;
}
.agree input {
  position: absolute;
  left: 0;
  width: 25px;
  height: 25px;
  opacity: 0;
  cursor: pointer;
}
.agree input:checked ~ span {
  background: #A1FBE5;
}
.agree input:checked ~ span svg {
  display: block;
}
.agree span {
  width: 24px;
  height: 24px;
  background: #F3F3F3;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.agree span svg {
  display: none;
}

@media (min-width: 991px) and (max-height: 870px) {
  .signup .login-section__right .continue-line {
    margin-bottom: 20px;
  }
  .signup .google-login {
    margin-top: 28px;
    margin-bottom: 22px;
  }
}
@media (min-width: 991px) and (max-height: 750px) {
  .signup .login-section__left img {
    max-height: initial;
  }
}

.icon-back {
  position: absolute;
  top: 20px;
  left: 20px;
}

@media (max-width: 991px) {
  .analyxus-nav .navbar-toggler {
    order: 3;
  }
}
@media (max-width: 991px) {
  .analyxus-nav .nav-item {
    max-width: -moz-max-content;
    max-width: max-content;
    margin-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .analyxus-nav .nav-item {
    margin-right: 60px;
    padding: 29px 0;
  }
}
@media (max-width: 991px) {
  .analyxus-nav .nav-item .nav-link {
    color: #fff;
  }
}
.analyxus-nav .nav-item:last-child {
  margin-right: 0;
}
.analyxus-nav .dropdown-menu {
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0;
  width: 204px;
  padding: 24px;
  top: 100%;
  margin: 0;
}
.analyxus-nav .dropdown-menu.show {
  border-color: #8C1515;
}
.analyxus-nav .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  border-color: #8C1515;
}
.analyxus-nav .dropdown-item {
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  white-space: initial;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 16px;
  color: #090202;
}
.analyxus-nav .dropdown-item:hover {
  color: #8C1515;
  background: none;
}
.analyxus-nav .dropdown .dropdown-toggle::after {
  display: none;
}
.analyxus-nav .dropdown .nav-link {
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 991px) {
  .analyxus-nav .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: #090202;
    z-index: 9;
    overflow-y: auto;
  }
}
@media (min-width: 992px) {
  .analyxus-nav .btn-close {
    display: none;
  }
}
@media (max-width: 991px) {
  .analyxus-nav .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
  }
}

.dropdown-menu {
  transition: all 0.5s ease-in-out;
}

@media (min-width: 992px) {
  .navbar-spacing {
    padding: 0;
    height: 88px;
  }
}

.banner-sapcing {
  padding: 20px;
}
@media (min-width: 992px) {
  .banner-sapcing {
    padding: 30px 20px;
  }
}

.banner-section {
  flex: 1;
}
.banner-section__content {
  max-width: 860px;
  position: relative;
  z-index: 1;
}
.banner-section__content .para {
  max-width: 690px;
}
.banner-section__content__button {
  margin-top: 40px;
}

.blur-effect {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #A1FBE5;
  border-radius: 50%;
  filter: blur(300px);
}
.blur-effect.blur-right {
  right: -150px;
}
.blur-effect.blur-left {
  left: -150px;
}

.top-section {
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
}

.top-video-section {
  padding: 32px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .top-video-section {
    padding: 20px;
  }
}
.top-video-section iframe {
  border-radius: 16px;
}
@media (max-width: 575px) {
  .top-video-section iframe {
    height: 200px;
  }
}
@media (min-width: 992px) {
  .top-video-section .sml-container {
    max-width: 860px;
  }
}
.top-video-section .medium-heading {
  font-size: 30px;
  margin-bottom: 24px;
  word-break: break-all;
}
@media (max-width: 767px) {
  .top-video-section .medium-heading {
    font-size: 24px;
  }
}

.video-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section .video {
  border-radius: 16px;
}
@media (max-width: 991px) {
  .video-section .video {
    height: 390px;
  }
}
@media (max-width: 767px) {
  .video-section .video {
    height: 300px;
  }
}
@media (max-width: 575px) {
  .video-section .video {
    height: 200px;
  }
}
.video-section .medium-heading {
  margin-bottom: 72px;
}
@media (max-width: 767px) {
  .video-section .medium-heading {
    word-break: break-all;
  }
}
@media (max-width: 575px) {
  .video-section .medium-heading {
    margin-bottom: 32px;
  }
}

.video-sec-spacing {
  padding: 60px;
}
@media (max-width: 767px) {
  .video-sec-spacing {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .video-sec-spacing {
    min-height: 100%;
    padding: 40px 20px;
  }
}

.slider .carousel-item .item-body {
  display: flex;
}
@media (max-width: 575px) {
  .slider .carousel-item .item-body {
    flex-direction: column;
  }
}
.slider .carousel-item__left, .slider .carousel-item__right {
  flex: 1;
}
.slider .carousel-item__right img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider .carousel-item__left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
}
.slider .carousel-item__left .list-item {
  margin-bottom: 40px;
}
.slider .carousel-item__left .list-item li {
  color: #595959;
  font-size: 24px;
  font-family: "DM Sans", sans-serif;
}
.slider .carousel-indicators {
  top: -90px;
}
@media (max-width: 575px) {
  .slider .carousel-indicators {
    top: -60px;
  }
}
.slider .carousel-indicators button {
  width: 32px;
  height: 32px;
  border: 0;
  background: #D9D9D9;
  border-radius: 50%;
  margin: 0;
  margin-right: 40px;
}
@media (max-width: 575px) {
  .slider .carousel-indicators button {
    width: 18px;
    height: 18px;
    margin-right: 20px;
  }
}
.slider .carousel-indicators button:last-child {
  margin-right: 0;
}
.slider .carousel-indicators button.active {
  background: #8C1515;
}
.slider .carousel {
  margin-top: 130px;
}
@media (max-width: 575px) {
  .slider .carousel {
    margin-top: 90px;
  }
}
@media (min-width: 576px) {
  .slider .carousel-control-prev,
  .slider .carousel-control-next {
    width: 80px;
    height: 80px;
    margin: auto;
  }
}
@media (min-width: 576px) and (max-width: 1600px) {
  .slider .carousel-control-prev,
  .slider .carousel-control-next {
    width: 30px;
    height: 30px;
  }
}
.slider .carousel-control-prev {
  left: -100px;
}
@media (max-width: 1600px) {
  .slider .carousel-control-prev {
    left: -75px;
  }
}
@media (max-width: 1500px) {
  .slider .carousel-control-prev {
    left: -60px;
  }
}
@media (max-width: 1450px) {
  .slider .carousel-control-prev {
    left: -35px;
  }
}
@media (max-width: 575px) {
  .slider .carousel-control-prev {
    left: 0;
  }
}
.slider .carousel-control-next {
  right: -100px;
}
@media (max-width: 1600px) {
  .slider .carousel-control-next {
    right: -75px;
  }
}
@media (max-width: 1500px) {
  .slider .carousel-control-next {
    right: -60px;
  }
}
@media (max-width: 1450px) {
  .slider .carousel-control-next {
    right: -35px;
  }
}
@media (max-width: 575px) {
  .slider .carousel-control-next {
    right: 0;
  }
}

.slider-spacing {
  margin-top: 50px;
}
@media (max-width: 575px) {
  .slider-spacing {
    margin-top: 40px;
  }
}

.tools-spacing {
  margin-top: 120px;
  margin-bottom: 120px;
}
@media (max-width: 575px) {
  .tools-spacing {
    margin: 40px 0;
  }
}

.example-section .example-left__content {
  max-width: 558px;
}

.tools-tabs .nav-pills {
  width: 660px;
  height: 660px;
  border: 30px solid #8C1515;
  border-radius: 50%;
  position: absolute;
  left: -420px;
  flex-direction: column;
  align-items: end;
}
@media (max-width: 1860px) {
  .tools-tabs .nav-pills {
    left: -460px;
  }
}
@media (max-width: 1450px) {
  .tools-tabs .nav-pills {
    top: -100px;
  }
}
@media (max-width: 1399px) {
  .tools-tabs .nav-pills {
    top: -190px;
  }
}
@media (max-width: 767px) {
  .tools-tabs .nav-pills {
    position: initial;
    height: initial;
    width: 100%;
    background: transparent;
    border: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }
}
.tools-tabs .nav-pills button {
  width: 98px;
  height: 98px;
  background: #FCEEED;
  mix-blend-mode: normal;
  box-shadow: 0px 6px 20px rgba(252, 238, 237, 0.3);
  border-radius: 50%;
  position: absolute;
  z-index: 4;
  font-size: 24px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #090202;
}
@media (max-width: 767px) {
  .tools-tabs .nav-pills button {
    position: initial;
  }
}
@media (max-width: 575px) {
  .tools-tabs .nav-pills button {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
.tools-tabs .nav-pills button span {
  opacity: 0.5;
}
.tools-tabs .nav-pills button::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.3215686275);
}
@media (max-width: 767px) {
  .tools-tabs .nav-pills button::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .tools-tabs .nav-pills button::before {
    display: none;
  }
}
.tools-tabs .nav-pills button.active {
  width: 132px;
  height: 132px;
  background: #A1FBE5;
  color: #090202;
}
@media (max-width: 575px) {
  .tools-tabs .nav-pills button.active {
    width: 90px;
    height: 90px;
  }
}
.tools-tabs .nav-pills button.active span {
  opacity: 1;
}
.tools-tabs .nav-pills button.active::after {
  height: 0 !important;
}
.tools-tabs .nav-pills button.active::before {
  height: 0 !important;
}
.tools-tabs .nav-pills li:nth-child(1) button {
  top: 20px;
  right: 35px;
  z-index: 3;
}
.tools-tabs .nav-pills li:nth-child(1) button::after {
  width: 92px;
  height: 170px;
  top: -127px;
  right: 102px;
  transform: rotate(-60deg);
}
.tools-tabs .nav-pills li:nth-child(1) button.active {
  right: 6px;
}
.tools-tabs .nav-pills li:nth-child(2) button {
  bottom: 160px;
  right: -42px;
  z-index: 2;
}
.tools-tabs .nav-pills li:nth-child(2) button::after {
  width: 143px;
  height: 259px;
  bottom: 100%;
  right: -8px;
  transform: rotate(10deg);
}
.tools-tabs .nav-pills li:nth-child(2) button::before {
  content: "";
  position: absolute;
  width: 49px;
  height: 70px;
  bottom: -66px;
  right: 47px;
  transform: rotate(15deg);
  background: rgba(255, 255, 255, 0.3215686275);
}
.tools-tabs .nav-pills li:nth-child(2) button.active {
  right: -60px;
}
.tools-tabs .nav-pills li:nth-child(3) button {
  bottom: 36px;
  right: 35px;
}
.tools-tabs .nav-pills li:nth-child(3) button::after {
  width: 75px;
  height: 156px;
  transform: rotate(38deg);
  top: 60px;
  left: -79px;
}
.tools-tabs .nav-pills li:nth-child(3) button.active::after {
  height: 0 !important;
}
.tools-tabs .nav-pills li:nth-child(3) button.active {
  bottom: 4px;
  right: 17px;
}
@media (max-width: 1799px) {
  .tools-tabs .tab-content {
    width: 90%;
    margin-left: auto;
  }
}
@media (max-width: 1799px) {
  .tools-tabs .tab-content {
    width: 85%;
  }
}
@media (max-width: 1299px) {
  .tools-tabs .tab-content {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .tools-tabs .tab-content {
    width: 100%;
  }
}
.tools-tabs .tab-content .left {
  max-width: 558px;
}
@media (max-width: 1799px) {
  .tools-tabs .tab-content .left {
    margin-right: 20px;
  }
}
@media (max-width: 1299px) {
  .tools-tabs .tab-content .left {
    max-width: 450px;
  }
}
@media (max-width: 991px) {
  .tools-tabs .tab-content .left {
    max-width: 330px;
  }
}
@media (max-width: 767px) {
  .tools-tabs .tab-content .left {
    max-width: 100%;
    margin-bottom: 16px;
  }
}

.package-button {
  display: inline-flex;
  align-items: center;
  border: 1px solid #1AECBA;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 40px;
}
.package-button__item {
  position: relative;
  display: inline-block;
}
.package-button__item input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.package-button__item input:checked ~ span {
  background: #1AECBA;
  color: #fff;
}
.package-button__item span {
  display: inline-block;
  background: #fff;
  color: #090202;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.inner-heading {
  background: linear-gradient(90.12deg, #F9EEED 0.84%, #D5F3EA 110.91%);
  padding: 110px 0;
}

.pricing__body {
  margin-top: 96px;
}
.pricing__body__heading {
  max-width: 630px;
}
.pricing__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
}
@media (max-width: 1199px) {
  .pricing__box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .pricing__box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pricing__box .tag {
  top: 0;
  right: 16px;
  background: #1AECBA;
  padding: 10px 16px;
  color: #fff;
}
.pricing__box .pricing-item {
  border-radius: 10px;
  padding: 36px 42px;
  border: 2px solid #1AECBA;
  transition: all 0.3s ease-in;
}
.pricing__box .pricing-item:hover {
  background: #090202;
  color: #fff;
  border-color: #090202;
}
.pricing__box .pricing-item:hover .pricing-name {
  color: #fff;
}
.pricing__box .pricing-item:hover .pricing-price h2 {
  color: #fff;
}
.pricing__box .pricing-item:hover .pricing-price h2 span {
  color: #EDEDED;
}
.pricing__box .pricing-item:hover .pricing-price .para {
  color: #EDEDED;
}
.pricing__box .pricing-item:hover .button__primary {
  background: #fff;
  color: #090202;
}
.pricing__box .pricing-item__list h4 {
  margin-bottom: 26px;
  color: #090202;
  transition: all 0.3s ease-in;
}
.pricing__box .pricing-item__list .offer-list {
  list-style: none;
  padding: 0;
}
.pricing__box .pricing-item__list .offer-list li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 41px;
}
.pricing__box .pricing-item__list .offer-list li::after {
  content: "";
  width: 24px;
  height: 24px;
  background: #1AECBA;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.pricing__box .pricing-item__list .offer-list li::before {
  content: "";
  display: inline-block;
  transform: rotate(45deg);
  height: 14px;
  width: 7px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 9px;
  top: 4px;
  z-index: 2;
}
.pricing__box .pricing-item .tag {
  position: absolute;
}
.pricing__box .pricing-item .pricing-name {
  margin-bottom: 32px;
  color: #090202;
  transition: all 0.3s ease-in;
}
.pricing__box .pricing-item .pricing-price h2 {
  color: #595959;
  font-size: 48px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in;
}
.pricing__box .pricing-item .pricing-price h2 span {
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.pricing__box .para {
  color: #595959;
  transition: all 0.3s ease-in;
}
.pricing__box .button__primary {
  border-radius: 8px;
  margin-bottom: 40px;
}

.pricing-spacing {
  padding-bottom: 96px;
}

.bullet-list {
  list-style: none;
  padding: 0;
}
.bullet-list li {
  color: #090202;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
  display: flex;
  align-items: baseline;
}
.bullet-list li::before {
  content: "";
  width: 18px;
  min-width: 18px;
  height: 18px;
  background: #090202;
  border-radius: 50%;
  display: block;
  margin-right: 16px;
}

.publication-body {
  padding: 48px 0;
}

.pagination {
  display: flex;
  list-style: none;
  justify-content: center;
}
.pagination .page-link {
  text-decoration: none;
  margin: 0 5px;
  padding: 5px 10px;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  color: #090202;
  font-weight: 500;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
}
.pagination .page-link:hover, .pagination .page-link.active, .pagination .page-link:focus {
  color: #8C1515;
  background: transparent;
  box-shadow: none;
}
.pagination .page-link.active {
  background: transparent;
}
.pagination .page-link.active svg path {
  fill: #8C1515;
}

.news-item-img img {
  border-radius: 16px;
}

.news-section {
  padding: 96px 0;
}
.news-section .pagination {
  margin-top: 55px;
}

.faq-section .faq-header {
  margin-bottom: 48px;
}
.faq-section .accordion-item {
  border-left: 0;
  border-right: 0;
  border-radius: 0 !important;
}
.faq-section .accordion-header, .faq-section .accordion-colapse, .faq-section .accordion-body, .faq-section .accordion-button {
  border-radius: 0 !important;
}
.faq-section .accordion-button {
  box-shadow: none;
  padding: 16px 50px 16px 0;
  position: relative;
}
.faq-section .accordion-button:not(.collapsed) {
  background: transparent;
}
.faq-section .accordion-button:not(.collapsed)::after {
  content: "-";
  align-items: center;
  padding-bottom: 5px;
  background: #D9D9D9;
  color: #090202;
}
.faq-section .accordion-button::after {
  content: "+";
  width: 24px;
  height: 24px;
  background: #8C1515;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: initial;
  padding: 0;
  margin: 0;
  font-size: 17px;
  transform: initial !important;
  position: absolute;
  right: 0;
  top: 18px;
}
.faq-section .accordion-body {
  padding: 8px 50px 0 0;
}

.tutorial-section .items-right iframe {
  border-radius: 16px;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 26px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .contact-box {
    grid-gap: 16px;
  }
}
@media (max-width: 767px) {
  .contact-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .contact-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-box .box-item {
  border-radius: 16px;
  padding: 40px 48px;
}
@media (max-width: 991px) {
  .contact-box .box-item {
    padding: 16px 26px;
  }
}
@media (max-width: 767px) {
  .contact-box .box-item .fs-24 {
    font-size: 18px;
  }
}

.contact-form {
  padding: 48px 40px;
  background: #F9F9F9;
  border-radius: 16px;
}
.contact-form .form-group {
  margin-bottom: 32px;
}
.contact-form .form-group textarea {
  height: initial;
}
.contact-form .form-group textarea,
.contact-form .form-group input {
  background: #fff;
  border-color: #fff;
}

.about-section {
  padding: 96px 0;
}
@media (max-width: 767px) {
  .about-section {
    padding: 48px 0;
  }
}
.about-section .about-left .content {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .about-section .about-left .content {
    margin-right: 0px;
  }
}

.social-media a {
  margin-right: 25px;
}

.footer-spacing {
  padding: 62px 0;
}

.footer-list {
  display: flex;
  flex-direction: column;
}
.footer-list a:hover {
  color: #8C1515 !important;
}
.footer .copyright {
  margin-top: 32px;
}
@media (max-width: 575px) {
  .footer .copyright {
    flex-direction: column-reverse;
  }
}
.footer .copyright-item {
  margin-left: 56px;
}
@media (max-width: 575px) {
  .footer .copyright-item {
    margin-left: 0;
    margin-bottom: 16px;
  }
}
.footer .copyright-item a {
  margin-right: 24px;
}
.footer .copyright-item a:last-child {
  margin-right: 0;
}/*# sourceMappingURL=style.css.map */