/*********************
START: HERO
*********************/
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background-color: black;
  color: var(--baseLight-color);
  background-size: cover;
}

.hero::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  background: linear-gradient(
      180deg,
      rgba(11, 64, 101, 0.8) 0%,
      rgba(11, 64, 101, 0) 100%
    ),
    radial-gradient(
      circle,
      rgba(11, 64, 101, 0.9) 0%,
      rgba(23, 129, 203, 0) 100%
    );
  z-index: 1;
}
.hero .inner-hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero .inner-hero h1 {
  text-align: center;
  width: 70%;
  margin-block-end: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: var(--line-height);
}
.hero .inner-hero p {
  width: 60%;
  text-align: center;
  font-size: var(--text-2xl);
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height);
}

.hero .inner-hero a.btn {
  margin-top: 60px;
}

.hero .scroll-down-animation {
  position: absolute;
  inset-block-end: 9px;
  inset-inline: 0;
  margin: 0 auto;
  z-index: 3;
}

.hero .scroll-down-animation .mouse {
  margin: 0 auto;
  display: block;
  border-radius: 50px;
  border: 2px solid var(--secondary-color);
  height: 50px;
  width: 30px;
  position: relative;
}

.hero .scroll-down-animation .move {
  position: absolute;
  background-color: var(--secondary-color);
  height: 10px;
  width: 2px;
  left: 50%;
  transform: translateX(-50%);
  animation: move 2s linear infinite;
}

@keyframes move {
  0% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, 20px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 40px);
    opacity: 0;
  }
}

/*********************
END: HERO
*********************/

/*********************
START: Features
*********************/
.features {
  margin-block: var(--global-section-padding);
}
.features span.small-title-feature,
.right-in-story span,
.how-it-works .main-how-it-works span,
.main-beginnings .left-beginnings span,
.content-testimonials > span,
.contact--right > span,
.partners--text > span,
.chargeableWeight--text > span {
  text-align: center;
  display: block;
  color: var(--secondary-color);
  font-size: var(--text-3xl);
  margin-block-end: 26px;
}
.features h2,
.right-in-story h2,
.how-it-works .main-how-it-works h2,
.main-beginnings .left-beginnings h2,
.content-testimonials > h2,
.contact--right > h2,
.partners--text > h2,
.chargeableWeight--text > h2 {
  color: var(--text-color-1);
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: var(--line-height);
  margin-block-end: 30px;
}
.features ul {
  display: flex;
  justify-content: space-between;
}
.features ul li {
  width: 24.5%;
  border-radius: 15px;
  background: var(--primary-color);
  padding: 40px 30px;
  border: 1px solid var(--primary-color);
}
.features ul li:nth-child(even) {
  background-color: var(--bg-color);
  color: var(--text-color-1);
}
.features ul li h3 {
  color: #fff;
  font-size: var(--text-2xl);
  font-style: normal;
  font-weight: 700;
  line-height: var(--line-height);
  margin-block: 16px 14px;
}
.features ul li p {
  color: #fff;
  width: 75%;
}
.features ul li:nth-child(even) h3,
.features ul li:nth-child(even) p {
  color: var(--text-color-1);
}
/*********************
END: Features
*********************/

/*********************
START: STORY
*********************/
.in-story {
  display: flex;
  align-items: center;
  margin-block-end: var(--global-section-padding);
}
.left-in-story {
  width: 40%;
}
.left-in-story img {
  width: 90%;
}
.right-in-story {
  position: relative;
  width: 60%;
}
.right-in-story h2,
.right-in-story span {
  text-align: left;
  width: 70%;
}
.right-in-story p {
  width: 60%;
}
.right-in-story > img {
  position: absolute;
  width: 35%;
  inset-inline-end: 0;
  inset-block-end: -90px;
}
/*********************
END: STORY
*********************/

/*********************
START: How it Works
*********************/
.how-it-works {
  background: #0b4065;
  padding-block: var(--global-section-padding);
  color: var(--baseLight-color);
}
.how-it-works .main-how-it-works span {
  text-align: left;
}
.how-it-works .main-how-it-works h2 {
  text-align: left;
  color: var(--baseLight-color);
  margin-block: 15px 70px;
}
.how-it-works .main-how-it-works ul {
  display: flex;
  justify-content: space-between;
}

.how-it-works .main-how-it-works ul li {
  width: 25%;
  position: relative;
  padding-inline-end: 2rem;
}

.how-it-works .main-how-it-works ul li:not(:last-child)::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	top: 43px;
	left: 0;
	border: 1px dashed rgba(255, 255, 255, 0.5);
}


.how-it-works .main-how-it-works ul li .top-number {
  background: url(../img/icons/under-how.svg) no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 90px;
  color: var(--text-color-1);
  font-weight: bold;
  font-size: var(--text-2xl);
  margin-block-end: 35px;
	position: relative;
}

.how-it-works .main-how-it-works ul li h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-block-end: 15px;
}
.how-it-works .main-how-it-works ul li p {
  font-size: var(--text-lg);
}
/*********************
END: How it work
*********************/

/*********************
START: Beginnings
*********************/
.main-beginnings {
  display: flex;
  justify-content: space-between;
  padding-block: var(--global-section-padding);
  align-items: center;
}
.main-beginnings .left-beginnings {
  width: 45%;
}
.main-beginnings .left-beginnings span {
  text-align: left;
}
.main-beginnings .left-beginnings h2 {
  text-align: left;
}
.main-beginnings .left-beginnings ul {
  margin-block-start: 40px;
}
.main-beginnings .left-beginnings ul li {
  border-bottom: dotted 3px #c4c8cc;
  padding-block: 20px;
}
.main-beginnings .left-beginnings ul li h3 {
  color: #1781cb;
  font-size: var(--text-3xl);
  font-style: normal;
  font-weight: 700;
  line-height: var(--line-height);
}
.main-beginnings .left-beginnings ul li p {
  color: #111d25;
  font-size: var(--text-lg);
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height);
  margin-block-start: 14px;
  margin-block-end: 10px;
}
.main-beginnings .right-begginings {
  width: 50%;
}
.main-beginnings .right-begginings img {
  width: 100%;
}
/*********************
END: beginnings
*********************/

/*********************
START: TESTIMONIALS
*********************/
.testimonials {
  background-image: url("../img/testimonials.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-block: var(--global-section-padding);
}

.testimonials::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(11, 64, 101, 0.7);
}
.content-testimonials {
  position: relative;
  z-index: 2;
}
.content-testimonials > span {
  text-align: left;
}
.content-testimonials h2 {
  text-align: left;
  color: var(--baseLight-color);
  display: flex;
  justify-content: space-between;
}
.content-testimonials .swiper-slide {
  background: var(--baseLight-color);
  border-radius: 15px;
  padding: 30px;
}
.content-testimonials .swiper-slide .top-box-testimonial {
  display: flex;
  align-items: center;
	margin-block-end: 1.5rem;
}
.content-testimonials .swiper-slide .top-box-testimonial img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-inline-end: 16px;
}

.content-testimonials .swiper-slide .top-box-testimonial h4 {
  font-size: var(--text-xl);
  font-style: normal;
  font-weight: 700;
  line-height: var(--line-height);
	    min-height: 57px;

}
.content-testimonials .swiper-slide p {
  font-size: var(--text-base);
  font-style: italic;
  font-weight: 300;
  line-height: var(--line-height);
      min-height: 250px;

	margin-block-end: 1rem;
}
.content-testimonials .swiper-slide span {
  color: #1781cb;
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height);
  margin-inline-start: 4px;
}
.under-button-swiper {
  position: relative;
  margin-block-start: 50px;
  width: 135px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--baseLight-color) !important;
    position: relative !important;
    width: 48px !important;
    height: 48px !important;
    transition: all 0.3s;
    background: var(--primary-color);
    border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #0f588d;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1rem !important;
}
/*********************
END: TESTIMONIALS
*********************/

/*********************
START: Counter
*********************/
.count-number {
  margin-block: var(--global-section-padding);
}
.count-number ul {
  display: flex;
  justify-content: space-between;
}
.count-number ul li {
  width: 23%;
}
.count-number ul li h3 {
  color: var(--primary-color);
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: var(--line-height);
}
.count-number ul li p {
  color: #111d25;
  font-size: var(--text-2xl);
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height);
}
/*********************
END: Counter
*********************/

/*********************
START: CONTACTCONTACT
*********************/
.contact {
  margin-block: var(--global-section-padding);
}

.contact--content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact--left {
  width: 55%;
}

.contact--right {
  width: 40%;
}

.contact--right :is(span, h2) {
  text-align: left;
}

.contact--right__box {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  border-radius: var(--border-radius20);
  margin-block: 1.5rem;
  color: var(--baseLight-color);
}

.contact--right__box span {
  font-size: var(--text-xl);
}

.contact--right__box h3 {
  margin-block-start: 1rem;
}

.contact--right__box img {
  width: 44px;
  height: 44px;
}

.contact--right ul li {
  margin-block-end: 1.25rem;
  display: flex;
  justify-content: space-between;
}

.contact--right ul li > div > img {
  margin-inline-end: 0.5rem;
}

.contact--right ul li h4 {
  font-size: var(--text-xl);
}
/*********************
END: CONTACT
*********************/
/*********************
START: CONTACT
*********************/
.partners {
  margin-block: var(--global-section-padding);
  background-color: #0b4065;
  padding-block: 50px;
}

.partners--content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partners--text {
  width: 35%;
}

.partners--text :is(span, h2) {
  text-align: left;
}

.partners--text h2 {
  color: var(--baseLight-color);
}

.partners--images {
  width: 65%;
}

.partners--images ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.partners--images ul li {
  width: 33.33%;
  min-height: 250px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--bg-color);
}

.partners--images ul li img {
  width: 80%;
}

.partners--images ul li:nth-child(2),
.partners--images ul li:nth-child(5),
.partners--images ul li:nth-child(8) {
  border-left: 1px solid var(--bg-color);
  border-right: 1px solid var(--bg-color);
}

.partners--images ul li:nth-child(7),
.partners--images ul li:nth-child(8),
.partners--images ul li:nth-child(9) {
  border-bottom: none;
}
.loc-summary {
  border-radius: 15px;
}
.loc-summary h4 {
  color: #1781cb;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--line-height);
  margin-block-end: 10px;
}
.gm-style-iw-d {
  overflow: auto !important;
}
.gm-style-iw {
  max-height: 275px !important;
  padding: 10px !important;
}
/*********************
END: CONTACT
*********************/

/*********************
START: CHARGEABLE WEIGHT
*********************/
.chargeableWeight {
  margin-block: var(--global-section-padding);
}

.chargeableWeight--content {
  display: flex;
  justify-content: space-between;
}

.chargeableWeight--input,
.chargeableWeight--results {
  width: 49%;
  padding: 60px 60px 28px 60px;
  border-radius: var(--border-radius15);
}

.chargeableWeight--input > h5,
.chargeableWeight--results > h5 {
  margin-block-end: 60px;
  text-align: center;
}

.chargeableWeight--input label,
.chargeableWeight--results label {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.chargeableWeight--input input,
.chargeableWeight--results input {
  margin-top: 0.45rem;
}

/* chargeableWeight--input */
.chargeableWeight--input {
  border: 1px solid var(--primary-color);
  background: rgba(223, 234, 242, 0.8);
}

.chargeableWeight--input > h5 {
  color: #111d25;
}

.chargeableWeight--input ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.chargeableWeight--input ul li {
  width: 48%;
  margin-bottom: 2rem;
}

.chargeableWeight--input ul li label {
  color: #111d25;
}

.chargeableWeight--results {
  background-image: url("../img/results-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.chargeableWeight--results > h5 {
  color: var(--baseLight-color);
  position: relative;
}

.chargeableWeight--results:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: var(--border-radius15);
  background-color: rgba(23, 129, 203, 0.9);
}

.chargeableWeight--results ul {
  position: relative;
}

.chargeableWeight--results ul li {
  width: 100%;
  margin-bottom: 2rem;
}

.chargeableWeight--results ul li label {
  color: var(--baseLight-color);
}

.chargeableWeight--form button {
  margin-inline: auto;
  display: block;
  margin-block-start: 60px;
}
/*********************
END: CHARGEABLE WEIGHT
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {
  .features span.small-title-feature,
  .right-in-story span,
  .how-it-works .main-how-it-works span,
  .main-beginnings .left-beginnings span,
  .content-testimonials > span,
  .contact--right > span,
  .partners--text > span,
  .chargeableWeight--text > span {
    font-size: var(--text-3xl);
  }

  .features h2,
  .right-in-story h2,
  .how-it-works .main-how-it-works h2,
  .main-beginnings .left-beginnings h2,
  .content-testimonials > h2,
  .contact--right > h2,
  .partners--text > h2,
  .chargeableWeight--text > h2,
  .count-number ul li h3 {
    font-size: var(--text-6xl);
  }

  .hero .inner-hero h1 {
    font-size: 80px;
  }

  .contact--right__box h3 {
    font-size: var(--text-4xl);
  }

  .chargeableWeight--input > h5,
  .chargeableWeight--results > h5 {
    font-size: var(--text-5xl);
  }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
  .features span.small-title-feature,
  .right-in-story span,
  .how-it-works .main-how-it-works span,
  .main-beginnings .left-beginnings span,
  .content-testimonials > span,
  .contact--right > span,
  .partners--text > span,
  .chargeableWeight--text > span {
    font-size: var(--text-2xl);
  }

  .features h2,
  .right-in-story h2,
  .how-it-works .main-how-it-works h2,
  .main-beginnings .left-beginnings h2,
  .content-testimonials > h2,
  .contact--right > h2,
  .partners--text > h2,
  .chargeableWeight--text > h2,
  .count-number ul li h3 {
    font-size: var(--text-5xl);
  }

  .hero .inner-hero h1 {
    font-size: var(--text-8xl);
  }

  .contact--right__box h3 {
    font-size: var(--text-4xl);
  }

  .chargeableWeight--input > h5,
  .chargeableWeight--results > h5 {
    font-size: var(--text-4xl);
  }
}

@media screen and (max-width: 1319px) {
  .features ul li p {
    width: 85%;
  }

  .features span.small-title-feature,
  .right-in-story span,
  .how-it-works .main-how-it-works span,
  .main-beginnings .left-beginnings span,
  .content-testimonials > span,
  .contact--right > span,
  .partners--text > span,
  .chargeableWeight--text > span {
    font-size: var(--text-2xl);
  }

  .features h2,
  .right-in-story h2,
  .how-it-works .main-how-it-works h2,
  .main-beginnings .left-beginnings h2,
  .content-testimonials > h2,
  .contact--right > h2,
  .partners--text > h2,
  .chargeableWeight--text > h2,
  .count-number ul li h3 {
    font-size: var(--text-4xl);
  }

  .hero .inner-hero h1 {
    font-size: var(--text-7xl);
  }
	
  .contact--right__box h3 {
    font-size: var(--text-3xl);
  }

  .contact--right ul li h4 {
    font-size: var(--text-lg);
  }

  .chargeableWeight--input > h5,
  .chargeableWeight--results > h5 {
    font-size: var(--text-4xl);
  }

  .chargeableWeight--input,
  .chargeableWeight--results {
    padding: 50px 50px 28px 50px;
  }

  .chargeableWeight--input > h5,
  .chargeableWeight--results > h5 {
    margin-block-end: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .hero .inner-hero h1 {
    font-size: var(--text-6xl);
  }

  .hero .inner-hero p {
    width: 70%;
    font-size: var(--text-xl);
  }

  .features ul li {
    padding: 30px 20px;
  }

  .features ul li h3 {
    font-size: var(--text-xl);
  }

  .features ul li p {
    width: 100%;
  }
	

	.how-it-works .main-how-it-works ul li h3 {
		font-size: var(--text-xl);
	}

  .main-beginnings .left-beginnings ul li h3 {
    font-size: var(--text-2xl);
  }

  .contact--right ul li {
    flex-direction: column;
  }

  .contact--right ul li h4 {
    margin-block-start: 0.75rem;
    margin-inline-start: 2rem;
  }

  .chargeableWeight--input,
  .chargeableWeight--results {
    padding: 40px 40px 28px 40px;
  }

  .chargeableWeight--input > h5,
  .chargeableWeight--results > h5 {
    margin-block-end: 40px;
  }
}

@media screen and (max-width: 992px) {
  .contact--content {
    flex-direction: column;
  }

  .hero .inner-hero p {
    width: 80%;
  }

  .features ul li h3 {
    font-size: var(--text-lg);
  }

  .features ul li p {
    font-size: var(--text-base);
  }

  .in-story {
    flex-direction: column;
  }

  .right-in-story {
    width: 100%;
    margin-top: 1rem;
  }
	
	.left-in-story img{
		width: 100%;
	}

  .how-it-works .main-how-it-works ul {
    flex-wrap: wrap;
  }

  .how-it-works .main-how-it-works ul li {
    width: 48%;
    margin-block-end: 2rem;
	padding-inline-end: 0;
  }
	.how-it-works .main-how-it-works ul li:not(:last-child)::before{
		content: unset;
	}

  .main-beginnings {
    flex-direction: column-reverse;
  }

  .main-beginnings .left-beginnings {
    width: 100%;
  }

  .main-beginnings .right-begginings {
    width: 70%;
	margin-block-end: 2rem;
  }

  .count-number ul {
    flex-wrap: wrap;
  }

  .count-number ul li {
    width: 48%;
    margin-bottom: 1rem;
  }

  .contact--left,
  .contact--right {
    width: 100%;
  }
	
	.contact--left{
		margin-block-end: 2rem;
	}

  .contact--right ul li {
    flex-direction: row;
  }

  .contact--right ul li h4 {
    margin-block-start: 0;
    margin-inline-start: 0;
  }

  .partners--content {
    flex-direction: column;
  }

  .partners--text,
  .partners--images {
    width: 100%;
  }

  .partners--text :is(span, h2) {
    text-align: center;
  }

  .chargeableWeight--input > h5,
  .chargeableWeight--results > h5 {
    font-size: var(--text-3xl);
  }

  .chargeableWeight--input,
  .chargeableWeight--results {
    padding: 30px 30px 28px 30px;
  }

  .chargeableWeight--input > h5,
  .chargeableWeight--results > h5 {
    margin-block-end: 30px;
  }

  .chargeableWeight--text > h2 br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .features h2,
  .right-in-story h2,
  .how-it-works .main-how-it-works h2,
  .main-beginnings .left-beginnings h2,
  .content-testimonials > h2,
  .contact--right > h2,
  .partners--text > h2,
  .chargeableWeight--text > h2,
  .count-number ul li h3 {
    font-size: var(--text-3xl);
  }

  .hero .inner-hero h1 {
    font-size: var(--text-5xl);
  }

  .hero .inner-hero p {
    width: 90%;
    font-size: var(--text-lg);
  }
	
  .hero .inner-hero a.btn {
    margin-top: 50px;
  }

  .features ul {
    flex-wrap: wrap;
  }

  .features ul li {
    width: 49%;
    margin-bottom: 1rem;
  }

  .right-in-story h2,
  .right-in-story span,
  .right-in-story p {
    width: 100%;
  }

  .right-in-story > img {
    position: relative;
    inset-block-end: -45px;
    margin-inline: auto;
    display: block;
  }

  .how-it-works .main-how-it-works ul li h3 {
    font-size: var(--text-xl);
  }

  .main-beginnings .right-begginings {
    width: 80%;
  }
	
	.partners--images ul li {
		min-height: 200px;
	}

  .contact--right__box h3 {
    font-size: var(--text-2xl);
  }

  .contact--right ul li h4 {
    font-size: var(--text-base);
  }

  .chargeableWeight--content {
    flex-direction: column;
  }

  .chargeableWeight--input,
  .chargeableWeight--results {
    width: 100%;
  }

  .chargeableWeight--input {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 576px) {
	.hero .inner-hero h1 {
        font-size: var(--text-4xl);
    }
	
  .hero .inner-hero a.btn {
    margin-top: 40px;
  }
	
  .hero .inner-hero p {
    width: 95%;
  }

  .features ul li h3 br {
    display: none;
  }

  .how-it-works .main-how-it-works ul li p {
    font-size: var(--text-base);
  }

  .main-beginnings .right-begginings {
    width: 90%;
  }

	.content-testimonials .swiper-slide .top-box-testimonial{
		flex-direction: column;
		align-items: flex-start;
	}
	
	.content-testimonials .swiper-slide .top-box-testimonial h4{
		margin-block-start: 1rem;
	}
	
	.content-testimonials .swiper-slide{
		padding: 30px 20px;
	}
	
	.content-testimonials .swiper-slide p{
		font-size: var(--text-base);
	}
	
  .count-number ul li p {
    font-size: var(--text-xl);
  }

  .contact--right ul li div {
    font-size: var(--text-sm);
  }

  .contact--right ul li > div > img {
    margin-inline-end: 0.25rem;
  }

  .partners--images ul li {
    width: 50%;
  }

  .partners--images ul li:nth-child(odd) {
    border-right: 1px solid var(--bg-color);
  }

  .partners--images ul li:nth-child(7),
  .partners--images ul li:nth-child(8) {
    border-bottom: 1px solid var(--bg-color);
  }

  .partners--images ul li:nth-child(2),
  .partners--images ul li:nth-child(8),
  .partners--images ul li:nth-child(9) {
    border-right: none;
  }

  .partners--images ul li:nth-child(5),
  .partners--images ul li:nth-child(8),
  .partners--images ul li:nth-child(9) {
    border-left: none;
  }
}

@media screen and (max-width: 425px) {
	.hero .inner-hero h1 {
        font-size: var(--text-3xl);
    }
	
  .hero .inner-hero a.btn {
    margin-top: 30px;
  }	

  .how-it-works .main-how-it-works ul li h3 {
    font-size: var(--text-lg);
  }

  .main-beginnings .right-begginings {
    width: 100%;
  }

  .count-number ul li p {
    font-size: var(--text-lg);
  }

  .contact--right ul li {
    flex-direction: column;
  }

  .contact--right ul li h4 {
    margin-block-start: 0.75rem;
    margin-inline-start: 2rem;
  }

  .chargeableWeight--input ul li {
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .features span.small-title-feature,
  .right-in-story span,
  .how-it-works .main-how-it-works span,
  .main-beginnings .left-beginnings span,
  .content-testimonials > span,
  .contact--right > span,
  .partners--text > span,
  .chargeableWeight--text > span {
    font-size: var(--text-xl);
  }

  .features h2,
  .right-in-story h2,
  .how-it-works .main-how-it-works h2,
  .main-beginnings .left-beginnings h2,
  .content-testimonials > h2,
  .contact--right > h2,
  .partners--text > h2,
  .chargeableWeight--text > h2 {
    font-size: var(--text-2xl);
  }

  .hero .inner-hero p {
    font-size: var(--text-base);
  }

  .features ul li {
    width: 100%;
  }

  .how-it-works .main-how-it-works ul li {
    width: 100%;
  }
}

/*********************
END: MEDIA
*********************/
