/* 
COLOR:
Gray: #9BA4B4
Dark-gray: #5b626e
mediumblue: #394867
Darkblue: #14274E 
white: #F1F6F9

GRID:
grid-with: 114rem ;
gutter-vertical: 8rem;
gutter-vertical-small:6rem;
gutter-horizotal:6rem;

FONT SIZE 
defoult-font-size:1.6rem
1em = 16px 
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /*1 rem = 10 px; 10px/16px = 62.5%  */
  background-color: #f1f6f9;
  @media (max-width: 600px) {
    font-size: 50%;
  }
  scroll-behavior: smooth;
}

body {
  /* margin: 1.5rem; */
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.8;
  color: #9ba4b4;
}
.absCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.u-center-text {
  text-align: center;
}
.u-margin-bottom-big {
  margin-bottom: 8rem;
}
.u-margin-bottom-small {
  margin-bottom: 1.5rem;
}
.u-margin-bottom-medium {
  margin-bottom: 4rem;
}
.header {
  height: 95vh;
  margin: 1.5 rem;
  background-image: linear-gradient(
      to left top,
      rgba(57, 72, 103, 0.7),
      rgba(155, 164, 180, 0.8)
    ),
    url(../Asset/Network-bg.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
}
.header__logo-box {
  position: absolute;
  left: 1rem;
  top: 1rem;
}
.header__logo {
  height: 15rem;
  mix-blend-mode: darken;
}
.header__text-box {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.navigation__checkbox {
  display: none;
}
.navigation__button {
  background-color: #f1f6f9;
  text-align: center;
  height: 6rem;
  width: 6rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.navigation__background {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(rgb(179, 187, 201), rgb(45, 68, 112));
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  /* transform: scale(80); */
}
.navigation__nav {
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1500;

  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation__list {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.navigation__item {
  margin: 1rem 0;
}
.navigation__link:link,
.navigation__link:visited {
  display: inline-block;
  font-size: 2.5rem;
  padding: 1rem 3rem;
  font-weight: 300;
  color: #f1f6f9;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    transparent 50%,
    rgb(225, 229, 231) 50%
  );
  background-size: 220%;
  transition: all 0.4s;
}
.navigation__link:hover,
.navigation__link:active {
  background-position: 100%;
  color: #424e67;
  transform: translateX(1rem);
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}
.navigation__checkbox:checked ~ .navigation__nav {
  width: 100%;
  opacity: 1;
  position: fixed;
}
.navigation__icon {
  position: relative;
  margin-top: 3rem;
}
.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
  width: 2.5rem;
  height: 2px;
  background-color: #5b626e;
  display: inline-block;
}
.navigation__icon::before,
.navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: 0.8rem;
}
.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  transform: rotate(135deg);
  top: 0;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  transform: rotate(-135deg);
  top: 0;
}

.heading-primary {
  color: #f1f6f9;
  text-transform: uppercase;
  backface-visibility: hidden;
}
.heading-primary--main {
  display: block;
  font-weight: 600;
  font-size: 6rem;
  letter-spacing: 3rem;
  animation: moveinLeft 2s ease-in;
}
.heading-primary--sub {
  display: block;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.3rem;
  animation: moveinRight 2s ease-out;
  padding-bottom: 4rem;
}

@keyframes moveinLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveinRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveinBottom {
  0% {
    opacity: 0;
    transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  border-radius: 20rem;
  display: inline-block;
  position: relative;
  transition: all 0.2;
}

.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scale(1.5) scaleY(1.4);
  opacity: 0;
}

.btn:active {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.btn-white {
  background-color: #f1f6f9;
  color: #14274e;
}

.btn::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 20rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.btn-white::after {
  background-color: #f1f6f9;
}

.btn-animated {
  animation: moveinBottom 0.6s ease-out 0.7s;
  animation-fill-mode: backwards;
}
.section-about {
  background-color: #f1f6f9;
  padding: 25rem 0;
  margin-top: -15rem;
}
.heading-secondary {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
}
.heading-Third {
  letter-spacing: 0.2rem;
  font-size: 2rem;
}
.heading-medium {
  display: inline-block;
  font-size: 1.6rem;
  background-image: linear-gradient(
    to left,
    rgb(104, 139, 209),
    rgb(45, 68, 112)
  );
  -webkit-background-clip: text;
  color: transparent;
}
.heading-dark {
  background-image: linear-gradient(
    to right,
    rgb(77, 92, 124),
    rgb(32, 48, 81)
  );
  -webkit-background-clip: text;
  color: transparent;
}
.heading-light {
  display: inline-block;
  background-image: linear-gradient(
    to right,
    rgb(179, 187, 201),
    rgb(225, 229, 231)
  );
  -webkit-background-clip: text;
  color: transparent;
}
.heading-secondary:hover {
  transform: skewY(1deg) skewX(5deg) scale(0.9);
  text-shadow: 0.5rem 1rem 2rem rgba(20, 39, 78, 0.2);
}
.row {
  max-width: 114rem;
  margin: 0 auto;
  color: #14274e;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
.row::after {
  clear: both;
  content: " ";
  display: table;
}
.col-1-of-2 {
  width: calc((100% - 6rem) / 2);
  float: left;
}
.sec {
  display: flex;
  flex-direction: row;
}
.col-1-of-2:not(:last-child) {
  margin-right: 6rem;
}
.col-1-of-3 {
  width: calc((100% - (2 * 6rem)) / 3);
  float: left;
}
.col-1-of-3:not(:last-child) {
  margin-right: 6rem;
}

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}
.paragraph {
  font-size: 2.3rem;
}
.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}
.btn-light:visited,
.btn-light:link {
  color: #394867;
}
.btn-light:hover {
  background-color: #424e67;
  color: #f1f6f9;
}
.btn-dark:visited,
.btn-dark:link {
  color: #5b626e;
}
.btn-dark:hover {
  background-color: #14274e;
  color: #f1f6f9;
}

.btn-text:visited,
.btn-text:link {
  font-size: 1.6rem;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #5b626e;
  padding: 3px;
  transition: all 0.2s;
}
.btn-text:hover {
  border-radius: 0.5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}
.composition {
  position: relative;
  margin-right: 0.5rem;
}
.composition--photo {
  position: absolute;
  max-width: 100%;
  display: block;
  height: auto;
}
.section-features {
  padding: 20rem 0;
  background-image: linear-gradient(
      to right top,
      rgba(57, 72, 103, 0.8),
      rgba(155, 164, 180, 0.6)
    ),
    url(../Asset/Network-bg.jpg);
  background-size: cover;
  transform: skewY(-7deg);
  margin-top: -20rem;
}
.section-features > * {
  transform: skewY(7deg);
}
.section-faq {
  padding: 20rem 0;
  margin-top: -5rem;
}
.features-box {
  background-color: rgba(241, 246, 249, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
.features-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}
.features-box--text {
  font-size: 2rem;
}
.features-box--icon {
  margin-bottom: 0.5rem;
  font-size: 6rem;
  display: inline-block;
  background-image: linear-gradient(
    to right,
    rgb(77, 95, 130),
    rgb(32, 48, 81)
  );
  -webkit-background-clip: text;
  color: transparent;
}
.section-Services {
  margin-top: -5rem;
  margin-bottom: 5rem;
  padding: 20rem 0;
}
.checkmark-icon {
  margin-right: 1rem;
  margin-top: 0.5rem;
}
.Services-text {
  margin-left: 1rem;
  margin-top: 0.4rem;
  display: flex;
  align-items: start;
  font-size: 1.7rem;
}
.question {
  width: 100%;
  padding: 0 0.5rem;
  border: 2px solid #394867;
  cursor: pointer;
  border-radius: 5rem;
  display: flex;
  margin: 1rem 0;
  align-items: center;
}
.question .icon-plus {
  margin: 0 1rem 0 0;
  width: 2rem;
  height: 2rem;
  background: url(../Asset/) no-repeat 0.8rem 0.7rem #14274e;
  border-radius: 50%;
  float: left;
  transition: all 0.2s ease-in;
}
.active .icon-plus {
  background: url(../Asset/) no-repeat 0.8rem 0.7rem #f1f6f9;
}
.active {
  background-color: #394867;
  color: #f1f6f9;
}
.answer {
  padding: 0 1.5rem;
  border-left: 1px solid #394867;
  margin-left: 2.5rem;
  font-size: 14px;
  text-align: justify;
  overflow: hidden;
  max-height: 0;
  transition: all 0.2s ease-in;
}
.section-Blog {
  padding: 10rem 0;
  background-image: linear-gradient(
      to right top,
      rgba(57, 72, 103, 0.8),
      rgba(155, 164, 180, 0.6)
    ),
    url(../Asset/Network-bg.jpg);
  background-size: cover;
  margin-bottom: 0; /* Add this */
  margin-top: -20rem;
}
.photo-blog {
  height: 15rem;
  width: 15rem;
}
.Date-join {
  color: #5b626e;
  margin-top: -2.5rem;
  font-size: 1.2rem;
}
.Blog-box {
  background-color: rgba(241, 246, 249, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
.Blog-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}
.Blog-box--text {
  text-align: left !important;
}
.section-story {
  display: flex;
  padding: 13rem 0 10rem 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  border-radius: 3px;
  background-image: linear-gradient(
      to right top,
      rgba(57, 72, 103, 0.8),
      rgba(155, 164, 180, 0.6)
    ),
    url(../Asset/Network-bg.jpg);
  background-size: cover;
  transform: skewY(-7deg);
  margin-top: 6rem;
}
.section-story > * {
  transform: skewY(7deg);
}
.testimotial-box {
  width: 50rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(
    to left,
    rgba(212, 217, 221, 0.8),
    rgba(185, 193, 207, 0.8)
  );
  padding: 2rem;
  margin: 1.5rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
}
.testimotial-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}
.profile-img {
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 1rem;
}
.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.profile {
  display: flex;
  align-items: center;
}
.user-name {
  display: flex;
  flex-direction: column;
}
.user-name strong {
  font-size: 1.4rem;
  margin-bottom: -0.8rem;
  letter-spacing: 0.5px;
}
.user-name span {
  font-size: 1rem;
  color: #424e67;
}
.client-comment p {
  font-size: 1.9rem;
}

.testimotial-box-container {
  max-width: 114rem;
  margin: 0 auto;
  color: #14274e;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.section-connect {
  padding: 13rem 0;
  background-size: cover;
  background-position: top;
  position: relative;
}
.contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2rem;
}
.contact-inputs {
  width: 40rem;
  height: 5rem;
  border: 1px solid white;
  outline: none;
  padding-left: 2.5rem;
  border-radius: 5rem;
  font-weight: 500;
  color: #5b626e;
  transition: all 0.3s;
}
.contact-inputs-message {
  height: 14rem;
  padding-top: 1.5rem;
  border-radius: 2rem;
  width: 40rem;
  border: 1px solid white;
  outline: none;
  padding-left: 2.5rem;
  font-weight: 500;
  color: #5b626e;
  resize: none;
  transition: all 0.3s;
}
.contact-inputs:hover,
.contact-inputs-message:hover {
  border: 2px solid #394867;
}
.contact-inputs::placeholder,
.contact-inputs-message::placeholder {
  color: #5b626e;
}
.btn-submit {
  width: 15rem;
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 4rem;
  background: linear-gradient(
    to right,
    rgba(48, 65, 98, 0.8),
    rgba(137, 146, 160, 0.6)
  );
  color: #f1f6f9;
  transition: all 0.3s;
}
.btn-submit.blog-contact {
  width: 30rem;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8rem;
}
.btn-more {
  color: #f1f6f9;
  text-decoration: none;
  border-bottom: 1px solid #00000000;
  padding: 0.5rem 2rem;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-more:hover {
  border-bottom: 1px solid #f1f6f9;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  overflow-y: auto;
}
.popup--content {
  width: 75%;
  background-color: #f1f6f9;
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  display: table;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.75);
  transition: all 0.4s 0.2s;
}
.popup--content.absCenter {
  margin-top: 10rem;
  margin-bottom: 10rem;
  max-height: 90vh;
  overflow-y: auto;
}

/* open state */
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target,
.popup--content {
  opacity: 1;
  transform: translate(-50%, -50%), scale(1);
}
.popup--left {
  width: 33.333333%;
  display: table-cell;
}
.popup--right {
  width: 66.666666%;
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 5rem;
}
.popup--img {
  display: block;
  width: 85%;
  height: 40%;
  padding: 0;
}
.popup--text {
  margin-top: 2.5rem;
  font-size: 2.3rem;
}
.popup--close:visited,
.popup--close:link {
  color: #5b626e;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  text-decoration: none;
  display: inline-block;
}
.popup--close:hover {
  color: #14274e;
}
.footer {
  background-color: #394867;
  padding: 2.5rem 0;
  font-size: 1.5rem;
}
.footer--logo {
  width: 10rem;
  height: auto;
}
.footer--logo-box {
  text-align: left;
}
.footer--list {
  list-style: none;
}
.footer--item {
  display: inline-block;
}
.footer--item:not(:last-child) {
  margin-right: 1.5rem;
}
.footer--link:link,
.footer--link:visited {
  color: #9ba4b4;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 3rem;
  transition: all 0.3s;
}
.footer--link:hover,
.footer--link:active {
  color: #f1f6f9;
}
.footer-navigation {
  border-bottom: 1px solid #9ba4b4;
  display: inline-block;
}
.trusted-company {
  margin-right: 3rem;
  width: 5rem;
}
.logo-company {
  margin-top: 2rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

/* Blog */
.u-margin-top-medium {
  margin-top: 4rem;
}

.u-margin-top-big {
  margin-top: 8rem;
}

.col-1-of-1 {
  width: 100%;
  padding: 0 2rem;
}

.paragraph ul {
  margin-bottom: 2rem;
}

.paragraph ul li {
  margin-bottom: 1rem;
  color: #394867;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  text-align: center;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.desktop-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(241, 246, 249, 0.95);
  padding: 2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.desktop-nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 114rem;
  margin: 0 auto;
  list-style: none;
}

.desktop-nav__item:not(:last-child) {
  margin-right: 4rem;
}

.desktop-nav__link:link,
.desktop-nav__link:visited {
  color: #394867;
  text-decoration: none;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: all 0.3s;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #394867 50%);
  background-size: 220%;
}

.desktop-nav__link:hover,
.desktop-nav__link:active {
  color: #f1f6f9;
  background-position: 100%;
  transform: translateX(1rem);
}

.desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.desktop-nav__logo-img {
  height: 8rem;
  mix-blend-mode: darken;
}

.desktop-nav__logo {
  margin-bottom: -2rem;
}
#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.3s ease-in;
  display: none;
}

#services-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.3s ease-in;
  display: none;
}

#popup .popup--content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f1f6f9;
  padding: 3rem;
  border-radius: 5px;
  width: 80%;
  max-width: 800px;
  opacity: 1;
  visibility: visible;
  animation: slideIn 0.4s ease-out;
}

#services-popup .popup--content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f1f6f9;
  padding: 3rem;
  border-radius: 5px;
  width: 80%;
  max-width: 800px;
  opacity: 1;
  visibility: visible;
  animation: slideIn 0.4s ease-out;
}

#popup-title {
  text-align: center;
  margin-bottom: 2rem;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes slideIn {
  from {
      transform: translate(-50%, -60%);
      opacity: 0;
  }
  to {
      transform: translate(-50%, -50%);
      opacity: 1;
  }
}

.popup--close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 3rem;
  cursor: pointer;
}

.Services-text span {
  cursor: pointer;
  text-decoration: underline;
}


/* RESPONSIVE */

/* MEDIA QUERY MANAGER
0 - 600:     PHONE
600 - 900:   TABLET PORTRIAT 
900 - 1200:  TABLET LANDSCAPE
[1200 - 1800]:  NORMAL STYLE APLLY
1800 + : BOG DESKTOP
 */

@media (max-width: 37.5em) {
  html {
    font-size: 35%;
  }
  .heading-primary--main {
    letter-spacing: 1rem;
    font-size: 13rem;
  }
  .heading-primary--sub {
    letter-spacing: 0.3rem;
    font-size: 4.5rem;
  }
  .heading-secondary {
    font-size: 4rem;
  }
  .heading-Third {
    font-size: 3rem;
  }
  .header {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
  }
  .paragraph {
    font-size: 3.1rem;
  }
  .col-1-of-2,
  .col-1-of-3 {
    width: 100% !important;
  }
  .col-1-of-2:not(:last-child),
  .col-1-of-3:not(:last-child) {
    margin-right: 0;
    margin-bottom: 4rem;
  }
  .sec {
    display: flex;
    flex-direction: column;
  }
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
  .row {
    max-width: 60rem;
    padding: 0 3rem;
  }
  .footer {
    padding: 4rem 0;
  }
  .footer-navigation {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    margin-top: -5rem;
  }
  .footer--logo-box {
    text-align: center;
    margin-bottom: -5rem;
  }
  .footer--logo {
    width: 15rem;
    height: auto;
  }
  .composition {
    margin-top: -3rem;
    z-index: 999;
    width: 70%;
    height: auto;
  }

  .display-none {
    display: none;
  }
  .section-about {
    padding: 20rem 0;
  }
  .section-features,
  .section-faq,
  .section-Services {
    padding: 15rem 0;
  }
  .section-Blog,
  .section-connect {
    padding: 7rem 0;
  }
  .section-story {
    padding: 7rem 0 5rem 0;
  }
  .contact-inputs,
  .contact-inputs-message {
    width: 100%;
    font-size: 2.5rem;
  }
  .contact {
    align-items: center;
  }
  .btn-submit {
    font-size: 1.7rem;
    padding: 1rem 2rem;
  }
  .features-box--text{
    font-size: 2.7rem;
  }
  .heading-tertiary {
    font-size: 3rem;
  }
  .checkmark-icon {
    width: 2rem;
    height: auto;
  }
  .Services-text {
    font-size: 3rem;
  }
  .Blog-box--text {
    font-size: 2.7rem;
  }
  .answer {
    font-size: 1.5rem;
  }
  .question {
    font-size: 1.8rem;
  }
  .u-margin-bottom-big {
    margin-bottom: 4rem;
  }
  .popup--text {
    font-size: 3.1rem;
  }
  .btn-text:link{
    font-size: 4rem;
  }
  .user-name strong {
    font-size: 2.5rem;
  }
  .user-name span {
    font-size: 2.4rem;
  }
  .client-comment p {
    font-size: 3rem;
  }
  .profile-img {
    width: 9rem;
    height: 9rem;
  }
  .popup--content {
    width: 80%;
  }
  .navigation__button {
    top: 3rem;
    right: 3rem;
  }
  .navigation__background {
    top: 3.5rem;
    right: 3.5rem;
  }
}

@media (min-width: 37.5em) {
  .navigation__button,
  .navigation__background,
  .navigation__checkbox,
  .navigation__nav {
      display: none;
  }

  .header__logo-box {
    display: none;
  }
}

@media (max-width: 37.5em) {
  .desktop-nav {
      display: none;
  }
}

