:root {
  --themeColor: #0bc1c3;
  --secondary-color: #004863;
  --white: #ffffff;
}
.slick-track {
  height: 54% !important;
}
@media only screen and (max-width: 465px) {
  .slick-track {
    height: 58% !important;
  }
}
body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

a {
  text-decoration: none;
}
.banner-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
p,
a {
  color: #333333;
  font-size: 16px;
}

/* CSS Component */

.intl-tel-input .country-list {
  z-index: 100;
}

.sub-heading {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
}

.secondary-color {
  color: var(--secondary-color);
}

.gridient-bg {
  background-image: radial-gradient(
    circle closest-corner at 80% 20%,
    rgba(78, 132, 209, 0.17),
    rgba(251, 253, 255, 0)
  );
}

.banner-gridient-bg {
  background-image: radial-gradient(
    circle closest-corner at 80% 20%,
    rgba(78, 132, 209, 0.17),
    rgba(251, 253, 255, 0)
  );
}

.light-bg {
  background-color: #f0fbff;
}

.section {
  padding: 50px 0;
}

.theme-color,
.theme-color:hover,
.theme-color:focus {
  color: var(--themeColor);
}

.theme-color-bg {
  background-color: var(--themeColor);
}

.secondary-color-bg {
  background-color: var(--secondary-color);
}

.style-btn {
  transition: 0.2s ease-in;
  /* height: 42px; */
  border-radius: 7px;
  text-align: center;
  padding: 8px 18px;
  /* min-width: 220px; */
}

.style-btn:hover {
  box-shadow: none;
}

.style-icon-btn {
  display: inline-block;
}

.style-icon-btn i {
  margin-right: 8px;
  font-size: 20px;
  position: relative;
  top: 1px;
}

.theme-btn {
  background-color: var(--themeColor);
  color: #ffffff;
  box-shadow: 0 4px 6px 0 rgb(54 127 211 / 20%),
    0 1px 16px 0 rgb(54 127 211 / 18%);
  -webkit-transition: box-shadow 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: box-shadow 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.theme-btn:hover {
  color: #ffffff;
  box-shadow: none;
}

.outline-theme-btn {
  color: #fff;
  background-color: #51b27e;
  border: 2px solid #51b27e;
}

.outline-theme-btn:hover {
  color: #ffffff;
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.transparent-orange-btn {
  background-color: transparent;
  color: var(--themeColor);
  border: 1px solid;
}

.transparent-orange-btn:hover {
  background-color: var(--themeColor);
  color: #ffffff;
}

.dark-theme {
  background-color: #333333;
  color: #ffffff;
}

.dark-theme:hover {
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #333333;
}

.whatsapp-theme {
  background-color: #51b27e !important;
  color: #fff;
  box-shadow: 0 4px 6px 0 rgb(81 178 126 / 40%),
    0 1px 16px 0 rgb(81 178 126 / 25%);
  -webkit-transition: box-shadow 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: box-shadow 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.whatsapp-theme:hover {
  color: #ffffff;
  box-shadow: none;
}

.heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 22px;
}

.text-yellow {
  color: yellow;
}

.button-wrapper a:first-child {
  margin-right: 10px !important;
}

/* CSS Component */

/* Header */

header {
  position: fixed;
  width: 100%;
  background: #fff;
  top: 0;
  border-bottom: 1px solid #e7e7e7;
  z-index: 100;
  padding: 10px 0px 5px;
}

header a img {
   width: 230px !important; 
  padding: 5px;
}

.navigation-list li {
  margin: 0 3px;
}

.navigation-list a {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 25px 10px;
  position: relative;
}

header .style-btn {
  /* min-width: 110px; */
  padding: 7px 12px;
  text-align: center;
  /* height: 38px; */
  display: inline;
  transition: 0.3s all ease-in-out;
}

header .style-btn i {
  font-size: 16px;
  margin-right: 8px;
}

.service-btn:hover > .services-list {
  display: block;
  visibility: visible;
  opacity: 1;
}

.service-btn i {
  position: relative;
  top: 1px;
  margin-left: 4px;
}

.service-btn:hover i {
  transform: rotate(180deg);
}

.services-list {
  position: absolute;
  left: 0;
  top: 53px;
  min-width: 220px;
  z-index: 100;
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 200ms ease-in, transform 200ms ease-in,
    visibility 200ms ease-in;
  visibility: hidden;
  background-color: #ffffff;
  box-shadow: 0px 3px 18px rgb(72 72 72 / 15%);
  border-radius: 14px;
  border: 1px solid #aad2ff;
}

.second-dropdown {
  left: 224px;
  width: 250px;
  margin-top: -70px;
}

.services-list li {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  padding: 8px 10px !important;
  border-bottom: 1px solid #e3e3e3;
}

.services-list li:last-child {
  border: none;
}

.services-list a {
  display: inline-block;
  width: 100%;
  border-radius: 6px;
  font-size: 14px;
  padding: 0 !important;
  line-height: 1.3;
  text-transform: capitalize;
}

.services-list a:hover {
  color: var(--themeColor);
}

.services-main-list h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 23px;
}

.services-main-list ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.services-main-list li {
  margin-bottom: 15px;
}

/* banner content */

.banner {
  margin-top: 60px;
  background: white;
  padding: 65px 0 80px;
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  min-height: 535px;
  display: flex;
  align-items: center;
  background-blend-mode: overlay;
}

.banners-list {
  padding-left: 0rem;
}

.banners-list li {
  color: #fff;
  margin-bottom: 5px;
  display: flex;
  font-weight: 600;
  letter-spacing: 0px;
}

.banners-list i {
  color: var(--themeColor);
  margin-right: 11px;
}

.banner-content {
  /* margin-top: 56px; */
}

@media only screen and (max-width: 465px) {
  .banner-content {
    margin-top: 0px;
  }
  .banner {
    padding: 10px 10px 60px;
    background-position: center;
  }
  .banner-content p {
    margin: 10px 0 0;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
  .banner-content h1 {
    text-align: center;
  }
  .banner-content h3 {
    text-align: center;
  }
  .banner .button-wrapper {
    text-align: center;
  }
}

.banner-content h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.banner-content h3 span {
  color: var(--themeColor);
}

.banner-content h1 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
}

.banner-content h1 span {
  color: var(--themeColor);
}

.banner-content p {
  color: #fff;
  margin-bottom: 25px;
}

.banner-content .style-btn {
  /* height: 45px; */
  /* max-width: 226px; */
  /* width: 100%; */
  padding: 10px 15px;
  font-weight: 500;
  font-family: "Poppins" !important;
  transition: 0.3s all ease-in-out;
}

/* banner revieew widget */

.banner-riview-widget {
  margin-top: 45px;
}

.review-banner {
  min-height: 343px;
  padding: 0;
}

.review-box {
  margin-right: 30px;
}

.review-box div {
  margin-left: 9px;
  line-height: 1.4;
  margin-top: 0px;
}

.review-box span {
  font-size: 15px;
  color: #000000;
  font-weight: 600;
  position: relative;
  top: 2px;
}

.review-box p {
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 600;
}

/* banner form */

label.error {
  display: none !important;
}

input.error {
  border: 1px solid red;
}

.banner-form-conent {
  position: relative;
  max-width: 350px;
  margin-left: auto;
  top: 30px;
}

.banner-form {
  max-width: 299px;
  box-shadow: -2px 1px 16px rgb(121 183 255 / 37%);
  padding: 15px 25px 25px;
  border-radius: 10px;
  border: 1px solid whitesmoke;
  position: relative;
  z-index: 3;
  background: #fff;
  width: 100%;
}

.banner-form-conent::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 385px;
  top: 25px;
  left: 25px;
  background: #eaf4ff;
  z-index: 2;
  border-radius: 10px;
}

.banner-form-conent::after {
  content: "";
  content: "";
  position: absolute;
  width: 287px;
  height: 375px;
  top: 52px;
  left: 58px;
  background: #ffffff;
  z-index: 1;
  border-radius: 10px;
  border: 3px solid var(--themeColor);
}

.banner-form .form-heading h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 18px;
}

.banner-form .form-heading h3 span {
  color: var(--themeColor);
  font-size: 30px;
}

.banner-form input {
  margin-bottom: 14px;
  font-size: 15px;
}

.banner-form button {
  border: 0;
  outline: 0;
  margin-top: 30px;
  width: 100%;
  height: 42px;
}

.banner-bottom-form {
  display: flex;
  align-items: center;
  z-index: 20;
  position: relative;
  max-width: 300px;
  margin-left: 38px;
  margin-top: 8px;
}

.banner-bottom-form i {
  font-size: 40px;
  margin-right: 11px;
  color: var(--themeColor);
}

.banner-bottom-form h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0;
  line-height: 1.1;
}

/* Expert Section */

.expert-section {
}

.expert-header {
  display: flex;
  align-items: center;
}

.expert-header img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.expert-header .info {
  line-height: 1;
  margin-left: 8px;
}

.expert-header h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  margin-left: 10px;
}

.divider-img {
  width: 100%;
  height: 1px;
  background-size: cover;
  background-repeat: no-repeat;
}

/* experts */

.writers__card {
  display: block;
  height: 100%;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid #04b7fb4f;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 24px 0 rgb(0 0 0 / 8%);
  margin: 10px;
}

.writers__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.writers__img {
  width: 40px;
  height: 40px;
  max-width: none;
  margin-right: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-radius: 40px;
  -o-object-fit: cover;
  object-fit: cover;
}

.writers__name {
  margin-bottom: 5px;
  line-height: 100%;
  font-weight: 500;
}

.devider-img {
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-image: url(../images/divider-img.svg);
  background-position: 0 0;
  background-size: auto;
}

.writers__mid {
  grid-column-gap: 16px;
}

.writers__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.writers__decor {
  width: 9px;
  height: 17px;
  margin-right: 8px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  background-color: #00d366;
}

.writers__feature {
  color: #393939;
  font-size: 12px;
  line-height: 150%;
}

.writers__competency {
  margin-bottom: 20px;
  color: #393939;
  font-size: 12px;
  line-height: 160%;
}

.btn--gray_small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 52px;
  padding: 18px 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #f3f4fe;
  color: #6f6f6f;
  font-size: 12px;
  line-height: 120%;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn--blue_small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 52px;
  padding: 18px 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 12px;
  line-height: 120%;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn--blue_small:hover {
  color: #ffffff;
}

/*  Benefits */

.benefits__item {
  margin-bottom: 35px;
}

.benefits__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 46px;
  height: 46px;
  margin-right: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.benefits__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.benefits__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.benefits__title {
  font-size: 22px;
  font-weight: 500;
}

.benefits__tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 25px;
  height: 30px;
  margin-left: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.free {
  position: relative;
  max-width: 550px;
  margin-left: auto;
}

.free__card {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #c8d9ee;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 1px 16px 0 rgb(54 127 211 / 18%);
}

.free__title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.free__icon {
  width: 40px;
  height: 40px;
}

.free__row {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: auto 1fr 56px 57px;
  grid-template-columns: auto 1fr 56px 57px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  color: #367fd3;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0px;
  border-bottom: 1px solid #a0caec8c;
}

.free__price {
  color: #92abc9;
  font-weight: 400;
  text-decoration: line-through;
}

.free__tag {
  color: #fd8c04;
  font-weight: 700;
}

.free__cta {
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.btn--blue_220 {
  min-width: 220px;
  padding: 17px 20px;
  border-radius: 6px;
  background-color: #367fd3;
  box-shadow: 0 4px 6px 0 rgb(54 127 211 / 20%),
    0 1px 16px 0 rgb(54 127 211 / 18%);
  -webkit-transition: box-shadow 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: box-shadow 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  color: #fff;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn--blue_220:hover {
  color: #ffffff;
}

.frame--light-blue {
  position: absolute;
  left: 30px;
  top: 30px;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 1px solid #c8d9ee;
  border-radius: 20px;
}

/* Cta */

.cta.section img {
}

.cta.section h2 {
  line-height: 1.3;
  margin-bottom: 9px;
}

.cta.section p {
  font-size: 17px;
}

/* Cta */

.cta.section .container {
  background: #66dbe5;
  padding: 40px;
  height: 320px;
  border-radius: 20px;
  position: relative;
}

.cta.section img {
  position: absolute;
  bottom: 0;
  left: 0;
}

.cta.section p {
  font-size: 17px;
}

/* How IT Work */

.how-it-work-tab li {
  display: flex;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid #d7d7d7;
  border-radius: 13px;
  background: #f5f9ff;
  cursor: pointer;
}

.how-it-work-tab li.active {
  background-color: #ffffff;
  box-shadow: 1px 2px 13px rgb(71 119 175 / 30%);
}

.how-it-work-tab li h5 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  height: 36px;
}

.how-it-work-tab li h5 span {
  width: 10px;
  height: 10px;
  background: linear-gradient(178deg, #00c6fb, #1979ff);
  position: absolute;
  border-radius: 50%;
  bottom: 0;
  right: -13px;
}

.how-it-work-content {
  width: calc(100% - 60px);
  margin-left: 35px;
}

.how-it-work-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.how-it-work-content p {
  margin-bottom: 0;
  font-size: 15px;
}

.how-it-work-images {
  padding: 0 15px;
}

.how-it-work-image {
  transition: all 700ms ease-in;
  display: none;
}

.how-it-work-image.active {
  box-shadow: 1px 1px 18px rgb(175 175 175 / 87%);
  border-radius: 25px;
  display: block;
}

/* Services we Offer */

.service-we-offer li {
  display: flex;
  font-size: 18px;
  font-weight: 600;
}

.service-we-offer i {
  margin-right: 12px;
  color: #0aa7fc;
  font-size: 19px;
}

.services-we-offer-point p {
  font-size: 15px;
}

.services-we-offer-point ul {
  display: flex;
  flex-wrap: wrap;
  margin: 32px 0;
}

.services-we-offer-point li {
  width: 33%;
  margin-bottom: 18px;
}

.best-price-paper {
  padding: 30px;
  background: #dbf2ff94;
  border-radius: 30px;
}

.best-price-paper h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}

.best-price-paper li {
  font-size: 16px;
  margin-bottom: 20px;
  justify-content: space-between;
}

.best-price-paper li span {
  color: #9d9d9d;
  font-weight: 500;
  font-size: 15px;
}

.best-price-paper a {
  font-size: 16px;
  max-width: 190px;
  margin-left: auto;
  margin-top: 35px;
}

/* Accordion */

.accordion-button:not(.collapsed) {
  background-color: none;
}

.accordion-button:focus {
  z-index: 3;
  border: none;
}

.accordion-button:focus,
.btn-close:focus,
.page-link:focus {
  box-shadow: none;
  outline: 0;
}

.accordion-button:not(.collapsed) {
  color: #000000;
  box-shadow: none;
}

.accordion-button {
  background-color: #e7f1ff;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-item {
  background-color: #fff;
  margin-bottom: 24px;
  border: 1px solid #06b2fc;
  border-top: 0;
}

/* Review Slide */

.reviews__card--white {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 14px;
  margin-right: 0;
  margin-left: 0;
  padding: 30px 20px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid #b8d9ff;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 20px 0 rgb(0 0 0 / 8%);
  color: #101723;
  text-align: left;
  text-decoration: none;
  margin: 10px;
}

.reviews__quotes {
  position: absolute;
  top: -14px;
  width: 31px;
  height: 26px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.reviews__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.reviews__stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 108px;
  height: 18px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.reviews__writer {
  display: inline-block;
  margin-right: 4px;
  font-size: 14px;
}

.reviews__name {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
}

.reviews__mid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
}

.reviews__paper {
  font-size: 14px;
  font-weight: 700;
}

.reviews__date {
  font-size: 12px;
  line-height: 160%;
}

.reviews__customer {
  display: inline-block;
  margin-right: 4px;
  font-size: 14px;
  line-height: 140%;
}

.reviews__id {
  display: inline-block;
  font-size: 14px;
  line-height: 140%;
  font-weight: 700;
}

.slider-arrow a,
.carousel-btn {
  width: 45px;
  height: 45px;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--themeColor);
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}

/* Footer */

footer {
  padding: 50px 0;
  background: white;
}

footer p,
.copyright p {
  font-size: 14px;
  color: #fff;
}

.footer-tab h5 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
  color: black;
}

.footer-tab li {
  margin-bottom: 10px;
}

.footer-tab li i {
  padding-right: 5px;
  color: var(--themeColor);
}

.footer-tab a {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  color: black;
}

.footer-tab a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--themeColor);
  transition: 0.5s;
  bottom: -4px;
}

.footer-tab a:hover::before {
  width: 100%;
}

.footer-tab a:hover {
  color: black;
}

.footer-tab a i {
  font-size: 18px;
  margin-right: 6px;
}

.copyright {
  background-color: var(--themeColor);
  padding: 10px 0 5px;
}

.mobile-nav {
  top: 0;
  position: absolute;
  width: 100%;
  display: none;
  z-index: 101;
}

.mobile-nav i {
  font-size: 30px;
  color: var(--themeColor);
  margin-right: 9px;
}

.side-nav {
  width: 70%;
  height: 100%;
  position: fixed;
  top: 60px !important;
  background: #f9f9f9;
  z-index: 100;
  transition: 1s;
  overflow: hidden;
  -webkit-transition: all 0.6s ease-in-out;
  overflow-y: scroll;
}

.side-nav-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 80%);
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
}

.side-nav-open {
  right: 0 !important;
}

.side-nav-close {
  right: -70% !important;
}

.side-nav ul {
  margin: 30px 0;
}

.side-nav li {
  line-height: 1.8;
  padding: 15px 0;
  padding: 0;
  border-bottom: 0.2px solid rgb(106 106 106 / 10%);
}

.side-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
}

/* contact us */

.mb20 {
  margin-bottom: 20px;
}

.input-md {
  height: 40px;
  padding: 4px 10px;
  font-size: 14px;
}

.contact-form-list li,
.contact-form-list a {
  display: flex;
  /* align-items: center; */
  color: #333333;
  text-decoration: none;
}

.contact-form-list i {
  font-size: 29px;
  font-weight: 600;
  color: #333333;
  margin-right: 10px;
}

button.button-md {
  background-color: var(--themeColor);
  height: 42px;
  max-width: 200px;
  width: 100%;
  padding: 9px 0;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  border: none;
}

button.button-md:hover {
  background-color: #fff;
  border: 1px solid var(--themeColor);
  color: var(--themeColor);
}

.banner-contact {
  width: 100%;
  height: 330px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  /* padding-top: 150px; */
}

.banner-contact::before {
  content: "";
  background: linear-gradient(324deg, #a50000 0%, #741919 49%, #480e0e 100%);
  background: linear-gradient(41deg, rgb(3 6 0 / 72%) 0%, rgb(0 0 0 / 56%) 75%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.content-section {
  margin: 60px 0 60px 0;
}

.our-expert .carousel-btn {
  position: absolute;
  top: 52%;
}

.our-expert .carousel-btn.expert-left-arrow {
  left: -60px;
}

.our-expert .carousel-btn.expert-right-arrow {
  right: -60px;
}

/* Banner Review Section  Start*/

.reviews {
  margin: -40px 0 40px;
}

.reviews .container {
  /* max-width: 900px !important; */
}

.reviews .row {
  background: var(--secondary-color);
  border-radius: 4px;
  padding: 15px 20px;
  position: relative;
  border-radius: 50px;
}

.reviews .row:before {
  content: "";
  position: absolute;
  right: -11px;
  top: -11px;
  width: 107px;
  height: 119px;
}

.reviews ul {
  padding: 0;
  display: flex;
  margin: 0;
}

.reviews ul li:first-child {
  padding-left: 20px;
}

.reviews ul li {
  list-style-type: none;
  flex: 0 0 33.3333%;
  padding-left: 20px;
}

.reviews ul li .text-with-icon {
  display: flex;
  position: relative;
  width: 100%;
}

.reviews ul li:not(:last-child) .text-with-icon:before {
  content: "";
  border-right: 1px solid rgb(255 255 255 / 20%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.reviews ul li .text-with-icon img {
  max-height: 34px;
  margin: 5px 0 0;
}

.reviews ul li .content-area {
  padding-left: 10px;
  position: relative;
  /* padding-right: 70px; */
  width: 95%;
}

.reviews h5 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #fff;
}

.reviews ul li .content-area .stars {
  width: 89px;
  height: 20px;
  background: url(../images/stars.svg) no-repeat;
  position: relative;
}

.reviews h3 {
  margin: 0;
  position: absolute;
  right: 0;
  top: 2px;
  font-weight: 200;
  font-size: 36px;
  color: #fff;
}

.button-1 {
  background-color: #34de3e;
  padding: 16px 40px;
  display: inline-block;
  font-size: 16px;
  color: #323232;
  border: 2px solid #323232;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: relative;
  z-index: 1;
  box-shadow: 0px 1px 10px 0px #b9b4b4;
  border-radius: 50px;
}

.button-2 {
  padding: 16px 40px;
  background-color: var(--themeColor);
  display: inline-block;
  font-size: 16px;
  color: #323232;
  border: 2px solid #323232;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: relative;
  z-index: 1;
  box-shadow: 0px 1px 10px 0px #b9b4b4;
  border-radius: 50px;
}

.button-1:hover {
  color: var(--secondary-color);
}

.button-2:hover {
  color: var(--secondary-color);
}

/* Banner Review Section End */

/* Subect Section Start */

.heading {
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: 700;
  position: relative;
  /* margin-bottom: 70px; */
}

.yellow-color {
  color: var(--themeColor);
}

.subjects-slider {
  width: 100% !important;
}

.s6_box {
  color: #474747;
  padding: 8px 20px 10px 20px;
  margin: 0 5px 20px;
  background: #fff;
  box-shadow: 0 3px 20px 0px rgb(0 0 0 / 12%);
  border-radius: 0.5rem;
}

.s6_box p {
  font-size: 15px;
  line-height: 24px;
}

.s6_box p span {
  font-size: 32px;
  color: var(--secondary-color);
  margin: 0 10px 0 0;
  position: relative;
  top: 4px;
}

/* Subect Section End */

/* Our Assurance Section Start */

.h_sec4 {
  padding: 60px 0 60px 0;
  width: 100%;
  background-color: #f5f5f5;
  text-align: center;
}

.s4_top {
  width: 100%;
  margin: 0 0 40px;
  overflow: hidden;
}

.s4_bot {
  width: 100%;
  overflow: hidden;
  display: contents;
}

.s4 {
  padding: 10px;
}

.s4_box {
  width: 85%;
  background: url(../images/qud.png) -1px -1px no-repeat var(--themeColor);
  display: table-cell;
  /* height: 182px; */
  padding: 20px 0 20px;
  border-radius: 40px;
  text-align: center;
  display: block;
  margin: 0 auto;
  transition: 0.3s all ease-in-out;
}

.s4_box:hover {
  background-color: var(--secondary-color);
  color: black;
}

.s4_box p {
  font-size: 15px;
  margin: 10px 0 0;
  color: #fff;
}

.s4_box strong {
  color: #fff;
}

/* Our Assurance Section End */

/* Footer New Start */

.footer-logo {
  width: 200px !important;
  padding: 5px;
}

.footer-call-btn {
  background: var(--secondary-color);
  padding: 5px;
  border-radius: 30px;
  overflow: hidden;
}

.footer-call-btn .icon {
  float: left;
  font-size: 25px;
  color: #fff;
  background: var(--themeColor);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin-right: 10px;
}

.footer-call-btn .con {
  overflow: hidden;
}

.footer-call-btn .con p {
  line-height: 20px;
  font-size: 14px;
  color: #fff;
  margin: 0px;
}

.footer-call-btn .con span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer-call-btn span a {
  color: #fff;
}

/* Footer New End */

/*Inner Page Start*/

.adb li {
  padding-bottom: 10px;
}

.adb li i {
  padding-right: 5px;
  color: var(--themeColor);
}

.section-header {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 150px 0 40px;
}

.section-header .heading {
  color: #fff !important;
}

.heading {
  font-size: 30px;
  font-weight: 700;
}

.section-header p {
  padding: 20px 0 0;
  color: #fff;
}

/*Inner Page End*/

.contact_sect .cont {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 30px;
  overflow: hidden;
}

.contact_sect .cont .row .col-lg-6 {
  padding: 40px;
}

.contact_sect .cont .row .col-lg-6:last-child {
  background: linear-gradient(
    140deg,
    var(--secondary-color),
    var(--themeColor)
  );
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
}

.contact_sect .cont a.cont_link {
  display: flex;
  flex-direction: column;
  color: #fff;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid;
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
}

.contact_sect .cont a.cont_link i {
  font-size: 24px;
}

.contact_sect .cont input,
.contact_sect .cont textarea {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 10px;
  resize: none;
  padding: 10px 0 10px 15px;
  border: 1px solid #a5a5a5;
}

.contact_sect .cont input:focus,
.contact_sect .cont textarea:focus {
  box-shadow: none;
  border-color: var(--themeColor);
}

.btns {
  display: flex;
  justify-content: center;
}
.contact_sect .cont a.cont_link h4 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}
.contact_sect .cont a.cont_link:hover {
  background: #fff;
  color: var(--secondary-color);
}

/*.form-control {*/

/*    display: block;*/

/*    width: 100%;*/

/*    padding: 15px 15px;*/

/*    font-size: 1rem;*/

/*    font-weight: 400;*/

/*    line-height: 1.5;*/

/*    color: #212529;*/

/*    background-color: #fff;*/

/*    background-clip: padding-box;*/

/*    border: 1px solid #ced4da;*/

/*    -webkit-appearance: none;*/

/*    -moz-appearance: none;*/

/*    appearance: none;*/

/*    border-radius: 0.25rem;*/

/*    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;*/

/*}*/

.footer-form .btn {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  padding: 15px 50px;
  min-width: 100px;
  text-align: center;
  color: #fff;
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  transition: all 0.3s linear;
  box-sizing: border-box;
  margin-top: 20px;
}

/*Contact Page End*/

/*Thank You Start*/

.thnk_box {
  background: #ffffff;
  padding: 60px 130px 30px 130px;
  text-align: center;
  margin: 40px 0 40px 0;
  -webkit-box-shadow: 0px 0px 68px 1px rgb(0 0 0 / 8%);
  -moz-box-shadow: 0px 0px 68px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 68px 1px rgb(0 0 0 / 8%);
}

.thnk_box h2 {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 15px;
  color: #000;
  text-transform: capitalize;
}

.thnk_box p {
  margin: 30px 0;
  line-height: 24px;
  font-size: 17px;
}

.thnk_box h4 {
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.thnk_box h6 {
  margin-bottom: 20px;
}

/*Thank You End*/

/*WhatsApp Start*/

.float {
  font-weight: 700;
  vertical-align: middle;
  padding: 8px;
  position: fixed;
  bottom: 40px;
  left: 5px;
  background-color: #023838;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 16px;
  z-index: 100;
  transition: all 0.3s ease-in-out;
  box-shadow: 5px 5px 20px #00000059;
  animation: bounce 2s linear infinite;
}

.float:hover {
  color: #fff;
}

.float img {
  margin-bottom: 3px;
  margin-right: 3px;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-25px);
  }

  60% {
    -webkit-transform: translateY(-15px);
  }
}

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-25px);
  }

  60% {
    -moz-transform: translateY(-15px);
  }
}

@-o-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0);
  }

  40% {
    -o-transform: translateY(-25px);
  }

  60% {
    -o-transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-25px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.animated.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}

/*WhatsApp End*/

/* our numbers section start */

.h_sec7.sec {
  text-align: center;
  padding: 30px 0;
  width: 100%;
  background-color: var(--themeColor);
}

.s7_top h2,
.s7_top p {
  color: #fff !important;
}

.s7_bot {
  width: 100%;
  overflow: hidden;
}

.s7_icon h3 {
  color: #fff;
  font-size: 22px;
  margin: 16px 0;
}

.s7_text h4 {
  background: var(--secondary-color);
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  border-radius: 6px;
  font-size: 22px;
}

/* our numbers section end*/

/* Service Section Start */

.feature-block {
  position: relative;
  margin-bottom: 30px;
}

.feature-block .inner-box {
  position: relative;
  height: 100%;
  border-radius: 7px;
  text-align: center;
  background: #f1f1f1;
  margin: 0 10px;
  padding: 40px 25px 60px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.feature-block:not(:last-child) .inner-box:before {
  position: absolute;
  right: -10px;
  top: 50px;
  bottom: 50px;
  border: 1px solid #ebebeb;
  content: "";
}

.feature-block .icon-box {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  top: 0;
  height: 70px;
  width: 70px;
  background-color: var(--secondary-color);
  content: "";
  border-radius: 10%;
}

.feature-block .icon-box:before {
  position: absolute;
  left: -25px;
  top: 0;
  height: 55px;
  width: 55px;
  /* background-color: #fff1cc; */
  content: "";
  border-radius: 50%;
}

.inner-box .icon-box img {
  width: 50px;
  margin-top: 7px;
}

.feature-block h3 {
  font-size: 22px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 24px;
}

.feature-block p {
  margin-bottom: 20px;
  text-align: center;
}

.feature-block .read-more {
  display: block;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--themeColor);
  border: 3px double var(--themeColor);
  padding: 10px 20px;
  border-radius: 35px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 0);
}

.feature-block .read-more:hover {
  box-shadow: 5px 5px 20px #00000059;
  color: #000;
  background-color: transparent;
  border: 3px double var(--themeColor);
}

/* Service Section End */

/* Banner New Form Start  */

.bannerFormBox {
  display: flex;
  justify-content: center;
  position: relative;
}
.bannerForm {
  height: auto;
  justify-content: center;
  /* min-width: 395px; */
  border-top: 15px solid #fff;
}

.form-heading::after,
.form-heading::before {
  bottom: -20px;
  border-top: 20px solid var(--secondary-color);
  content: "";
}

.form-heading {
  display: flex;
  padding: 17px;
  position: relative;
  text-align: center;
  width: 110%;
  align-items: center;
  margin-left: -18px;
  justify-content: center;
  background: linear-gradient(5deg, var(--themeColor), var(--secondary-color));
}

.form-heading::before {
  position: absolute;
  height: 0;
  width: 0;
  left: 0;
  border-left: 20px solid transparent;
}

.form-heading h2 {
  font-weight: 900;
  font-size: 25px;
  color: #bb2528;
  margin: 0;
}
.form-heading h4 {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  margin: 0 0 0 14px;
}

.coupon-bar {
  background: #fff;
  padding: 20px 20px 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coupon-bar h5 {
  padding: 8px;
  text-align: center;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 800;
  border: 1px dashed var(--secondary-color);
  border-radius: 50px;
  box-shadow: 0 1px 10px rgb(194 1 1 / 28%);
}
.red-color {
  color: var(--themeColor);
}
.bannerForm form {
  text-align: center;
  padding: 10px 20px 12px;
  margin-bottom: 0px;
}

.bannerForm input {
  padding: 5px 10px;
}
.bannerForm select {
  padding: 5px 10px;
}

button.btn-form {
  border-radius: 5px;
  font-weight: 700;
  background-color: var(--themeColor);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.5s;
  padding: 10px 0;
  margin-top: 5px;
  width: 100%;
  font-size: 16px;
  border: none;
  outline: 0;
}

.yellow-color {
  color: #ffffff;
}

.counting span,
.form-belt,
.review-btn {
  background: var(--secondary-color);
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 8px 5px;
}

/* Banner New Form End */

/*mobile view start*/
.side-nav,
.side-nav-overlay {
  display: none;
}

@media only screen and (max-width: 768px) {
    .side-nav {
    display: block;
  }
  .form-control {
    margin-bottom: 15px;
  }

  .section-header {
    padding: 100px 0 20px;
  }

  .section-header p {
    padding: 0px;
  }

  .heading {
    color: var(--themeColor) !important;
  }

  .mobile-nav a img {
     width: 200px; 
    padding-left: 40px;
  }

  .s6_box {
    margin: 0 20px 30px !important;
  }

  .s4,
  .s4_box {
    width: 100%;
  }

  .s4_box {
    display: inherit;
    font-size: 20px;
  }

  .banner-form-conent {
    top: 0px;
  }

  header,
  .reviews {
    display: none !important;
  }

  /*.button-wrapper {*/
  /*    display: none !important;*/
  /*}*/
  .mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0px 8px;
    border-bottom: 1px solid #0000003b;
    box-shadow: 2px 2px 4px rgb(0 0 0 / 17%);
    /*position: fixed;*/
    width: 100%;
    left: 0;
    background: #ffffff;
  }
  .mobile-nav a#open-side-menu {
    padding-right: 40px;
  }
  
  

  .side-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 12px 12px;
    line-height: 1.3;
  }

  .mobile-service-link i {
    transform: rotate(0);
    transition: 0.3s;
  }

  .mobile-service-link i.active {
    transform: rotate(180deg);
    transition: 0.3s;
  }

  .heading {
    font-size: 28px;
    line-height: 1.2;
  }

  .banner {
    margin-top: 65px;
    padding: 24px 10px 60px;
    min-height: auto;
  }

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

  .banner-content .style-btn {
    margin-bottom: 10px;
    height: 45px;
    max-width: 200px;
    width: 100%;
    padding: 11px 0;
    font-weight: 500;
  }

  .banner-content h1 {
    font-size: 28px;
    line-height: 1.2;
    margin: 14px 0 10px;
  }

  .banner-riview-widget {
    margin-top: 50px;
    margin-bottom: 25px;
  }

  /* feature */
  .benefits__item {
    margin-bottom: 0;
  }

  .benefits__item {
    text-align: center;
  }

  .benefits__top {
    flex-direction: column;
  }

  .benefits__icon {
    margin-bottom: 20px;
  }

  /* feature card */
  .free__row {
    font-size: 14px;
    grid-column-gap: 5px;
  }

  .free__icon {
    width: 22px;
    height: 22px;
  }

  .free__cta {
    font-size: 20px;
  }

  .btn--blue_220 {
    min-width: 209px;
    padding: 14px 12px;
  }

  .cta.section {
    text-align: center;
    margin-top: 0;
  }

  .cta.section img {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
  }

  .cta.section .container {
    background: #d1f2ff;
    padding: 40px;
    height: auto;
  }

  .cta.section h2 {
    margin: 15px 0;
  }

  .cta.section a {
    /* max-width: 100%; */
    border: 2px solid #000;
    font-size: 16px;
    margin: 0 auto;
    margin-bottom: 10px !important;
  }

  .services-we-offer-point li {
    width: 100%;
    margin-bottom: 13px;
  }

  /* best paper */
  .best-price-paper {
    padding: 20px;
  }

  .best-price-paper li span:first-child {
    display: flex;
  }

  .best-price-paper li span:last-child {
    text-align: center;
    margin-left: 10px;
    font-size: 12px;
  }

  .footer-tab {
    margin-bottom: 20px;
  }

  section.copyright {
    padding: 10px 0;
  }

  .copyright p {
    text-align: center;
  }

  .copyright .footer-tab {
    flex-direction: column;
  }

  .frame--light-blue {
    position: absolute;
    left: 8px;
    top: 8px;
  }

  .expert-slider {
    padding: 10px;
  }

  .reviews__card--white {
    margin: 0;
  }

  .writers__card {
    margin: 0;
  }

  .banner-form-conent::before {
    top: 24px;
    left: 11px;
  }

  .banner-bottom-form {
    margin-left: 22px;
  }

  .banner-form-conent::after {
    top: 49px;
    left: 36px;
  }

  .our-expert .carousel-btn {
    position: absolute;
    top: inherit;
    bottom: -25px;
  }

  .our-expert .carousel-btn.expert-right-arrow {
    right: 32%;
  }

  .our-expert .carousel-btn.expert-left-arrow {
    left: 32%;
  }
}

/*mobile view end*/

@media only screen and (max-width: 465px) {
  .mobile-nav {
    height: 85px;
  }
  .mobile-nav a img {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
    .reviews h3{
      font-size: 30px !important;
      top:20px;
  }
  .navigation-list a {
    font-size: 13px;
    padding: 20px 4px;
  }
  header .style-btn{
    padding:10px 15px;
  }
}

.form-heading::after {
  position: absolute;
  height: 0;
  width: 0;
  right: 0;
  border-right: 20px solid transparent;
}
a.theme-btn:hover {
  background: var(--secondary-color);
}
.slider-arrow a:hover,
.carousel-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

@keyframes tiltAnimation {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(15deg);
  }

  100% {
    transform: rotate(0);
  }
}

.footer-call-btn .icon i {
  transform-origin: center;
  transition: transform 0.3s ease;
}

.footer-call-btn:hover i {
  animation: tiltAnimation 0.6s infinite;
}
.s6_box:hover i {
  animation: tiltAnimation 0.6s infinite;
}

p.p_bg {
  padding: 15px;
  background: #0bc1c338;
  border-radius: 15px;
  font-weight: 500;
}
section.text1 {
  padding: 70px 0;
}

section.text1 h2 {
  font-size: 44px;
  font-weight: 600;
}
.box_container .box-card {
  background: #eff2f0;
  padding: 20px 20px 40px;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 22px -3px,
    rgba(0, 0, 0, 0.3) 0px 3px 14px -8px;
  transition: 0.4s all ease-in-out;
  height: 100%;
  margin: 10px;
  position: relative;
}

.box_container .box-card i {
  background: #fff;
  padding: 17px;
  font-size: 30px;
  border-radius: 24px 17px 17px 21px;
  border: 1px solid;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.box_container .box-card h3 {
  font-size: 26px;
  font-weight: 600;
}

.box_container .box-card p {
  color: var(--secondary-color);
  text-align: center !important;
}

.box_container .box-card:hover {
  background: linear-gradient(45deg, var(--themeColor), var(--secondary-color));
  transform: scale(1.05);
  cursor: default;
}

.box_container .box-card:hover h3,
.box_container .box-card:hover p {
  color: #fff;
}

.box_container .box-card a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: 0.4s all ease-in-out;
}

section.cta_sect {
  padding: 40px 0;
  background: #0000006b url(../images/cta_bg.webp);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  margin: 50px 0;
}

section.cta_sect h2,
section.cta_sect p {
  color: #fff;
}

section.cta:before {
  content: "";
  height: 100%;
  width: 85%;
  position: absolute;
  bottom: 0;
  border-radius: 0 30px 30px 0;
  background: linear-gradient(45deg, var(--themeColor), var(--secondary-color));
}
section.cta {
  height: 100%;
  width: 100%;
  position: relative;
  padding: 40px 0;
  margin: 70px 0 0;
}
section.cta .container {
  position: relative;
 
}
section.cta .inner-cta{
 background: var(--secondary-color);
  border-radius: 20px;
  padding: 40px;
}
.inner-cta h2 {
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  font-family: Poppins;
}
.inner-cta .cta_btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-pop textarea.form-control,
.inner-cta .cta_btns img {
  height: 100px;
}
.inner-cta .cta_btns a {
  font-size: 12px;
  border: 1px solid;
  padding: 5px 20px;
  color: #fff;
  height: 100%;
  border-radius: 7px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.inner-cta .cta_btns h2 {
  width: 45%;
  font-size: 26px;
  padding-right: 20px;
  margin: 0;
}
.inner-cta .cta_btns a:hover {
  transition: 0.2s;
}

.inner-cta p {
  color: #fff;
}

img.lg_scr_img {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 300px;
}
@media(max-width:1199px){
  img.lg_scr_img {
      width:250px;
  }
}
@media(max-width:991px){
  img.lg_scr_img {
      display: none;
  }
}
.navigation-list a:after,.navigation-list a.active:after {
  content: '';
  height: 3px;
  width: 0;
  background: linear-gradient(45deg, var(--themeColor), var(--secondary-color));
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 0);
  transition:.3s all ease-in-out
}

.navigation-list a:hover:after,.navigation-list a.active:after {
  width:50%
}


#shadow-host-companion{
    display:none;
}



.modal-content .new-form input[type=submit] {
    cursor: pointer;
    line-height: 1;
    border-radius: 2px;
    background-color: #f8c301;
    color: #3d3d3d;
    font-size: 20px;
    border: 0;
    font-weight: 700;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
}

.modal-body span.closebtn,
.modal-content .new-form input[type=submit] {
    display: inline-block;
    height: 53px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.modaL_order2 .modal-dialog {
    max-width: 800px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modaL_order2 .modal-dialog .modal-content:before {
    content: "";
    width: 8px;
    height: 65px;
    background: #3468c0;
    background-image: -moz-linear-gradient(top, #555, #444, #444, #555);
    background-image: -ms-linear-gradient(top, #555, #444, #444, #555);
    background-image: -o-linear-gradient(top, #555, #444, #444, #555);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    display: block;
    position: absolute;
    top: 50%;
    border: 1px solid #111;
    left: -10px;
}

.modaL_order2 .modal-dialog .modal-content:after {
    content: "";
    width: 8px;
    height: 65px;
    background: #3468c0;
    background-image: -moz-linear-gradient(top, #555, #444, #444, #555);
    background-image: -ms-linear-gradient(top, #555, #444, #444, #555);
    background-image: -o-linear-gradient(top, #555, #444, #444, #555);
    border: 1px solid #111;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    display: block;
    position: absolute;
    top: 50%;
    right: -10px;
}

.modaL_order2 form textarea {
    width: 100%;
    border-radius: 7px;
    padding: 17px;

    font-size: 16px;
    margin: 5px 0 0;
    resize: none;
    height: 133px;
}

.modaL_order2 .modal-header {
    padding: 0;
    position: relative;
    border: none;
    z-index: 100000
}

.modaL_order2 .btn-close {
    position: absolute;
    right: 0;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 2px 1px 27px #0bc1c3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #004863;
    color: #ffff;
    top: -13px;
    opacity: 1
}
.modaL_order2 .modal-dialog .modal-content {
    padding: 0;
    border: none
}
.modaL_order2 .modal-body h5 {
    color: #fff;
    font-size: 24px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 9px;
}
.modaL_order2 .modal-body h5 span {
    padding: 10px;
    border-radius: 8px;
    display: block;
    background: linear-gradient(to right, #0bc1c3, #004863);
}
.modaL_order2 .modal-body .poppup-css {
    background: hsl(0deg 0% 0% / 80%);
    padding: 15px !important;
    text-align: center;
    border-radius: 10px;
}

.modaL_order2 .modal-body h2 {
    font-weight: 400;
    font-size: 19px;
    color: #29292E;
    color: #fff;
    text-align: center;
    margin-top: 20px;
}

.modaL_order2 .modal-body h4 {
    font-size: 26px;
    font-weight: 600;
    text-transform: capitalize;
    color: #f65d4e;
    text-align: center;
    margin: 11px 0;
}

.modaL_order2 .modal-body h4 span {
    font-size: 17px;
    background: #f65d4e;
    border-radius: 2px;
    padding: 4px;
    color: #fff;
    box-shadow: 2px 1px 27px #c28e3b;
}
.modaL_order2 form input {
    width: 100%;
    margin: 5px 0;
    padding: 10px 18px;
    border: none;
    border-radius: 7px;
    outline: none;
    font-size: 16px;
}
.modaL_order2 form select {
    width: 100%;
    margin: 10px 0;
    padding: 12px 25px;
    border: none;
    border-radius: 7;
    font-size: 13px;
    outline: none;
    padding: 0px 25px;
}

.modaL_order2 form input::placeholder,
.modaL_order2 form textarea::placeholder {
    color: #000
}

.modaL_order2 form button {
    border: none;
    outline: none;
    width: 100%;
    border-radius: 6px;
    display: block;
    margin: 5px auto 0;
    padding: 9px 0;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 2px 1px 27px #004863;
    background: linear-gradient(to right, #0bc1c3, #004863);
    color: #fff;
}

.modaL_order2 #countdown {
    background: #1615156b;
    padding: 9px 13px;
    border-radius: 10px
}

.modaL_order2 #countdown ul {
    display: flex;
    justify-content: center;
    font-family: nunito;
    font-weight: 600
}

.modaL_order2 #countdown ul li {
    margin: 0 15px;
    background: #ffc107;
    display: inline-block;
    padding: 7px;
    border-radius: 4px;
    width: 105px;
    box-shadow: 2px 1px 27px #fabd07ab
}

.modaL_order2 #countdown ul li span {
    font-size: 19px
}

.modaL_order2 #countdown {
    text-align: center;
    background: #f65d4e;
    background-image: -moz-linear-gradient(top, #222, #333, #333, #222);
    background-image: -ms-linear-gradient(top, #222, #333, #333, #222);
    background-image: -o-linear-gradient(top, #222, #333, #333, #222);
    margin: 0 0 20px;

}


.modaL_order2 #countdown #tiles {
    position: relative;
    z-index: 1
}

.modaL_order2 #countdown #tiles>span {
    width: 63px;
    max-width: 63px;
    text-align: center;
    color: #111;
    background-color: #ddd;
    background-image: -webkit-linear-gradient(top, #bbb, #eee);
    background-image: -moz-linear-gradient(top, #bbb, #eee);
    background-image: -ms-linear-gradient(top, #bbb, #eee);
    background-image: -o-linear-gradient(top, #bbb, #eee);
    border-top: 1px solid #fff;
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(0, 0, 0, .7);
    margin: 0 7px;
    padding: 12px 0;
    display: inline-block;
    position: relative;
    font-size: 27px;
    font-weight: 600
}
.modaL_order2 #countdown #tiles>span:before {
    content: "";
    width: 100%;
    height: 13px;
    background: #111;
    display: block;
    padding: 0 3px;
    position: absolute;
    top: 41%;
    left: -3px;
    z-index: -1
}
.modaL_order2 #countdown #tiles>span:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #eee;
    border-top: 1px solid #333;
    display: block;
    position: absolute;
    top: 48%;
    left: 0
}

.modaL_order2 #countdown .labels {
    text-align: center;
}

.modaL_order2 #countdown .labels li {
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
    margin: 0 16px;
    text-shadow: 2px 1px 27px #97d1ce;
    text-align: center;
}

#staticBackdrop1 .modal-body:before {
    content: '';
    background: linear-gradient(to right, #0bc1c3, #004863);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
    left: 0;
    bottom: 0;
}


#staticBackdrop1 .modal-body .row {
    position: relative;
}

#staticBackdrop1 .modal-body:after {
    width: 50%;
    content: '';
    height: 85%;
    background: url('../images/popup.webp');
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    border-radius: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

@media(max-width:991px) {
    #staticBackdrop1 .modal-body:after {
        display: none;
    }

    #staticBackdrop1 .modal-body {
        background: #000 url(../images/popup.webp);
        background-size: cover;
        background-position: -100px 0;
    }

    #staticBackdrop1 .modal-body:before {
        background: linear-gradient(to left, #004863, transparent);
    }


}