/* Import custom font   */
/* @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100;9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900;9..40,1000&display=swap");
/* set custom font  */

body {
  /* font-family: "Lato", sans-serif; */
  /* font-family: "Roboto", sans-serif; */
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden; /* Hide horizontal scrollbar */
}

/* main header navigation  */
.main-header-navigation {
  height: 90px;
  position: fixed;
  width: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  box-shadow: 0 15px 40px rgba(21, 37, 72, 0.08);
  z-index: 100010;
}
.main-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  padding-top: 10px;
  z-index: 100010;
}
.main-header-inner .main-header-nav-logo-container img {
  height: 50px;
}
.main-header-inner .main-header-nav-menu ul {
  margin: 0px;
  padding: 0px;
}
.main-header-inner .main-header-nav-menu ul li {
  list-style: none;
  margin-left: 15px;
  color: black;
  display: inline-block;
  border-bottom: 3px solid transparent;
  padding-bottom: 10px;
  margin-bottom: -13px;
  transition: 0.2s all ease-in-out;
}
.main-header-inner .main-header-nav-menu ul li:hover {
  border-bottom: 3px solid #6a5acd;
}
.main-header-inner .main-header-nav-menu ul li:hover > a {
  color: #6a5acd;
}
.main-header-inner .main-header-nav-menu ul li a {
  text-decoration: none;
  color: black;
  display: inline-block;
  transition: 0.2s all ease-in;
}

/* buttons  */
.button {
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  transition: 0.2s all ease-in-out;
}

.custom-standard-button-colored-outline {
  border: 2px solid #6a5acd;
  color: #6a5acd;
  box-sizing: border-box;
}
.custom-standard-button-colored-outline:hover {
  color: #6a5acd;
  border-color: #5244aa;
}

.custom-standard-button-colored {
  background-color: #6a5acd;
  border: 2px solid #6a5acd;
  color: white;
}
.main-header-nav-cta .button:nth-child(1) {
  margin-right: 10px;
}
.custom-standard-button-colored:hover {
  color: white;
  background-color: #5244aa;
  border: 2px solid #5244aa;
}

/* rotate chevron arrow  */
.main-header-nav-menu .dropdown-link a span svg {
  transition: 0.3s all ease-in-out;
}
.main-header-nav-menu .dropdown-link a:hover > span svg {
  transform: rotate(180deg);
}

/* header drop down blocks  */
.header-dropdown-block {
  margin-top: 90px;
  position: fixed;
  z-index: 100001;
  width: 100%;
  transition: 0.3s all ease-out;
  opacity: 1;
}
.header-dropdown-block.inactive {
  opacity: 0;
  margin-top: calc(-100% + 90px);
}

.header-dropdown-block .header-dropdown-section-inner {
  background-color: white;
  width: 100%;
  padding: 25px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* menu drop down section and items  */
.services-menu-inner-item {
  display: flex;
  justify-content: space-between;
}
.services-menu-inner-item .services-inner-menu-list {
  flex-grow: 1;
  margin-left: 15px;
}
.services-inner-image {
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #695acd2f;
}
.services-inner-image span {
  color: #6a5acd;
}
.services-inner-menu-list {
  padding-top: 5px;
}

.services-inner-menu-list a {
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s all ease-in;
  color: #424242;
}
.services-inner-menu-list a:hover {
  color: #6a5acd;
  background-color: #695acd17;
}
.services-inner-menu-list a:hover > span:nth-child(2) {
  opacity: 1;
  margin-right: -10px;
}
.services-inner-menu-list a span:nth-child(2) {
  color: #6a5acd;
  opacity: 0;
  transition: 0.3s all ease-in;
  margin: 0px;
}
.services-inner-menu-items {
  margin-top: 30px;
}
.services-inner-menu-list-title h4 {
  margin-left: 15px;
}

/* drop down about us section links  */
.about-us-dropdown-item a {
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid #6a5acd;
  color: #6a5acd;
  padding-bottom: 10px;
}

.about-us-dropdown-item a span i {
  transform: rotate(180deg);
  margin-left: 20px;
  transition: 0.2s all ease-in-out;
}
.about-us-dropdown-item a:hover > span i {
  margin-left: 25px;
}

/* mobile phone and tablet menu  */
.tablet-mobile-navigation {
  position: fixed;
  height: 70px;
  background-color: white;
  display: none;
  width: 100%;
  z-index: 100010;
  box-shadow: 0 15px 40px rgba(21, 37, 72, 0.08);
}
.tablet-mobile-navigation .tablet-mobile-menu-logo img {
  height: 40px;
  display: flex;
  align-items: center;
}
.tablet-mobile-menu-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tablet-mobile-menu-right {
  display: flex;
  align-items: center;
}
.tablet-mobile-menu-right .button {
  padding: 7px;
  margin-right: 10px;
}
.tablet-mobile-menu-right .desktop-mobile-menu-menu-button {
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  transition: 0.2s all ease-in-out;
  border-radius: 5px;
  cursor: pointer;
}
.tablet-mobile-menu-right .desktop-mobile-menu-menu-button img {
  height: 20px;
  width: 20px;
}
.desktop-mobile-menu-menu-button:hover {
  background-color: #695acd17;
}
.mobile-menu-sidebar-block {
  position: fixed;
  top: 70px;
  right: 0;
  bottom: 0;
  width: 35vw;
  height: 100%;
  background-color: white;
  z-index: 100000;
  padding: 20px;
  transition: 0.2s all ease-in;
}
.mobile-menu-sidebar-block.hidden {
  margin-right: -35vw;
}
.sidebar-menu-items ul li {
  list-style-type: none;
}
.sidebar-menu-items ul li a {
  color: black;
  text-decoration: none;
  display: inline-block;
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
}
.sidebar-menu-items ul {
  margin: 0px;
  padding: 0px;
}
.sidebar-menu-close-button {
  text-align: right;
  margin-right: 30px;
}
.sidebar-menu-close-button img {
  cursor: pointer;
  height: 20px;
  margin-bottom: 20px;
}

/* section divider  */
.main-top-divider {
  height: 90px;
  padding: 0px;
  margin: 0px;
  width: 100vw;
}

/* home banner section  */
.home-section-banner {
  position: relative; /* Enables positioning of the overlay */
  width: 100%;
  height: 100vh; /* Optional: Ensure it takes up the full height of the viewport */
  background-image: url('../freelance.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.home-section-banner .container {
  height: 100%;
}
.home-section-inner {
  padding: 10vh 0px;
  height: 100%;
}
.home-section-banner-inner {
  color: white;
}
.home-section-banner-inner .banner-section-header {
  font-size: 44px;
  line-height: 54px;
  color: white;
  font-weight: 700;
}
.banner-section-description {
  font-size: 18px;
  line-height: 28px;
  margin-top: 30px;
}
.home-section-banner-inner .row {
  height: 100%;
}
.home-section-banner-inner .row .col {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* custom white button  */
.white-custom-button {
  background-color: white;
  border-radius: 5px;
  color: #6a5acd;
  font-weight: bold;
  transition: 0.2s all ease-in-out;
}
.banner-section-cta-button {
  margin-top: 30px;
}
.banner-section-cta-button .white-custom-button {
  width: 250px;
  padding: 15px;
  text-align: center;
}
.banner-section-cta-button .white-custom-button:hover {
  color: #594bb8;
  background-color: #f5f5f5;
}
.banner-section-cta-button .white-custom-button span,
.Calc__submit button span:nth-child(2) {
  width: 20px;
  display: inline-block;
}
.banner-section-cta-button .white-custom-button img,
.Calc__submit button span:nth-child(2) img {
  margin-left: 10px;
  height: 13px;
  animation: slideAnimation 1s ease-in-out infinite;
}

/* animations for chevron right  */
@keyframes slideAnimation {
  0%,
  100% {
    margin-left: 0;
  }
  50% {
    margin-left: 10px; /* Adjust the distance to push to the right */
  }
}

/* HOME BANNER FORM ELEMENT  */
.calculator-small-shared-elements form {
  background-color: white;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 15px 40px rgba(21, 37, 72, 0.08);
  margin-top: 20px;
  width: 90%;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .calculator-small-shared-elements .Calc__header {
    font-size: 1.5rem;
  }
}
.calculator-small-shared-elements .Calc__header {
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 700;
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
  color: rgba(0, 0, 0, 0.829);
  text-transform: uppercase;
}
.calculator-small-shared-elements .calc-input-item {
  width: 100%;
  text-align: left;
  border: 1px solid #b7c6cd;
  border-radius: 8px;
  padding: 5px 15px;
  margin-top: 16px;
}
.calculator-small-shared-elements .calc-input-item select,
.calculator-small-shared-elements .calc-input-item input {
  font-weight: bold;
  outline: none;
  width: 100%;
  overflow: hidden;
  border: none;
}
.calculator-small-shared-elements .calc-input-item label {
  display: block;
  font-size: 14px;
  width: 100%;
  display: inline-block;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  margin: 0px !important;
}
.calculator-small-shared-elements .calc-input-item-pages-input .Calc__pages {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calculator-small-shared-elements
  .calc-input-item-pages-input
  .Calc__pages
  input {
  background-color: transparent;
}
.calculator-small-shared-elements
  .calc-input-item-pages-input
  #Calc__pages__input {
  max-width: 50px;
  border: none;
  font-weight: bold;
  outline: none;
  background-color: transparent;
}

.calculator-small-shared-elements .Calc__label-item-words {
  font-size: 14px;
  margin: auto;
  color: rgba(13, 36, 54, 0.5);
}
.calculator-small-shared-elements .Calc__pages__buttons button:nth-child(2) {
  margin: 0px !important;
}
.calculator-small-shared-elements .Calc__row.Calc__total {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: black;
}
.calculator-small-shared-elements
  .Calc__row.Calc__total
  .home-calc-total-cost-holder {
  font-weight: bold;
}
.phone-section-writers-top-section-left {
  display: none;
}
.section-top__content-writers-left-section-row {
  height: inherit;
  width: 100%;
}
.section-top__content-writers-left-section {
  height: 100%;
  position: relative;
}
.section-top__content-writers-left-section .section-svg,
.section-top__content-writers-left-section .left-section-content-inner {
  position: absolute;
  left: 0;
}
.section-top__content-writers-left-section .section-svg {
  top: 40%;
  left: -30px;
}
.section-top__content-writers-left-section .left-section-content-inner {
  top: 20%;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  padding: 30px;
}

@media (min-width: 1024px) {
  .section-top__content-writers-left-section
    .left-section-content-inner
    .section-top__heading {
    font-size: 52px;
    letter-spacing: 0.2px;
    max-width: 600px;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .section-top__content-writers-left-section
    .left-section-content-inner
    .section-top__heading {
    font-size: 42px;
    line-height: 1.2;
  }
}
@media (min-width: 480px) {
  .section-top__content-writers-left-section
    .left-section-content-inner
    .section-top__heading {
    max-width: none;
  }
}
.section-top__content-writers-left-section
  .left-section-content-inner
  .section-top__heading {
  color: #0d2436;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-top__content-writers-left-section
  .left-section-content-inner
  .section-top__description {
  font-size: 20px;
  line-height: 30px;
  font-style: normal;
  font-weight: 400;
  color: #394a58;
  margin-top: 4vh;
}
.Calc__pages .Calc__pages__buttons button {
  border: none;
  height: 34px;
  width: 34px;
  outline: none;
  cursor: pointer;
  transition: 0.2s all ease-in;
  display: inline;
  border-radius: 17px;
}

.Calc__pages .Calc__pages__buttons button:nth-child(2) {
  margin-left: 10px;
}

.Calc__pages .Calc__pages__buttons button:hover {
  background-color: #6a5acd;
  color: white;
}

.Calc__row.Calc__submit button {
  width: 100%;
  background-color: #4e3db6;
  border-radius: 5px;
  color: white;
  text-transform: uppercase;
  padding: 10px 30px;
  display: block;
  margin-top: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  transition: 0.2s all ease-in-out;
}
.Calc__row.Calc__submit button:hover {
  background-color: #6a5acd;
}
/* banner section order form container price  */
.Calc__row.Calc__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
.banner-form-discount-indicator {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #04be5b;
  background: rgba(4, 190, 91, 0.1);
  border-radius: 6px;
  padding: 4px;
  width: 90px;
}
.home-calc-total-cost-holder {
  font-size: 20px;
  display: inline-block;
  margin-left: 10px;
}
.cancelled-original-price {
  text-decoration: line-through;
}

/* rating stars inner  */
.home-section-item.rating-section-banner {
  background-color: #695acd21;
}
.rating-sections-inner {
  padding: 5vh 0px;
}
.rating-item-inner {
  display: flex;
  justify-content: space-between;
}
.rating-item-desc {
  flex-grow: 1;
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rating-item-inner img {
  height: 60px;
  margin-right: 15px;
}
.rating-item-title {
  color: black;
  font-weight: 700;
  font-size: 17px;
}
.rating-section-starts {
  color: orange;
}

/* home sections  */
.home-section {
  padding: 6rem 0;
  position: relative;
}

.home-section .section-title p {
  font-size: 52px;
  line-height: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
  letter-spacing: 0.1785px;
  font-weight: bold;
  position: relative;
}

.section-description {
  font-size: 1.25rem;
  color: #212529;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  max-width: 770px;
}

/* CUSTOMER REVIEW SECTION  */
.testimonial-carousel {
  margin-top: 5vh;
}
.customer-review-item {
  background-color: #695acd25;
  padding: 20px 15px;
  border-radius: 7px;
  height: 100%;
}
.customer-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.customer-review-customer-id {
  font-size: 18px;
  font-weight: bold;
}
.customer-review-header .fa {
  color: orange;
}
.customer-review-body {
  margin-top: 20px;
  margin-bottom: 20px;
}
.customer-review-divider {
  border: 1px solid #6a5acd;
  margin: 20px 0px;
  width: 100%;
}
.customer-review-footer {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.customer-review-footer .customer-review-discipline {
  font-weight: bolder;
}
.customer-review-footer img {
  height: 15px;
  width: 15px;
}

/* testimonial buttons  */
.glide__arrows {
  text-align: center;
  margin-top: 20px;
}
.glide__slide {
  height: inherit !important;
}
.glide__arrows button {
  background: transparent;
  border: none;
  outline: none;
}
.glide__arrows button img {
  height: 40px;
  transition: 0.3s all ease-in-out;
}
.glide__arrow.glide__arrow--left img {
  transform: rotate(180deg);
}
.glide__arrows button img:hover {
  opacity: 0.8;
}
.glide__arrow.inactive {
  opacity: 0.1;
  pointer-events: none;
}

/* Guarantees section  */
.home-section-benefits {
  background-color: #6a5acd;
  position: relative;
  color: white;
}
.home-section-benefits .section-title {
  width: 100%;
  text-align: center;
}
.our-benefit-item-inner {
  color: black;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
}
.our-benefit-header {
  color: #6a5acd;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: bolder;
  margin-bottom: 20px;
  font-size: 18px;
}
.our-benefit-header img {
  height: 40px;
  margin-right: 10px;
}
.home-section-benefits::before {
  content: "";
  background: url(../images/guarantees__bg-seaweed.svg) 50% / contain no-repeat;
  width: 100px;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.home-section-benefits::after {
  content: "";
  background: url("../images/guarantees__bg-seaweed.svg") 50% / contain
    no-repeat;
  width: 100px;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  transform: rotateY(180deg);
}

.custom-shape-divider-top-1704267575 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1704267575 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-top-1704267575 .shape-fill {
  fill: #6a5acd;
}

/* the block content section  */
.home-section-block-content .section-header {
  position: relative;
}
.home-section-block-content .section-header::before {
  width: 80px;
  height: 80px;
  left: -100px;
  background-image: url(../images/title-bubble-image-1.png);
  content: "";
  position: absolute;
  background-size: contain;
}
.home-section-block-content a {
  color: #6a5acd;
  text-decoration: none;
}
.section--bg-blue {
  background-color: #f2f6f9;
}

.what-you-get-left-bonuses-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
}
.what-you-get-left-bonuses {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 1px 16px rgba(54, 127, 211, 0.18);
  width: 90%;
}
.what-you-get-left-bonuses .bonuses-cta-shortcut {
  width: 100%;
  text-align: center;
}
.what-you-get-left-bonuses p {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}
.what-you-get-left-bonuses a {
  margin-left: auto;
}
.what-you-get-left-bonuses h3 {
  width: 100%;
  text-align: center;
  margin: 20px 0px;
  font-size: 26px;
  color: black;
}
.what-you-get-bonuses-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  padding: 0.8rem 0px;
  border-bottom: 1px solid #695acd8e;
}
.what-you-get-bonuses-item:last-child {
  border: none;
}
.what-you-get-left-bonuses img {
  height: 35px;
  width: 35px;
}
.what-you-get-left-bonuses .bonuses-item {
  display: flex;
  flex: 1;
  align-items: center;
}
.what-you-get-left-bonuses .bonuses-item:nth-child(1) span {
  margin-left: 10px;
  font-weight: 500;
  color: #6a5acd;
}
.bonuses-right.bonuses-item {
  justify-content: right;
}
.bonuses-right.bonuses-item span:nth-child(1) {
  /* color: #4eb7b098; */
  color: #92abc9;
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 10px;
}
.bonuses-right.bonuses-item span:nth-child(2) {
  font-weight: bold;
  color: #fd8c04;
}
.what-you-get-content-left {
  margin-top: 3rem;
}
.get-content-left-item {
  display: flex;
  margin-bottom: 20px;
}
.get-content-left-item img {
  height: 55px;
  margin-right: 20px;
}
.get-content-left-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.bonuses-cta-shortcut a,
.how-two-last-section a,
.home-section.prices-accepted-section a,
.our-services-call-to-action a {
  display: inline-block;
  background-color: #6a5acd;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.2s all ease-in;
  box-shadow: 0 6px 12px rgba(64, 87, 219, 0.16);
}
.bonuses-cta-shortcut a:hover,
.how-two-last-section a:hover,
.home-section.prices-accepted-section a:hove,
.our-services-call-to-action a:hover {
  text-decoration: none;
  background-color: #5e4dcc;
  color: white;
}
.our-services-call-to-action {
  margin-top: 20px;
  text-align: right;
}
.our-services-call-to-action a {
  display: inline-block !important;
  color: white !important;
}
.what-you-get-content-left {
  margin-top: 3rem;
}

/* FAQ accordion */
#main {
  margin: 50px 0;
}

#main #faq .card {
  margin-bottom: 30px;
  border: 0;
}

#main #faq .card .card-header {
  border: 0;
  -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  border-radius: 2px;
  padding: 0;
}

#main #faq .card .card-header .btn-header-link {
  /* color: #fff; */
  display: flex;
  text-align: left;
  /* background: #ffe472; */
  background: #ffe472;
  color: #222;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: bold;
  border: none;
}

#main #faq .card .card-header .btn-header-link .faq-chevron:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
}

#main #faq .card .card-header .btn-header-link.collapsed {
  background: transparent;
  border-top: 2px solid gray;
  font-weight: normal;
  /* color: #fff; */
}

#main #faq .card .card-header .btn-header-link.collapsed .faq-chevron:after {
  content: "\f106";
}

#main #faq .card .collapsing {
  background: #ffe472;
  line-height: 30px;
}

#main #faq .card .collapse {
  border: 0;
}

#main #faq .card .collapse.show {
  background: #ffe472;
  line-height: 30px;
  color: #222;
}

/* FOOTER DESIGNS */

.footer-container-wrapper .section-socials {
  background-color: #162f41;
  padding: 3vh 0px;
}
.footer-container-wrapper .section-socials .row .col {
  height: inherit;
  display: flex;
  align-self: center;
}
.footer-container-wrapper .footer-social-buttons-container .fa {
  font-size: 37px;
  margin-right: 30px;
  color: #637180;
}
.footer-container-wrapper .section-socials__badges {
  width: 100%;
  text-align: right;
}
.footer-container-wrapper .section-socials__badges a:nth-child(1) {
  margin-right: 25px;
}
.footer {
  background-color: #071826;
}
@media (min-width: 1024px) {
  .footer__label {
    font-size: 1.5rem;
  }
}
.footer__label {
  font-size: 1.35rem;
  line-height: 1.42;
  color: hsla(0, 0%, 100%, 0.6);
  margin-bottom: 1rem;
  display: inline-block;
  width: 100%;
  font-weight: 700;
}
.footer li,
.footer ul {
  padding: 0;
  margin: 0 0 0.5rem;
  background: none;
}
.footer li {
  list-style-type: none;
}
@media (min-width: 1024px) {
  .footer a {
    line-height: 1.86;
  }
}
.footer a {
  /* -webkit-transition: color 0.1s, opacity 0.2s; */
  transition: 0.2s all ease-in;
  color: #5a7184;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.39;
}
.footer ul li:hover a {
  color: white;
  text-decoration: none;
}
.section.footer .row {
  border-bottom: 1px solid #162f41;
  padding-bottom: 4vh;
  margin-bottom: 4vh;
}
.footer__column-1 .footer__cell--disclaimer {
  text-align: center;
}
.footer__column-1 .footer__cell--disclaimer p {
  font-size: 16px;
  line-height: 26px;
  width: 80%;
  margin-left: 10%;
  color: #5a7184;
}
.footer__copyright p {
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #5a7184;
  margin-top: 7vh;
}
.footer__langs__list {
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .footer__accept img {
    max-height: 35px;
  }
}
.footer__accept img {
  max-height: 30px;
  width: auto;
}

/* Shared mini section  */
.mini-section {
  background-color: #6a5acd;
  color: white;
  padding: 9vh;
}
.mini-section h4 {
  font-size: 44px;
  line-height: 54px;
  font-weight: 700;
  margin-bottom: 30px;
}
.mini-section {
  position: relative;
}
.mini-section::after {
  content: "";
  background: url(../images/mini-section-bg.svg) 50% / contain no-repeat;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
}
.steps-image-section img {
  max-width: 90%;
  border-radius: 10%;
}
.order-placement-steps-inner {
  font-family: "Lato", sans-serif;
}

/* how to steps  */
.steps-content-inner {
  display: flex;
}
.steps-content-number {
  font-size: 120px;
  margin-right: 20px;
  color: #6a5acd;
  opacity: 0.1;
}
.step-content-step {
  font-size: 18px;
  color: #6a5acd;
  font-weight: 700;
}
.step-content-title {
  color: #6a5acd;
  font-size: 36px;
  line-height: 40px;
  font-weight: 900;
  margin-bottom: 25px;
}
.step-content-sub-title {
  line-height: 29px;
  font-size: 18px;
  font-weight: bold;
}
.step-content-description {
  color: #7b7b7b;
  line-height: 29px;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

.order-steps-item.with-margin-top {
  margin-top: 10vh;
}

/* how to last section  */
.how-two-last-section h1 {
  margin-bottom: 30px;
}
.how-two-last-section img {
  width: 95%;
}
.how-two-last-section .row .col:nth-child(2) {
  height: inherit;
}
.how-two-last-section .row .col:nth-child(2) .how-to-last-section-right-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: right;
  justify-content: center;
  text-align: right;
}

/* pricing section  */

.section-pricing-table-holder-container-outer {
  padding: 3rem 0px;
}
.section-pricing-table-holder-container-outer .pricing-section-pricing-table {
  margin-top: 5vh;
}
.table-row-colum-select-input {
  display: none;
}
.section-pricing-table-holder-container-outer
  .pricing-section-pricing-table
  table {
  width: 100%;
}
.section-pricing-table-holder-container-outer
  .pricing-section-pricing-table
  table
  tr
  td {
  padding: 1rem;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  color: #0d2436;
  border-left: 1px solid #b7c6cd;
  cursor: pointer;
  transition: 0.2s all ease-in;
}
.section-pricing-table-holder-container-outer
  .pricing-section-pricing-table
  table
  tr
  td:nth-child(1) {
  border: none;
}
.section-pricing-table-holder-container-outer
  .pricing-section-pricing-table
  table
  tbody
  tr:nth-of-type(even)
  td {
  background-color: #f2f6f9;
}
.section-pricing-table-holder-container-outer
  .pricing-section-pricing-table
  table
  tr
  td:hover {
  background-color: #6a5acd !important;
  color: white;
}
.section-pricing-table-holder-container-outer .table-explanation-section {
  margin-top: 30px;
}

.section-pricing-table-holder-container-outer tbody tr:nth-child(1) {
  font-weight: bold;
}
.section-pricing-table-holder-container-outer tbody tr td:nth-child(1) {
  font-weight: bold;
}

/* Prices payment accepted section  */
.prices-accepted-section {
  background-color: #f2f6f9;
}
.home-section.prices-accepted-section {
  padding: 4vh;
}
.payment-accepted-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-accepted-inner p {
  font-size: 18px;
  margin: 0px;
  padding: 0px;
  margin-right: 15px;
}
.accepted-payment-payment-methods {
  display: flex;
  align-items: center;
  justify-content: left;
}
.accepted-payment-payment-methods .accepted-payments {
  display: flex;
  align-items: center;
}
.accepted-payment-payment-methods .accepted-payments div {
  display: inline-block;
  margin-right: 10px;
  border: 1px solid #dae6f2;
  border-radius: 3px;
  padding: 5px;
}

/* how we determine our prices  */
.calculation-item-inner {
  background-color: white;
  border-radius: 5px;
  color: rgba(66, 66, 66, 0.884);
  padding: 20px;
}
.calculation-item-inner img {
  height: 30px;
  margin-right: 20px;
}
.calculation-item-inner .title {
  margin-bottom: 30px;
}
.calculation-item-inner .title span:nth-child(2) {
  color: black;
  font-size: 19px;
  font-weight: bold;
  color: #6a5acd;
}
.calculation-item-inner .row .col {
  height: inherit;
}
.price-calculation-item {
  height: 100%;
  background-color: white;
  border-radius: 5px;
}

/* OUR SERVICES SECTION  */
.services-section {
  background-color: #6a5acd;
  color: white;
}
.services-section::before {
  content: "";
  background-repeat: no-repeat;
  width: 310px;
  height: 90%;
  position: absolute;
  background-size: contain;
  opacity: 0.5;
  top: 20px;
  left: 20px;
  background-image: url(../images/services-banner-bg-left.webp);
}
.services-section::after {
  content: "";
  background-repeat: no-repeat;
  width: 310px;
  height: 90%;
  position: absolute;
  background-size: contain;
  opacity: 0.5;
  top: 20px;
  right: 20px;
  transform: rotateY(180deg);
  background-image: url(../images/services-banner-bg-left.webp);
}
.our-services-header h1 {
  font-size: 50px;
  line-height: 58px;
  margin-bottom: 30px;
}
.our-services-banner-inner div {
  text-align: center;
}
.our-services-section-inner {
  background-color: #f5f9ff;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
}
.our-services-toggle-buttons {
  width: 100%;
  border-radius: 20px;
  padding: 25px;
  margin-left: -50px;
  margin-top: -50px;
  background-color: white;
  border: 1px solid #c8d9ee;
  box-shadow: 0 2px 16px rgba(54, 127, 211, 0.18);
}
.our-services-toggle-buttons {
  text-align: center;
}
.services-pencil-background-centered img {
  height: 70px;
  text-align: center;
  margin: 25px 0px;
}
.services-categories-item {
  color: #92abc9;
  box-shadow: inset 0 0 0 1px #c8d9ee;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  border-radius: 6px;
  background-color: transparent;
  cursor: pointer;
  margin-bottom: 15px;
  transition: 0.2s all ease-in-out;
}
.services-categories-item.active {
  color: #367fd3;
  box-shadow: inset 0 0 0 2px #367fd3;
  background-color: transparent;
  font-weight: 500;
}
.our-services-section-inner .col-sm-8 {
  height: inherit;
}
.services-items-list-container {
  height: 100%;
  display: flex;
  align-items: right;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.services-items-list-container a {
  display: block;
  text-decoration: none;
  color: #0e101a;
  line-height: 30px;
  letter-spacing: 0.3px;
  font-family: "Lato", sans-serif;
}
.services-items-list-container a:hover {
  text-decoration: underline;
}
.services-items-list-container a img {
  height: 6px;
  margin-right: 10px;
}
.services-list-item-element {
  display: none;
}
.services-list-item-element.active {
  display: block;
}

/* BENEFITS OF OUR SERVICES SECTION  */
.home-section.more-services-benefits {
  background-image: linear-gradient(
    103.43deg,
    #eefcff 9.21%,
    #eff7ff 49.74%,
    #f5f4ff 93.44%
  );
}
.more-services-benefits .services-benefits-header,
.services-benefits-section-description {
  text-align: center;
  margin-bottom: 30px;
}
.benefit-item-title-element {
  border-radius: 12px;
  background-color: #fff;
  box-shadow: inset 0 -8px 18px -5px #dee3ff;
  width: 54px;
  height: 54px;
  line-height: 54px;
  display: inline-flex;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  align-items: center;
  justify-content: center;
}
.benefit-item-title-element img {
  height: 35px;
}
.services-benefits-title .title {
  display: block;
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}
.services-benefits-description p {
  color: #001434;
  font-size: 16px;
  line-height: 24px;
}
.services-benefit-inner-item {
  padding: 20px;
  cursor: default;
  border-radius: 12px;
  background-color: hsla(0, 0%, 100%, 0.8);
  border: 1px solid #fff;
  box-shadow: 0 4px 15px rgba(23, 49, 143, 0.06), inset 0 4px 10px #fff,
    0 0 1px rgba(49, 89, 227, 0.25);
  margin-top: 30px;
}

/* WRITERS SECTION  */
.home-section.our-writers-section {
  background-color: #f4f8fd;
}
.our-writers-list-inner .our-writers-item {
  background-color: white;
  border-radius: 10px;
  position: relative;
}

/* Padding 25px  */
.our-writers-list-inner .our-writers-item {
  padding-top: 25px;
  padding-left: 25px;
  margin-bottom: 30px;
}
.writer-item-left-content {
  padding-bottom: 25px;
}
.our-writers-list-inner .our-writers-item::before {
  content: "";
  background-image: url(../images/writer-item-left-arrow.webp);
  left: -30px;
  position: absolute;
  width: 30px;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: 0;
}
.our-writers-item-image img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  margin-right: 20px;
}
.writer-item-left {
  display: flex;
}
.write-item-ratings div {
  display: inline-block;
  margin-right: 20px;
  font-size: 15px;
  font-weight: 700;
  color: #151515;
}
.writer-item-name {
  margin-bottom: 10px;
}
.writer-item-name span:nth-child(1) {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  color: #12245a;
}
.writer-item-disciplines span {
  color: #151515;
  font-size: 14px;
  border: 1px solid #c4c4c4;
  border-radius: 50px;
  padding: 6px 15px;
  margin: 0 10px 6px 0;
  line-height: 16px;
  display: inline-block;
}
.write-item-ratings {
  margin-top: 10px;
}
.write-item-ratings .fa {
  color: orange;
}
.hire-write-cta-column {
  height: inherit;
}
.writers-item-hire-inner,
.writer-item-hire-button {
  height: 100%;
}
.writer-item-hire-button {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-end;
}
.writer-item-hire-button a {
  display: inline-block;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: white;
  background-color: #6a5acd;
  font-size: 17px;
  font-weight: 500;
  transition: 0.2s all ease-in-out;
}
.writer-item-hire-button a:hover {
  background-color: #5546b8;
  text-decoration: none;
}
.our-writers-item-image {
  margin-left: -60px;
}

.home-section.our-writers-section {
  background-image: linear-gradient(
    103.43deg,
    #eefcff 9.21%,
    #eff7ff 49.74%,
    #f5f4ff 93.44%
  );
}
.how-we-select-writers-header-inner {
  text-align: center;
}
.how-we-select-writers-header-inner h1 {
  margin-bottom: 20px;
}

/* how we hire writers cards  */
.ag-courses_item {
  overflow: hidden;
  border-radius: 28px;
  margin-top: 30px;
  height: 100%;
}
.ag-courses-item_link {
  display: block;
  padding: 30px 20px;
  background-color: white;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.ag-courses-item_link:hover,
.ag-courses-item_link:hover .ag-courses-item_date {
  text-decoration: none;
  color: #272626;
}
.ag-courses-item_link:hover .ag-courses-item_bg {
  -webkit-transform: scale(10);
  -ms-transform: scale(10);
  transform: scale(15);
}
.ag-courses-item_link:hover .ag-courses-item_title,
.ag-courses-item_link:hover .ag-courses-item_date-box {
  color: white;
  transition: 0.4s all ease-in-out;
}
.ag-courses-item_title {
  min-height: 87px;
  margin: 0 0 25px;
  overflow: hidden;
  font-weight: bold;
  font-size: 24px;
  color: #272626;

  z-index: 2;
  position: relative;
}
.ag-courses-item_date-box {
  font-size: 16px;
  color: #353434;
  z-index: 2;
  position: relative;
}

.ag-courses-item_bg {
  height: 128px;
  width: 128px;
  background-color: #f9b234;
  z-index: 1;
  position: absolute;
  top: -75px;
  right: -75px;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ag-format-container .row .col:nth-child(1) .ag-courses-item_bg {
  background-color: #3ecd5d;
}
.ag-format-container .row .col:nth-child(2) .ag-courses-item_bg {
  background-color: #e43e02;
}
.ag-format-container .row .col:nth-child(3) .ag-courses-item_bg {
  background-color: #952aff;
}
.ag-format-container .row .col:nth-child(4) .ag-courses-item_bg {
  background-color: #cd3e94;
}
.ag-format-container .row .col {
  margin-bottom: 30px;
}
.writer-hiring-steps-body {
  margin-top: 50px;
}

/* writers section statics  */
.home-section.our-writers-statistics {
  /* background-color: #6a5acd; */
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.writers-our-statistics-container {
  margin-top: 40px;
}
.writers-our-statistics-container .writers-statistics-inner {
  display: flex;
}
.statistics-image {
  margin-right: 15px;
  padding-top: 10px;
}
.writers-our-statistics-container .writers-statistics-inner h1 {
  margin: 0px;
}
.writers-our-statistics-container .writers-statistics-inner p {
  font-size: 18px;
}
.writers-page-last-section {
  background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
}

/* ABOUT US PAGE  */
.about-what-we-do h1 {
  font-size: 55px;
  line-height: 60px;
  margin-bottom: 25px;
}
.about-us-banner-image img {
  width: 100%;
  margin-left: auto;
}
.home-section.about-us {
  background-image: linear-gradient(
    285.17deg,
    #eefcff 4.21%,
    #eff7ff 45.06%,
    #f5f4ff 89.11%
  );
  min-height: calc(100vh - 90px);
}
.mission-section {
  font-family: "Lato", sans-serif;
}
.mission-section .our-benefit-item-inner {
  height: 100%;
  font-size: 17px;
  color: #424242;
}
.mission-section .our-benefit-item-inner .our-benefit-header {
  display: block;
  width: 100%;
  /* text-align: center; */
  font-size: 22px;
}
.mission-section .our-benefit-item-inner .our-benefit-header .benefit-image {
  background-color: #0045950e;
  height: 80px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  margin-bottom: 20px;
}
.mission-section
  .our-benefit-item-inner
  .our-benefit-header
  .benefit-image
  img {
  margin: 0px;
}
.mission-section .section-title p {
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 30px;
}

.more-about-us-left-col {
  background-color: #f2f6f9;
}
.more-about-us-right-col {
  background-color: #6a5acd;
  color: white;
}
.more-about-us-right,
.more-about-us-left {
  padding: 50px;
}
.more-about-us-section h3 {
  margin-bottom: 30px;
  font-size: 33px;
}
.more-about-us-right,
.more-about-us-left {
  padding: 20px;
}
.customer-reviews-section {
  background-image: linear-gradient(
    285.17deg,
    #eefcff 4.21%,
    #eff7ff 45.06%,
    #f5f4ff 89.11%
  );
}
.customer-reviews-section .section-title p {
  width: 100%;
  text-align: center;
  font-size: 37px;
}
.customer-reviews-section .section-description {
  width: 80%;
  text-align: center;
  font-size: 16px;
  margin-left: 10%;
}
.customer-reviews-section .customer-review-item {
  box-shadow: 0 4px 15px rgba(23, 49, 143, 0.06), inset 0 4px 10px #fff,
    0 0 1px rgba(49, 89, 227, 0.25);
  border-color: #c7d1f6;
  background-color: #fff;
}

/* services cta  */
.reviews-ct-inner {
  background-color: #6a5acd;
  text-align: center;
  color: white;
  padding: 40px 30px;
  border-radius: 15px;
}
.reviews-ct-inner a {
  display: inline-block;
  width: 190px;
  text-align: center;
  padding: 15px 20px;
  border-radius: 5px;
  color: white;
  box-shadow: 0 4px 6px rgba(54, 127, 211, 0.2),
    0 2px 16px rgba(54, 127, 211, 0.18);
  font-weight: 500;
  text-decoration: none;
  background-color: #fd8c04;
}
.customer-reviews-cta-section {
  background-image: url("../images/review-cta-bg.svg");
}

/* CONTACT US PAGE  */
.home-section.contact-us {
  background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
}
.contact-us-banner-section-image-right {
  text-align: center;
}
.contact-us-banner-section-image-right img {
  height: 40vh;
}
.contact-us-banner-content-title h1 {
  margin-bottom: 25px;
}
.contact-us-inner-method-item {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  height: 100%;
  color: #001434;
}
.contact-us-inner-method-item img {
  height: 90px;
  margin-bottom: 15px;
}
.contact-us-inner-method-item h4,
.contact-us-inner-method-item a {
  margin-bottom: 10px;
  display: block;
}
.contact-us .writers-our-statistics-container {
  margin: 0px;
}
.contact-us-inner-method-item a {
  color: rgb(103, 117, 242);
  text-decoration: none;
}
.contact-us-inner-method-item a:hover {
  text-decoration: none;
}
.about-us-contact-methods-section .row .col {
  height: inherit;
}

.contact-form-right-inner {
  border-radius: 12px;
  background-color: hsla(0, 0%, 100%, 0.8);
  border: 1px solid #fff;
  box-shadow: 0 4px 15px rgba(23, 49, 143, 0.06), inset 0 4px 10px #fff,
    0 0 1px rgba(49, 89, 227, 0.25);
  padding: 25px;
}
.home-section.contact-form-section {
  background-color: #f9fafd;
}
.contact-form-right-inner input,
.contact-form-right-inner textarea {
  outline: none;
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 1px rgba(23, 49, 143, 0.1), 0 0 1px rgba(23, 49, 143, 0.25) !important;
  color: #001434;
  border: 1px solid transparent;
  transition: border-color 0.25s;
}
.contact-form-right-inner input:focus,
.contact-form-right-inner textarea:focus {
  border-color: #dfe6f5;
  box-shadow: 0 1px 6px rgba(0, 48, 92, 0.1) !important;
}
.contact-form-form .row {
  margin-bottom: 30px;
}
.contact-form-right-inner .input-label {
  color: #585f74;
  font-size: 16px;
  list-style: 24px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
}
.contact-form-right-inner textarea {
  height: 90px;
}
.contact-form-submit-container {
  width: 100%;
  text-align: center;
}
.contact-form-right-inner button {
  border: none;
  outline: none;
  background-image: linear-gradient(180deg, #6a5acd, #6353c5);
  box-shadow: 0 4px 10px #695acd7a;
  color: #fff;
  border-radius: 5px;
  transition: 0.2s all ease-in-out;
  padding: 15px 30px;
}
.contact-form-right-inner button:hover {
  background-image: linear-gradient(180deg, #5e4dc9, #4e3eb8);
}
.contact-form-col {
  height: inherit;
}
.contact-form-left-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* TERMS AND CONDITIONS  */
.terms-conditions-inner {
  background-color: white;
  border-radius: 10px;
  font-family: "Lato", sans-serif;
  padding: 30px;
}
.home-section.terms-and-conditions {
  background-color: #5377c513;
}
.terms-conditions-inner h1 {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
.terms-conditions-inner p {
  margin: 0px;
  color: #515763;
}
.terms-conditions-inner .terms-section-title {
  margin-top: 50px;
}

/* PROGRESS BAR  */
/* ===== progress loader =====  */
#progress-preloader {
  overflow: hidden;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
  display: none;
  background-color: rgba(5, 119, 204, 0.047);
}

#progress-preloader .medilife-load {
  -webkit-animation: 2000ms linear 0s normal none infinite running medilife-load;
  animation: 2000ms linear 0s normal none infinite running medilife-load;
  background: transparent;
  border-color: #6a5acd;
  border-top-color: #6a5acd18;
  border-left-color: #6a5acd18;
  border-right-color: #6a5acd18;
  border-radius: 50%;
  border-style: solid;
  border-width: 3px;
  height: 50px;
  left: calc(50% - 25px);
  position: relative;
  top: calc(50% - 25px);
  width: 50px;
  z-index: 9;
}

@-webkit-keyframes medilife-load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes medilife-load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.deadline-date-time-holder span {
  color: rgb(27, 27, 27);
  font-size: 12px;
  font-weight: 500;
}

/* remove outline from all links  */
a {
  outline: none !important;
}
